@import url(https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i);@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i);@import url(https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700);@import url(https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.0/animate.css);@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/js/fontawesome.min.js);@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700);@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css);@import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);@import url(https://fonts.googleapis.com/css?family=Titillium+Web:300);.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--dark {
  background: #121212;
  color: #fff;
}
.Toastify__toast--default {
  background: #fff;
  color: #aaa;
}
.Toastify__toast--info {
  background: #3498db;
}
.Toastify__toast--success {
  background: #07bc0c;
}
.Toastify__toast--warning {
  background: #f1c40f;
}
.Toastify__toast--error {
  background: #e74c3c;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
  }
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--default {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}
.Toastify__progress-bar--default {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
}
.Toastify__progress-bar--dark {
  background: #bb86fc;
}
@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}.alice-carousel {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: auto;
  direction: ltr; }

.alice-carousel__wrapper {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  height: auto; }

.alice-carousel__stage {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  white-space: nowrap; }
  .alice-carousel__stage-item {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: top;
    white-space: normal;
    line-height: 0; }
    .alice-carousel__stage-item * {
      line-height: initial; }
    .alice-carousel__stage-item.__cloned {
      visibility: hidden;
      opacity: 0; }

.alice-carousel__prev-btn,
.alice-carousel__next-btn {
  display: inline-block;
  box-sizing: border-box;
  width: 50%;
  padding: 15px 10px; }
  .alice-carousel__prev-btn [data-area]::after,
  .alice-carousel__next-btn [data-area]::after {
    position: relative;
    content: attr(data-area);
    text-transform: capitalize; }

.alice-carousel__prev-btn {
  text-align: right; }

.alice-carousel__prev-btn-item,
.alice-carousel__next-btn-item {
  display: inline-block;
  cursor: pointer;
  color: #465798; }
  .alice-carousel__prev-btn-item:hover,
  .alice-carousel__next-btn-item:hover {
    color: darkred; }
  .alice-carousel__prev-btn-item.__inactive,
  .alice-carousel__next-btn-item.__inactive {
    opacity: 0.4; }

.alice-carousel__play-btn {
  position: absolute;
  top: 30px;
  left: 20px;
  display: inline-block; }
  .alice-carousel__play-btn:hover {
    cursor: pointer; }
  .alice-carousel__play-btn-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    padding: 10px;
    border-radius: 50%;
    background-color: #fff; }

.alice-carousel__play-btn-item {
  position: absolute;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border: 0;
  outline: none;
  background: transparent; }
  .alice-carousel__play-btn-item::before, .alice-carousel__play-btn-item::after {
    position: absolute;
    pointer-events: none;
    display: block;
    width: 0;
    height: 0;
    content: '';
    transition: all 0.3s linear;
    border-width: 8px 0 8px 15px;
    border-style: solid;
    border-color: transparent;
    border-left-color: #465798; }
  .alice-carousel__play-btn-item::before {
    left: 5px;
    height: 14px; }
  .alice-carousel__play-btn-item::after {
    top: 7px;
    left: 18px; }
  .alice-carousel__play-btn-item.__pause::before, .alice-carousel__play-btn-item.__pause::after {
    height: 30px;
    border-width: 0 0 0 10px; }
  .alice-carousel__play-btn-item.__pause::after {
    top: 0;
    left: 18px; }

.alice-carousel__dots {
  margin: 30px 3px 5px;
  padding: 0;
  list-style: none;
  text-align: center; }
  .alice-carousel__dots-item {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 15px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #e0e4fb; }
    .alice-carousel__dots-item:hover, .alice-carousel__dots-item.__active {
      background-color: #6e7ebc; }

.alice-carousel__slide-info {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  padding: 5px 10px;
  color: #465798;
  border-radius: 5px;
  background-color: rgba(224, 228, 251, 0.6); }
  .alice-carousel__slide-info-item {
    vertical-align: middle;
    line-height: 0; }

.alice-carousel .animated {
  animation-fill-mode: both; }

.alice-carousel .animated-out {
  z-index: 1; }

.alice-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    visibility: hidden; } }
/*!
 * https://github.com/YouCanBookMe/react-datetime
 */

.rdt {
  position: relative;
}
.rdtPicker {
  display: none;
  position: absolute;
  width: 450px;
  padding: 4px;
  margin-top: 1px;
  z-index: 99999 !important;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  border: 1px solid #f9f9f9;
}
.rdtOpen .rdtPicker {
  display: block;
}
.rdtStatic .rdtPicker {
  box-shadow: none;
  position: static;
}

.rdtPicker .rdtTimeToggle {
  text-align: center;
}

.rdtPicker table {
  width: 100%;
  margin: 0;
}
.rdtPicker td,
.rdtPicker th {
  text-align: center;
  height: 28px;
}
.rdtPicker td {
  cursor: pointer;
}
.rdtPicker td.rdtDay:hover,
.rdtPicker td.rdtHour:hover,
.rdtPicker td.rdtMinute:hover,
.rdtPicker td.rdtSecond:hover,
.rdtPicker .rdtTimeToggle:hover {
  background: #eeeeee;
  cursor: pointer;
}
.rdtPicker td.rdtOld,
.rdtPicker td.rdtNew {
  color: #999999;
}
.rdtPicker td.rdtToday {
  position: relative;
}
.rdtPicker td.rdtToday:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #428bca;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.rdtPicker td.rdtActive,
.rdtPicker td.rdtActive:hover {
  background-color: #428bca;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.rdtPicker td.rdtActive.rdtToday:before {
  border-bottom-color: #fff;
}
.rdtPicker td.rdtDisabled,
.rdtPicker td.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}

.rdtPicker td span.rdtOld {
  color: #999999;
}
.rdtPicker td span.rdtDisabled,
.rdtPicker td span.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker th {
  border-bottom: 1px solid #f9f9f9;
}
.rdtPicker .dow {
  width: 14.2857%;
  border-bottom: none;
  cursor: default;
}
.rdtPicker th.rdtSwitch {
  width: 100px;
}
.rdtPicker th.rdtNext,
.rdtPicker th.rdtPrev {
  font-size: 21px;
  vertical-align: top;
}

.rdtPrev span,
.rdtNext span {
  display: block;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;
}

.rdtPicker th.rdtDisabled,
.rdtPicker th.rdtDisabled:hover {
  background: none;
  color: #999999;
  cursor: not-allowed;
}
.rdtPicker thead tr:first-child th {
  cursor: pointer;
}
.rdtPicker thead tr:first-child th:hover {
  background: #eeeeee;
}

.rdtPicker tfoot {
  border-top: 1px solid #f9f9f9;
}

.rdtPicker button {
  border: none;
  background: none;
  cursor: pointer;
}
.rdtPicker button:hover {
  background-color: #eee;
}

.rdtPicker thead button {
  width: 100%;
  height: 100%;
}

td.rdtMonth,
td.rdtYear {
  height: 50px;
  width: 25%;
  cursor: pointer;
}
td.rdtMonth:hover,
td.rdtYear:hover {
  background: #eee;
}

.rdtCounters {
  display: inline-block;
}

.rdtCounters > div {
  float: left;
}

.rdtCounter {
  height: 100px;
}

.rdtCounter {
  width: 40px;
}

.rdtCounterSeparator {
  line-height: 100px;
}

.rdtCounter .rdtBtn {
  height: 40%;
  line-height: 40px;
  cursor: pointer;
  display: block;

  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;
}
.rdtCounter .rdtBtn:hover {
  background: #eee;
}
.rdtCounter .rdtCount {
  height: 20%;
  font-size: 1.2em;
}

.rdtMilli {
  vertical-align: middle;
  padding-left: 8px;
  width: 48px;
}

.rdtMilli input {
  width: 100%;
  font-size: 1.2em;
  margin-top: 37px;
}

.rdtTime td {
  cursor: default;
}
.rdtNew, .rdtOld{
  visibility: hidden; 
}.carousel .control-arrow,.carousel.carousel-slider .control-arrow{-webkit-transition:all .25s ease-in;-moz-transition:all .25s ease-in;-ms-transition:all .25s ease-in;-o-transition:all .25s ease-in;transition:all .25s ease-in;opacity:.4;filter:alpha(opacity=40);position:absolute;z-index:2;top:20px;background:none;border:0;font-size:32px;cursor:pointer}.carousel .control-arrow:focus,.carousel .control-arrow:hover{opacity:1;filter:alpha(opacity=100)}.carousel .control-arrow:before,.carousel.carousel-slider .control-arrow:before{margin:0 5px;display:inline-block;border-top:8px solid transparent;border-bottom:8px solid transparent;content:''}.carousel .control-disabled.control-arrow{opacity:0;filter:alpha(opacity=0);cursor:inherit;display:none}.carousel .control-prev.control-arrow{left:0}.carousel .control-prev.control-arrow:before{border-right:8px solid #fff}.carousel .control-next.control-arrow{right:0}.carousel .control-next.control-arrow:before{border-left:8px solid #fff}.carousel-root{outline:none}.carousel{position:relative;width:100%}.carousel *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.carousel img{width:100%;display:inline-block;pointer-events:none}.carousel .carousel{position:relative}.carousel .control-arrow{outline:0;border:0;background:none;top:50%;margin-top:-13px;font-size:18px}.carousel .thumbs-wrapper{margin:20px;overflow:hidden}.carousel .thumbs{-webkit-transition:all .15s ease-in;-moz-transition:all .15s ease-in;-ms-transition:all .15s ease-in;-o-transition:all .15s ease-in;transition:all .15s ease-in;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);position:relative;list-style:none;white-space:nowrap}.carousel .thumb{-webkit-transition:border .15s ease-in;-moz-transition:border .15s ease-in;-ms-transition:border .15s ease-in;-o-transition:border .15s ease-in;transition:border .15s ease-in;display:inline-block;margin-right:6px;white-space:nowrap;overflow:hidden;border:3px solid #fff;padding:2px}.carousel .thumb:focus{border:3px solid #ccc;outline:none}.carousel .thumb.selected,.carousel .thumb:hover{border:3px solid #333}.carousel .thumb img{vertical-align:top}.carousel.carousel-slider{position:relative;margin:0;overflow:hidden}.carousel.carousel-slider .control-arrow{top:0;color:#fff;font-size:26px;bottom:0;margin-top:0;padding:5px}.carousel.carousel-slider .control-arrow:hover{background:rgba(0,0,0,0.2)}.carousel .slider-wrapper{overflow:hidden;margin:auto;width:100%;-webkit-transition:height .15s ease-in;-moz-transition:height .15s ease-in;-ms-transition:height .15s ease-in;-o-transition:height .15s ease-in;transition:height .15s ease-in}.carousel .slider-wrapper.axis-horizontal .slider{-ms-box-orient:horizontal;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-moz-flex;display:-webkit-flex;display:flex}.carousel .slider-wrapper.axis-horizontal .slider .slide{flex-direction:column;flex-flow:column}.carousel .slider-wrapper.axis-vertical{-ms-box-orient:horizontal;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-moz-flex;display:-webkit-flex;display:flex}.carousel .slider-wrapper.axis-vertical .slider{-webkit-flex-direction:column;flex-direction:column}.carousel .slider{margin:0;padding:0;position:relative;list-style:none;width:100%}.carousel .slider.animated{-webkit-transition:all .35s ease-in-out;-moz-transition:all .35s ease-in-out;-ms-transition:all .35s ease-in-out;-o-transition:all .35s ease-in-out;transition:all .35s ease-in-out}.carousel .slide{min-width:100%;margin:0;position:relative;text-align:center}.carousel .slide img{width:100%;vertical-align:top;border:0}.carousel .slide iframe{display:inline-block;width:calc(100% - 80px);margin:0 40px 40px;border:0}.carousel .slide .legend{-webkit-transition:all .5s ease-in-out;-moz-transition:all .5s ease-in-out;-ms-transition:all .5s ease-in-out;-o-transition:all .5s ease-in-out;transition:all .5s ease-in-out;position:absolute;bottom:40px;left:50%;margin-left:-45%;width:90%;border-radius:10px;background:#000;color:#fff;padding:10px;font-size:12px;text-align:center;opacity:0.25;-webkit-transition:opacity .35s ease-in-out;-moz-transition:opacity .35s ease-in-out;-ms-transition:opacity .35s ease-in-out;-o-transition:opacity .35s ease-in-out;transition:opacity .35s ease-in-out}.carousel .control-dots{position:absolute;bottom:0;margin:10px 0;padding:0;text-align:center;width:100%;z-index:1}@media (min-width: 960px){.carousel .control-dots{bottom:0}}.carousel .control-dots .dot{-webkit-transition:opacity .25s ease-in;-moz-transition:opacity .25s ease-in;-ms-transition:opacity .25s ease-in;-o-transition:opacity .25s ease-in;transition:opacity .25s ease-in;opacity:.3;filter:alpha(opacity=30);box-shadow:1px 1px 2px rgba(0,0,0,0.9);background:#fff;border-radius:50%;width:8px;height:8px;cursor:pointer;display:inline-block;margin:0 8px}.carousel .control-dots .dot.selected,.carousel .control-dots .dot:hover{opacity:1;filter:alpha(opacity=100)}.carousel .carousel-status{position:absolute;top:0;right:0;padding:5px;font-size:10px;text-shadow:1px 1px 1px rgba(0,0,0,0.9);color:#fff}.carousel:hover .slide .legend{opacity:1}
/*------------------------------------------------------------------
        File Name: style.css
        Template Name: auricle
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
        1. import fonts
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
        2. import files
    -------------------------------------------------------------------*/
/*------------------------------------------------------------------
        3. basic
-------------------------------------------------------------------*/

* {
  margin: 0;
  padding: 0;
  outline: none !important;
  box-sizing: border-box;
  transition: ease all 0.5s;
  -webkit-transition: ease all 0.5s;
  -moz-transition: ease all 0.5s;
  -ms-transition: ease all 0.5s;
  -o-transition: ease all 0.5s;
}

input,
button,
select,
textarea {
  outline: none !important;

  border: none;
}
.chatgpt-btn {
  height: 25px;
  padding-left: 2px;
  width: 25px;
  border: 0px;
  border-radius: 100px;
}
html,
body {
  color: black;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  line-height: normal;
  font-weight: 400;
  overflow-x: hidden !important;
}

body {
  overflow: hidden !important;
}

a {
  color: #1f1f1f;
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  font-weight: normal;
  position: relative;
  padding: 0;
  font-weight: normal;
  line-height: normal;
  color: #1f1f1f;
  margin: 0;
}

h6 {
  font-size: 14px;
}

h1 {
  font-size: 24px;
}

.small_heading.main-heading h2 {
  font-size: 21px;
}

.small_heading.main-heading::after {
  top: 18px;
}

.small_heading.main-heading {
  margin-bottom: 20px;
  width: 100%;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #212121;
  text-decoration: none !important;
  opacity: 1;
}

ol,
ul {
  margin: 0;
  color: #000;
}

a {
  color: #000;
  text-decoration: none;
  outline: none;
}

a,
.btn {
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-custom {
  margin-top: 20px;
  background-color: transparent;
  border: 2px solid #ddd;
  padding: 12px 40px;
  font-size: 16px;
}

.button_section {
  float: left;
  width: 100%;
}

.right_bt {
  float: right;
}

a.btn,
button.btn {
  min-width: 170px;
  height: 50px;
  border-radius: 100px;
  padding: 0;
  text-align: center;
  /* line-height: 52px; */
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 10px;
  color: #fff;
  border: solid transform 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.btn:hover,
button.btn:hover,
a.btn:focus,
button.btn:focus {
  background: #252525;
  color: #fff;
}

button {
  transition: ease all 0.5s;
  cursor: pointer;
}

.bt_main {
  color: #fff;
  font-size: 14px;
  min-width: 148px;
  float: left;
  text-align: center;
  height: 48px;
  line-height: 50px;
  font-weight: 500;
  border: none;
  padding: 0 35px;
  transition: ease all 0.5s;
}

.bt_main:hover,
.bt_main:focus {
  color: #fff;
}

.reverse_bt.bt_main {
  color: #fff;
}

.white_bt.bt_main {
  background: #fff;
}

.white_bt.bt_main:hover,
.white_bt.bt_main:focus {
  color: #fff;
}

.field button {
  background: #f96495;
  color: #fff;
  font-size: 14px;
  width: auto;
  text-align: center;
  height: 48px;
  border-radius: 25px;
  line-height: 50px;
  font-weight: 500;
  border: none;
  margin-top: 15px;
  transition: ease all 0.5s;
  cursor: pointer;
  min-width: 148px;
  padding-left: 75px;
  padding-right: 75px;
}

.field button:hover,
.field button:focus {
  background: #ffffff;
  color: #1e72bc;
}

.border_circle_bt {
  border-radius: 50px;
}

.padding-bottom_0 {
  padding-bottom: 0 !important;
}

.padding-top_0 {
  padding-top: 0 !important;
}

.padding-bottom_1 {
  padding-bottom: 10px !important;
}

.padding-bottom_2 {
  padding-bottom: 20px !important;
}

.padding-bottom_3 {
  padding-bottom: 30px !important;
}

.padding-bottom_4 {
  padding-bottom: 40px !important;
}

.padding-bottom_5 {
  padding-bottom: 50px !important;
}

.color_black p,
.color_black p.large,
.color_black ul,
.color_black ul li {
  color: #000;
}

.black_color {
  color: #000 !important;
}

.extra_light_font {
  font-weight: 300 !important;
}

.light_font {
  font-weight: 300 !important;
}

.normal_font {
  font-weight: 400 !important;
}

.semi_bold_font {
  font-weight: 600 !important;
}

.bold_font {
  font-weight: 700 !important;
}

.extra_bold_font {
  font-weight: 900 !important;
}

.lead {
  font-size: 18px;
  line-height: 30px;
  color: #767676;
  margin: 0;
  padding: 0;
}

blockquote {
  margin: 20px 0 20px;
  padding: 30px;
}

.margin_0 {
  margin: 0 !important;
}

.padding_0 {
  padding: 0 !important;
}

h2 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -2px;
  position: relative;
  margin-bottom: 25px;
  line-height: 50px;
  position: relative;
}

h3 {
  font-size: 24px;
  color: #000;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}

h4 {
  font-size: 18px;
  color: #000;
  line-height: 21px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 30px 0 20px 0;
}

h5 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: normal;
  color: #000;
}

p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
}

p.large {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
}

p.large_2 {
  font-weight: 500;
  font-size: 14px;
  color: #000;
}

.img-responsive {
  max-width: 100%;
}

button,
input,
select,
textarea,
option {
  font-family: "Poppins", sans-serif;
}

a#submit {
  z-index: 1;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
}

.span1,
.span2,
.span3,
.span4,
.span5,
.span6,
.span7,
.span8,
.span9,
.span10 {
  padding: 0 15px;
  float: left;
  min-height: 25px;
}

.border_radius_0 {
  border-radius: 0 !important;
}

.span1 {
  width: 10%;
}

.span2 {
  width: 20%;
}

.span3 {
  width: 30%;
}

.span4 {
  width: 40%;
}

.span5 {
  width: 50%;
}

.span6 {
  width: 60%;
}

.span7 {
  width: 70%;
}

.span8 {
  width: 80%;
}

.span9 {
  width: 90%;
}

.span10 {
  width: 100%;
}

.container {
  width: 1200px;
  max-width: 1200px;
}

.layout_padding {
  padding-top: 80px;
  padding-bottom: 100px;
}

.layout_padding_2 {
  padding-top: 100px;
  padding-bottom: 80px;
}

.full {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}

.vertical-center {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.right_side {
  float: right;
}

.text_align_right {
  text-align: right;
}

.left_side {
  float: left;
}

.text_align_left {
  text-align: left;
}

.text_align_center {
  text-align: center;
}

.center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.border_dotted_circle {
  border: dotted #e1e1e1 3px;
  width: 170px;
  height: 170px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.border_dotted_circle:hover,
.border_dotted_circle:focus {
  border: dotted #e1e1e1 3px;
  animation-name: rotate;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotate;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotate;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotate;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}

.white_fonts p,
.white_fonts h1,
.white_fonts h2,
.white_fonts h3,
.white_fonts h4,
.white_fonts h5,
.white_fonts h6,
.white_fonts ul,
.white_fonts ul li,
.white_fonts ul li a,
.white_fonts ul i,
.white_fonts .post_info i,
.white_fonts div,
.white_fonts a.read_more,
.white_fonts h2 span {
  color: #fff !important;
}

.light_gray_fonts p,
.light_gray_fonts h1,
.light_gray_fonts h2,
.light_gray_fonts h3,
.light_gray_fonts h4,
.light_gray_fonts h5,
.light_gray_fonts h6,
.light_gray_fonts ul,
.light_gray_fonts ul li,
.light_gray_fonts ul li a,
.light_gray_fonts ul i,
.light_gray_fonts .post_info i,
.light_gray_fonts div,
.light_gray_fonts a.read_more {
  color: #898989 !important;
}

.parallax_bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.dark_gray {
  background-color: #252525;
  min-height: 400px;
}

.list_style_1 {
  font-size: 14px;
  font-weight: 500;
  margin: 20px 0 15px;
}

.list_style_1 i {
  float: left;
  margin: 3px 16px 0 0;
}

.light_silver {
  background: #f4f6fe;
}

.light_silver_2 {
  background: #f8f8f8;
}

hr.dottad_border {
  border-top: dotted 3px;
  margin: 80px 0;
}

.padding_right_left_15 {
  padding-left: 15px;
  padding-right: 15px;
}

.padding_right_left_25 {
  padding-left: 25px;
  padding-right: 25px;
}

.padding_top_80 {
  padding-top: 80px;
}

.padding_bottom_80 {
  padding-bottom: 80px;
}

.padding_bottom_0 {
  padding-bottom: 0;
}

.padding_inner {
  padding-top: 75px;
  padding-bottom: 75px;
}

.theme_color_bg h2::after {
  background: #fff;
}

.layout_pur_minus {
  margin-bottom: -190px;
  position: relative;
  z-index: 1;
}

.haf_full_section {
  position: relative;
}

.haf_full_section.right_full::after {
  content: "";
  display: block;
  width: 50%;
  background-color: #333;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.haf_full_section.left_full::before {
  content: "";
  display: block;
  width: 50%;
  background-color: #333;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.gray1 {
  background: #464646;
}

.gray2 {
  background-color: #555555;
}

.overlap_top_img_main {
  margin: -70px 0 0 0;
}

.center_padding {
  padding: 150px 0 120px;
}

.border_0 {
  border-width: 0 !important;
}

.oswald_fonts h1,
.oswald_fonts h2,
.oswald_fonts h3,
.oswald_fonts h4,
.oswald_fonts h5,
.oswald_fonts h6 {
  font-family: "Oswald", sans-serif;
}

.small_radius {
  border-radius: 5px;
}

section .small_head h2 {
  font-size: 30px;
}

.margin_top_0 {
  margin-top: 0 !important;
}

.montserrat_fonts li,
.montserrat_fonts a,
.montserrat_fonts ul {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.margin_top_30 {
  margin-top: 30px;
}

.margin_bottom_30 {
  margin-bottom: 30px;
}

.padding_top_0 {
  padding-top: 0 !important;
}
/*------------------------------------------------------------------
        4. loader
-------------------------------------------------------------------*/
/* Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* #status {
  background: url("../images/loaders/loading.gif");
  width: 220px;
  height: 220px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
} */
/*------------------------------------------------------------------
        5. header
-------------------------------------------------------------------*/

.header_information {
  float: left;
  width: 100%;
  border-bottom: solid #eee 1px;
  padding-bottom: 10px;
}

.header_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header_top {
  background: #f6f6f6;
  min-height: 45px;
  padding-bottom: 10px;
}

.heading_main h2 span {
  color: #0aceb1;
}

.header_bg_transparent {
  background: rgba(37, 37, 37, 0.2);
}

.left_head {
  float: left;
}

.left_head ul {
  margin: 12px 0 11px;
}

div.left_head ul li {
  display: inline;
  margin-right: 30px;
  font-size: 14px;
  color: #3f504d;
}

div.left_head ul li i {
  font-size: 16px;
  margin-right: 5px;
  color: #1e72bc;
}

.right_head {
  float: right;
}

.right_head .social_icon_part {
  float: left;
}

.right_head .button_section {
  float: right;
  width: auto;
}
/**-- logo --**/

.header_about_us {
  padding: 2px 0;
  position: fixed;
  z-index: 11 !important;
  width: 100%;
  background: #fff;
}

.logo {
  margin: 13px 0 13px;
  float: left;
}
/**-- menu --**/

.menu {
  width: 100%;
  margin: -1px 0 0;
}

.main_menu {
  margin: 20px 0 0;
}

.menu-container {
  margin: 0 auto;
  background: #e9e9e9;
}

.menu a.logo {
  display: inline-block;
  padding: 1.5em 3em;
  width: 19%;
  float: left;
}

.menu img {
  max-width: 100%;
}

.menu-mobile {
  display: none;
  padding: 20px;
}

.menu-mobile::after {
  content: "\f0c9";
  font-family: "fontawesome";
  position: relative;
  left: -2px;
  top: 2px;
}

.menu-dropdown-icon::before {
  content: "\f078";
  font-family: "fontawesome";
  display: none;
  cursor: pointer;
  float: right;
  padding: 16px 15px 16px;
  background: transparent;
  color: #333;
  border-left: solid #ddd 2px;
  font-size: 11px;
}

.menu > ul {
  margin: 0;
  width: 100%;
  list-style: none;
}

.menu > ul:before,
.menu > ul:after {
  content: "";
  display: table;
}

.menu > ul:after {
  clear: both;
}

.menu > ul > li {
  float: left;
  padding: 0;
  margin: 0;
}

.menu > ul > li a {
  padding: 15px 15px;
  display: block;
  color: #333;
  font-size: 20px;
}

.menu > ul > li:hover > a,
.menu > ul > li:focus > a,
.menu > ul > li.active > a {
  color: #f96495;
}

.menu > ul > li > ul {
  display: none;
  width: 100%;
  background-color: #fff;
  position: absolute;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  box-shadow: 0 15px 40px -20px #000;
  padding: 0;
  /*background-image: url('../images/landing_page/bg2.png');*/
  background-size: cover;
  background-position: right bottom;
  min-height: 420px;
  border-top: solid #1e72bc 5px;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li {
  margin: 0;
  list-style: none;
  width: 25%;
  background: none;
  float: left;
  padding: 15px 20px 0 20px;
  min-height: auto;
}

.menu > ul > li > ul > li:nth-child(4) {
  border-right: none;
}

.menu > ul > li > ul > li a {
  color: #222;
  padding: 0;
  width: 100%;
  display: block;
}

.menu > ul > li > ul > li a:hover {
  color: #1e72bc;
}

.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px;
}

.menu > ul > li > ul > li > ul > li a {
  border: 0;
  font-size: 13px;
  font-weight: 400;
}

.menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 15px 10px;
  min-height: auto;
  background-image: none;
}

.menu > ul > li > ul.normal-sub > li {
  width: 100%;
  padding: 10px 15px;
  min-height: auto;
}

.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  font-size: 13px;
  font-weight: 400;
}

.right_bt {
  float: right;
  margin-top: 23px;
}
/** social icon **/

.social_icons {
  float: right;
  margin: 9px 0 0px;
}

section .social_icons {
  width: 100%;
}

.social_icons li {
  display: inline;
  font-size: 15px;
  margin-left: 15px;
}

.social_icons li {
  display: inline;
  font-size: 14px;
  margin-left: 15px;
}

.social_icons li a {
  color: #222;
  font-size: 18px;
}

.social_icons li a:hover,
.social_icons li a:focus {
  color: #0aceb1;
}

.logo img {
  width: 235px;
  margin: 0;
}
/*------------------------------------------------------------------
        6. main banner
-------------------------------------------------------------------*/

.slide_cont {
  float: left;
  width: 100%;
  margin-top: 85px;
}

.slide_cont h2 {
  color: #fff;
  font-size: 55px;
  font-weight: 600;
  line-height: 60px;
  margin: 0;
  letter-spacing: -1px;
  margin-bottom: 30px;
}

#banner_parallax p,
#banner_slide p {
  color: #fff;
  font-weight: 300;
  margin-top: 10px;
  position: relative;
  left: 0;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
}

.slide_banner1 {
  /*background-image: url('../images/slide1.png');*/
  max-height: 560px;
  position: relative;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom center;
}

.slide_pc_img {
  position: relative;
  z-index: 1;
  margin-bottom: -130px;
}

.slide_pc_img img {
  margin-top: 110px;
  float: left;
  margin-right: 0;
  position: relative;
  right: 150px;
  margin-bottom: 0;
}

#banner_slide .cont_banner_center {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#banner_slide {
  position: relative;
}

#banner_slide img {
  width: 100%;
}

.home_page1 .slide_cont {
  margin-top: 135px;
}

.home_page1 #banner_slide {
  margin-bottom: -145px;
}

.slide_cont .bt_main {
  margin-top: 10px;
}
/**-- slide style 2 **/
/*------------------------------------------------------------------
        7. section
-------------------------------------------------------------------*/
/**-- main heading --**/

.heading_main {
  width: 100%;
  margin: 0 0 65px;
  letter-spacing: 0;
}

.full_heading {
  width: 100%;
  margin: 0;
}

.heading_style_1 h2::after {
  width: 110px;
  background: #ddd;
  content: "";
  display: block;
  margin: 15px 0 30px;
}

.white_heading_border h2::after {
  background: #fff !important;
}

.center_head_border h2:after,
.center_head_border:after {
  margin-left: auto !important;
  margin-right: auto !important;
}

.color_heading h4 {
  color: #1e72bc;
}

.double_line_heading h2 {
  line-height: 45px;
}

h3.heading_2 {
  font-size: 42px;
  text-transform: none;
  font-weight: 500;
  color: #32414d;
  letter-spacing: -0.5px;
  line-height: 42px;
  margin-bottom: 20px;
}

.feature_information p {
  font-size: 16px;
  line-height: 21px;
}
/**-- contant section --**/

.theme_bg {
  /*background-image: url('../images/bg_layout.png');*/
  background-size: cover;
  min-height: 650px;
  background-position: center;
}

.layout_screen {
  left: -150px;
  position: relative;
}

.cross_layout {
  position: relative;
}

.feature_box {
  min-height: 315px;
  padding: 45px 0 30px;
  margin-bottom: 30px;
  box-shadow: 0 20px 35px -20px rgba(0, 0, 0, 0.2);
}

.app-features li {
  padding-left: 100px;
  position: relative;
  margin: 25px 0 0;
  float: left;
  border-bottom: dotted 1px #ddd;
  padding-bottom: 25px;
}

.app-features li > i {
  position: absolute;
  left: 0;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #fff;
  font-size: 35px;
  font-weight: 500;
  transition: ease all 0.5s;
  top: 0;
  border: solid #0aceb1 2px;
  color: #0aceb1;
}

.app-features ul li:last-child {
  border-bottom: none;
}

.app-features li:hover > i,
.app-features li:focus > i {
  background: #1e72bc;
  border-color: #1e72bc;
  color: #fff;
}

.app-features h4 {
  text-transform: none;
  font-weight: 500;
  color: #666;
  margin-top: 10px;
  margin-bottom: 10px;
}

.gradiant_bg {
  /*background: url('../images/bg_gradinat.png');*/
  min-height: 420px;
  background-position: center center;
  background-size: cover;
}

.cross_layout {
  position: relative;
  overflow: hidden;
}

section.cross_layout {
  padding-top: 140px;
  padding-bottom: 70px;
}

section.cross_layout1 {
  padding-top: 40px;
  padding-bottom: 40px;
}

section.cross_layout2 {
  padding-top: 250px;
  padding-bottom: 70px;
}

.cross_layout::before {
  content: "";
  width: 100%;
  height: 120px;
  /*background: url('../images/top_layer.png');*/
  display: block;
  position: absolute;
  top: 0;
  background-size: 100% 100%;
}

.cross_layout::after {
  content: "";
  width: 100%;
  height: 120px;
  /*background: url('../images/bottom_layer.png');*/
  display: block;
  position: absolute;
  bottom: 0;
  background-size: 100% 100%;
}

.cont_theme_blog h3 {
  text-transform: uppercase;
  background: linear-gradient(to right, #1e72bc 0%, #30cfd0 100%);
  background: -webkit-linear-gradient(to right, #1e72bc 0%, #30cfd0 100%);
  background: -moz-linear-gradient(to right, #1e72bc 0%, #30cfd0 100%);
  background: -ms-linear-gradient(to right, #1e72bc 0%, #30cfd0 100%);
  background: -o-linear-gradient(to right, #1e72bc 0%, #30cfd0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: none;
  font-size: 55px;
  line-height: 60px;
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: 20px;
}

.cont_theme_blog p {
  font-size: 17px;
  line-height: normal;
  margin-top: 25px;
}
/*------------------------------------------------------------------
        8. price table
-------------------------------------------------------------------*/

.table_price {
  float: left;
  width: 100%;
  background: #fff;
  padding: 0 0 40px 0;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
  border: solid #fff 15px;
}

.table_price_head {
  background: #30cfd0;
  min-height: 80px;
}

.active_price .table_price_head {
  background: #1e72bc;
}

.table_price_head h5 {
  font-weight: 600;
  font-size: 21px;
  line-height: 80px;
  color: #fff;
}

.table_price_per {
  min-height: 122px;
  padding: 47px 0 0;
}

.table_price_per p {
  font-size: 45px;
  color: #1e72bc;
  font-weight: 600;
}

.table_price_per p small {
  font-size: 16px;
}

.table_price_cont_bottm {
  padding: 0 45px;
}

.table_price_cont_bottm ul {
  border-top: solid #ebebeb 2px;
  float: left;
  width: 100%;
  padding: 25px 0;
}

.table_price_cont_bottm ul li {
  float: left;
  width: 100%;
  font-size: 16px;
  color: #333;
  line-height: normal;
  margin: 6px 0;
}

.table_price_bottm {
  float: left;
  width: 100%;
  justify-content: center;
  display: flex;
}
/*------------------------------------------------------------------
        9. team section
-------------------------------------------------------------------*/

.team_imform p {
  margin: 0;
  text-align: center;
  color: #000;
  font-weight: 400;
}

.team_imform p.team_mem_name {
  color: #1e72bc;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 5px;
}

.team_imform {
  margin: 30px 0;
}
/*------------------------------------------------------------------
        10. blog section
-------------------------------------------------------------------*/

.blog_section {
  background: #fff;
  box-shadow: 0 20px 35px -25px rgba(0, 0, 0, 0.4);
  margin-top: 10px;
}

.white_bg .blog_section {
  padding: 15px 0;
}

.blog_feature_cantant {
  padding: 30px 25px 20px;
}

.blog_feature_cantant .blog_head {
  font-size: 18px;
  color: #000;
  font-weight: 400;
}

.post_info {
  color: #000;
  font-size: 14px;
  margin-bottom: 10px;
  width: 100%;
}

.post_info ul li {
  display: inline;
  margin-right: 10px;
  color: #555;
  font-size: 14px;
}

.blog_feature_cantant p {
  color: #555555;
}

.post_info ul li i {
  color: #1e72bc;
}
/*------------------------------------------------------------------
        11. contact section
-------------------------------------------------------------------*/

.contact_section {
  background-image: url(/images/cu.png);
  height: auto;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.contact_section1 {
  background-image: url(/images/mobcontact.jpg);
  height: auto;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.contact_form {
  min-height: 600px;
  padding: 80px 70px;
  background-size: cover;
}

.contact_form.contact_inform {
  min-height: auto;
  float: left;
  width: 100%;
}

.contact_form_inner {
  max-width: 430px;
}

.contact_form p {
  color: #fff;
}

.contact_form.contact_inform p.inform_label {
  color: #898989;
  text-transform: uppercase;
  font-weight: normal;
  margin: 0;
}

.contact_form.contact_inform p.inform_cont {
  font-size: 18px;
  color: #000;
}

.contact_form_layout .contact_form {
  padding: 0;
  margin-top: 10px;
}

.contact_form_layout .field input {
  border: solid #e1e1e1 1px;
  height: 45px;
}

.contact_form_layout .field textarea {
  border: solid #e1e1e1 1px;
  height: 160px;
  padding: 15px 30px;
}

.contact_form_layout .contact_form {
  min-height: auto;
}

.golde_yellow_theme .dark_footer .footer_bottom div.center ul li {
  margin: 0 10px;
}
/**-- map --**/

#map {
  height: 100%;
  min-height: 790px;
}
/**-- form --**/

.field input {
  width: 100%;
  margin-top: 10px;
  border: none;
  min-height: 45px;
  padding: 0 25px;
  line-height: 45px;
  font-size: 14px;
}

.field textarea {
  width: 100%;
  margin-top: 10px;
  border: none;
  font-size: 14px;
  min-height: 100px;
  padding: 30px 25px;
}
/*------------------------------------------------------------------
        12. footer
-------------------------------------------------------------------*/

.footer_style_2 {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
}

footer {
  background-color: #8ab77d;
}

.footer_logo {
  text-align: center;
  margin-bottom: 50px;
}

.footer_top {
  padding-bottom: 50px;
}

.footer_blog {
  display: flex;
}

.footer_icon {
  margin-right: 15px;
}

.footer_cont h4 {
  font-size: 18px;
  color: #000;
  font-weight: 400;
  text-transform: none;
  margin: 0 0 7px 0;
}

.footer_blog_2 h3 {
  font-weight: 500;
  font-size: 24px;
  text-transform: none;
  margin: 0 0 25px 0;
  line-height: 30px;
}

.footer_cont p {
  color: #555555;
  line-height: 20px;
  font-size: 14px;
}

.footer_bottom {
  min-height: 50px;
  text-align: center;
  line-height: 50px;
  background: #79676a;
}

.footer_bottom p {
  margin: 0;
  line-height: 50px;
  color: #fff;
  text-align: center !important;
  padding: 0;
}

.footer_bottom p strong {
  color: #fff;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 20px;
  display: block;
  width: 100%;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
  padding-bottom: 20px;
}

.footer-links li:last-child {
  border-bottom: none;
}

.footer-links a {
  color: #999;
}

.footer-links a:hover,
.footer a:hover {
  color: #1e72bc !important;
}

.footer-links a i {
  font-size: 20px;
  position: relative;
  top: 1px;
  margin-right: 15px;
}

.blog_post_footer {
  display: flex;
  margin-bottom: 15px;
}

.blog_post_footer .blog_post_img {
  margin-right: 20px;
}

.blog_post_cont {
  padding: 8px 0;
}

.date {
  font-size: 12px;
  color: #999;
  margin: 0;
  font-weight: 500;
}

.post_head {
  color: #333;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 0;
}
/**== dark footer ==**/

.dark_footer {
  background: #1f222a;
}

.dark_footer h3 {
  color: #fff !important;
}

.dark_footer .post_head {
  color: #fff !important;
}

.dark_footer .footer_bottom strong {
  color: #fff !important;
}

.dark_footer .footer_bottom {
  border-color: rgba(255, 255, 255, 0.1);
}
/*------------------------------------------------------------------
	13. brand logo 
-------------------------------------------------------------------*/

.brand_logo_section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.brand_logo_section li {
  width: 16.66%;
  float: left;
  text-align: center;
  align-items: center;
  display: flex;
  min-height: 100px;
  justify-content: center;
}

.brand_logo_section img {
  width: auto;
}
/*------------------------------------------------------------------
	14. portfolio 
-------------------------------------------------------------------*/

.portfolia_blog_style1 {
  position: relative;
}

.portfolia_img img {
  width: 100%;
}

.portfolia_blog_style1 .portfolia_cont {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  transform: scale(0);
  transition: ease all 0.3s;
  opacity: 0;
  overflow: hidden;
}

.portfolia_blog_style1:hover .portfolia_cont,
.portfolia_blog_style1:focus .portfolia_cont {
  transform: scale(1);
  opacity: 1;
}

.portfolia_cont p {
  color: #fff;
  font-size: 16px;
  padding: 0 45px;
  line-height: normal;
}
/** pagination **/

.pagination_section {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

ul.pagination .page-item a {
  height: 40px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 40px;
  padding: 0;
  min-width: 40px;
  text-align: center;
  color: #898989;
}

ul.pagination li.page-item:first-child .page-link,
ul.pagination li.page-item:last-child .page-link {
  border-radius: 0;
  padding: 0 20px;
  background: #f8f8f8;
}

ul.pagination li.page-item.active .page-link {
  background: #ffb125;
  color: #fff;
  border-color: #ffb125;
}
/** imformation blog **/

.imf_icon img {
  width: 125px;
  height: 125px;
}

.imf_icon {
  width: 120px;
  height: 120px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin: -120px auto 20px;
  padding: 25px;
  background: #fff;
}

.information_blogs {
  background: #eaeaea;
  padding: 40px 40px;
  text-align: center;
  margin-top: 65px;
  height: 250px;
  padding-left: 0px;
  padding-right: 0px;
}

.information_blogs h3 {
  font-size: 24px;
  font-weight: 300;
  text-transform: none;
  margin-bottom: 15px;
}

.information_blogs_white_left {
  background: #ffffff;
  padding: 40px 40px;
  text-align: center;
  margin-top: 85px;
  margin-bottom: 50px;
  margin-left: 38px;
  margin-right: 30px;
  height: 290px;
  padding-left: 0px;
  padding-right: 0px;
}

.information_blogs_white_left h3 {
  font-size: 24px;
  font-weight: 300;
  text-transform: none;
  margin-bottom: 15px;
}

.information_blogs_white_right {
  background: #ffffff;
  padding: 40px 40px;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 25px;
  margin-right: 150px;
  height: 225px;
  padding-left: 0px;
  padding-right: 0px;
}

.information_blogs_white_right h3 {
  font-size: 24px;
  font-weight: 300;
  text-transform: none;
  margin-bottom: 15px;
}

.inner_page_banner + .layout_padding {
  padding-top: 0 !important;
}
/**-- step section --**/

.step_inner {
  width: 100%;
  position: relative;
}

.step_inner p {
  font-size: 21px;
  margin: 20px 0 0 0;
  font-weight: 400;
  position: relative;
  color: #fff;
  letter-spacing: -0.5px;
  text-align: center;
}

.step_inner i {
  font-size: 65px;
  margin-bottom: 0;
  color: #fff;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: normal;
  text-align: center;
}

.step_blog {
  margin-bottom: 35px;
}

.scren {
  float: left;
  width: 25%;
}

.bg-grey {
  background-color: #eaeaea;
}

.flip-card {
  background: #eaeaea;
  width: 100%;
  height: 300px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  background: #ffffff !important;
}

.flip-card-front,
.flip-card-back {
  background: #eaeaea;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 0;
  -webkit-transform: translate3d(0, 0, 0);
  visibility: visible;
  padding: 10px;
}

.flip-card-front {
  color: black;
}

.flip-card-back {
  color: #000000;
  transform: rotateY(180deg);
}

.pad {
  padding: 20px 20px 20px 20px;
}

.logo-alignment {
  float: left;
}

.carousel-control.left {
  background-image: none !important;
}

.carousel-control.right {
  background-image: none !important;
}
/* On screens that are 992px or less, set the background color to blue */

@media screen and (max-width: 992px) {
  .pad {
    padding: 20px 20px 20px 20px;
  }
}
/* On screens that are 600px or less, set the background color to olive */

@media screen and (max-width: 600px) {
  .pad {
    padding: 20px 50px 20px 50px !important;
  }
  .information_blogs_white_left {
    background: #ffffff;
    padding: 40px 40px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    height: 345px !important;
  }
  .information_blogs_white_right {
    background: #ffffff;
    padding: 40px 40px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    height: 310px !important;
  }
  .logo-alignment {
    text-align: center !important;
    margin-left: 30%;
  }
}

.field1 input {
  width: 100%;
  margin-top: 10px;
  min-height: 45px;
  padding: 0 25px;
  line-height: 45px;
  font-size: 14px;
  margin-bottom: 15px;
}

.newspaper {
  column-count: 3;
  column-gap: 40px;
}

.five-column {
  column-count: 5;
  column-gap: 20px;
}

.alice-carousel ul li img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.searchTerm {
  width: 100%;
  border: 3px solid #eaeaea;
  border-right: none;
  padding: 5px;
  height: 40px;
  margin-top: 5px;
  outline: none;
  background-color: #eaeaea;
}

.searchTerm:focus {
  color: #f96495;
}

.searchButton {
  width: 40px;
  height: 40px;
  border: 1px solid #f96495;
  background: #f96495;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 14px;
  margin-top: 5px;
}

.searchButton1 {
  width: 100%;
  height: 40px;
  border: 1px solid #f96495;
  background: #f96495;
  text-align: center;
  color: #fff;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 5px;
}

.blink {
  color: red;
  font-size: 11px;
}

.listing_product {
  background-image: url(/images/dw.jpg);
  height: 360px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  margin-top: 112px;
}

.listing_product1 {
  height: 360px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  margin-top: 112px;
}

.third-column {
  column-count: 3;
  column-gap: 30px;
}

.newspaper {
  column-count: 7;
  column-gap: 10px;
  margin-top: -13px;
  margin-bottom: 17px;
}

.parent1 {
  display: block;
  position: relative;
  z-index: 1;
}

.parent1 a {
  color: #ffffff;
  text-decoration: none;
}

.parent1:hover > ul {
  display: block;
  position: absolute;
}

.child1 {
  display: none;
}

.child1 li {
  background-color: #ffffff;
  line-height: 30px;
  width: 135px;
}

.child1 li a {
  color: #000000;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0px;
  min-width: 10em;
}

ul ul ul {
  left: 100%;
  top: 0;
  margin-left: 1px;
}

.parent li:hover {
  background-color: #ccc;
}

.expand1 {
  font-size: 12px;
  float: right;
  margin-right: 5px;
}

.dropdown3 {
  position: relative;
  display: inline-block;
}

.dropdown-content3 {
  display: none;
  position: absolute;
  background-color: white;
  width: 175px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  z-index: 3;
  margin-left: 20px;
}

.dropdown3:hover .dropdown-content3 {
  display: block;
}

.dropdown2 {
  position: relative;
  display: inline-block;
}

.dropdown-content2 {
  display: none;
  position: absolute;
  background-color: white;
  width: 400px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  z-index: 3;
  margin-left: -230px;
}

.dropdown2:hover .dropdown-content2 {
  display: block;
}

@media (min-width: 768px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 100%;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 14.285714285714285714285714285714%;
    width: 14.285714285714285714285714285714%;
  }
}
/**
   *  The following is not really needed in this case
   *  Only to demonstrate the usage of @media for large screens
   */

@media (min-width: 1200px) {
  .seven-cols .col-md-1,
  .seven-cols .col-sm-1,
  .seven-cols .col-lg-1 {
    width: 14.285714285714285714285714285714%;
    width: 14.285714285714285714285714285714%;
  }
}

.fa-stack[data-count]:after {
  position: absolute;
  right: 0%;
  top: 0%;
  content: attr(data-count);
  font-size: 40%;
  padding: 0.6em;
  border-radius: 999px;
  line-height: 0.75em;
  color: white;
  color: #111111;
  text-align: center;
  min-width: 2em;
  font-weight: bold;
  background: white;
  border-style: solid;
}

.fa-circle {
  color: #111111;
}

.red-cart {
  color: #111111;
  background: white;
}

.example {
  position: relative;
  padding: 0;
  width: 350px;
  display: block;
  cursor: pointer;
  overflow: hidden;
}

.content {
  opacity: 0;
  font-size: 20px;
  position: absolute;
  top: 0px;
  left: 0;
  color: #1c87c9;
  background-color: rgba(200, 200, 200, 0.5);
  width: 350px;
  height: 350px;
  -webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  -ms-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
  text-align: center;
}

.example .content:hover {
  opacity: 1;
}

.example .content .text {
  height: 0;
  opacity: 1;
  transition-delay: 0s;
  transition-duration: 0.4s;
}

.example .content:hover .text {
  opacity: 1;
  transform: translateY(250px);
  -webkit-transform: translateY(250px);
}
/* relevant styles */

.img__wrap {
  position: relative;
  height: 300px;
  width: 300px;
}

.img__description_layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(23, 35, 51, 0.6);
  color: #f96495;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transition effect. not necessary */
  transition: opacity 0.2s, visibility 0.2s;
}

.img__wrap:hover .img__description_layer {
  visibility: visible;
  opacity: 1;
}

.img__description {
  transition: 0.2s;
  transform: translateY(1em);
}

.img__wrap:hover .img__description {
  transform: translateY(0);
}

.img__wrap1 {
  position: relative;
  height: 550px;
  width: 380px;
}

.img__description_layer1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(23, 35, 51, 0.6);
  color: #f96495;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transition effect. not necessary */
  transition: opacity 0.2s, visibility 0.2s;
}

.img__wrap1:hover .img__description_layer1 {
  visibility: visible;
  opacity: 1;
}

.img__description1 {
  transition: 0.2s;
  transform: translateY(1em);
}

.img__wrap1:hover .img__description1 {
  transform: translateY(0);
}

.f14 {
  font-size: 14px;
}

.loading {
  width: 100%;
  text-align: center;
  vertical-align: center;
  z-index: 9999;
  opacity: 10;
}

.overlay {
  background: #e9e9e9;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding-top: 10px;
}

#cover-spin {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#cover-spin::after {
  content: "";
  display: block;
  position: absolute;
  left: 48%;
  top: 40%;
  width: 40px;
  height: 40px;
}

.column {
  float: left;
  width: 20%;
}

.column1 {
  float: left;
  width: 33.33%;
}

.pl-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.example1 {
  position: relative;
  padding: 0;
  width: 550px;
  display: block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 40px;
  border: 2px solid black;
}

form.example1 input[type="text"] {
  padding: 10px;
  font-size: 17px;
  border: 1px solid grey;
  float: left;
  width: 90%;
  background: #f1f1f1;
}

form.example1 button {
  float: left;
  width: 10%;
  padding: 10px;
  background: #8ab77d;
  color: white;
  font-size: 17px;
  border: 1px solid grey;
  border-left: none;
  cursor: pointer;
}

form.example1 button:hover {
  background: #8ab77d;
}

form.example1::after {
  content: "";
  clear: both;
  display: table;
}

.third-c {
  column-count: 3;
  column-gap: 10px;
}

.margin_25px {
  margin-left: -34px;
}

.redData {
  border: 1px solid red;
}

.transparent {
  background-color: transparent !important;
  box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.075);
}

.left-border-none {
  border-left: none !important;
  box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.075);
}

.marginTopData {
  margin-top: -28px;
}

.locButton {
  margin-top: 20px;
  background-color: rgb(138, 183, 125);
  width: 145px;
  height: 36px;
  padding: 8px;
  border-radius: 23px;
}

.vendor {
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-right: 30vw solid transparent;
  position: absolute;
  left: -30%;
  top: 0px;
  border-bottom: 100vh solid rgba(255, 120, 85, 0.5160189075630253);
  transform: rotate(180deg);
}
.ven-main-container {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100vh;
}
.login-center {
  position: absolute;
  right: 0;
  margin: 20px;
  max-width: 300px;
  padding: 16px;
  background-color: white;
}
/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.container-login100::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.wrap-login100 {
  width: 500px;
  border-radius: 10px;
  overflow: hidden;
  padding: 55px 55px 37px 55px;
  border: groove;
}
/*------------------------------------------------------------------
  [ Form ]*/

.login100-form {
  width: 100%;
}

.login100-form-logo {
  font-size: 60px;
  color: #333333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.login100-form-title {
  font-family: Poppins-Medium;
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  display: block;
}
/*------------------------------------------------------------------
  [ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid rgba(255, 255, 255, 0.24);
  margin-bottom: 30px;
}

.input100 {
  font-family: Poppins-Regular;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px 0 38px;
}
/*---------------------------------------------*/

.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: #fff;
}

.focus-input100::after {
  font-family: Material-Design-Iconic-Font;
  font-size: 22px;
  color: #fff;
  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 6px;
  left: 0px;
  padding-left: 5px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus {
  padding-left: 5px;
}

.input100:focus + .focus-input100::after {
  top: -22px;
  font-size: 18px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  top: -22px;
  font-size: 18px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.has-val.input100 {
  padding-left: 5px;
}
/*==================================================================
  [ Restyle Checkbox ]*/

.contact100-form-checkbox {
  padding-left: 5px;
  padding-top: 5px;
  padding-bottom: 35px;
}

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #fff;
  line-height: 1.2;
  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox100::before {
  content: "\f26b";
  font-family: Material-Design-Iconic-Font;
  font-size: 13px;
  color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
  color: #555555;
}
/*------------------------------------------------------------------
  [ Button ]*/

.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  font-family: Poppins-Medium;
  font-size: 16px;
  color: #555555;
  line-height: 1.2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 120px;
  height: 50px;
  border-radius: 25px;
  background: #9152f8;
  background: -webkit-linear-gradient(bottom, #7579ff, #b224ef);
  background: -o-linear-gradient(bottom, #7579ff, #b224ef);
  background: -moz-linear-gradient(bottom, #7579ff, #b224ef);
  background: linear-gradient(bottom, #7579ff, #b224ef);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #fff;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  color: #fff;
}

.login100-form-btn:hover:before {
  opacity: 0;
}
/*------------------------------------------------------------------
  [ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 55px 15px 37px 15px;
  }
}

.screen-image {
  background: url(/images/Picture2.png);
  width: 100%;
  height: 200px;
}

.vendor-circle {
  height: 171px;
  border: 2px solid black;
  font-weight: bold;
  color: black;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  padding: 15px 50px;
  background-color: beige;
  box-shadow: 10px 10px 5px grey;
}

.vendor-circle1 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eb5630;
  color: white;
  height: 60px;
  font-size: 20px;
  width: 100%;
}
.vendor-circle1:hover {
  color: black;
}

.pad10 {
  padding: 15px;
  font-size: 12px;
}

th {
  text-align: center;
}

@media print {
  .printThisFull {
    width: 100%;
    height: auto;
    page-break-after: always;
  }
}

.mydiv {
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.imgData {
  width: 600px;
  height: 1000px;
}

@media all {
  .page-break {
    display: none;
  }
}

@media print {
  .page-break {
    display: block;
    page-break-before: always;
  }
  .page-right {
    font-size: 15px;
    text-align: right !important;
  }
}

@media print {
  @page {
    size: auto;
    margin: 0mm;
  }
}

@media print {
  header,
  footer {
    display: none;
  }
}

@media print {
  .rotate {
    transform: rotate(90deg) translateY(-100%);
    transform-origin: top left;
  }
}

@media print {
  tr.divFooter {
    position: fixed;
    bottom: 0;
  }
}

.pad5 {
  padding: 5px;
  font-size: 12px;
}

.highcharts-figure,
.highcharts-data-table table {
  min-width: 320px;
  max-width: 800px;
  margin: 1em auto;
}

.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #ebebeb;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}

.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
  padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}

.highcharts-data-table tr:hover {
  background: #f1f7ff;
}

.form-control-data {
  display: block;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
}
/* For Vendor Part   */

.buttonprimary {
  background-color: black;
  color: white;
  cursor: pointer;
  /* border: 2px solid grey; */
  padding: 10px 10px;
  box-shadow: 0px 0px 10px 0px black;
  font-weight: bold;
  border-radius: 25px;
}

.page-actions-buttons {
  display: flex;
  font-size: 1.4rem;
  letter-spacing: 0.025em;
}

.pad-5 {
  padding: 5px 5px;
}
/*----AddVendorContainer-----*/

.secnd_cont {
  background: #eeee;
  padding: 1.5rem;
  border-top: 2px solid #e3e3e3;
  border-bottom: 2px solid #e3e3e3;
}

.admin__field {
  margin: 0 30px 29px;
}

.field input {
  width: 70%;
  border: 1px solid black;
  min-height: 40px;
}

.input-text {
  min-height: 40px;
  width: 70%;
  padding-top: 4px;
}

.vendr {
  background: #eeee;
  height: 100px;
  padding: 22px;
  margin-left: -12px;
  width: 90%;
  border: 2px solid #e3e3e3;
}

.vendr p {
  font-size: 20px;
}

.txt_ara5 {
  height: 250px;
  margin-bottom: -215px;
}

.strtt1 {
  margin-top: 33%;
}

.slct_cntrl {
  height: 40px;
  width: 10%;
}

.admin__page-nav-item .ui-state-active .admin__page-nav-link {
  background: #fff;
  border-color: #e3e3e3;
  border-right: 1px solid #fff;
  color: #303030;
  margin-right: -1px;
}

.admin__page-nav-item .ui-state-active {
  border-color: #eb5202;
}

.slct_cntr2 {
  height: 20px;
}
.nav-link-cat:active {
  background-color: red !important;
}
.categories-details.nav-item.show,
.categories-details .nav-link.active {
  height: 100%;
  color: #fff;
  background-color: #ea542e;
}
.categories-details.nav-item .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.vendor-location {
  margin-top: 1%;
  float: left;
  margin-right: 1%;
  margin-bottom: 2%;
  width: auto;
  cursor: pointer;
  padding: 2% 3% 1% 4%;
  background-color: #fff;
  border: 1px solid gainsboro;
  box-shadow: 0px 0px 5px 0px black;
  min-width: 250px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* For User-settings: */

.vendor-user-setting-table-head {
  text-size-adjust: 100%;
  color: #41362f;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.36;
  font-size: 1.4rem;
  box-sizing: inherit;
  overflow-x: scroll;
}

.admin__table-secondary .vendor-location-user-table-class {
  text-size-adjust: 100%;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.36;
  font-size: 1.4rem;
  box-sizing: inherit;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent;
  color: #303030;
  width: 100%;
}

.admin__table-secondary thead th {
  background-color: transparent;
  font-weight: 600;
}

.admin__table-secondary th {
  color: #676056;
  font-weight: 400;
}

.admin__table-secondary th,
.admin__table-secondary td {
  text-align: center;
  padding: 0px 5px 0px 5px !important;
}

.admin__table-secondary tbody tr:nth-child(odd) th,
.admin__table-secondary tbody tr:nth-child(odd) td {
  background-color: #f1f1f1;
}

.admin__table-secondary th {
  padding: 0px 5px 0px 5px !important;
  text-align: center;
  height: 30px !important;
  /* display: flex; */
  background-color: black !important;
  color: white;
  border: 1px solid;
}

.admin__scope-old input[type="text"],
.admin__scope-old input[type="password"],
.admin__scope-old input[type="datetime"],
.admin__scope-old input[type="datetime-local"],
.admin__scope-old input[type="date"],
.admin__scope-old input[type="month"],
.admin__scope-old input[type="time"],
.admin__scope-old input[type="week"],
.admin__scope-old input[type="number"],
.admin__scope-old input[type="range"],
.admin__scope-old input[type="email"],
.admin__scope-old input[type="url"],
.admin__scope-old input[type="search"],
.admin__scope-old input.search,
.admin__scope-old input[type="tel"],
.admin__scope-old input[type="color"],
.admin__scope-old textarea,
.admin__scope-old select {
  box-sizing: border-box;
  border: 1px solid #adadad;
  border-radius: 1px;
  padding: 0.6rem 1rem 0.6rem;
  color: #303030;
  background-color: #fff;
  font-weight: 500;
  font-size: 14px;
  height: 33px;
}

input {
  line-height: normal;
}

.admin__scope-old select:not([multiple]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: inline-block;
  line-height: normal;
  min-width: 80px;
  background-repeat: no-repeat;
  /* background-image: url(../images/arrows-bg.svg),
    linear-gradient(#e3e3e3, #e3e3e3), linear-gradient(#adadad, #adadad); */
  background-position: calc(100% - 12px) -34px, 100%, calc(100% - 33px) 0;
  background-size: auto, 33px 100%, 1px 100%;
  padding-right: 44px;
}

.admin__scope-old input[type="text"],
.admin__scope-old input[type="password"],
.admin__scope-old input[type="datetime"],
.admin__scope-old input[type="datetime-local"],
.admin__scope-old input[type="date"],
.admin__scope-old input[type="month"],
.admin__scope-old input[type="time"],
.admin__scope-old input[type="week"],
.admin__scope-old input[type="number"],
.admin__scope-old input[type="range"],
.admin__scope-old input[type="email"],
.admin__scope-old input[type="url"],
.admin__scope-old input[type="search"],
.admin__scope-old input.search,
.admin__scope-old input[type="tel"],
.admin__scope-old input[type="color"],
.admin__scope-old textarea,
.admin__scope-old select {
  box-sizing: border-box;
  border: 1px solid #adadad;
  border-radius: 1px;
  padding: 0.6rem 1rem 0.6rem;
  color: #303030;
  background-color: #fff;
  font-weight: 500;
  font-size: 14px;
  height: 33px;
}

.addNewUser_xy {
  text-align: center;
  font-weight: 700;
}

.cont {
  height: 200px;
  position: relative;
}

.cent {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.buttonprime {
  background-color: #eb5202;
  border-color: #eb5202;
  width: 150px;
  color: #fff;
  text-shadow: 1px 1px 0 rgb(0 0 0 / 25%);
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + label,
select {
  display: inline-block;
  width: auto;
  text-align: center;
  float: none;
  border-radius: 0;
}

input[type="radio"] + label:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

input[type="radio"] + label:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

input[type="radio"] + label i {
  padding-right: 0.4em;
}

input[type="radio"]:checked + label,
input:checked + label:before,
select:focus,
select:active {
  color: #fff;
}

input[type="checkbox"] {
  display: block;
}

input[type="checkbox"] + label {
  position: relative;
  display: block;
  padding-left: 1.6em;
}

input[type="checkbox"] + label:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  padding: 0;
  content: "";
}

.vendor-user-setting-table-head {
  text-size-adjust: 100%;
  color: #41362f;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.36;
  font-size: 1.4rem;
  box-sizing: inherit;
  overflow: auto !important;
}

input[type="checkbox"] + label:after {
  position: absolute;
  top: 0.45em;
  left: 0.2em;
  font-size: 0.8em;
  color: #fff;
  opacity: 0;
  font-family: FontAwesome;
  content: "\f00c";
}

input:checked + label:after {
  opacity: 1;
}

select {
  height: 3.4em;
  line-height: 2;
}

select:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

select:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

select:focus,
select:active {
  outline: 0;
}

select option {
  color: black;
}

.input-group {
  margin-bottom: 1em;
  zoom: 1;
}

.input-group:before,
.input-group:after {
  content: "";
  display: table;
}

.input-group:after {
  clear: both;
}

.input-group-icon {
  position: relative;
}

.input-group-icon input {
  padding-left: 4.4em;
}

.input-group-icon .input-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.4em;
  height: 3.4em;
  line-height: 3.4em;
  text-align: center;
  pointer-events: none;
  padding-top: 10px;
}

.input-group-icon .input-icon:after {
  position: absolute;
  top: 0.6em;
  bottom: 0.6em;
  left: 3.4em;
  display: block;
  border-right: 1px solid #e5e5e5;
  content: "";
  /* -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out; */
}
/* .input-group-icon .input-icon i {
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
} */

input,
input[type="radio"] + label,
input[type="checkbox"] + label:before,
select option,
select {
  width: auto;
  padding: 1em;
  line-height: 1.4;
  /* background-color: #f9f9f9; */
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  /* -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  transition: all 0.35s ease-in-out; */
}

.dropdown_adjst {
  padding-left: 55px;
  width: auto;
}

.buttonprimaryadj {
  height: 45px;
  padding: 5px 5px;
}

select {
  height: 3.6em;
  line-height: 2;
}

.react-responsive-modal-modal {
  height: 494px;
  width: 100%;
}
.vendor-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.vendor-items {
  width: 100%;
  padding: 0px 40px;
}
.table-wrapper {
  overflow-y: auto;
}

.table-wrapper .ReactTable .rt-thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.table-wrapper .ReactTable .rt-thead .rt-th {
  position: sticky;
  top: 0;
  z-index: 3;
}

.table-wrapper .ReactTable .rt-thead.-filters {
  position: sticky;
  top: 35px;
  z-index: 2;
  background: white;
}
.dropdown-multi {
  position: relative;
  display: contents;
}

.dropdown-button {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: white;
  cursor: pointer;
  height: 40px;
  box-shadow: 0px 0px 2px 0px black;
  border: 1px solid grey;
  background-color: #fff !important;
  color: black !important;
}

.dropdown-contents {
  display: block;
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 100%;
  max-height: 150px;
  overflow-y: auto;
}

.dropdown-contents label {
  padding: 5px 8px;
  cursor: pointer;
  display: flex;
}
.selected-option {
  background-color: #1c87c9;
  color: white;
}
.down-arrow {
  right: 6px;
  position: absolute;
  height: 100%;
  display: flex;
  top: 0px;
  rotate: 90deg;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* advertisement style */
.inlineupdateRuleButton {
  width: 60px;
  height: 40px;
  border-radius: 100px;
  padding: 0;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 10px;
  color: #fff;
  left: 12px;
}

.small-table-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  margin: 20px auto; /* Center horizontally and add auto margins */
  width: 60%; /* Adjust the width of the container */
  column-gap: 33%;
}

.small-table {
  font-size: 14px; /* Adjust font size as needed */
  width: 100%; /* Full width of the table container */
  border-collapse: collapse; /* Collapse table borders */
}

.small-table .rt-thead.-header {
  font-weight: bold; /* Header font weight */
  text-align: center; /* Header text alignment */
}

.small-table .rt-th,
.small-table .rt-td {
  padding: 10px; /* Adjust cell padding */
  text-align: center; /* Cell text alignment */
}

.small-table .rt-tfoot .rt-td {
  padding: 10px; /* Adjust footer cell padding */
  text-align: center; /* Footer cell text alignment */
}

.tableInput-budget{
  width: 70px;
  display: flex;
  text-align: center;
  cursor: pointer;
  background: white;
  cursor: pointer;
  border: 1px solid rgb(222, 91, 145);
  padding: 5px;
  border-radius: 4px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.react-table {
  max-height: 600px; /* Adjust the height as needed */
  overflow-y: auto;
  overflow-x: auto;
}.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  margin-left: -8px;
  position: absolute;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  box-sizing: content-box;
  position: absolute;
  border: 8px solid transparent;
  height: 0;
  width: 1px;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  content: "";
  z-index: -1;
  border-width: 8px;
  left: -8px;
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle {
  top: 0;
  margin-top: -8px;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle, .react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
  border-top: none;
  border-bottom-color: #f0f0f0;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle::before {
  top: -1px;
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  bottom: 0;
  margin-bottom: -8px;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle, .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  border-bottom: none;
  border-top-color: #fff;
}

.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle::before, .react-datepicker__year-read-view--down-arrow::before,
.react-datepicker__month-read-view--down-arrow::before,
.react-datepicker__month-year-read-view--down-arrow::before {
  bottom: -1px;
  border-top-color: #aeaeae;
}

.react-datepicker-wrapper {
  display: inline-block;
}

.react-datepicker {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
}

.react-datepicker--time-only .react-datepicker__triangle {
  left: 35px;
}

.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}

.react-datepicker--time-only .react-datepicker__time {
  border-radius: 0.3rem;
}

.react-datepicker--time-only .react-datepicker__time-box {
  border-radius: 0.3rem;
}

.react-datepicker__triangle {
  position: absolute;
  left: 50px;
}

.react-datepicker-popper {
  z-index: 1;
}

.react-datepicker-popper[data-placement^="bottom"] {
  margin-top: 10px;
}

.react-datepicker-popper[data-placement^="top"] {
  margin-bottom: 10px;
}

.react-datepicker-popper[data-placement^="right"] {
  margin-left: 8px;
}

.react-datepicker-popper[data-placement^="right"] .react-datepicker__triangle {
  left: auto;
  right: 42px;
}

.react-datepicker-popper[data-placement^="left"] {
  margin-right: 8px;
}

.react-datepicker-popper[data-placement^="left"] .react-datepicker__triangle {
  left: 42px;
  right: auto;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  padding-top: 8px;
  position: relative;
}

.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 2px;
}

.react-datepicker__current-month,
.react-datepicker-time__header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  background: none;
  line-height: 1.7rem;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  width: 0;
  padding: 0;
  border: 0.45rem solid transparent;
  z-index: 1;
  height: 10px;
  width: 10px;
  text-indent: -999em;
  overflow: hidden;
}

.react-datepicker__navigation--previous {
  left: 10px;
  border-right-color: #ccc;
}

.react-datepicker__navigation--previous:hover {
  border-right-color: #b3b3b3;
}

.react-datepicker__navigation--previous--disabled, .react-datepicker__navigation--previous--disabled:hover {
  border-right-color: #e6e6e6;
  cursor: default;
}

.react-datepicker__navigation--next {
  right: 10px;
  border-left-color: #ccc;
}

.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 80px;
}

.react-datepicker__navigation--next:hover {
  border-left-color: #b3b3b3;
}

.react-datepicker__navigation--next--disabled, .react-datepicker__navigation--next--disabled:hover {
  border-left-color: #e6e6e6;
  cursor: default;
}

.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.react-datepicker__navigation--years-previous {
  top: 4px;
  border-top-color: #ccc;
}

.react-datepicker__navigation--years-previous:hover {
  border-top-color: #b3b3b3;
}

.react-datepicker__navigation--years-upcoming {
  top: -4px;
  border-bottom-color: #ccc;
}

.react-datepicker__navigation--years-upcoming:hover {
  border-bottom-color: #b3b3b3;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 70px;
}

.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -72px;
  top: 0;
}

.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 70px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + (1.7rem / 2));
  overflow-y: scroll;
  padding-right: 0px;
  padding-left: 0px;
  width: 100%;
  box-sizing: content-box;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}

.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}

.react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}

.react-datepicker__day-names,
.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__day {
  cursor: pointer;
}

.react-datepicker__day:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}

.react-datepicker__day--today {
  font-weight: bold;
}

.react-datepicker__day--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}

.react-datepicker__day--highlighted:hover {
  background-color: #32be3f;
}

.react-datepicker__day--highlighted-custom-1 {
  color: magenta;
}

.react-datepicker__day--highlighted-custom-2 {
  color: green;
}

.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}

.react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover {
  background-color: #1d5d90;
}

.react-datepicker__day--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #2a87d0;
  color: #fff;
}

.react-datepicker__day--keyboard-selected:hover {
  background-color: #1d5d90;
}

.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range) {
  background-color: rgba(33, 107, 165, 0.5);
}

.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range) {
  background-color: #f0f0f0;
  color: #000;
}

.react-datepicker__day--disabled {
  cursor: default;
  color: #ccc;
}

.react-datepicker__day--disabled:hover {
  background-color: transparent;
}

.react-datepicker__input-container {
  position: relative;
  display: inline-block;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
}

.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}

.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: #b3b3b3;
}

.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  border-top-color: #ccc;
  float: right;
  margin-left: 20px;
  top: 8px;
  position: relative;
  border-width: 0.45rem;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}

.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}

.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}

.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #b3b3b3;
}

.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: #b3b3b3;
}

.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: 0;
  padding: 0;
  vertical-align: middle;
  position: absolute;
  height: 16px;
  width: 16px;
  top: 25%;
  right: 7px;
}

.react-datepicker__close-icon::after {
  background-color: #216ba5;
  border-radius: 50%;
  bottom: 0;
  box-sizing: border-box;
  color: #fff;
  content: "\00d7";
  cursor: pointer;
  font-size: 12px;
  height: 16px;
  width: 16px;
  line-height: 1;
  margin: -8px auto 0;
  padding: 2px;
  position: absolute;
  right: 0px;
  text-align: center;
}

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}

.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}

@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}

.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__portal .react-datepicker__navigation {
  border: 0.81rem solid transparent;
}

.react-datepicker__portal .react-datepicker__navigation--previous {
  border-right-color: #ccc;
}

.react-datepicker__portal .react-datepicker__navigation--previous:hover {
  border-right-color: #b3b3b3;
}

.react-datepicker__portal .react-datepicker__navigation--previous--disabled, .react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover {
  border-right-color: #e6e6e6;
  cursor: default;
}

.react-datepicker__portal .react-datepicker__navigation--next {
  border-left-color: #ccc;
}

.react-datepicker__portal .react-datepicker__navigation--next:hover {
  border-left-color: #b3b3b3;
}

.react-datepicker__portal .react-datepicker__navigation--next--disabled, .react-datepicker__portal .react-datepicker__navigation--next--disabled:hover {
  border-left-color: #e6e6e6;
  cursor: default;
}
.react-responsive-modal-overlay {
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  padding: 1.2rem;
}

.react-responsive-modal-modal {
  max-width: 800px;
  position: relative;
  padding: 1.2rem;
  background: #ffffff;
  background-clip: padding-box;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}

.react-responsive-modal-modalCenter {
  margin: auto;
}

.react-responsive-modal-closeButton {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  display: flex;
}

@keyframes react-responsive-modal-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes react-responsive-modal-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*------------------------------------------------------------------
        File Name: responsive.css
        Template Name: auricle
-------------------------------------------------------------------*/

@media (min-width: 1200px) and (max-width: 1390px) {

    /** ecommere style 2 **/
    
    .header_style_ecomm2 .header_top .float-left, .header_style_ecomm2 .header_top .float-right {
        width: 100%;
    }
    .header_style_ecomm2 .header_top .float-left ul, .header_style_ecomm2 .header_top .float-right ul {
        display: flex;
        justify-content: center;
        margin: 4px 0;
    }
    .header_style_ecomm2 .header_top li {
        font-size: 13px;
    }
    
    .header_style_ecomm2 .main_menu div.menu ul li a {
        font-size: 12px;
        padding: 15px 8px;
    }
    
    .right_cart_section ul li {
        margin-right: 20px;
    }
    
    .right_cart_section ul li i {
        margin-right: 5px;
        margin-top: 0px;
        float: left;
        color: #000;
        font-size: 21px;
    }
    
    .search_style_2 .top_search_bar button.submit_search {
        width: 110px;
    }
    
    }
    
    @media (min-width: 992px) and (max-width: 1199px) {
        .body {
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 990px;
        }
        .slide_cont h2 {
            font-size: 45px;
            line-height: 60px;
        }
        .cont_theme_blog h3 {
           font-size: 42px;
           line-height: 60px;
           font-weight: 600;
        }
        .home_page1 .slide_cont {
            margin-top: 145px;
        }
        .layout_screen {
            left: 0;
            width: 140%;
        }
        .padding_inner {
            padding-top: 0;
            padding-bottom: 0;
        }
        .layout_pur_minus {
            margin-bottom: 0;
        }
        .layout_padding {
            margin: 0 !important;
        }
        .bt_main {
           height: 48px;
           padding: 0 25px; 
        }
        .team_member_img img {
            width: 100%;
        }
        .footer_icon img {
            width: 50px;
        }
        /** side bar **/
        .toggle_side_bar {
            display: block;
        }
        .sidenav {
            height: 100%;
            width: 0;
        }
        .sidebar_page {
            margin-left: 0;
        }
        .sidenav .closebtn {
            display: block;
        }
        /** home pages **/
        .header .social_icons {
            border-top: none;
            padding-top: 0;
        }
        .target_section {
            padding: 50px;
            margin-top: 20px;
            margin-bottom: 45px;
        }
        .slide_banner4 h2 strong {
            font-size: 62px;
            top: 10px;
        }
        .service_blog1 {
            padding: 50px 10px;
            margin: 15px 0;
        }
        .contact_form {
            padding: 55px 15px;
        }
        .blog_section.style_2 .blog_head {
            font-size: 20px;
            line-height: 28px;
        }
        .header.header_style4.header_left_side .main_menu {
            float: right !important;
        }
        .header_bottom .main_menu {
            padding: 1px;
        }
        .header_style5 div.menu > ul > li > a {
            padding: 10px 18px;
        }
        .header_information .right_head {
            display: none;
        }
        .logo img {
            width: 190px;
            margin: 0;
        }
        .service_info_sec {
            margin-top: 40px;
            position: relative;
            margin-bottom: -30px;
        }
        section .small_head h2 {
            font-size: 25px;
        }
        .bt_main {
            font-size: 13px;
        }
        .service_blog2 {
            padding: 35px 0;
            margin: 15px 0;
        }
        .slide_banner10 .slider_information ul li {
            width: 100%;
        }
        .play_pause_control ul {
            padding-left: 30px;
        }
        .play_pause_bt ul {
            display: flex;
        }
        .audio_and_video_version .span2 {
            width: 33.33%;
        }
        .slide_banner12 {
            background-size: cover;
        }
        section.slide_banner12 .slide_cont {
            margin-top: 120px;
        }
        .slide_banner12 .slide_cont h3 {
            font-size: 65px;
        }
        .team_blog_style_cheif .team_member_img img {
            width: auto;
        }
        .team_blog_style_cheif .owl-nav .owl-prev {
            left: 0;
        }
        .team_blog_style_cheif .owl-nav .owl-next {
            right: 0;
        }
        .slide_banner15#banner_parallax h2 {
            font-size: 42px;
            line-height: 40px;
        }
        .home_page15 section.layout_padding_2.horizontal_cross_layout {
            margin-bottom: 0;
        }
        .slide_banner16 .slide_cont h2 {
            font-size: 40px;
        }
        .slide_cont {
            margin-top: 200px;
        }
        .slide_banner16 {
            min-height: 720px;
            max-height: inherit;
        }
        .header.header_style17 .header_top.top_imform {
            display: none;
        }
        .home_page17 .heading_style_3 h2 {
            font-size: 30px;
        }
        .dentist_imfor_ser .cont_list p {
            display: none;
        }
        .dentis_team_blog .team_member_img img {
            width: auto;
        }
        .inform_dentist_botm p {
            text-align: center;
        }
        .slide_bottom_icon li {
            margin: 0 5px 10px;
        }
        .doctor_ser h3 {
            font-size: 15px;
        }
        .sidebar_menu {
            float: right;
            padding: 14px 0 0;
        }
        .header_style_ecomm2 .header_top .float-left,.header_style_ecomm2 .header_top .float-right {
            width: 100%;
        }
        .header_style_ecomm2 .header_top .float-left ul, .header_style_ecomm2 .header_top .float-right ul {
            display: flex;
            justify-content: center;
            margin: 3px 0;
        }
        .header_style_ecomm2 .header_top li {
            font-size: 12px;
        }
        .search_style_2 {
            float: left;
            width: 100%;
            margin: 20px 0;
        }
        .right_cart_section {
            display: none;
        }
        .header_style_ecomm2 .main_menu div.menu ul li a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 11px;
            padding: 15px 2px;
        }
        .header_style_ecomm2 .sidebar_menu a {
            background: #2ea6ff;
            width: 36px;
            float: right;
            height: 36px;
            border-radius: 0;
            text-align: center;
            padding: 5px 4px;
            margin: 12px 0 0;
        }
        .blue_layer_image2 h2,
        .blue_layer_image h2 {
            font-size: 30px;
            line-height: 55px;
            letter-spacing: -1px;
            margin-top: 25px;
        }
        .newslatterform form {
            width: 100%;
        }
        .header_style_ecomr3 .menu {
            width: auto;
            margin: 8px 0;
            float: left;
        }
        .header.header_style_ecomr3 .menu > ul > li > a {
            padding: 7px 24px;
        }
        .header.header_style_ecomr3 .header_top.top_imform {
            display: none;
        }
        .light_red .header.header_style_ecomr3 .menu > ul > li > a {
            color: #222;
        }
        .home_page24 .with_search_bar .menu {
            width: auto;
            margin: 9px 9px 0;
            float: left;
        }
        .skyblue .portfolio img {
            width: auto;
        }
        .effect_2 {
            margin-bottom: 30px;
        }
        .brand_logo_section li {
            width: 33.33%;
        }
        .header_funky_style a.menu-mobile {
            margin: 10px;
        }
        .infor_head li {
            margin: 8px 10px;
        }
        .slide_banner25 .slide_cont h2 {
            font-size: 45px;
        }
        .bottom_service_temp_inner {
            margin-top: 50px;
        }
        .slide_banner25 .inner_slide {
            float: right;
            margin: 60px 0 0;
        }
        .bottom_service_temp_inner h4 {
            font-size: 16px;
        }
        .header.header_funky_style .menu > ul > li > a {
            font-size: 14px;
            padding: 7px 20px;
        }
        .header_style26 .menu {
            width: auto;
            margin: 8px 0 0;
            float: left;
        }
        .inform_ser_blogs_3 ul li {
            width: 50%;
        }
        .header_style_ecomm .menu > ul > li > a {
            font-size: 11px;
            padding: 17px 9px;
            font-weight: 600;
        }
        .top_search_bar .field input {
            font-size: 12px;
        }
        
        /** home page 13 **/
        
        .header.header_style13 .menu > ul > li > a {
           font-size: 13px;
           padding-left: 12px;
           padding-right: 12px;
        }
        
        .logo.desk_logo {
           margin: 10px 15px;
        }
    }
    
    @media (min-width: 768px) and (max-width: 991px) {
        .container {
            max-width: 750px;
            width: 100%;
        }
        .slide_cont h2 {
            font-size: 35px;
            line-height: 40px;
        }
        .home_page1 .slide_cont {
            margin-top: 158px;
        }
        .layout_padding {
            padding: 80px 0 75px;
        }
        .layout_screen {
            left: -90px;
            position: relative;
            width: 180%;
        }
        .padding_inner {
            padding-top: 0;
            padding-bottom: 0;
        }
        .layout_pur_minus {
            margin-bottom: 0;
        }
        .layout_padding {
            padding: 80px 0 75px;
            margin: 0 !important;
        }
        .table_price_per p {
            font-size: 40px;
            font-weight: 300;
        }
        .team_member_img img {
            width: 100%;
        }
        /**** home page 2 add custom with arrange ****/
        .margin_bottom_30 {
            margin-bottom: 30px;
        }
        .team_blog {
            margin-bottom: 30px;
        }
        .target_section .feature_icon {
            margin-top: 25px;
        }
        .header .social_icons {
            width: 100%;
            justify-content: center;
            display: flex;
            border-top: solid rgba(255, 255, 255, .1) 1px;
            padding-top: 15px;
        }
        /** side bar **/
        .toggle_side_bar {
            display: block;
        }
        .sidenav {
            height: 100%;
            width: 0;
        }
        .sidebar_page {
            margin-left: 0;
        }
        .sidenav .closebtn {
            display: block;
        }
        /** home pages **/
        .header .social_icons {
            border-top: none;
            padding-top: 0;
        }
        .target_section {
            padding: 50px;
            margin-top: 20px;
            margin-bottom: 45px;
        }
        .slide_banner4 h2 strong {
            font-size: 62px;
            top: 10px;
        }
        .service_blog1 {
            padding: 50px 10px;
            margin: 15px 0;
        }
        .contact_form {
            padding: 55px 15px;
        }
        .blog_section.style_2 .blog_head {
            font-size: 20px;
            line-height: 28px;
        }
        .header.header_style4.header_left_side .main_menu {
            float: right !important;
        }
        .header_bottom .main_menu {
            padding: 1px;
        }
        .header_style5 div.menu > ul > li > a {
            padding: 10px 18px;
        }
        .header_information .right_head {
            display: none;
        }
        .service_info_sec {
            margin-top: 40px;
            position: relative;
            margin-bottom: -30px;
        }
        section .small_head h2 {
            font-size: 25px;
        }
        .bt_main {
            font-size: 13px;
        }
        .service_blog2 {
            padding: 35px 0;
            margin: 15px 0;
        }
        .slide_banner10 .slider_information ul li {
            width: 100%;
        }
        .play_pause_control ul {
            padding-left: 30px;
        }
        .play_pause_bt ul {
            display: flex;
        }
        .audio_and_video_version .span2 {
            width: 33.33%;
        }
        .slide_banner12 {
            background-size: cover;
        }
        section.slide_banner12 .slide_cont {
            margin-top: 120px;
        }
        .slide_banner12 .slide_cont h3 {
            font-size: 65px;
        }
        .team_blog_style_cheif .team_member_img img {
            width: auto;
        }
        .team_blog_style_cheif .owl-nav .owl-prev {
            left: 0;
        }
        .team_blog_style_cheif .owl-nav .owl-next {
            right: 0;
        }
        .slide_banner15#banner_parallax h2 {
            font-size: 42px;
            line-height: 40px;
        }
        .home_page15 section.layout_padding_2.horizontal_cross_layout {
            margin-bottom: 0;
        }
        .slide_banner16 .slide_cont h2 {
            font-size: 40px;
        }
        .slide_cont {
            margin-top: 100px;
        }
        .slide_banner16 {
            min-height: 720px;
            max-height: inherit;
        }
        .header.header_style17 .header_top.top_imform {
            display: none;
        }
        .home_page17 .heading_style_3 h2 {
            font-size: 30px;
        }
        .dentist_imfor_ser .cont_list p {
            display: none;
        }
        .dentis_team_blog .team_member_img img {
            width: auto;
        }
        .inform_dentist_botm p {
            text-align: center;
        }
        .slide_bottom_icon li {
            margin: 0 5px 10px;
        }
        .doctor_ser h3 {
            font-size: 15px;
        }
        .sidebar_menu {
            float: right;
            padding: 14px 0 0;
        }
        .header.header_style_ecomm2 .header_top {
            display: none;
        }
        .search_style_2 {
            float: left;
            width: 100%;
            margin: 20px 0;
        }
        .right_cart_section {
            position: absolute;
            top: -152px; 
        }  
        .header_bottom_thirth {
            display: none;
        }
        .header_style_ecomm2 .sidebar_menu a {
            background: #0163d2;
            width: 36px;
            float: right;
            height: 36px;
            border-radius: 0;
            text-align: center;
            padding: 5px 4px;
            margin: 12px 0 0;
        }
        .blue_layer_image2 h2,
        .blue_layer_image h2 {
            font-size: 30px;
            line-height: 55px;
            letter-spacing: -1px;
            margin-top: 25px;
        }
        .newslatterform form {
            width: 100%;
        }
        .header_style_ecomr3 .menu {
            width: auto;
            margin: 8px 0;
            float: left;
        }
        .header.header_style_ecomr3 .menu > ul > li > a {
            padding: 7px 24px;
        }
        .header.header_style_ecomr3 .header_top.top_imform {
            display: none;
        }
        .light_red .header.header_style_ecomr3 .menu > ul > li > a {
            color: #222;
        }
        .home_page24 .with_search_bar .menu {
            width: auto;
            margin: 9px 9px 0;
            float: left;
        }
        .skyblue .portfolio img {
            width: auto;
        }
        .effect_2 {
            margin-bottom: 30px;
        }
        .brand_logo_section li {
            width: 33.33%;
        }
        .header_funky_style a.menu-mobile {
            margin: 10px;
        }
        .infor_head li {
            margin: 8px 10px;
        }
        .slide_banner25 .slide_cont h2 {
            font-size: 45px;
        }
        .bottom_service_temp_inner {
            margin-top: 50px;
        }
        .slide_banner25 .inner_slide {
            float: right;
            margin: 60px 0 0;
        }
        .bottom_service_temp_inner h4 {
            font-size: 16px;
        }
        .header.header_funky_style .menu > ul > li > a {
            font-size: 14px;
            padding: 7px 20px;
        }
        .header_style26 .menu {
            width: auto;
            margin: 8px 0 0;
            float: left;
        }
        .inform_ser_blogs_3 ul li {
            width: 50%;
        }
        /* responsive menu */
        .header_style26 .menu > ul > li > a {
            padding: 7px 25px;
        }
        .cake_club .menu-mobile::after {
            top: 4px;
        }
        .cake_club .menu > ul > li a {
            font-size: 13px;
            margin: 0;
        }
        .menu-dropdown-icon::before {
            padding: 13px 15px 13px;
        }
        .header.header_style14 .header_top {
            display: none;
        }
        .header_style14 .logo {
            top: 0;
        }
        .header_style14 .logo img {
            height: 85px;
        }
        .header.header_style14 .main_menu {
            width: 100%;
            padding-left: 200px;
            margin: 25px 0 0;
        }
        .header.header_style14 .main_menu > .menu > ul > li > a {
            color: #222;
        }
        .home_page14 .main_menu .clearfix {
            top: 65px;
        }
        .home_page14 .menu-dropdown-icon::before {
            padding: 16px 15px 16px;
        }
        .slide_banner19 {
            min-height: 380px;
            padding-top: 15px;
            padding-bottom: 15px;
        }
        
        /** home page 13 **/
        
        #banner_parallax.slide_banner13 .slide_cont h2 {
            font-size: 50px;
            line-height: 58px;
            margin-top: 25px;
            margin-bottom: 25px;
        }
        .information_icon {
            margin: 15px 0 0 0;
        }
        .slide_banner13 {
            min-height: auto;
            max-height: inherit;
            padding-bottom: 50px;
        }
        .slide_cont {
            margin-top: 115px;
        }
        .berber_side_img::after {
            display: none;
        }
        .hair_menu_list_cont ul {
            float: left;
            width: 100%;
        }
        .tab_bar_section ul.nav.nav-tabs li a {
            font-size: 15px;
            font-weight: 500;
            padding: 0 10px;
            line-height: 45px;
        }
        .discount_section_inner {
            top: 0;
            left: 0;
        }
        .discount_section h4 {
            line-height: 28px;
            margin: 15px 0;
        }
        .discount_section h3 {
            color: #d19d64;
            font-size: 30px;
            margin: 10px 0;
            line-height: 38px;
        }
        .join_us_section {
            text-align: center;
        }
        .join_us_section h2 {
            margin-bottom: 15px;
        }
        .cont_theme_blog h3 {
           font-size: 35px;
           line-height: 45px;
           font-weight: 700;
       }
        
    }
    
    @media (min-width:576px) and (max-width:767px) {
        /** basic css **/
        .margin_top_30_respon {
            margin-top: 30px;
        }
        .p_data{
            padding-left: 40px;
        padding-right: 40px;
        }
        .container {
            max-width: 540px;
            width: 100%;
        }
        .inform_dentist_botm p {
            text-align: center;
        }
        p.large {
            font-size: 14px;
        }
        h2 {
           font-size: 40px;
        }
        .cont_theme_blog h3 {
           font-size: 35px;
           line-height: 45px;
           font-weight: 700;
        }
        .home_page1 #banner_slide {
            margin-bottom: 0;
        }
        .slide_cont {
            text-align: center;
        }
        .slide_bt {
            display: flex;
            justify-content: center;
        }
        .home_page1 .slide_cont {
            margin-top: 75px;
        }
        .slide_banner1 {
            min-height: auto;
        }
        .slide_cont h2 {
            font-size: 30px;
            line-height: 34px;
        }
        .slide_pc_img img {
            width: 100%;
            margin-left: 0;
            margin-top: 35px;
            right: inherit;
        }
        .slide_pc_img {
        position: relative;
        z-index: 1;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
        .blog_feature_img img {
            width: 100%;
        }
        .contact_form_inner {
            max-width: 430px;
            margin: 0 auto;
        }
        .right_bt {
            float: right;
            width: 100%;
            justify-content: center;
            display: flex;
            margin-top: 15px;
        }
        .right_bt a.bt_main {
            width: 100%;
        }
        .home_page1 .padding_right_left_15 {
            margin-bottom: 30px;
        }
        .layout_screen {
            left: 0;
            position: relative;
            width: 100%;
        }
        .padding_inner {
            padding-top: 25px;
            padding-bottom: 25px;
        }
        .theme_bg {
            min-height: auto;
        }
        .layout_pur_minus {
            margin-bottom: 0;
        }
        .team_member_img img {
            width: 100%;
        }
        .table_price {
            margin-bottom: 30px;
        }
        .home_page1 .layout_padding_2 {
            margin: 0 !important;
        }
        .layout_padding {
            margin: 0 !important;
        }
        .blog_section {
            margin-top: 30px;
        }
        .blog_feature_cantant {
            padding: 30px 20px 20px;
        }
        .contact_form {
            min-height: auto;
            padding: 80px 30px;
        }
        .footer_blog {
            display: flex;
            margin-bottom: 25px;
        }
        /**** home page 2 add custom with arrange ****/
        .margin_bottom_30 {
            margin-bottom: 30px;
        }
        .target_section {
            width: 100%;
            background: #fff;
            padding: 50px 25px 50px;
            box-shadow: 0 0 45px -15px #000;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        .team_blog {
            margin-bottom: 30px;
        }
        .target_section .feature_icon {
            margin-top: 25px;
        }
        .header .social_icons {
            width: 100%;
            justify-content: center;
            display: flex;
            border-top: solid rgba(255, 255, 255, .1) 1px;
            padding-top: 15px;
        }
        .footer_style_2 img.img-responsive {
            width: 100%;
        }
        .home_page2 .slide_cont {
            margin-top: 20px;
        }
        .home_page2 #banner_parallax .slide_cont p {
            line-height: 30px;
            font-size: 22px;
            margin-top: 30px;
        }
        .slide_banner2 {
            min-height: 480px;
        }
        .heading_style_2 p {
            font-size: 18px;
            margin-top: 0;
            margin-bottom: 45px;
        }
        .heading_style_2 h2 {
            line-height: 30px;
            margin-top: 15px;
        }
        .home_page2 .light_silver_2 div.layout_bt {
            margin-bottom: 25px;
            float: left;
            width: 100%;
        }
        /** home page 3 **/
        .haf_full_section.right_full::after {
            height: 350px;
            position: relative;
            width: 100%;
        }
        .haf_full_section.left_full::after {
            height: 350px;
            position: relative;
            width: 100%;
        }
        .center_padding {
            padding: 75px 0 60px;
        }
        .home_page3 .slide_cont h2 {
            font-size: 40px;
            line-height: 40px;
        }
        .home_page3 section#banner_parallax.slide_banner3 .slide_cont p {
            font-size: 20px;
        }
        .slide_banner3 h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        .slide_banner3 {
            min-height: 720px;
        }
        .information_blog h3 {
            font-size: 21px;
        }
        .information_blog {
            margin: 15px 0;
        }
        /** side bar **/
        .toggle_side_bar {
            display: block;
        }
        .sidenav {
            height: 100%;
            width: 0;
        }
        .sidebar_page {
            margin-left: 0;
        }
        .sidenav .closebtn {
            display: block;
        }
        /** home page 4 **/
        .overlap_top_img_main {
            margin: -70px 0 0 0;
            width: 100%;
        }
        .brand_logo_section li {
            width: 33.33%;
            padding: 0 15px;
        }
        .slide_banner4 h2 strong {
            font-size: 50px;
        }
        .slide_banner4 h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        .home_page4 .slide_cont p {
            font-size: 12px;
            line-height: 21px;
        }
        .golden_yellow_theme a.transparent_bt {
            padding: 0 10px;
            min-width: 148px;
            line-height: 45px;
            font-size: 13px;
        }
        .bt_main {
            font-size: 13px;
            min-width: 120px;
            height: 45px;
            line-height: 45px;
            padding: 0 10px;
        }
        #contant_slider .carousel-indicators {
            display: flex;
            bottom: -80px;
        }
        .heading_style_4 p {
            font-size: 16px;
        }
        .heading_style_4 h2 {
            font-size: 28px;
            color: #343434;
            line-height: 40px;
        }
        .tab_head ul {
            display: block;
        }
        .blog_section.style_2 .blog_head {
            font-size: 18px;
        }
        .contact_form {
            padding: 80px 30px 80px;
        }
        /** home page 5 **/
        .screen_website_bannr {
            margin-top: 30px;
            margin-bottom: 30px;
        }
        .slide_banner5 {
            margin-bottom: 0;
        }
        .heading_style_5 .small_text {
            margin: 0 0 10px 0;
        }
        .layout_pur_minus img {
            width: 100%;
            margin-top: 50px;
        }
        .overlap_top_img_main {
            margin: 0;
            width: 100%;
        }
        .feature_cs img {
            width: 100%;
        }
        /** home page 6 **/
        .header.header_style4.header_left_side .main_menu {
            float: right !important;
        }
        .home_page6 .slide_cont {
            margin-top: 280px;
        }
        .heading_style_6 h2 {
            margin-bottom: 20px;
            font-size: 25px;
        }
        .padding_right_left_25 {
            margin-top: 50px;
        }
        .blog_news1 {
            padding: 35px;
        }
        .gray_layer_bg .full img {
            width: 100%;
        }
        .field input {
            padding: 0 20px;
        }
        .contact_form_layout .field textarea {
            padding: 5px 20px;
        }
        /** home page 7 **/
        .header_style5 div.menu > ul > li > a {
            padding: 10px 18px;
        }
        .header_top p {
            margin: 0;
            color: #555;
            font-size: 13px;
            margin: 5px 0 5px;
        }
        .right_section_bottom_header {
            display: flex;
            justify-content: center;
            border-top: solid #ddd 1px;
            margin-top: 10px;
        }
        #searchbar {
            width: 90%;
            right: 5%;
            top: 50px;
        }
        .slide_banner7 .slide_cont h2 {
            line-height: normal;
            font-size: 24px;
        }
        .slide_inform {
            text-align: left;
        }
        .slider_information {
            display: flex;
            justify-content: center;
        }
        .heading_style_7 h2 {
            font-size: 28px;
            line-height: 30px;
        }
        .full.bottm_bt_style {
            position: relative;
            bottom: 0;
            right: 0;
            margin-top: 15px;
            margin-bottom: 10px;
        }
        .inform_ser_blogs_3 ul li {
            width: 100%;
        }
        .position_abs {
            position: relative;
        }
        .hight_100_per {
            margin-bottom: 35px;
        }
        .left_head ul {
            margin: 12px 0 11px;
            float: left;
            width: 100%;
        }
        /** home page 8 **/
        .with_out_menu_header div.left_head ul li {
            display: inline;
            margin-right: 0;
            font-size: 14px;
            color: #fff;
            float: left;
            width: 100%;
            text-align: center;
        }
        .home_page8 .right_head {
            display: none;
        }
        .layout_bt {
            float: left;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .service_info_sec {
            margin-top: 30px;
            position: relative;
            margin-bottom: -20px;
        }
        .heading_style_8 h2 {
            font-size: 30px;
            margin-bottom: 25px;
        }
        .tab_bar .tags li {
            float: left;
            margin: 3px;
        }
        #testimoial_slider {
            margin-bottom: 80px;
        }
        .why_peoeple_choose .col-md-2 {
            margin-bottom: 25px;
        }
        /** home page 9 **/
        #banner_parallax.slide_banner9 h2 {
            font-size: 50px;
        }
        .cont_boder_style_slide::after {
            margin-left: auto;
            margin-right: auto;
        }
        .hiren_img {
            margin-top: 30px;
        }
        .feature_cs img {
            width: 100%;
        }
        /** home page 10 **/
        #banner_parallax.slide_banner10 h2 {
            font-size: 50px;
        }
        .cont_boder_style_slide::after {
            margin-left: auto;
            margin-right: auto;
        }
        .hiren_img {
            margin-top: 30px;
        }
        .feature_cs img {
            width: 100%;
        }
        .slide_banner10 .slider_information ul li {
            display: flex;
            margin: 15px 0;
            float: left;
            width: 100%;
            justify-content: center;
        }
        /** home page 11 **/
        .play_section {
            position: relative;
        }
        .weekend_section_inner .play_pause_control {
            padding-left: 35px;
        }
        .weeked_section .play_pause {
            left: 0;
        }
        .click_section_form_change_vedio .float-left {
            width: 100%;
        }
        .click_section_form_change_vedio .profile_uploaded {
            text-align: center;
            margin: 0;
        }
        .click_section_form_change_vedio .profile_cont_uploaded {
            margin-left: 0;
            margin-top: 15px;
            text-align: center;
        }
        .click_section_form_change_vedio .float-right {
            margin-top: 0;
            width: 100%;
            text-align: center;
        }
        .profile_cont {
            display: block;
        }
        /** home page 12 **/
        .span2 {
            width: 100%;
        }
        .cake_club .menu > ul > li > a {
            font-size: 13px;
            margin: 0;
        }
        .cake_club .menu > ul > li a > {
            font-size: 14px;
        }
        .cake_club .menu > ul > li > a {
            font-size: 14px;
            padding: 13px;
        }
        .cake_club .menu-mobile::after {
            top: 4px;
        }
        .slide_banner12 {
            background-size: cover;
        }
        .slide_banner12 .slide_cont h3 {
            font-size: 50px;
            line-height: 70px;
        }
        .Courgette_font h2 {
            font-size: 35px;
        }
        div.layout_padding_2 {
            padding-top: 50px;
        }
        /** home page 13 **/
        #banner_parallax.slide_banner13 .slide_cont h2 {
            font-size: 50px;
            line-height: 58px;
            margin-top: 25px;
            margin-bottom: 25px;
        }
        .information_icon {
            margin: 15px 0 0 0;
        }
        .slide_banner13 {
            min-height: auto;
            max-height: inherit;
            padding-bottom: 50px;
        }
        .slide_cont {
            margin-top: 115px;
        }
        .berber_side_img::after {
            display: none;
        }
        .hair_menu_list_cont ul {
            float: left;
            width: 100%;
        }
        .tab_bar_section ul.nav.nav-tabs li a {
            font-size: 15px;
            font-weight: 500;
            padding: 0 10px;
            line-height: 45px;
        }
        .discount_section_inner {
            top: 0;
            left: 0;
        }
        .discount_section h4 {
            line-height: 28px;
            margin: 15px 0;
        }
        .discount_section h3 {
            color: #d19d64;
            font-size: 30px;
            margin: 10px 0;
            line-height: 38px;
        }
        .join_us_section {
            text-align: center;
        }
        .join_us_section h2 {
            margin-bottom: 15px;
        }
        /** home page 14 **/
        .header.header_style14 .header_top {
            display: none;
        }
        .header_style14 .logo {
            top: 0;
        }
        .header_style14 .logo img {
            width: 110px;
        }
        .header_style14 .logo {
            position: absolute;
            top: 0;
            padding: 10px 0;
        }
        .header_style14 .logo {
            top: -47px;
        }
        .header_style14 .header_bottom {
            min-height: 60px;
            padding-top: 55px;
        }
        .header.header_style14 .header_bottom .right_section_bottom_header {
            margin: 10px 0 18px;
            padding-top: 15px;
            width: 100%;
        }
        .header.header_style14 .main_menu > .menu > ul > li > a {
            color: #000;
        }
        .slide_banner14 {
            min-height: 450px;
        }
        .waiter_img {
            margin-top: 45px;
        }
        .style_pro_head {
            margin-top: 0;
            margin-bottom: 75px;
        }
        .top_center_pro .head_cafe_img {
            margin-left: 0;
            width: 100%;
            text-align: center;
        }
        .top_center_pro {
            display: block;
        }
        .head_cafe_img {
            text-align: center;
        }
        .top_left_pro .head_cafe_pro {
            position: relative;
            top: 0;
        }
        .top_center_pro .head_cafe_pro {
            position: relative;
            top: 0;
            left: 0;
        }
        .head_cafe_img img {
            width: 50%;
        }
        .bottom_center_pro .text_align_left {
            text-align: center;
            padding-left: 0;
            margin: 0;
        }
        .bottom_right_pro .head_cafe_img {
            text-align: center;
        }
        .bottom_center_pro .text_align_left {
            text-align: center;
            padding-left: 0;
            margin: 0;
        }
        .bottom_right_pro {
            top: 0;
        }
        .bottom_right_pro .head_cafe_img {
            text-align: center;
        }
        .head_cafe_pro.text_align_right {
            text-align: center;
        }
        .head_cafe_pro.text_align_left {
            text-align: center;
        }
        .top_center_pro .head_cafe_pro {
            text-align: center;
        }
        .top_left_pro .head_cafe_pro {
            text-align: center;
        }
        .style_pro_head {
            margin-top: 50px;
            margin-bottom: 100px;
        }
        .team_blog_style_cheif .team_blog {
            width: 80%;
            margin: 0 10%;
        }
        .time_ser {
            margin-bottom: 35px;
        }
        /** home page 15 **/
        .slide_banner15#banner_parallax h2 {
            font-size: 35px;
            line-height: 38px;
            font-weight: 400;
            color: #ffb125;
        }
        .home_page15 .slide_cont {
            margin-top: 220px;
        }
        .home_page15 section.layout_padding_2.horizontal_cross_layout {
            margin-bottom: 0;
        }
        .home_page15 .streat_section_rev img {
            height: 80px;
        }
        .white_border {
            margin-left: 0;
            padding-left: 80px;
        }
        .enter_roll_bt {
            display: flex;
            justify-content: center;
            margin-top: 35px;
        }
        .streat_section_rev_bottom img {
            position: absolute;
            bottom: 0;
            height: 85px;
        }
        .black_border {
            margin-left: 0;
            padding-left: 80px;
        }
        .team_blog_gym {
            display: block;
            margin: 15px 0;
            text-align: center;
        }
        .team_blog_gym .team_img {
            margin: 0;
            text-align: center;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .gym_cle {
            margin-bottom: 45px;
        }
        /** home page 16 **/
        .slide_banner16 .slide_cont h2 {
            font-size: 35px;
        }
        #banner_parallax.slide_banner16 .slide_cont p {
            font-size: 18px;
        }
        .heading_style_13 h2 {
            font-size: 48px;
            font-weight: 600;
            color: #343434;
            margin: 0 0 25px 0;
            line-height: 48px;
        }
        .yoga_icon {
            margin-bottom: 20px;
            text-align: center;
        }
        .yoga_icon + div {
            text-align: center;
        }
        .bg_layout_yoga .heading_style_13 h2 {
            font-size: 32px;
            line-height: 32px;
        }
        /** home page 17 **/
        .header_style17 .header_top.top_imform {
            display: none;
        }
        .slide_banner17 {
            min-height: 720px;
            max-height: inherit;
        }
        .dentist_slide img {
            width: 100%;
            margin-bottom: 50px;
        }
        .home_page17 .heading_style_3 p.small_text {
            font-size: 20px;
            line-height: 24px;
        }
        .home_page17 .heading_style_3 h2 {
            font-size: 30px;
            margin: 25px 0;
            line-height: 35px;
        }
        .dentist_imfor_ser .col-md-7 {
            margin-bottom: 50px;
        }
        .dentis_team_blog .team_member_img img {
            width: auto;
        }
        .header.header_style18 .top_imform {
            display: none;
        }
        /** home page 18 **/
        .menu_border_hover .main_menu .menu > ul > li > a {
            padding-bottom: 10px;
        }
        .fiver_boy img {
            max-width: 100%;
        }
        .slide_bottom_icon li {
            margin: 5px 5px;
        }
        .doc_ser {
            margin-bottom: 25px;
        }
        .doctor_team .team_member_img.team_member_img img {
            width: auto;
        }
        /** home page 19 **/
        .sidebar_menu {
            float: right;
            top: 15px;
            position: relative;
        }
        #banner_parallax.slide_banner19 {
            padding-top: 1px;
        }
        .home_page19 .slide_cont {
            margin-top: 35px;
        }
        .product_ecommr {
            margin-top: 45px;
        }
        .heading_style_19 h2 {
            font-size: 32px;
            line-height: 42px;
        }
        .one_line_layout {
            margin: 15px 0;
        }
        .coffee_machine {
            position: relative;
            top: 0;
        }
        .product_style_1 .product_img {
            border-right: none;
        }
        .coffee_machine img {
            margin-top: 25px;
        }
        .newslatterform form {
            position: relative;
            width: 100%;
        }
        .menu_product li {
            float: left;
            margin: 0;
            width: 50%;
        }
        /** home page 20 **/
        .header.header_style_ecomm2 .header_top {
            display: none;
        }
        .top_search_bar .field {
            display: block;
        }
        .search_style_2 .top_search_bar input {
            max-width: 100%;
            border-radius: 0;
            border: solid #e1e1e1 1px;
            margin-bottom: -1px;
        }
        .search_style_2 .top_search_bar .bootstrap-select button,
        .search_style_2 .top_search_bar .bootstrap-select button:hover,
        .search_style_2 .top_search_bar .bootstrap-select button:focus,
        .search_style_2 .top_search_bar .bootstrap-select button:active {
            width: 100%;
            margin: 0;
        }
        div.top_search_bar .btn-group.bootstrap-select {
            width: 100% !important;
        }
        .search_style_2 .top_search_bar button.submit_search {
            background: #0163d2;
            width: 100%;
            font-weight: 500;
            font-size: 14px;
            border-radius: 0;
        }
        .search_catry_bt {
            position: relative;
            top: 0;
            right: 1px;
        }
        .header_style_ecomm2 .sidebar_menu a {
            background: #0163d2;
            width: 36px;
            float: right;
            height: 36px;
            border-radius: 0;
            text-align: center;
            padding: 5px 4px;
            margin: 12px 0 0;
        }
        .right_cart_section {
            position: absolute;
            top: -248px;
        } 
        .header_bottom_thirth {
            display: none;
        }
        .home_page20 .bt_main {
            padding: 0 25px;
        }
        .top_sec {
            line-height: 24px;
            font-size: 15px;
            padding: 20px 20px;
        }
        .blue_layer_image2 h2,
        .blue_layer_image h2 {
            font-size: 28px;
            line-height: 42px;
            letter-spacing: -1px;
        }
        /** home page 21 **/
        .header_style_ecomr3 .header_top {
            display: none;
        }
        .header_style_ecomr3 .menu {
            width: auto;
            margin: 9px 0 0;
            float: left;
        }
        .right_icon_ecoomr {
            float: right;
            margin: 10px 0;
        }
        .header.header_style_ecomr3 .menu > ul > li > a {
            padding: 10px 24px;
            font-weight: 500;
        }
        .home_page21 .slide_banner18 .slide_cont h2 {
            font-size: 72px;
            line-height: 72px;
            text-align: center;
        }
        .home_page21 .slide_banner18 .slide_cont h2 span {
            float: left;
        }
        .slide_banner18#banner_parallax p {
            font-size: 15px;
        }
        .categary_part {
            width: 100%;
            min-height: 280px;
        }
        .slide_banner18 .slide_bt {
            padding-bottom: 35px;
        }
        /** home page 22 **/
        .light_red .header.header_style_ecomr3 .menu > ul > li > a {
            color: #222;
        }
        .slide_banner22 .slide_cont {
            margin-top: 55px;
        }
        .slide_banner22 .slide_cont h2 {
            font-size: 40px;
            line-height: 45px;
        }
        .date_counter_2 #clockdiv div.count {
            width: 50%;
            margin: 7px 0 0 0;
            text-align: center;
        }
        .date_counter_2 #clockdiv div > span {
            width: 90%;
            margin: 0 5%;
        }
        .full.counter_price h2 {
            line-height: normal;
        }
        .home_page22 div.full.layout_bt {
            margin-bottom: 35px;
        }
        /** home paga 23 **/
        .catergary_tab_bar ul li.nav-item {
            width: 50%;
        }
        .client_slider_main2 .testi_head {
            margin-top: 25px;
            text-align: center;
        }
        .client_slider_main2 div#testimonial2 {
            width: 90%;
            margin: 20px 5% 80px;
        }
        .service_information .pink1,
        .service_information .pink2,
        .service_information .pink3 {
            margin-bottom: 35px;
        }
        /** home page 24 **/
        .skyblue .menu-mobile {
            border-color: #fff;
            color: #fff;
            margin: 10px 5px;
        }
        .master_ji {
            margin-bottom: 30px;
        }
        .bottom_fixed {
            position: relative;
            bottom: 0;
        }
        .brand_logo_section li {
            width: 50%;
            padding: 0 15px;
        }
        /** home page 25 **/
        .header_funky_style .header_top {
            display: none;
        }
        .header_funky_style a.menu-mobile {
            margin: 10px;
        }
        .header.header_funky_style .menu > ul > li > a {
            font-size: 15px;
            font-weight: 400;
            color: #898989;
            padding: 10px 15px 9px;
        }
        .slide_banner25 .slide_cont h2 {
            text-transform: uppercase;
            font-weight: 700;
            font-family: 'Raleway', sans-serif;
            font-size: 28px;
            line-height: 35px;
            z-index: 0;
            margin-bottom: 25px;
        }
        .slide_banner25 .slide_cont {
            margin-top: 50px;
        }
        .bottom_service_temp_inner {
            margin-top: 0;
        }
        .bottom_service_temp {
            display: none;
        }
        .slide_banner25 .inner_slide {
            margin: 25px 0 0 0;
        }
        .team_blog_img {
            float: left;
            width: 100%;
            height: 170px;
            margin-top: 0px;
            margin-left: 0;
            border-radius: 0;
            text-align: center;
            align-items: center;
            display: flex;
            justify-content: center;
            margin-right: 0;
            margin-bottom: 25px;
        }
        .team_blog {
            border-radius: 5px;
            min-height: 170px;
            float: left;
            width: 100%;
        }
        .team_blog_cont {
            padding: 25px 0 15px 0;
            float: left;
            width: 100%;
        }
        /** home page 26 **/
        .header_style26 .right_side_bt {
            display: none;
        }
        .header_style26 .menu {
            width: auto;
            margin: 9px 0 0;
            float: left;
        }
        .header_style26 .menu > ul > li > a {
            padding: 10px 25px;
        }
        .slide_banner26 .slide_cont {
            margin-top: 220px;
        }
        .slide_banner26 .slide_cont h2 {
            font-size: 40px;
            line-height: 45px;
        }
        .owl-carousel-mousewheel .owl-prev {
            width: 35px;
        }
        .owl-carousel-mousewheel .owl-next {
            width: 35px;
        }
        .owl-carousel-mousewheel {
            padding: 0 35px;
        }
        .owl-carousel-mousewheel {
            background: #fff;
        }
        .step_process li {
            width: 100%;
        }
        /** inner pages **/
        .team_member_img img {
            width: 100%;
        }
        #inner_slide .slider_information ul li {
            margin: 10px 0;
            width: 100%;
        }
        .slider_information {
            margin-bottom: 25px;
        }
        .lawyer_img {
            margin-bottom: 35px;
        }
        .about_page_3.brown_color_theme .heading_style_7 h2 {
            font-size: 21px;
        }
        .left_section_head {
            margin-bottom: 35px;
        }
        .testimonial_ser2 .owl-nav.disabled {
            top: -50px;
        }
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next:hover,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next:focus {
            width: 50%;
            height: 45px;
            text-align: center;
            line-height: 45px;
            right: 0;
            border-radius: 0;
        }
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:hover,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:focus {
            width: 50%;
            height: 45px;
            border-radius: 0;
            text-align: center;
            line-height: 45px;
            left: 0;
        }
        .testimonial_ser2 .testimo {
            margin-bottom: 25px;
        }
        .service_blog3 .padding_right_left_15 {
            background: #f8f8f8;
            padding: 15px 15px;
        }
        .inner_banner7 {
            padding-top: 180px;
        }
        .slide_banner1 {
           min-height: auto;
           position: relative;
           background-repeat: no-repeat;
           background-size: cover;
           background-position: bottom center;
        } 
        .slide_cont {
            margin: 50px 0 100px;
        }
        .blog_banner h2,
        .portfolio_banner h2 {
            margin: 85px 0 0;
            font-weight: 300;
        }
        .breadcrum_side ul {
            margin: 5px 0 30px;
            width: 100%;
        }
        .blog_detail h3 {
            text-align: left;
        }
        #default_theme.blog_detail section p {
            text-align: left;
        }
        .width_50 {
            width: 100%;
        }
        .layout_padding_grey_half {
            padding: 35px;
        }
        .portfolio .tab_bar_section ul.nav.nav-tabs li {
            margin-bottom: 15px;
            margin-left: 10px;
            margin-right: 10px;
            width: auto;
        }
        .portfolio .portfolio_layout2 .tab_bar_section ul.nav.nav-tabs li {
            margin: 0 10px 20px;
        }
        .portblog_img img {
            width: 100%;
        }
        .share_section ul li {
            margin: 0 0 10px 0;
            width: 100%;
        }
        .share_section {
            float: left;
            width: 100%;
            margin-top: 0;
            margin-bottom: 35px;
        }
        .portfolio_detail .one_line_layout .feature_icon img {
            width: 100px;
        }
        /** shop page **/
        
        .shopping-cart-cart {
            max-width: 100%;
            width: 100%;
            margin-top: 25px;
        }
        
        .product-table table.table {
            min-width: 720px;
        }
        
        .product_detail_page .tab_bar_section .nav.nav-tabs {
            display: flex;
            justify-content: center;
        }
        
        .product_detail_page .tab_bar_section .nav-tabs .nav-item {
            width: 100%;
        }
        
    }
    
    @media (max-width:575px) {
        /** cross layout **/
        .inform_dentist_botm p {
            text-align: center;
        }
        .margin_top_30_respon {
            margin-top: 30px;
        }
        .cross_layout:before {
            height: 20px;
        }
        .cross_layout:after {
            height: 20px;
        }
        .p_data{
            padding-left: 40px;
        padding-right: 40px;
        }
        p.large {
            font-size: 14px;
        }
        h2 {
            font-size: 32px;
            line-height: 35px;
            letter-spacing: -1px;
        }
        .container {
            max-width: 100%;
        }
        .home_page1 #banner_slide {
            margin-bottom: 0;
        }
        .right_bt {
            float: right;
            width: 100%;
            justify-content: center;
            display: flex;
            margin-top: 15px;
        }
        .right_bt a.bt_main {
            width: 100%;
        }
        .home_page1 .slide_cont {
            margin-top: 75px;
        }
        .slide_banner1 {
           position: relative;
           background-repeat: no-repeat;
           background-size: auto 100%;
           height: auto;
           min-height: auto;
           background-position: bottom left;
        }
        .slide_cont h2 {
            font-size: 28px;
            line-height: 34px;
        }
        .slide_pc_img img {
            width: 100%;
            margin-left: 0;
            margin-top: 35px;
            right: 0;
        }
        .slide_pc_img {
            position: relative;
            z-index: 1;
            margin-bottom: 0;
        }
        .slide_bt .bt_main {
            border: solid #1e72bc 1px;
            line-height: 43px;
        }
        .home_page1 .padding_right_left_15 {
            margin-bottom: 30px;
        }
        .layout_screen {
            left: 0;
            position: relative;
            width: 100%;
        }
        .padding_inner {
            padding-top: 25px;
            padding-bottom: 25px;
        }
        .theme_bg {
            min-height: auto;
        }
        .layout_pur_minus {
            margin-bottom: 0;
        }
        .team_member_img img {
            width: 100%;
        }
        .table_price {
            margin-bottom: 15px;
        }
        .blog_feature_img img {
            width: 100%;
        }
        .contact_form_inner {
            max-width: 100%;
        }
        .slide_cont {
            text-align: center;
        }
        .slide_bt {
            display: flex;
            justify-content: center;
        }
        .home_page1 .layout_padding_2 {
            margin: 0 !important;
        }
        .layout_padding {
            margin: 0 !important;
        }
        .blog_section {
            margin-top: 30px;
        }
        .blog_feature_cantant {
            padding: 30px 20px 20px;
        }
        .contact_form {
            min-height: auto;
            padding: 80px 30px;
        }
        .footer_blog {
            display: flex;
            margin-bottom: 25px;
        }
        .information_blog h3 {
            font-size: 21px;
        }
        .information_blog {
            margin: 15px 0;
        }
        /** portfolio popup **/
        
        .description_popup {
            padding: 30px;
        }
        #portfolio_pop .modal-content {
            width: 90%;
            margin: 0 auto;
        }
        
        .description_popup h3 {
            font-size: 18px;
        }
        
        /**** home page 2 add custom with arrange ****/
        .margin_bottom_30 {
            margin-bottom: 30px;
        }
        .target_section {
            width: 100%;
            background: #fff;
            padding: 50px 25px 50px;
            box-shadow: 0 0 45px -15px #000;
            margin-top: 20px;
            margin-bottom: 30px;
        }
        .team_blog {
            margin-bottom: 30px;
        }
        .target_section .feature_icon {
            margin-top: 25px;
        }
        .header .social_icons {
            width: 100%;
            justify-content: center;
            display: flex;
            border-top: solid rgba(255, 255, 255, .1) 1px;
            padding-top: 15px;
        }
        .home_page2 .slide_cont {
            margin-top: 20px;
        }
        .home_page2 #banner_parallax .slide_cont p {
            line-height: 30px;
            font-size: 22px;
            margin-top: 30px;
        }
        .slide_banner2 {
            min-height: 480px;
        }
        .heading_style_2 p {
            font-size: 18px;
            margin-top: 0;
            margin-bottom: 45px;
        }
        .heading_style_2 h2 {
            line-height: 30px;
            margin-top: 15px;
        }
        .home_page2 .light_silver_2 div.layout_bt {
            margin-bottom: 25px;
            float: left;
            width: 100%;
        }
        /** home page 3 **/
        .haf_full_section.right_full::after {
            height: 350px;
            position: relative;
            width: 100%;
        }
        .haf_full_section.left_full::after {
            height: 350px;
            position: relative;
            width: 100%;
        }
        .center_padding {
            padding: 75px 0 60px;
        }
        .home_page3 .slide_cont h2 {
            font-size: 40px;
            line-height: 40px;
        }
        .home_page3 section#banner_parallax.slide_banner3 .slide_cont p {
            font-size: 20px;
        }
        .slide_banner3 h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        .slide_banner3 {
            min-height: 720px;
        }
        .information_blog h3 {
            font-size: 21px;
        }
        .information_blog {
            margin: 15px 0;
        }
        /** side bar **/
        .toggle_side_bar {
            display: block;
        }
        .sidenav {
            height: 100%;
            width: 0;
        }
        .sidebar_page {
            margin-left: 0;
        }
        .sidenav .closebtn {
            display: block;
        }
        /** home page 4 **/
        .overlap_top_img_main {
            margin: -70px 0 0 0;
            width: 100%;
        }
        .brand_logo_section li {
            width: 33.33%;
            padding: 0 15px;
        }
        .slide_banner4 h2 strong {
            font-size: 50px;
        }
        .slide_banner4 h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        .home_page4 .slide_cont p {
            font-size: 12px;
            line-height: 21px;
        }
        .golden_yellow_theme a.transparent_bt {
            padding: 0 10px;
            min-width: 148px;
            line-height: 45px;
            font-size: 13px;
        }
        .bt_main {
            font-size: 13px;
            min-width: 120px;
            height: 45px;
            line-height: 45px;
            padding: 0 10px;
        }
        #contant_slider .carousel-indicators {
            display: flex;
            bottom: -80px;
        }
        .heading_style_4 p {
            font-size: 16px;
        }
        .heading_style_4 h2 {
            font-size: 28px;
            color: #343434;
            line-height: 40px;
        }
        .tab_head ul {
            display: block;
        }
        .blog_section.style_2 .blog_head {
            font-size: 18px;
        }
        .contact_form {
            padding: 80px 30px 80px;
        }
        /** home page 5 **/
        .screen_website_bannr {
            margin-top: 30px;
            margin-bottom: 30px;
        }
        .slide_banner5 {
            margin-bottom: 0;
        }
        .heading_style_5 .small_text {
            margin: 0 0 10px 0;
        }
        .layout_pur_minus img {
            width: 100%;
            margin-top: 50px;
        }
        .overlap_top_img_main {
            margin: 0;
            width: 100%;
        }
        .feature_cs img {
            width: 100%;
        }
        /** home page 6 **/
        .header.header_style4.header_left_side .main_menu {
            float: right !important;
        }
        .home_page6 .slide_cont {
            margin-top: 280px;
        }
        .heading_style_6 h2 {
            margin-bottom: 20px;
            font-size: 25px;
        }
        .padding_right_left_25 {
            margin-top: 50px;
        }
        .blog_news1 {
            padding: 35px;
        }
        .gray_layer_bg .full img {
            width: 100%;
        }
        .field input {
            padding: 0 20px;
        }
        .contact_form_layout .field textarea {
            padding: 5px 20px;
        }
        /** home page 7 **/
        .header_style5 div.menu > ul > li > a {
            padding: 10px 18px;
        }
        .header_top p {
            margin: 0;
            color: #555;
            font-size: 13px;
            margin: 5px 0 5px;
        }
        .right_section_bottom_header {
            display: flex;
            justify-content: center;
            border-top: solid #ddd 1px;
            margin-top: 10px;
        }
        #searchbar {
            width: 90%;
            right: 5%;
            top: 50px;
        }
        .slide_banner7 .slide_cont h2 {
            line-height: normal;
            font-size: 24px;
        }
        .slide_inform {
            text-align: left;
        }
        .slider_information {
            display: flex;
            justify-content: center;
        }
        .heading_style_7 h2 {
            font-size: 28px;
            line-height: 30px;
        }
        .full.bottm_bt_style {
            position: relative;
            bottom: 0;
            right: 0;
            margin-top: 15px;
            margin-bottom: 10px;
        }
        .inform_ser_blogs_3 ul li {
            width: 100%;
        }
        .position_abs {
            position: relative;
        }
        .hight_100_per {
            margin-bottom: 35px;
        }
        .left_head ul {
            margin: 12px 0 11px;
            float: left;
            width: 100%;
        }
        /** home page 8 **/
        .with_out_menu_header div.left_head ul li {
            display: inline;
            margin-right: 0;
            font-size: 14px;
            color: #fff;
            float: left;
            width: 100%;
            text-align: center;
        }
        .home_page8 .right_head {
            display: none;
        }
        .layout_bt {
            float: left;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .service_info_sec {
            margin-top: 30px;
            position: relative;
            margin-bottom: -20px;
        }
        .heading_style_8 h2 {
            font-size: 30px;
            margin-bottom: 25px;
        }
        .tab_bar .tags li {
            float: left;
            margin: 3px;
        }
        #testimoial_slider {
            margin-bottom: 80px;
        }
        .why_peoeple_choose .col-md-2 {
            margin-bottom: 25px;
        }
        /** home page 9 **/
        #banner_parallax.slide_banner9 h2 {
            font-size: 50px;
        }
        .cont_boder_style_slide::after {
            margin-left: auto;
            margin-right: auto;
        }
        .hiren_img {
            margin-top: 30px;
        }
        .feature_cs img {
            width: 100%;
        }
        /** home page 10 **/
        #banner_parallax.slide_banner10 h2 {
            font-size: 50px;
        }
        .cont_boder_style_slide::after {
            margin-left: auto;
            margin-right: auto;
        }
        .hiren_img {
            margin-top: 30px;
        }
        .feature_cs img {
            width: 100%;
        }
        .slide_banner10 .slider_information ul li {
            display: flex;
            margin: 15px 0;
            float: left;
            width: 100%;
            justify-content: center;
        }
        /** home page 11 **/
        .play_section {
            position: relative;
        }
        .weekend_section_inner .play_pause_control {
            padding-left: 35px;
        }
        .weeked_section .play_pause {
            left: 0;
        }
        .click_section_form_change_vedio .float-left {
            width: 100%;
        }
        .click_section_form_change_vedio .profile_uploaded {
            text-align: center;
            margin: 0;
        }
        .click_section_form_change_vedio .profile_cont_uploaded {
            margin-left: 0;
            margin-top: 15px;
            text-align: center;
        }
        .click_section_form_change_vedio .float-right {
            margin-top: 0;
            width: 100%;
            text-align: center;
        }
        .profile_cont {
            display: block;
        }
        /** home page 12 **/
        .span2 {
            width: 100%;
        }
        .cake_club .menu > ul > li > a {
            font-size: 13px;
            margin: 0;
        }
        .cake_club .menu > ul > li a > {
            font-size: 14px;
        }
        .cake_club .menu > ul > li > a {
            font-size: 14px;
            padding: 13px;
        }
        .cake_club .menu-mobile::after {
            top: 4px;
        }
        .slide_banner12 {
            background-size: cover;
        }
        .slide_banner12 .slide_cont h3 {
            font-size: 50px;
            line-height: 70px;
        }
        .Courgette_font h2 {
            font-size: 35px;
        }
        div.layout_padding_2 {
            padding-top: 50px;
        }
        /** home page 13 **/
        #banner_parallax.slide_banner13 .slide_cont h2 {
            font-size: 50px;
            line-height: 58px;
            margin-top: 25px;
            margin-bottom: 25px;
        }
        .information_icon {
            margin: 15px 0 0 0;
        }
        .slide_banner13 {
            min-height: auto;
            max-height: inherit;
            padding-bottom: 50px;
        }
        .slide_cont {
            margin: 50px 0 100px;
        }
        .slide_cont {
            margin-top: 115px;
        }
        .berber_side_img::after {
            display: none;
        }
        .hair_menu_list_cont ul {
            float: left;
            width: 100%;
        }
        .tab_bar_section ul.nav.nav-tabs li a {
            font-size: 15px;
            font-weight: 500;
            padding: 0 10px;
            line-height: 45px;
        }
        .discount_section_inner {
            top: 0;
            left: 0;
        }
        .discount_section h4 {
            line-height: 28px;
            margin: 15px 0;
        }
        .discount_section h3 {
            color: #d19d64;
            font-size: 30px;
            margin: 10px 0;
            line-height: 38px;
        }
        .join_us_section {
            text-align: center;
        }
        .join_us_section h2 {
            margin-bottom: 15px;
        }
        /** home page 14 **/
        .header.header_style14 .header_top {
            display: none;
        }
        .header_style14 .logo {
            top: 0;
        }
        .header_style14 .logo img {
            width: 110px;
        }
        .header_style14 .logo {
            position: absolute;
            top: 0;
            padding: 10px 0;
        }
        .header_style14 .logo {
            top: -47px;
        }
        .header_style14 .header_bottom {
            min-height: 60px;
            padding-top: 55px;
        }
        .header.header_style14 .header_bottom .right_section_bottom_header {
            margin: 10px 0 18px;
            padding-top: 15px;
            width: 100%;
        }
        .header.header_style14 .main_menu > .menu > ul > li > a {
            color: #000;
        }
        .slide_banner14 {
            min-height: 450px;
        }
        .waiter_img {
            margin-top: 45px;
        }
        .style_pro_head {
            margin-top: 0;
            margin-bottom: 75px;
        }
        .top_center_pro .head_cafe_img {
            margin-left: 0;
            width: 100%;
            text-align: center;
        }
        .top_center_pro {
            display: block;
        }
        .head_cafe_img {
            text-align: center;
        }
        .top_left_pro .head_cafe_pro {
            position: relative;
            top: 0;
        }
        .top_center_pro .head_cafe_pro {
            position: relative;
            top: 0;
            left: 0;
        }
        .head_cafe_img img {
            width: 50%;
        }
        .bottom_center_pro .text_align_left {
            text-align: center;
            padding-left: 0;
            margin: 0;
        }
        .bottom_right_pro .head_cafe_img {
            text-align: center;
        }
        .bottom_center_pro .text_align_left {
            text-align: center;
            padding-left: 0;
            margin: 0;
        }
        .bottom_right_pro {
            top: 0;
        }
        .bottom_right_pro .head_cafe_img {
            text-align: center;
        }
        .head_cafe_pro.text_align_right {
            text-align: center;
        }
        .head_cafe_pro.text_align_left {
            text-align: center;
        }
        .top_center_pro .head_cafe_pro {
            text-align: center;
        }
        .top_left_pro .head_cafe_pro {
            text-align: center;
        }
        .style_pro_head {
            margin-top: 50px;
            margin-bottom: 100px;
        }
        .team_blog_style_cheif .team_blog {
            width: 80%;
            margin: 0 10%;
        }
        .time_ser {
            margin-bottom: 35px;
        }
        /** home page 15 **/
        .slide_banner15#banner_parallax h2 {
            font-size: 35px;
            line-height: 38px;
            font-weight: 400;
            color: #ffb125;
        }
        .home_page15 .slide_cont {
            margin-top: 220px;
        }
        .home_page15 section.layout_padding_2.horizontal_cross_layout {
            margin-bottom: 0;
        }
        .home_page15 .streat_section_rev img {
            height: 80px;
        }
        .white_border {
            margin-left: 0;
            padding-left: 80px;
        }
        .enter_roll_bt {
            display: flex;
            justify-content: center;
            margin-top: 35px;
        }
        .streat_section_rev_bottom img {
            position: absolute;
            bottom: 0;
            height: 85px;
        }
        .black_border {
            margin-left: 0;
            padding-left: 80px;
        }
        .team_blog_gym {
            display: block;
            margin: 15px 0;
            text-align: center;
        }
        .team_blog_gym .team_img {
            margin: 0;
            text-align: center;
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .gym_cle {
            margin-bottom: 45px;
        }
        /** home page 16 **/
        .slide_banner16 .slide_cont h2 {
            font-size: 35px;
        }
        #banner_parallax.slide_banner16 .slide_cont p {
            font-size: 18px;
        }
        .heading_style_13 h2 {
            font-size: 48px;
            font-weight: 600;
            color: #343434;
            margin: 0 0 25px 0;
            line-height: 48px;
        }
        .yoga_icon {
            margin-bottom: 20px;
            text-align: center;
        }
        .yoga_icon + div {
            text-align: center;
        }
        .bg_layout_yoga .heading_style_13 h2 {
            font-size: 32px;
            line-height: 32px;
        }
        /** home page 17 **/
        .header_style17 .header_top.top_imform {
            display: none;
        }
        .slide_banner17 {
            min-height: 720px;
            max-height: inherit;
        }
        .dentist_slide img {
            width: 100%;
            margin-bottom: 50px;
        }
        .home_page17 .heading_style_3 p.small_text {
            font-size: 20px;
            line-height: 24px;
        }
        .home_page17 .heading_style_3 h2 {
            font-size: 30px;
            margin: 25px 0;
            line-height: 35px;
        }
        .dentist_imfor_ser .col-md-7 {
            margin-bottom: 50px;
        }
        .dentis_team_blog .team_member_img img {
            width: auto;
        }
        .header.header_style18 .top_imform {
            display: none;
        }
        /** home page 18 **/
        .menu_border_hover .main_menu .menu > ul > li > a {
            padding-bottom: 10px;
        }
        .fiver_boy img {
            max-width: 100%;
        }
        .slide_bottom_icon li {
            margin: 5px 5px;
        }
        .doc_ser {
            margin-bottom: 25px;
        }
        .doctor_team .team_member_img.team_member_img img {
            width: auto;
        }
        /** home page 19 **/
        .sidebar_menu {
            float: right;
            top: 15px;
            position: relative;
        }
        #banner_parallax.slide_banner19 {
            padding-top: 1px;
        }
        .home_page19 .slide_cont {
            margin-top: 35px;
        }
        .product_ecommr {
            margin-top: 45px;
        }
        .heading_style_19 h2 {
            font-size: 32px;
            line-height: 42px;
        }
        .one_line_layout {
            margin: 15px 0;
        }
        .coffee_machine {
            position: relative;
            top: 0;
        }
        .product_style_1 .product_img {
            border-right: none;
        }
        .coffee_machine img {
            margin-top: 25px;
        }
        .newslatterform form {
            position: relative;
            width: 100%;
        }
        .menu_product li {
            float: left;
            margin: 0;
            width: 50%;
        }
        /** home page 20 **/
        .header.header_style_ecomm2 .header_top {
            display: none;
        }
        .top_search_bar .field {
            display: block;
        }
        .search_style_2 .top_search_bar input {
            max-width: 100%;
            border-radius: 0;
            border: solid #e1e1e1 1px;
            margin-bottom: -1px;
        }
        .search_style_2 .top_search_bar .bootstrap-select button,
        .search_style_2 .top_search_bar .bootstrap-select button:hover,
        .search_style_2 .top_search_bar .bootstrap-select button:focus,
        .search_style_2 .top_search_bar .bootstrap-select button:active {
            width: 100%;
            margin: 0;
        }
        div.top_search_bar .btn-group.bootstrap-select {
            width: 100% !important;
        }
        .search_style_2 .top_search_bar button.submit_search {
            background: #0163d2;
            width: 100%;
            font-weight: 500;
            font-size: 14px;
            border-radius: 0;
        }
        .search_catry_bt {
            position: relative;
            top: 0;
            right: 1px;
        }
        .header_style_ecomm2 .sidebar_menu a {
            background: #0163d2;
            width: 36px;
            float: right;
            height: 36px;
            border-radius: 0;
            text-align: center;
            padding: 5px 5px;
            margin: 12px 0 0;
        }
        .right_cart_section ul li {
            margin-right: 20px;
        }
        .right_cart_section ul {
            margin: 0 0 10px; 
        }
        .header_bottom_thirth {
            display: none;
        }
        .home_page20 .bt_main {
            padding: 0 25px;
        }
        .top_sec {
            line-height: 24px;
            font-size: 15px;
            padding: 20px 20px;
        }
        .blue_layer_image2 h2,
        .blue_layer_image h2 {
            font-size: 28px;
            line-height: 42px;
            letter-spacing: -1px;
        }
        /** home page 21 **/
        .header_style_ecomr3 .header_top {
            display: none;
        }
        .header_style_ecomr3 .menu {
            width: auto;
            margin: 9px 0 0;
            float: left;
        }
        .right_icon_ecoomr {
            float: right;
            margin: 10px 0;
        }
        .header.header_style_ecomr3 .menu > ul > li > a {
            padding: 10px 24px;
            font-weight: 500;
        }
        .home_page21 .slide_banner18 .slide_cont h2 {
            font-size: 72px;
            line-height: 72px;
            text-align: center;
        }
        .home_page21 .slide_banner18 .slide_cont h2 span {
            float: left;
        }
        .slide_banner18#banner_parallax p {
            font-size: 15px;
        }
        .categary_part {
            width: 100%;
            min-height: 280px;
        }
        .slide_banner18 .slide_bt {
            padding-bottom: 35px;
        }
        /** home page 22 **/
        .light_red .header.header_style_ecomr3 .menu > ul > li > a {
            color: #222;
        }
        .slide_banner22 .slide_cont {
            margin-top: 55px;
        }
        .slide_banner22 .slide_cont h2 {
            font-size: 40px;
            line-height: 45px;
        }
        .date_counter_2 #clockdiv div.count {
            width: 50%;
            margin: 7px 0 0 0;
            text-align: center;
        }
        .date_counter_2 #clockdiv div > span {
            width: 90%;
            margin: 0 5%;
        }
        .full.counter_price h2 {
            line-height: normal;
        }
        .home_page22 div.full.layout_bt {
            margin-bottom: 35px;
        }
        /** home paga 23 **/
        .catergary_tab_bar ul li.nav-item {
            width: 50%;
        }
        .client_slider_main2 .testi_head {
            margin-top: 25px;
            text-align: center;
        }
        .client_slider_main2 div#testimonial2 {
            width: 90%;
            margin: 20px 5% 80px;
        }
        .service_information .pink1,
        .service_information .pink2,
        .service_information .pink3 {
            margin-bottom: 35px;
        }
        /** home page 24 **/
        .skyblue .menu-mobile {
            border-color: #fff;
            color: #fff;
            margin: 10px 5px;
        }
        .master_ji {
            margin-bottom: 30px;
        }
        .bottom_fixed {
            position: relative;
            bottom: 0;
        }
        .brand_logo_section li {
            width: 50%;
            padding: 0 15px;
        }
        /** home page 25 **/
        .header_funky_style .header_top {
            display: none;
        }
        .header_funky_style a.menu-mobile {
            margin: 10px;
        }
        .header.header_funky_style .menu > ul > li > a {
            font-size: 15px;
            font-weight: 400;
            color: #898989;
            padding: 10px 15px 9px;
        }
        .slide_banner25 .slide_cont h2 {
            text-transform: uppercase;
            font-weight: 700;
            font-family: 'Raleway', sans-serif;
            font-size: 28px;
            line-height: 35px;
            z-index: 0;
            margin-bottom: 25px;
        }
        .slide_banner25 .slide_cont {
            margin-top: 50px;
        }
        .bottom_service_temp_inner {
            margin-top: 0;
        }
        .bottom_service_temp {
            display: none;
        }
        .slide_banner25 .inner_slide {
            margin: 25px 0 0 0;
        }
        .team_blog_img {
            float: left;
            width: 100%;
            height: 170px;
            margin-top: 0px;
            margin-left: 0;
            border-radius: 0;
            text-align: center;
            align-items: center;
            display: flex;
            justify-content: center;
            margin-right: 0;
            margin-bottom: 25px;
        }
        .team_blog {
            border-radius: 5px;
            min-height: 170px;
            float: left;
            width: 100%;
        }
        .team_blog_cont {
            padding: 25px 0 15px 0;
            float: left;
            width: 100%;
        }
        /** home page 26 **/
        .header_style26 .right_side_bt {
            display: none;
        }
        .header_style26 .menu {
            width: auto;
            margin: 9px 0 0;
            float: left;
        }
        .header_style26 .menu > ul > li > a {
            padding: 10px 25px;
        }
        .slide_banner26 .slide_cont {
            margin-top: 220px;
        }
        .slide_banner26 .slide_cont h2 {
            font-size: 40px;
            line-height: 45px;
        }
        .owl-carousel-mousewheel .owl-prev {
            width: 35px;
        }
        .owl-carousel-mousewheel .owl-next {
            width: 35px;
        }
        .owl-carousel-mousewheel {
            padding: 0 35px;
        }
        .owl-carousel-mousewheel {
            background: #fff;
        }
        .step_process li {
            width: 100%;
        }
        /** inner pages **/
        .team_member_img img {
            width: 100%;
        }
        #inner_slide .slider_information ul li {
            margin: 10px 0;
            width: 100%;
        }
        .slider_information {
            margin-bottom: 25px;
        }
        .lawyer_img {
            margin-bottom: 35px;
        }
        .about_page_3.brown_color_theme .heading_style_7 h2 {
            font-size: 21px;
        }
        .left_section_head {
            margin-bottom: 35px;
        }
        .testimonial_ser2 .owl-nav.disabled {
            top: -50px;
        }
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next:hover,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-next:focus {
            width: 50%;
            height: 45px;
            text-align: center;
            line-height: 45px;
            right: 0;
            border-radius: 0;
        }
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:hover,
        .client_slider_main .testimonial_ser2 .owl-nav .owl-prev:focus {
            width: 50%;
            height: 45px;
            border-radius: 0;
            text-align: center;
            line-height: 45px;
            left: 0;
        }
        .testimonial_ser2 .testimo {
            margin-bottom: 25px;
        }
        .service_blog3 .padding_right_left_15 {
            background: #f8f8f8;
            padding: 15px 15px;
        }
        .inner_banner7 {
            padding-top: 180px;
        }
        .blog_banner h2,
        .portfolio_banner h2 {
            margin: 85px 0 0;
            font-weight: 300;
        }
        .breadcrum_side ul {
            margin: 5px 0 30px;
            width: 100%;
        }
        .blog_detail h3 {
            text-align: left;
        }
        #default_theme.blog_detail section p {
            text-align: left;
        }
        .width_50 {
            width: 100%;
        }
        .layout_padding_grey_half {
            padding: 35px;
        }
        .portfolio .tab_bar_section ul.nav.nav-tabs li {
            margin-bottom: 15px;
            margin-left: 10px;
            margin-right: 10px;
            width: auto;
        }
        .portfolio .portfolio_layout2 .tab_bar_section ul.nav.nav-tabs li {
            margin: 0 10px 20px;
        }
        .portblog_img img {
            width: 100%;
        }
        .share_section ul li {
            margin: 0 0 10px 0;
            width: 100%;
        }
        .share_section {
            float: left;
            width: 100%;
            margin-top: 0;
            margin-bottom: 35px;
        }
        .portfolio_detail .one_line_layout .feature_icon img {
            width: 100px;
        }
        
        /** shop page **/
        
        .shopping-cart-cart {
            max-width: 100%;
            width: 100%;
            margin-top: 25px;
        }
        .product-table table.table {
            min-width: 720px;
        }
        .product_detail_page .tab_bar_section .nav.nav-tabs {
            display: flex;
            justify-content: center;
        }
        .product_detail_page .tab_bar_section .nav-tabs .nav-item {
            width: 100%;
        }
        .inner_banner1 h2 {
            font-size: 30px;
        }
        .cont_theme_blog h3 {
            font-size: 30px;
            line-height: 38px;
            font-weight: 600;
        }
        .cont_theme_blog p {
           font-size: 16px;
           line-height: normal;
        }
        .information_blogs {
            margin-bottom: 45px;
        }
        
    }
    
    
    /*---------------------------------------------
        Responsive Menu 
    ---------------------------------------------*/
    
    @media only screen and (max-width: 991px) {
        .test{
            margin-left: 114px;
        }
        .only_desk_menu {
            display: none;
        }
        .only_mobile_tab_menu {
            display: block;
        }
        .menu {
            margin: -56px 0 0;
            float: right;
        }
        .menu-container {
            width: 100%;
        }
        .menu-container .menu {
            display: inline-block;
        }
        .menu > ul > li > ul.normal-sub > li {
            width: 50%;
            padding: 0;
        }
        .menu > ul > li > ul > li {
            padding: 8px 0;
        }
        .menu > ul > li > ul.normal-sub > li a {
            border: 0;
            padding: 8px 0;
        }
        .menu > ul > li > ul > li a {
            color: #777;
            padding: 0;
            width: 100%;
            display: block;
            font-size: 13px;
        }
        .menu-mobile {
        display: block;
        padding: 0;
        width: 35px;
        cursor: pointer !important;
        height: 35px;
        border: solid #1e72bc 2px;
        border-radius: 5px;
        z-index: 9;
        }
        .menu-mobile {
            text-align: center;
            color: #1e72bc;
            font-size: 18px;
            margin-top: -20px;
        }
        .menu-mobile:hover,
        .menu-mobile:focus {
            border-color: #000;
            color: #000;
        }
        .menu-dropdown-icon:before {
            display: block;
        }
        .menu > ul > li > ul > li {
            margin: 0;
            padding-top: 0;
            padding-bottom: 0;
            list-style: none;
            width: 50%;
            background: none;
            float: left;
            min-height: auto;
        }
        .menu > ul > li {
            width: 100%;
            float: none;
            display: block;
            border-bottom: solid #ddd 2px;
        }
        .menu > ul > li a {
            padding: 10px 15px 10px;
            width: 100%;
            display: block;
        }
        .menu > ul > li > ul {
            position: relative;
            padding: 10px 15px;
            overflow-y: auto;
            border: none;
            border-top: solid #ddd 2px;
            width: 100%;
            min-height: auto;
            background-image: none;
            box-shadow: none;
            margin: 0;
        }
        .menu > ul > li > ul > li:nth-child(2n+1) {
            background: #fff;
        }
        .menu > ul > li > ul.normal-sub {
            width: 100%;
            padding: 10px 15px;
        }
        .menu > ul > li > ul > li:first-child {
            margin: 0;
        }
        .menu > ul > li > ul > li > ul {
            position: relative;
        }
        .menu > ul > li > ul > li > ul > li {
            float: none;
        }
        .main_menu .clearfix {
            position: absolute;
            width: 100%;
            left: 0;
            top: 5px;
            z-index: 9;
            background: #fff;
            transition: ease all 0.5s;
            opacity: 0;
            visibility: hidden;
            border-top: solid #ddd 2px;
        }
        .main_menu .clearfix.show-on-mobile {
            opacity: 1;
            visibility: visible;
        }
        .responsive_logo {
            display: block;
        }
        .desk_logo {
            display: none;
        }
    }
    
    /** Generated by FG **/
@font-face {
  font-family: "Gotham_Medium_Regular";
  src: url(/fonts/Gotham_Medium_Regular.eot);
  src: local("☺"), url(/fonts/Gotham_Medium_Regular.woff) format("woff"),
    url(/fonts/Gotham_Medium_Regular.ttf) format("truetype"),
    url(/svg/Gotham_Medium_Regular.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

/** Generated by FG **/
@font-face {
  font-family: "Gotham_Book";
  src: url(/fonts/Gotham_Book.eot);
  src: local("☺"), url(/fonts/Gotham_Book.woff) format("woff"),
    url(/fonts/Gotham_Book.ttf) format("truetype"),
    url(/svg/Gotham_Book.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

/** Generated by FG **/
@font-face {
  font-family: "New_BaskervilleStd_Italic";
  src: url(/fonts/New_BaskervilleStd_Italic.eot);
  src: local("☺"), url(/fonts/New_BaskervilleStd_Italic.woff) format("woff"),
    url(/fonts/New_BaskervilleStd_Italic.ttf) format("truetype"),
    url(/svg/New_BaskervilleStd_Italic.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

/** Generated by FG **/
@font-face {
  font-family: "Gotham_Book_Regular";
  src: url(/fonts/Gotham_Book_Regular.eot);
  src: local("☺"), url(/fonts/Gotham_Book_Regular.woff) format("woff"),
    url(/fonts/Gotham_Book_Regular.ttf) format("truetype"),
    url(/svg/Gotham_Book_Regular.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}
/** Generated by FG **/
@font-face {
  font-family: "Gotham-Bold";
  src: url(/fonts/Gotham-Bold.eot);
  src: local("☺"), url(/fonts/Gotham-Bold.woff) format("woff"),
    url(/fonts/Gotham-Bold.ttf) format("truetype"),
    url(/svg/Gotham-Bold.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}

@media (min-width: 768px) {
  /* .container{width:750px} */
}
@media (min-width: 992px) {
  /* .container{width:970px} */
}
@media (min-width: 1200px) {
  /* .container{width:1250px} */
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
}

@media only screen and (min-device-width: 781px) and (max-device-width: 991px) {
}

/* custom - header mobile start */
@media (max-width: 767px) {
}
@media (min-width: 768px) {
}

hr {
  border-top: 1px solid #141414;
}

/* Footer CSS starts */

.footer-section-custom hr {
  border-top: 2px solid #143d59;
}

/* Footer CSS ends */

body {
  background-color: #fff;
}

/* header layout css */
.cust-margin-login {
  margin: 20px 0;
}

.cust-margin-login button {
  margin: 0 10px;
}
/* header layout css */

/* Home page CSS starts */

/* .artist-banner img{
    width: 100%;
  } */

.color-link-head a {
  color: white;
}

.artist-header {
  padding: 25px;
  padding-bottom: 0;
}

.artist-header span {
  color: white;
  font-size: 30px;
}

.artist-header .white-color-head {
  color: #141414;
  font-size: 30px;
}

.artist-header button {
  float: right;
  color: white;
  /* border-color: white; */
  background-color: transparent;
  border: 2px solid #fff;
  padding: 10px;
}

.artist-header .white-color-head-button button {
  color: #141414;
  border: 2px solid #141414;
}

.artist-banner {
  background-image: url(/images/artist_banner.png);
  background-size: cover; /* 100% 100%;  */
  height: 80vh;
  background-repeat: no-repeat;
  margin-top: -136px;
}

.artist-banner .banner-text {
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  color: white;
  font-size: 25px;
}

.artist-banner .banner-text span,
.artist-header .span-orange {
  color: #f06530;
}

.custom-class-button,
.custom-class-button:hover {
  color: white;
  background-color: #f06530;
}

.searchbar-artist {
  background-image: url(/images/Banner-2.png);
  background-size: 50% 100%;
  max-height: 60vh;
  height: 60vh;
  background-repeat: no-repeat;
}

.search-input-artist {
  display: block;
  margin: auto;
}
.search-input-artist input {
  margin-right: 10px;
  line-height: 4;
  width: 50%;
}

.search-input-artist button {
  line-height: 4;
  width: 20%;
}

.search-artist-span {
  color: #fff;
}

.search-artist-span-size {
  font-size: 50px;
  letter-spacing: 5px;
}

.search-artist-span-size u {
  text-decoration-color: #f06530;
}

.center-search-div {
  position: relative;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.hr-color {
  border-color: #141414;
}

.hr-td-content {
  width: 1px;
  padding: 0 10px;
  white-space: nowrap;
  font-size: 30px;
  font-weight: 700;
}

.category-img-custom {
  background-size: 100% 100%;
  height: 410px;
  background-repeat: no-repeat;
}

.buy-banner {
  background-image: url(/images/Banner-3.png);
}

.rent-banner {
  background-image: url(/images/Banner-4.png);
}

.exchange-banner {
  background-image: url(/images/Banner-5.png);
}

.surprise-banner {
  background-image: url(/images/Banner-6.png);
}

.train-banner {
  background-image: url(/images/Banner-7.png);
}

.cat-custom-div {
  background-color: rgba(0, 0, 0, 0.3);
  margin: 30px;
  height: 350px;
  text-align: right;
  justify-content: right;
  display: flex;
}

.bottom-alignment-custom {
  align-self: flex-end;
  width: 100%;
  padding-right: 10px;
  padding-bottom: 10px;
}

.cat-custom-div div {
  color: #fff;
  font-weight: 700;
  font-size: 35px;
}

.join-hands {
  background-color: #dddddd;
}

.join-hands span {
  color: #f06530;
}

.join-hands .partner-with-us {
  font-size: 50px;
  letter-spacing: 5px;
  margin-bottom: 10px;
}

.hr-td-content span {
  color: #f06530;
}

.see-more-img img {
  border: 1px solid black;
  padding: 5px;
}

.stay-touch {
  background-size: 100% 100%;
  /* height: 727px; @todo */
  background-repeat: no-repeat;
  background-image: url(/images/Banner-15.png);
}

.stay-touch-right {
  background-color: #143d59;
  color: #fff;
  padding: 30px;
}

.stay-touch-div {
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: white;
  font-size: 30px;
  width: 50%;
  padding: 50px 0;
  letter-spacing: 2px;
}

.stay-touch-div span {
  color: #f06530;
}

.stay-touch-right span {
  color: #f06530;
}

.stay-touch-right button {
  float: right;
}

.stay-touch-right input {
  width: 100%;
  line-height: 3;
}

.stay-touch-right textarea {
  width: 100%;
  resize: none;
}

.stay-touch-right div:first-child {
  font-size: 16px;
}

.see-more-hr hr {
  width: 5%;
  border-top: 3px solid #f06530;
}

.see-more-hr {
  font-size: 24px;
}

/* Home page CSS ends */

/* Artist Registraton css starts */

.artist-reg-page input {
  float: right;
}

/* Artist Registraton css ends */

/* Breadcrumb starts */
.breadCrumb {
  background-color: white;
}

/* .breadCrumb li{
          padding-left: 10px;
          padding-right: 10px;
       } */
/* Breadcrumb ends */

/* listing page css starts */

.listing-sort-by {
  float: right;
  color: #f06530;
}

.carouselImgDiv {
  width: 100%;
}

.product-grid-view {
  border: 1px solid #141414;
  /* margin: 2px; */
  padding: 5px;
  height: 420px;
  margin-bottom: 10px;
}

.artifact-section img {
  width: 100%;
}

.our-story-section {
  background-size: 100% 100%;
  height: 519px;
  background-repeat: no-repeat;
  background-image: url(/images/9.png);
}

.our-story-div {
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: white;
  font-size: 16px;
  width: 70%;
  padding: 30px 50px;
  letter-spacing: 2px;
}

.the-funkar-way-right {
  background-color: #143d59;
  color: #fff;
  font-size: 16px;
}

.the-funkar-way-right ol li {
  padding: 5px 10px;
}

.the-funkar-way-right1 .faq-funkar-desc {
  color: #f06530;
}
.the-funkar-way-right1 {
  padding: 10px;
}
.the-funkar-way-right1 hr {
  border-top: 2px solid #f06530;
}
/* listing page css ends */

/* Details page css starts */

.detail-you-might-like img {
  width: 100%;
  border: 1px solid black;
  padding: 5px;
}

.detail-page-add span {
  float: right;
  /* display:block;s */
}

.price-tag {
  font-size: 30px;
}
/* Details page css stops */

.float-right {
  float: right;
}

/* checkout page css starts */

.order-summary {
  color: #fff;
  padding: 20px;
  background-color: #143d59;
}

.bordered-summary {
  border: 1px solid black;
}
.bordered-summary-top {
  border-top: 1px solid black;
  padding: 20px;
}

.checkout-steps {
  background-color: #dddddd;
  padding: 10px;
}

.step-2-section textarea {
  width: 100%;
}
.payment-type {
  margin: 10px 0;
}
.address-block {
  padding: 10px 0;
}
.address-block .firstname {
  /* width: 45%; */
  float: left;
}

.address-block .lastname {
  /* width: 45%; */
  float: right;
}
.address-block .company input,
.address-block .address input {
  width: 100%;
  /* float:left; */
}
.address-block .city,
.address-block .state,
.address-block .zipcode {
  width: 30%;
  float: left;
}
.address-block .state {
  margin-left: 20px;
}
.address-block .zipcode {
  float: right;
}
.address-block .city input,
.address-block .state select,
.address-block .zipcode input {
  width: 100%;
  /* float: left; */
}
.process-btn {
  text-align: center;
}
.creditnumber input {
  width: 100%;
  margin-bottom: 5px;
}
.creditcard-expiry,
.creditcard-expiry-year {
  width: 30%;
  float: left;
}

/* checkout page css ends */

/* ---------- VENDOR CSS ------------ */

.amp-artist-logo {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.amp-artist-link {
  color: #ffffff;
  font-weight: 300 !important;
}

.artist-active-link,
.amp-artist-link:hover {
  color: #f06530;
  font-weight: bold !important;
  font-size: normal !important;
}

.container-spacing {
  margin-top: 15px;
}

.container-spacing-lg {
  margin-top: 30px;
}

.artist-checkbox,
.artist-checkbox:hover {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.artist-pu-container {
  width: 50%;
  margin: 20px auto;
}

.loading-div {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 999;
  width: 100%;
  height: 100%;
}

.artist-loader {
  position: absolute;
  top: 45%;
  left: 47%;
}

.location-carousel-item {
  height: 150px;
  border: 2px solid #6f8992;
  padding: 10px;
  padding-left: 25px;
  margin: 10px;
}

.location-item-name {
  color: #6f8992;
  font-weight: bold;
}

.amp-responsive {
  max-width: 100%;
  overflow-x: scroll;
}

.artist-align-center {
  text-align: center;
}

.no-margin-custom {
  margin-left: -15px;
  margin-right: -15px;
}

.search-bar-artist {
  margin-left: -15px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .searchbar-artist {
    max-height: 40vh;
    height: 40vh;
  }
  .artist-banner {
    height: 40vh;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .searchbar-artist {
    max-height: 50vh;
    height: 50vh;
  }
  .artist-banner {
    height: 60vh;
  }
}

@media (min-width: 1200px) {
  .artist-banner {
    height: 80vh;
  }
}
/**************************************************************Tab*************************************************/

.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

/*
   Styling
  */

body {
  font: 16px/1.5em "Overpass", "Open Sans", Helvetica, sans-serif;
  color: #333;
  font-weight: 300;
}

.tabset > label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 25px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
}

.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}

.tabset > label:hover,
.tabset > input:focus + label {
  color: #06c;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #06c;
}

.tabset > input:checked + label {
  border-color: #ccc;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}

.tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}

.tub {
  font-weight: bold;
}

/*
   Demo purposes only
  */

*,
*:before,
*:after {
  box-sizing: border-box;
}

.tabset {
  max-width: 65em;
}

/******************************************************************************************************************/

#L_button {
  width: 15%;
  height: 40px;
  background-color: #da62cf;
  border: 2px solid #da62cf;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 10px 10px 5px 0px grey;
  -webkit-box-shadow: 5px 7px 5px 0px grey;
}

#L_anchor {
  box-shadow: 10px 10px 5px 0px grey;
  -webkit-box-shadow: 5px 7px 5px 0px grey;
}

#L_remove {
  padding: 6px 23px;
  margin-top: 20px;
  border: 2px solid #da62cf;
  background-color: #da62cf;
  border-radius: 10px;
  box-shadow: 10px 10px 5px 0px grey;
  -webkit-box-shadow: 5px 7px 5px 0px grey;
}

/**********************************switch Toggle ***********************************************************/

.toggle {
  position: relative;
  display: inline-block;
  width: 83px;
  height: 32px;
  background-color: white;
  border-radius: 30px;
  border: 2px solid gray;
}

/* After slide changes */

.toggle:after {
  content: "";
  position: absolute;
  width: 28px;
  height: 25px;
  border-radius: 50%;
  background-color: gray;
  top: 1px;
  left: 1px;
  transition: all 0.5s;
}

/* Toggle text */

p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* Checkbox checked effect */

.checkbox:checked + .toggle::after {
  left: 49px;
}

/* Checkbox checked toggle label bg color */

.checkbox:checked + .toggle {
  background-color: #52a0c6;
}

/* Checkbox vanished */

.checkbox {
  display: none;
}

/*************************************************2nd checkbox**********************************************************/

.toggle_L {
  position: relative;
  display: inline-block;
  width: 83px;
  height: 32px;
  background-color: white;
  border-radius: 30px;
  border: 2px solid gray;
}

/* After slide changes */

.toggle_L:after {
  content: "";
  position: absolute;
  width: 28px;
  height: 25px;
  border-radius: 50%;
  background-color: gray;
  top: 1px;
  left: 1px;
  transition: all 0.5s;
}

/* Toggle text */

p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* Checkbox checked effect */

.checkbox_L:checked + .toggle_L::after {
  left: 49px;
}

/* Checkbox checked toggle label bg color */

.checkbox_L:checked + .toggle_L {
  background-color: #52a0c6;
}

/* Checkbox vanished */

.checkbox_L {
  display: none;
}

/*********************************************3rd switch toggle ***********************************************/

.toggle_LL {
  position: relative;
  display: inline-block;
  width: 83px;
  height: 32px;
  background-color: white;
  border-radius: 30px;
  border: 2px solid gray;
}

/* After slide changes */

.toggle_LL:after {
  content: "";
  position: absolute;
  width: 28px;
  height: 25px;
  border-radius: 50%;
  background-color: gray;
  top: 1px;
  left: 1px;
  transition: all 0.5s;
}

/* Toggle text */

p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

/* Checkbox checked effect */

.checkbox_LL:checked + .toggle_LL::after {
  left: 49px;
}

/* Checkbox checked toggle label bg color */

.checkbox_LL:checked + .toggle_LL {
  background-color: #52a0c6;
}

/* Checkbox vanished */

.checkbox_LL {
  display: none;
}

/***************************************************************************************/

#L_input_Design {
  border: 2px solid #d6dbdf;
  height: 32px;
  border-radius: 5px;
  width: 61%;
}

.menu-init .fa-angle-down:before {
  content: none;
}

.menu-init.js-open .ah-lg-mode {
  left: 0;
  transition: all 0.4s ease-in-out;
}

.menu-init.js-open:after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 19999;
}

.ah-lg-mode {
  position: fixed;
  left: -315px;
  width: 315px;
  height: 100%;
  top: 0;
  background-color: #ffffff;
  z-index: 20000;
  overflow-y: auto;
}

.ah-close {
  color: #333333;
  padding: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: block;
}

.ah-list > li {
  position: relative;
  display: block;
  /* border-top: 1px solid #f8f8f8; */
}

.ah-list > li > a {
  display: block;
  padding: 8px 18px;
}

.ah-list > li:last-child {
  /* border-bottom: 1px solid #f8f8f8; */
}

.ah-list--design1 > li > a,
.ah-list--design2 > li > a {
  font-weight: normal;
  font-size: 14px;
}

.ah-list--link-color-white > li > a {
  color: #333333;
}

.js-menu-toggle {
  text-align: center;
  color: #fff;
  background-color: #ea542e;
  width: 21px;
  display: block;
  height: 21px;
  border-radius: 12%;
  box-shadow: 1px 1px 0 0 rgb(0 0 0 / 13%);
  /*position: absolute;*/
  right: 12%;
  /* right: 2px;
    top: 6px; */
  transition: all 0.3s;
  cursor: pointer;
}

.js-menu-toggle:after {
  font-family: "Font Awesome 5 Free";
  /* content: "\f078"; */
  /*position: absolute;*/
  top: 50%;
  width: 100%;
  font-weight: 900;
  color: #333333;
  display: block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-size: 8px;
}

.js-menu-toggle.js-toggle-mark:after {
  /* content: "\f077"; */
}

.has-dropdown > ul {
  width: 100% !important;
  box-shadow: none;
  transition: none;
  position: static;
  padding: 0 0 10px;
  opacity: 1;
  visibility: visible;
  display: none;
}

.has-dropdown > ul > li {
  padding: 0;
}

.has-dropdown > ul > li > a {
  display: block;
}

.ah-list > li > ul > li > a {
  padding: 8px 36px;
}

.ah-list > li > ul > li > ul > li > a {
  padding: 0px 10px;
}

.ah-list > li > ul > li > ul > li > ul > li > a {
  padding: 8px 72px;
}

.js-menu-toggle2 {
  width: 21px;
  display: block;
  height: 21px;
  border-radius: 15%;
  background-color: #ffffff;
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.13);
  /*position: absolute;*/
  right: 12%;
  /* right: 2px;
    margin-top: -22px; */
  left: "49px";
  transition: all 0.3s;
  cursor: pointer;
}

.js-menu-toggle2:after {
  font-family: "Font Awesome 5 Free";
  /* content: "\F067"; */
  /*position: absolute;*/
  top: 50%;
  width: 100%;
  font-weight: 900;
  color: #333333;
  display: block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-size: 8px;
}

.js-menu-toggle2.js-toggle-mark2:after {
  /* content: "\F068"; */
}

.border_Shadow {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.scrollmenu::-webkit-scrollbar {
  width: 5px;
  height: 4px;
}

/* Track */

.scrollmenu::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 3px;
}

/* Handle */

.scrollmenu::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 3px;
}

/* Handle on hover */

.scrollmenu::-webkit-scrollbar-thumb:hover {
  background: grey;
}

.js-menu-toggle3 {
  width: 21px;
  display: block;
  height: 21px;
  border-radius: 13%;
  background-color: #ffffff;
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.13);
  /*position: absolute;*/
  right: 12%;
  /* right: 2px;
    margin-top: -24px; */
  left: 115px;
  transition: all 0.3s;
  cursor: pointer;
}

.js-menu-toggle3:after {
  font-family: "Font Awesome 5 Free";
  /* content: "\F067"; */
  /*position: absolute;*/
  top: 50%;
  width: 100%;
  font-weight: 900;
  color: #333333;
  display: block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-size: 8px;
}

.js-menu-toggle3.js-toggle-mark3:after {
  /* content: "\F068"; */
}
.fa-2x {
    font-size: 2em;
}

.fa {
    position: relative;
    display: table-cell;
    width: 60px;
    height: 36px;
    text-align: center;
    vertical-align: middle;
    font-size: 20px;
}

.main-menu:hover,
nav.main-menu.expanded {
    width: 250px;
    overflow: visible;
}

.main-menu {
    background: #212121;
    border-right: 1px solid #e5e5e5;
    position: absolute;
    top: 10%;
    bottom: 0;
    height: 60%;
    left: 0;
    width: 60px;
    overflow: hidden;
    -webkit-transition: width .05s linear;
    transition: width .05s linear;
    -webkit-transform: translateZ(0) scale(1, 1);
    z-index: 1;
}

.main-menu>ul {
    margin: 7px 0;
}

.main-menu li {
    position: relative;
    display: block;
    width: 250px;
}

.main-menu li>a {
    position: relative;
    display: table;
    border-collapse: collapse;
    border-spacing: 0;
    color: #999;
    font-family: arial;
    font-size: 14px;
    text-decoration: none;
    -webkit-transform: translateZ(0) scale(1, 1);
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
}

.main-menu .nav-icon {
    position: relative;
    display: table-cell;
    width: 60px;
    height: 36px;
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
}

.main-menu .nav-text {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    width: 190px;
    font-family: 'Titillium Web', sans-serif;
}

.main-menu>ul.logout {
    position: absolute;
    left: 0;
    bottom: 0;
}

.no-touch .scrollable.hover {
    overflow-y: hidden;
}

.no-touch .scrollable.hover:hover {
    overflow-y: auto;
    overflow: visible;
}

a:hover,
a:focus {
    text-decoration: none;
}

nav {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

nav ul,
nav li {
    outline: 0;
    margin: 0;
    padding: 0;
}

.main-menu li:hover>a,
nav.main-menu li.active>a,
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus,
.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus,
.no-touch .dashboard-page nav.dashboard-menu ul li:hover a,
.dashboard-page nav.dashboard-menu ul li.active a {
    color: #fff;
    background-color: #5fa2db;
}

.area {
    float: right;
    /* background: #e2e2e2; */
    width: 100%;
    height: 100%;
}

@font-face {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 300;
    src: local('Titillium WebLight'), local('TitilliumWeb-Light'), url(http://themes.googleusercontent.com/static/fonts/titilliumweb/v2/anMUvcNT0H1YN4FII8wpr24bNCNEoFTpS2BTjF6FB5E.woff) format('woff');
}

.scrollmenu {
    background-color: #333;
    overflow: auto;
    white-space: nowrap;
}

.scrollmenu a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

.scrollmenu a:hover {
    background-color: #777;
}

.dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    background-color: #A6F1F1;
    width: 90%;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}


/********************************************************Tab**********************************/

#tranformbutton:hover {
    background-color: grey;
    color: black;
}


/*********************************************************************************************//*----AddVendorContainer-----*/

/* .secnd_cont{
    background: #B2BABB;
    padding: 1.5rem;
    border-top: 2px solid #e3e3e3;
    border-bottom: 2px solid #e3e3e3;
}     */
.admin__field {
  margin: 0 30px 29px;
}
.field input {
  width: 70%;
  border: 1px solid black;
  min-height: 40px;
}
.input-text {
  min-height: 40px;
  width: 70%;
  padding: 5px;
}
.vendr {
  background: #eeee;
  height: 100px;
  padding: 22px;
  margin-left: -12px;
  width: 90%;
  border: 2px solid #e3e3e3;
}
.vendr p {
  font-size: 20px;
}
.txt_ara5 {
  height: 250px;
  margin-bottom: -215px;
}
.strtt1 {
  margin-top: 33%;
}
.slct_cntrl {
  height: 40px;
  width: 10%;
}
.admin__page-nav-item .ui-state-active .admin__page-nav-link {
  background: #fff;
  border-color: #e3e3e3;
  border-right: 1px solid #fff;
  color: #303030;
  margin-right: -1px;
}
.admin__page-nav-item .ui-state-active {
  border-color: #eb5202;
}
.mnu-jstg .js-menu-toggle {
  padding: 0px 7px;
  height: 22px;
  width: 22px;
  position: relative;
  margin-left: 20px;
}
.mnu-jstg .js-menu-toggle2 {
  padding: 0px 7px;
  height: 22px;
  width: 22px;
  position: relative;
}
.mnu-jstg .js-menu-toggle3 {
  padding: 0px 7px;
  height: 22px;
  width: 22px;
  position: relative;
}

/*------VendorProductList-------*/

.s_primary {
  /* background-color: #8E44AD;
border-color: #8E44AD;
color: #fff;
box-shadow: 0 0 5px 1px black;
text-shadow: 1px 1px 0 rgb(0 0 0 / 25%); */
  margin-top: 20px;
  height: 50px;
  width: 55%;
  border-radius: 1px;
  /* background-color: #1ABC9C; */
  color: #fff;
  border: 1px solid #16a085;
  margin-left: 70px;
  box-shadow: 1px 8px 10px #2e4053;
  background-color: #138d75;
}
.s_primary:hover {
  /* box-shadow: 1px 8px 10px #2E4053;
background-color: #138D75; */
  background: #138d75;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  text-shadow: -1px -1px 0 #136a65;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}

.s_primary10 {
  /* background-color: #8E44AD;
  border-color: #8E44AD;
  color: #fff;
  box-shadow: 0 0 5px 1px black;
  text-shadow: 1px 1px 0 rgb(0 0 0 / 25%); */
  margin-top: 20px;
  height: 50px;
  /* width: 55%; */
  border-radius: 1px;
  /* background-color: #1ABC9C; */
  color: #fff;
  border: 1px solid #16a085;
  /* margin-left: 70px; */
  box-shadow: 1px 8px 10px #2e4053;
  background-color: #138d75;
}
.s_primary10:hover {
  /* box-shadow: 1px 8px 10px #2E4053;
  background-color: #138D75; */
  background: #138d75;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  text-shadow: -1px -1px 0 #136a65;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}

.s_primary2 {
  height: 40px;
  border-radius: 5px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 0 10px 1px black;
}
.s_hedd {
  margin-left: 10px;
  font-family: auto;
  font-size: 40px;
  margin-top: 25px;
}
.s_select5 {
  display: flex;
  align-items: center;
  height: 40px !important;
  border: 1px solid gray;
  box-shadow: 0px 0px 5px 0px black;
  background-color: #eb5630;
  color: white;
  font-weight: 600;
  padding: 0px 10px 0px 10px !important;
  border-radius: 30px !important;
  margin: 0px !important;
}
.s_buttonprimary {
  padding: 10px;
  margin-left: 35px;
}
.s_id {
  font-weight: 600;
  font-size: 17px;
}
.s_frm {
  font-weight: 500;
}
.admin__control-select {
  width: 70%;
  text-align: left;
  cursor: pointer;
  appearance: none;
  height: 45px;
  border: 1px solid black;
  /* background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E")
  ,linear-gradient(#e3e3e3, #e3e3e3),linear-gradient(#adadad, #adadad); */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  box-shadow: 5px 5px 10px #566573;
  background-position: calc(100% - 17px) 13px, 100%, calc(100% - 3.2rem) 0;
  background-size: auto, 3.2rem 100%, 1px 100%;
  background-repeat: no-repeat;
  max-width: 100%;
  min-width: 8.5rem;
  padding-bottom: 0.6rem;
  padding-left: 10px;
  padding-top: 0.6rem;
  transition: border-color 0.1s linear;
}
.s_fld {
  height: 43px;
  width: 100%;
}
.data-grid-search-control {
  padding-right: 6rem;
  width: 100%;
  max-height: 40px;
  border: 1px solid gray;
  max-width: 100%;
  border-radius: 30px;
}
.data-grid-search-control-wrap .admin__control-text {
  display: flex;
  align-items: center;
  min-width: 4rem;
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid gray;
  border-radius: 30px;
  box-shadow: none;
  color: #303030;
  font-size: 1rem;
  font-weight: 400;
  height: auto;
  line-height: 1.36;
  padding: 0.6rem 1rem 0.6rem;
  transition: border-color 0.1s linear;
  vertical-align: baseline;
  box-shadow: 4px 8px 8px hsl(0deg 0% 0% / 0.38);
}
.data-grid-search-control-wrap .action-submit {
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  padding: 0.6rem 2rem 0.2rem;
  position: absolute;
  right: -10px;
  top: -3px;
  font-size: 22px;
}
.data-grid-search-control-wrap {
  float: left;
  max-width: 45.5rem;
  position: relative;
  width: 87%;
}
#gridContainer {
  height: 440px;
}
.s_dpdr {
  background: black;
}
.s_uldrp {
  max-width: 205px;
  /* margin-top: -40px; */
  background: white;
}
.s_alstdta {
  cursor: pointer;
}
.s_dpdr {
  border-radius: 0px;
  background: #eb5202;
  color: white;
  font-size: 20px;
}
.s_dpdr:hover {
  background: #eb5202;
}
/* .s_upld:hover{
border: 1px solid rgba(0, 0, 0, 0.05);
box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
color: #fff;
text-decoration: none;
text-shadow: -1px -1px 0 #136a65;
-webkit-transition: all 250ms linear;
transition: all 250ms linear;
background-color: #138D75;
} */

@media (min-width: 1025px) {
  .has-dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .ah-list > .has-dropdown:hover > ul {
    top: 30%;
    margin-left: 150px;
    display: block;
  }
  .has-dropdown .has-dropdown:hover > ul {
    top: 0;
  }
  .ah-list > .has-dropdown:hover > a {
    color: #ff4500;
  }
  .has-dropdown > a .fa-angle-right {
    font-size: 10px;
    line-height: 18px;
    float: right;
  }
  .has-dropdown:hover > a .i-state-right:before {
    content: "\F105";
  }
}

.has-dropdown > ul .has-dropdown {
  position: relative;
}

.has-dropdown > ul {
  position: absolute;
  text-align: left;
  cursor: pointer;
  /* padding: 20px 0 20px; */
  z-index: 999;
  /* white-space: nowrap; */
  transition: all 0.3s ease;
  top: 120%;
  opacity: 0;
  visibility: hidden;
}
.has-dropdown > ul > li > a {
  display: block;
  padding: 8px 20px;
  color: #333333;
  font-size: 12px;
  font-weight: 600;
}

.has-dropdown--ul-left-100 > ul {
  left: 100%;
}

.has-dropdown--ul-right-100 > ul {
  right: 100%;
}

.s_drgble {
  width: 80%;
  white-space: pre;
}

/*--------Table-------*/
/* .table {
width: 100%;
margin-bottom: 1rem;
background-color: transparent;
}

.table th,
.table td {
padding: 1rem;
vertical-align: top;
border-top: 1px solid #e9ecef;
}

.table thead th {
vertical-align: bottom;
border-bottom: 2px solid #e9ecef;
}

.table tbody + tbody {
border-top: 2px solid #e9ecef;
}

.table .table {
background-color: #f8f9fe;
}

.table-dark,
.table-dark > th,
.table-dark > td {
background-color: #c1c2c3;
}

.table .thead-dark th {
color: #f8f9fe;
border-color: #1f3a68;
background-color: #172b4d;
}*/

.table .thead-light th {
  color: white;
  border-style: groove;
  border-color: gray;
  background-color: #000000;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: -2px;
  z-index: 1;
}

.delete-btn {
  float: right;
  position: relative;
  margin-top: -25%;
  left: -8px;
  z-index: 100;
}

/*.table-dark {
color: #f8f9fe;
background-color: #172b4d;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
border-color: #1f3a68;
}

.table-responsive {
display: block;
overflow-x: auto;
width: 100%;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
} */

.table-responsive {
  overflow-x: auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
  /*overflow-y: scroll;
height: 200px; */
}
.table-p {
  width: 100%;
  border: 1px solid #eee;
  border-collapse: collapse;
  background-color: white;
}
.table-p tr {
  position: relative;
  border-top: 1px solid #eee;
}
.table-p td {
  padding: 20px;
}
.data-grid-th._sortable {
  cursor: pointer;
  transition: background-color 0.1s linear;
  z-index: 1;
}
.data-grid-th {
  background-clip: padding-box;
  color: black;
  background-color: ;
  padding: 5px 5px;
  position: relative;
  vertical-align: middle;
  font-size: 13px;
  /* border-bottom: 1px solid black; */
}
th {
  background-color: #000;
  /* border: 0.1rem solid #8a837f; */
  /* background-color: #A569BD;
border: 0.1rem solid black; */
  border-left-color: transparent;
  color: #fff;
  font-weight: 600;
  padding: 0;
  text-align: left;
}
.table-p td {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid black;
}
table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}
.s_primary1 {
  padding-bottom: 6px;
  width: 120%;
  margin-left: -27px;
  margin-top: 20px;
  height: 50px;
  border-radius: 5px;
  background-color: #138d75;
  color: #fff;
  border: 1px solid #16a085;
  box-shadow: 1px 8px 10px #2e4053;
}
/* .s_primary1:hover{
box-shadow: 1px 8px 10px #2E4053;
} */

/*-------------------------------*/

/*-----VendorProductContainer-----*/

/*----toggleswitch-----*/

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 8px;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 0px;
  bottom: 1px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}
.toggle-switch input[type="checkbox"] {
  display: none;
}
.toggle-switch .switch {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 25px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: background-color 0.2s ease;
}
.toggle-switch .switch::before {
  position: absolute;
  content: "";
  left: 1px;
  top: 0px;
  width: 21px;
  height: 21px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.toggle-switch input[type="checkbox"]:checked + .switch::before {
  transform: translateX(25px);
  background-color: #6699cc;
}
.toggle-switch input[type="checkbox"]:checked + .switch {
  background-color: #336699;
}

/*----------------*/

.slt_mult {
  width: 130px;
  padding: 5px;
}
.int_txt5 {
  border: 1px solid #566573;
  box-shadow: 5px 5px 10px #566573;
}
.int_txt58 {
  width: 30%;
  border: 1px solid #566573;
  box-shadow: 5px 5px 10px #566573;
}
.cntrl_slt {
  width: 70%;
}
.star5 {
  color: #eb5202;
}
.c_lbl {
  font-size: 18px;
  margin-top: 5px;
}
.admin__control-textarea {
  line-height: 1.18;
  padding-top: 0.8rem;
  resize: vertical;
}
.ara_txt5 {
  width: 70%;
}
.s_slt_mult {
  width: 300px;
  padding: 5px;
}
.Collapsible__trigger {
  font-weight: bold;
}
.s_admn .ara_txt5 {
  width: 70%;
  height: 150px;
  padding: 10px 10px;
  border: 1px solid #566573;
  box-shadow: 5px 5px 10px #566573;
}
.s_imgzm {
  height: 200px;
  width: 200px;
  /* border: 1px solid black; */
  margin-left: 20px;
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: -5px -5px 10px #34495e;
}
.s_zoom5 {
  height: 250px;
  width: 250px;
  background-color: #ffffff;
  box-shadow: 5px 5px 20px #34495e;
}
.s_hd_cont label {
  font-weight: 500;
  font-size: 17px;
}
.img--zoom1 {
  display: flex;
}
.s_headnm {
  font-weight: 700;
  color: #eb5202;
  font-size: 35px;
  font-family: Times New Roman;
  text-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3),
    0px -4px 10px rgba(255, 255, 255, 0.3);
  /* text-shadow: 0 1px 0px #378ab4, 
1px 0 0px #5dabcd, 
1px 2px 1px #378ab4, 
2px 1px 1px #5dabcd, 
2px 3px 2px #378ab4, 
3px 2px 2px #5dabcd, 
3px 4px 2px #378ab4, 
4px 3px 3px #5dabcd, 
4px 5px 3px #378ab4, 
5px 4px 2px #5dabcd, 
5px 6px 2px #378ab4, 
6px 5px 2px #5dabcd, 
6px 7px 1px #378ab4, 
7px 6px 1px #5dabcd, 
7px 8px 0px #378ab4, 
8px 7px 0px #5dabcd; */

  /* text-shadow: 0 1px 0 #378ab4,
0 2px 0 #5dabcd,
0 3px 0 #378ab4,
0 4px 0 #5dabcd,
0 5px 0 #378ab4,
0 6px 1px #5dabcd,
0 0 5px #378ab4,
0 1px 3px #5dabcd,
0 3px 5px #378ab4,
0 5px 10px #5dabcd,
0 10px 10px #378ab4,
0 20px 20px #5dabcd; */
}

.s_headnm5 {
  font-weight: 400;
  font-size: 20px;
}

#L_button {
  padding: 5px;
  background: #0da57d;
  font-size: 20px;
  color: white;
}
.s_srch {
  font-size: 20px;
  margin-top: 10px;
}
.s_inptfrm {
  display: block;
  width: 200%;
  margin-left: -65px;
}
#s_act {
  right: -200px;
  top: 2px;
}
.input-error {
  border: 1px solid red !important;
}
.s_chooseimg {
  /* background-image: url('../img/Capture20.jpg'); */
  border: 1px solid black;
  height: 200px;
  width: 190px;
  padding-top: 82px;
  padding-left: 45px;
  color: #f5f5f5;
}
.s_primary23 {
  height: 50px;
  width: 200px;
  border-radius: 25px;
  margin-left: -50px;
  background-color: #138d75;
  color: #fff;
  border: 1px solid #16a085;
  box-shadow: 4px 8px 8px hsl(0deg 0% 0% / 0.38);
}

/*---- tab ----*/

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}
.tab {
  font-family: "Source Sans Pro", sans-serif;
  padding: 15px;
  /* box-shadow: 5px 5px 10px #566573;
  background-color: #fff; */
}
.tab .nav {
  flex-wrap: nowrap;
}
.tab .nav-tabs {
  margin: 0;
  border: none;
}
.tab .nav-tabs li {
  width: 33.33%;
}
.tab .nav-tabs li a {
  color: #555;
  background: linear-gradient(#fcfcfc, #f5f5f5);
  /* font-size: 17px; */
  /* background: #EAECEE; */
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 25px 10px;
  margin: 0 2px 3px 0;
  border: none;
  border-radius: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease 0s;
}
.tab .nav-tabs li.active a,
.tab .nav-tabs li a:hover,
.tab .nav-tabs li.active a:hover {
  color: #fff;
  background: #eb5202 !important;
  border: none;
}
/* .tab .nav-tabs li a:before {
  content: "";
  background: linear-gradient(#1dd1a1 50%, #0da57d 50%);
  
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s ease-out 0s;
} */
.tab .nav-tabs li.active a:before,
.tab .nav-tabs li a:hover:before {
  opacity: 1;
  transform: translateY(-21.5px) scale(0.3);
}
.tab .tab-content {
  color: #555555;
  background: linear-gradient(#fcfcfc, #f5f5f5, #fcfcfc);
  /* background: #EAECEE; */
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 25px;
  padding: 20px;
  position: relative;
  box-shadow: 5px 5px 10px #566573;
}
.s_primrry {
  margin-right: 78px;
  height: 170%;
  width: 150%;
  border-radius: 1px;
  background-color: #138d75;
  color: #fff;
  border: 2px solid #16a085;
  font-weight: 600;
}
.s_primrry:hover {
  box-shadow: 1px 8px 10px #2e4053;
  background-color: #0b5345;
}
.s_primrry10 {
  margin-left: -150%;
  height: 180%;
  width: 150%;
  border-radius: 1px;
  background-color: #138d75;
  color: #fff;
  border: 2px solid #16a085;
  font-weight: 600;
}
.s_primrry10:hover {
  box-shadow: 1px 8px 10px #2e4053;
  background-color: #0b5345;
}
.s_mnubttn .dropdown-toggle::after {
  font-size: 20px;
  margin-left: 0.5em;
  vertical-align: 0.1em;
}
.s_mtop {
  margin-top: -118px;
}
.s_defitchked {
  border: 1px solid #c9c9c9;
}

@media only screen and (max-width: 479px) {
  .tab .nav-tabs li {
    width: 100%;
    text-align: center;
  }
  .tab .nav-tabs li a {
    margin: 0 0 15px;
  }
}

.card {
  -webkit-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
  -moz-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
  transition: all 0.3s ease 0s;
}
#css_tab {
  margin-top: -2%;
}

#s_wrapp .warpper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#s_wrapp .tab {
  cursor: pointer;
  padding: 10px 20px;
  margin: 0px 2px;
  background: #000;
  display: inline-block;
  color: #fff;
  border-radius: 3px 3px 0px 0px;
  box-shadow: 0 0.5rem 0.8rem #00000080;
}
#s_wrapp .panels {
  background: #fffffff6;
  box-shadow: 0 2rem 2rem #00000080;
  min-height: 200px;
  width: 100%;
  max-width: 500px;
  border-radius: 3px;
  overflow: hidden;
  padding: 20px;
}
#s_wrapp .panel {
  display: none;
  animation: fadein 0.8s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#s_wrapp .panel-title {
  font-size: 1.5em;
  font-weight: bold;
}
#s_wrapp .radio {
  display: none;
}
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel {
  display: block;
}
#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab {
  background: #fffffff6;
  color: #000;
  border-top: 3px solid #000;
}
.primary-button {
  --bg: #1d1d1d;
  --hover-bg: hsl(9, 100%, 74%);
  --hover-text: #000;
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--bg);
  font-weight: bold;
  border-radius: 10px;
  white-space: nowrap;
  padding: 0.8em 2em;
  background: var(--bg);
  transition: 0.2s;
  min-width: 275px
}

.primary-button:hover {
  color: var(--hover-text);
  transform: translate(-0.25rem, -0.25rem);
  background: var(--hover-bg);
  box-shadow: 0.25rem 0.25rem var(--bg);
}

.primary-button:active {
  transform: translate(0);
  box-shadow: none;
}
.calender-div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 10px;
  row-gap: 2px;
}

.calender-sec {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 10px;
  width: 100%;
  min-height: 300px;
}
.selecet-date-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.download-button {
  position: relative;
  width: 150px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #17795E;
  background-color: #209978;
  overflow: hidden;
}

.download-button, .button__icon, .button__text {
  transition: all 0.3s;
}

.download-button .button__text {
  transform: translateX(22px);
  color: #fff;
  font-weight: 600;
}

.download-button .button__icon {
  position: absolute;
  transform: translateX(109px);
  height: 100%;
  width: 39px;
  background-color: #17795E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-button .svg {
  width: 20px;
  fill: #fff;
}

.download-button:hover {
  background: #17795E;
}

.download-button:hover .button__text {
  color: transparent;
}

.download-button:hover .button__icon {
  width: 148px;
  transform: translateX(0);
}

.download-button:active .button__icon {
  background-color: #146c54;
}

.download-button:active {
  border: 1px solid #146c54;
}
.chart-icon {
  position: absolute;
  height: 20px;
  width: 20px;
  top: 5px;
  right: 5px;
  cursor: pointer;
  z-index: 1;
}
.pi-chart-con {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 10px;
  height: 100%;
  position: relative;
}
.date-selection-con {
  display: grid;
  grid-template-columns: 40% 60%;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  height: 250px;
  column-gap: 10px;
  margin: 20px 0px;
}
.ReactTable{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border:1px solid rgba(0,0,0,0.1);}.ReactTable *{box-sizing:border-box}.ReactTable .rt-table{-webkit-box-flex:1;-ms-flex:auto 1;flex:auto 1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%;border-collapse:collapse;overflow:auto}.ReactTable .rt-thead{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.ReactTable .rt-thead.-headerGroups{background:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.05)}.ReactTable .rt-thead.-filters{border-bottom:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-thead.-filters input,.ReactTable .rt-thead.-filters select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .rt-thead.-filters .rt-th{border-right:1px solid rgba(0,0,0,0.02)}.ReactTable .rt-thead.-header{box-shadow:0 2px 15px 0 rgba(0,0,0,0.15)}.ReactTable .rt-thead .rt-tr{text-align:center}.ReactTable .rt-thead .rt-th,.ReactTable .rt-thead .rt-td{padding:5px 5px;line-height:normal;position:relative;border-right:1px solid rgba(0,0,0,0.05);transition:box-shadow .3s cubic-bezier(.175,.885,.32,1.275);box-shadow:inset 0 0 0 0 transparent;}.ReactTable .rt-thead .rt-th.-sort-asc,.ReactTable .rt-thead .rt-td.-sort-asc{box-shadow:inset 0 3px 0 0 rgba(0,0,0,0.6)}.ReactTable .rt-thead .rt-th.-sort-desc,.ReactTable .rt-thead .rt-td.-sort-desc{box-shadow:inset 0 -3px 0 0 rgba(0,0,0,0.6)}.ReactTable .rt-thead .rt-th.-cursor-pointer,.ReactTable .rt-thead .rt-td.-cursor-pointer{cursor:pointer}.ReactTable .rt-thead .rt-th:last-child,.ReactTable .rt-thead .rt-td:last-child{border-right:0}.ReactTable .rt-thead .rt-th:focus{outline-width:0}.ReactTable .rt-thead .rt-resizable-header{overflow:visible;}.ReactTable .rt-thead .rt-resizable-header:last-child{overflow:hidden}.ReactTable .rt-thead .rt-resizable-header-content{overflow:hidden;text-overflow:ellipsis}.ReactTable .rt-thead .rt-header-pivot{border-right-color:#f7f7f7}.ReactTable .rt-thead .rt-header-pivot:after,.ReactTable .rt-thead .rt-header-pivot:before{left:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.ReactTable .rt-thead .rt-header-pivot:after{border-color:rgba(255,255,255,0);border-left-color:#fff;border-width:8px;margin-top:-8px}.ReactTable .rt-thead .rt-header-pivot:before{border-color:rgba(102,102,102,0);border-left-color:#f7f7f7;border-width:10px;margin-top:-10px}.ReactTable .rt-tbody{-webkit-box-flex:99999;-ms-flex:99999 1 auto;flex:99999 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow:auto;}.ReactTable .rt-tbody .rt-tr-group{border-bottom:solid 1px rgba(0,0,0,0.05);}.ReactTable .rt-tbody .rt-tr-group:last-child{border-bottom:0}.ReactTable .rt-tbody .rt-td{border-right:1px solid rgba(0,0,0,0.02);}.ReactTable .rt-tbody .rt-td:last-child{border-right:0}.ReactTable .rt-tbody .rt-expandable{cursor:pointer;text-overflow:clip}.ReactTable .rt-tr-group{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.ReactTable .rt-tr{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.ReactTable .rt-th,.ReactTable .rt-td{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;white-space:nowrap;text-overflow:ellipsis;padding:7px 5px;overflow:hidden;transition:.3s ease;transition-property:width,min-width,padding,opacity;}.ReactTable .rt-th.-hidden,.ReactTable .rt-td.-hidden{width:0 !important;min-width:0 !important;padding:0 !important;border:0 !important;opacity:0 !important}.ReactTable .rt-expander{display:inline-block;position:relative;margin:0;color:transparent;margin:0 10px;}.ReactTable .rt-expander:after{content:'';position:absolute;width:0;height:0;top:50%;left:50%;-webkit-transform:translate(-50%,-50%) rotate(-90deg);transform:translate(-50%,-50%) rotate(-90deg);border-left:5.04px solid transparent;border-right:5.04px solid transparent;border-top:7px solid rgba(0,0,0,0.8);transition:all .3s cubic-bezier(.175,.885,.32,1.275);cursor:pointer}.ReactTable .rt-expander.-open:after{-webkit-transform:translate(-50%,-50%) rotate(0);transform:translate(-50%,-50%) rotate(0)}.ReactTable .rt-resizer{display:inline-block;position:absolute;width:36px;top:0;bottom:0;right:-18px;cursor:col-resize;z-index:10}.ReactTable .rt-tfoot{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;box-shadow:0 0 15px 0 rgba(0,0,0,0.15);}.ReactTable .rt-tfoot .rt-td{border-right:1px solid rgba(0,0,0,0.05);}.ReactTable .rt-tfoot .rt-td:last-child{border-right:0}.ReactTable.-striped .rt-tr.-odd{background:rgba(0,0,0,0.03)}.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover{background:rgba(0,0,0,0.05)}.ReactTable .-pagination{z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:3px;box-shadow:0 0 15px 0 rgba(0,0,0,0.1);border-top:2px solid rgba(0,0,0,0.1);}.ReactTable .-pagination input,.ReactTable .-pagination select{border:1px solid rgba(0,0,0,0.1);background:#fff;padding:5px 7px;font-size:inherit;border-radius:3px;font-weight:normal;outline-width:0}.ReactTable .-pagination .-btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:block;width:100%;height:100%;border:0;border-radius:3px;padding:6px;font-size:1em;color:rgba(0,0,0,0.6);background:rgba(0,0,0,0.1);transition:all .1s ease;cursor:pointer;outline-width:0;}.ReactTable .-pagination .-btn[disabled]{opacity:.5;cursor:default}.ReactTable .-pagination .-btn:not([disabled]):hover{background:rgba(0,0,0,0.3);color:#fff}.ReactTable .-pagination .-previous,.ReactTable .-pagination .-next{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center}.ReactTable .-pagination .-center{-webkit-box-flex:1.5;-ms-flex:1.5;flex:1.5;text-align:center;margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.ReactTable .-pagination .-pageInfo{display:inline-block;margin:3px 10px;white-space:nowrap}.ReactTable .-pagination .-pageJump{display:inline-block;}.ReactTable .-pagination .-pageJump input{width:70px;text-align:center}.ReactTable .-pagination .-pageSizeOptions{margin:3px 10px}.ReactTable .rt-noData{display:block;position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:rgba(255,255,255,0.8);transition:all .3s ease;z-index:1;pointer-events:none;padding:20px;color:rgba(0,0,0,0.5)}.ReactTable .-loading{display:block;position:absolute;left:0;right:0;top:0;bottom:0;background:rgba(255,255,255,0.8);transition:all .3s ease;z-index:-1;opacity:0;pointer-events:none;}.ReactTable .-loading > div{position:absolute;display:block;text-align:center;width:100%;top:50%;left:0;font-size:15px;color:rgba(0,0,0,0.6);-webkit-transform:translateY(-52%);transform:translateY(-52%);transition:all .3s cubic-bezier(.25,.46,.45,.94)}.ReactTable .-loading.-active{opacity:1;z-index:2;pointer-events:all;}.ReactTable .-loading.-active > div{-webkit-transform:translateY(50%);transform:translateY(50%)}.ReactTable .rt-resizing .rt-th,.ReactTable .rt-resizing .rt-td{transition:none !important;cursor:col-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}/*
 * react-circular-progressbar styles
 * All of the styles in this file are configurable!
 */

.CircularProgressbar {
  /*
   * This fixes an issue where the CircularProgressbar svg has
   * 0 width inside a "display: flex" container, and thus not visible.
   */
  width: 100%;
  /*
   * This fixes a centering issue with CircularProgressbarWithChildren:
   * https://github.com/kevinsqi/react-circular-progressbar/issues/94
   */
  vertical-align: middle;
}

.CircularProgressbar .CircularProgressbar-path {
  stroke: #3e98c7;
  stroke-linecap: round;
  -webkit-transition: stroke-dashoffset 0.5s ease 0s;
  transition: stroke-dashoffset 0.5s ease 0s;
}

.CircularProgressbar .CircularProgressbar-trail {
  stroke: #d6d6d6;
  /* Used when trail is not full diameter, i.e. when props.circleRatio is set */
  stroke-linecap: round;
}

.CircularProgressbar .CircularProgressbar-text {
  fill: #3e98c7;
  font-size: 20px;
  dominant-baseline: middle;
  text-anchor: middle;
}

.CircularProgressbar .CircularProgressbar-background {
  fill: #d6d6d6;
}

/*
 * Sample background styles. Use these with e.g.:
 *
 *   <CircularProgressbar
 *     className="CircularProgressbar-inverted"
 *     background
 *     percentage={50}
 *   />
 */
.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-background {
  fill: #3e98c7;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-text {
  fill: #fff;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-path {
  stroke: #fff;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-trail {
  stroke: transparent;
}
.react-calendar {
  width: 350px;
  max-width: 100%;
  background: white;
  border: 1px solid #a0a096;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.125em;
}
.react-calendar--doubleView {
  width: 700px;
}
.react-calendar--doubleView .react-calendar__viewContainer {
  display: flex;
  margin: -0.5em;
}
.react-calendar--doubleView .react-calendar__viewContainer > * {
  width: 50%;
  margin: 0.5em;
}
.react-calendar,
.react-calendar *,
.react-calendar *:before,
.react-calendar *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.react-calendar button {
  margin: 0;
  border: 0;
  outline: none;
}
.react-calendar button:enabled:hover {
  cursor: pointer;
}
.react-calendar__navigation {
  display: flex;
  height: 44px;
  margin-bottom: 1em;
}
.react-calendar__navigation button {
  min-width: 44px;
  background: none;
}
.react-calendar__navigation button:disabled {
  background-color: #f0f0f0;
}
.react-calendar__navigation button:enabled:hover,
.react-calendar__navigation button:enabled:focus {
  background-color: #e6e6e6;
}
.react-calendar__month-view__weekdays {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75em;
}
.react-calendar__month-view__weekdays__weekday {
  padding: 0.5em;
}
.react-calendar__month-view__weekNumbers .react-calendar__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  font-weight: bold;
}
.react-calendar__month-view__days__day--weekend {
  color: #d10000;
}
.react-calendar__month-view__days__day--neighboringMonth {
  color: #757575;
}
.react-calendar__year-view .react-calendar__tile,
.react-calendar__decade-view .react-calendar__tile,
.react-calendar__century-view .react-calendar__tile {
  padding: 2em 0.5em;
}
.react-calendar__tile {
  max-width: 100%;
  padding: 10px 6.6667px;
  background: none;
  text-align: center;
  line-height: 16px;
}
.react-calendar__tile:disabled {
  background-color: #f0f0f0;
}
.react-calendar__tile:enabled:hover,
.react-calendar__tile:enabled:focus {
  background-color: #e6e6e6;
}
.react-calendar__tile--now {
  background: #ffff76;
}
.react-calendar__tile--now:enabled:hover,
.react-calendar__tile--now:enabled:focus {
  background: #ffffa9;
}
.react-calendar__tile--hasActive {
  background: #76baff;
}
.react-calendar__tile--hasActive:enabled:hover,
.react-calendar__tile--hasActive:enabled:focus {
  background: #a9d4ff;
}
.react-calendar__tile--active {
  background: #006edc;
  color: white;
}
.react-calendar__tile--active:enabled:hover,
.react-calendar__tile--active:enabled:focus {
  background: #1087ff;
}
.react-calendar--selectRange .react-calendar__tile--hover {
  background-color: #e6e6e6;
}
.react-date-picker {
  display: inline-flex;
  position: relative;
}
.react-date-picker,
.react-date-picker *,
.react-date-picker *:before,
.react-date-picker *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.react-date-picker--disabled {
  background-color: #f0f0f0;
  color: #6d6d6d;
}
.react-date-picker__wrapper {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  border: thin solid gray;
}
.react-date-picker__inputGroup {
  min-width: calc((4px * 3) +  0.54em * 8  +  0.217em * 2);
  flex-grow: 1;
  padding: 0 2px;
  box-sizing: content-box;
}
.react-date-picker__inputGroup__divider {
  padding: 1px 0;
  white-space: pre;
}
.react-date-picker__inputGroup__input {
  min-width: 0.54em;
  height: 100%;
  position: relative;
  padding: 0 1px;
  border: 0;
  background: none;
  font: inherit;
  box-sizing: content-box;
  -moz-appearance: textfield;
}
.react-date-picker__inputGroup__input::-webkit-outer-spin-button,
.react-date-picker__inputGroup__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-date-picker__inputGroup__input:invalid {
  background: rgba(255, 0, 0, 0.1);
}
.react-date-picker__inputGroup__input--hasLeadingZero {
  margin-left: -0.54em;
  padding-left: calc(1px +  0.54em);
}
.react-date-picker__button {
  border: 0;
  background: transparent;
  padding: 4px 6px;
}
.react-date-picker__button:enabled {
  cursor: pointer;
}
.react-date-picker__button:enabled:hover .react-date-picker__button__icon,
.react-date-picker__button:enabled:focus .react-date-picker__button__icon {
  stroke: #0078d7;
}
.react-date-picker__button:disabled .react-date-picker__button__icon {
  stroke: #6d6d6d;
}
.react-date-picker__button svg {
  display: inherit;
}
.react-date-picker__calendar {
  width: 350px;
  max-width: 100vw;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
}
.react-date-picker__calendar--closed {
  display: none;
}
.react-date-picker__calendar .react-calendar {
  border-width: thin;
}
body.react-confirm-alert-body-element {
  overflow: hidden;
}

.react-confirm-alert-blur {
  filter: url(#gaussian-blur);
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.react-confirm-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.9);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  opacity: 0;
  -webkit-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  -moz-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  -o-animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
}

.react-confirm-alert-body {
  font-family: Arial, Helvetica, sans-serif;
  width: 400px;
  padding: 30px;
  text-align: left;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 75px rgba(0, 0, 0, 0.13);
  color: #666;
}

.react-confirm-alert-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.react-confirm-alert-body > h1 {
  margin-top: 0;
}

.react-confirm-alert-body > h3 {
  margin: 0;
  font-size: 16px;
}

.react-confirm-alert-button-group {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

.react-confirm-alert-button-group > button {
  outline: none;
  background: #333;
  border: none;
  display: inline-block;
  padding: 6px 18px;
  color: #eee;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

@-webkit-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.react-bs-table .react-bs-container-header .sort-column,td.react-bs-table-expand-cell,th.react-bs-table-expand-cell>div{cursor:pointer}.react-bs-table-container .react-bs-table-search-form{margin-bottom:0}.react-bs-table-bordered{border:1px solid #ddd;border-radius:5px}.react-bs-table table{margin-bottom:0;table-layout:fixed}.react-bs-table table td,.react-bs-table table th{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.react-bs-table-pagination{margin-top:10px}.react-bs-table-tool-bar{margin-bottom:5px}.react-bs-container-footer,.react-bs-container-header{overflow:hidden;width:100%}.react-bs-container-body{overflow:auto;width:100%}.react-bootstrap-table-page-btns-ul{float:right;margin-top:0}.react-bs-table .table-bordered{border:0;outline:0!important}.react-bs-table .table-bordered>thead>tr>td,.react-bs-table .table-bordered>thead>tr>th{border-bottom-width:2px}.react-bs-table .table-bordered>tbody>tr>td{outline:0!important}.react-bs-table .table-bordered>tbody>tr>td.default-focus-cell{outline:#6495ed solid 3px!important;outline-offset:-1px}.react-bs-table .table-bordered>tfoot>tr>td,.react-bs-table .table-bordered>tfoot>tr>th{border-top-width:2px;border-bottom-width:0}.react-bs-table .table-bordered>tbody>tr>td:first-child,.react-bs-table .table-bordered>tbody>tr>th:first-child,.react-bs-table .table-bordered>tfoot>tr>td:first-child,.react-bs-table .table-bordered>tfoot>tr>th:first-child,.react-bs-table .table-bordered>thead>tr>td:first-child,.react-bs-table .table-bordered>thead>tr>th:first-child{border-left-width:0}.react-bs-table .table-bordered>tbody>tr>td:last-child,.react-bs-table .table-bordered>tbody>tr>th:last-child,.react-bs-table .table-bordered>tfoot>tr>td:last-child,.react-bs-table .table-bordered>tfoot>tr>th:last-child,.react-bs-table .table-bordered>thead>tr>td:last-child,.react-bs-table .table-bordered>thead>tr>th:last-child{border-right-width:0}.react-bs-table .table-bordered>thead>tr:first-child>td,.react-bs-table .table-bordered>thead>tr:first-child>th{border-top-width:0}.react-bs-table .table-bordered>tfoot>tr:last-child>td,.react-bs-table .table-bordered>tfoot>tr:last-child>th{border-bottom-width:0}.react-bs-table .react-bs-container-footer>table>thead>tr>th,.react-bs-table .react-bs-container-header>table>thead>tr>th{vertical-align:middle}.react-bs-table .react-bs-container-footer>table>thead>tr>th .filter,.react-bs-table .react-bs-container-header>table>thead>tr>th .filter{font-weight:400}.react-bs-table .react-bs-container-header>table>thead>tr>th .filter::-webkit-input-placeholder,.react-bs-table .react-bs-container-header>table>thead>tr>th .number-filter-input::-webkit-input-placeholder,.react-bs-table .react-bs-container-header>table>thead>tr>th .select-filter option[value=''],.react-bs-table .react-bs-container-header>table>thead>tr>th .select-filter.placeholder-selected{color:#d3d3d3;font-style:italic}.react-bs-table .react-bs-container-footer>table>thead>tr>th .filter::-webkit-input-placeholder,.react-bs-table .react-bs-container-footer>table>thead>tr>th .number-filter-input::-webkit-input-placeholder,.react-bs-table .react-bs-container-footer>table>thead>tr>th .select-filter option[value=''],.react-bs-table .react-bs-container-footer>table>thead>tr>th .select-filter.placeholder-selected{color:#d3d3d3;font-style:italic}.react-bs-table .react-bs-container-footer>table>thead>tr>th .select-filter.placeholder-selected option:not([value='']),.react-bs-table .react-bs-container-header>table>thead>tr>th .select-filter.placeholder-selected option:not([value='']){color:initial;font-style:initial}.react-bs-table .react-bs-container-footer>table>thead>tr>th .date-filter,.react-bs-table .react-bs-container-footer>table>thead>tr>th .number-filter,.react-bs-table .react-bs-container-header>table>thead>tr>th .date-filter,.react-bs-table .react-bs-container-header>table>thead>tr>th .number-filter{display:flex}.react-bs-table .react-bs-container-footer>table>thead>tr>th .date-filter-input,.react-bs-table .react-bs-container-footer>table>thead>tr>th .number-filter-input,.react-bs-table .react-bs-container-header>table>thead>tr>th .date-filter-input,.react-bs-table .react-bs-container-header>table>thead>tr>th .number-filter-input{margin-left:5px;float:left;width:calc(100% - 67px - 5px)}.react-bs-table .react-bs-container-footer>table>thead>tr>th .date-filter-comparator,.react-bs-table .react-bs-container-footer>table>thead>tr>th .number-filter-comparator,.react-bs-table .react-bs-container-header>table>thead>tr>th .date-filter-comparator,.react-bs-table .react-bs-container-header>table>thead>tr>th .number-filter-comparator{width:67px;float:left}.react-bs-container .textarea-save-btn{position:absolute;z-index:100;right:0;top:-21px}.react-bs-table-no-data{text-align:center}.ReactModal__Overlay{-webkit-perspective:600;perspective:600;opacity:0;overflow-x:hidden;overflow-y:auto;background-color:rgba(0,0,0,.5);z-index:101}.ReactModal__Overlay--after-open{opacity:1;transition:opacity 150ms ease-out}.ReactModal__Content{-webkit-transform:scale(.5) rotateX(-30deg);transform:scale(.5) rotateX(-30deg)}.ReactModal__Content--after-open{-webkit-transform:scale(1) rotateX(0);transform:scale(1) rotateX(0);transition:all 150ms ease-in}.ReactModal__Overlay--before-close{opacity:0}.ReactModal__Content--before-close{-webkit-transform:scale(.5) rotateX(30deg);transform:scale(.5) rotateX(30deg);transition:all 150ms ease-in}.ReactModal__Content.modal-dialog{border:none;background-color:transparent}.animated{animation-fill-mode:both}.animated.bounceIn,.animated.bounceOut{animation-duration:.75s}.animated.shake{animation-duration:.3s}@keyframes shake{from,to{transform:translate3d(0,0,0)}10%,50%,90%{transform:translate3d(-10px,0,0)}30%,70%{transform:translate3d(10px,0,0)}}.shake{animation-name:shake}@keyframes bounceIn{20%,40%,60%,80%,from,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scale3d(1,1,1)}}.bounceIn{animation-name:bounceIn}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.bounceOut{animation-name:bounceOut}@charset "UTF-8";
.rbc-btn {
  color: inherit;
  font: inherit;
  margin: 0;
}

button.rbc-btn {
  overflow: visible;
  text-transform: none;
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled].rbc-btn {
  cursor: not-allowed;
}

button.rbc-input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.rbc-calendar {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.rbc-calendar *,
.rbc-calendar *:before,
.rbc-calendar *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.rbc-abs-full, .rbc-row-bg {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.rbc-ellipsis, .rbc-show-more, .rbc-row-segment .rbc-event-content, .rbc-event-label {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rbc-rtl {
  direction: rtl;
}

.rbc-off-range {
  color: #999999;
}

.rbc-off-range-bg {
  background: #e6e6e6;
}

.rbc-header {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 3px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  font-size: 90%;
  min-height: 0;
  border-bottom: 1px solid #ddd;
}
.rbc-header + .rbc-header {
  border-left: 1px solid #ddd;
}
.rbc-rtl .rbc-header + .rbc-header {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}
.rbc-header > a, .rbc-header > a:active, .rbc-header > a:visited {
  color: inherit;
  text-decoration: none;
}

.rbc-button-link {
  color: inherit;
  background: none;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}

.rbc-row-content {
  position: relative;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  z-index: 4;
}

.rbc-row-content-scrollable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.rbc-row-content-scrollable .rbc-row-content-scroll-container {
  height: 100%;
  overflow-y: scroll;
  /* Hide scrollbar for Chrome, Safari and Opera */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.rbc-row-content-scrollable .rbc-row-content-scroll-container::-webkit-scrollbar {
  display: none;
}

.rbc-today {
  background-color: #eaf6ff;
}

.rbc-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
}
.rbc-toolbar .rbc-toolbar-label {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 10px;
  text-align: center;
}
.rbc-toolbar button {
  color: #373a3c;
  display: inline-block;
  margin: 0;
  text-align: center;
  vertical-align: middle;
  background: none;
  background-image: none;
  border: 1px solid #ccc;
  padding: 0.375rem 1rem;
  border-radius: 4px;
  line-height: normal;
  white-space: nowrap;
}
.rbc-toolbar button:active, .rbc-toolbar button.rbc-active {
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  background-color: #e6e6e6;
  border-color: #adadad;
}
.rbc-toolbar button:active:hover, .rbc-toolbar button:active:focus, .rbc-toolbar button.rbc-active:hover, .rbc-toolbar button.rbc-active:focus {
  color: #373a3c;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.rbc-toolbar button:focus {
  color: #373a3c;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.rbc-toolbar button:hover {
  color: #373a3c;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.rbc-btn-group {
  display: inline-block;
  white-space: nowrap;
}
.rbc-btn-group > button:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.rbc-btn-group > button:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.rbc-rtl .rbc-btn-group > button:first-child:not(:last-child) {
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.rbc-rtl .rbc-btn-group > button:last-child:not(:first-child) {
  border-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.rbc-btn-group > button:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.rbc-btn-group button + button {
  margin-left: -1px;
}
.rbc-rtl .rbc-btn-group button + button {
  margin-left: 0;
  margin-right: -1px;
}
.rbc-btn-group + .rbc-btn-group, .rbc-btn-group + button {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .rbc-toolbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.rbc-event, .rbc-day-slot .rbc-background-event {
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
  padding: 2px 5px;
  background-color: #3174ad;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.rbc-slot-selecting .rbc-event, .rbc-slot-selecting .rbc-day-slot .rbc-background-event, .rbc-day-slot .rbc-slot-selecting .rbc-background-event {
  cursor: inherit;
  pointer-events: none;
}
.rbc-event.rbc-selected, .rbc-day-slot .rbc-selected.rbc-background-event {
  background-color: #265985;
}
.rbc-event:focus, .rbc-day-slot .rbc-background-event:focus {
  outline: 5px auto #3b99fc;
}

.rbc-event-label {
  font-size: 80%;
}

.rbc-event-overlaps {
  -webkit-box-shadow: -1px 1px 5px 0px rgba(51, 51, 51, 0.5);
          box-shadow: -1px 1px 5px 0px rgba(51, 51, 51, 0.5);
}

.rbc-event-continues-prior {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rbc-event-continues-after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.rbc-event-continues-earlier {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.rbc-event-continues-later {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.rbc-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.rbc-row-segment {
  padding: 0 1px 1px 1px;
}
.rbc-selected-cell {
  background-color: rgba(0, 0, 0, 0.1);
}

.rbc-show-more {
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 4;
  font-weight: bold;
  font-size: 85%;
  height: auto;
  line-height: normal;
  color: #3174ad;
}
.rbc-show-more:hover, .rbc-show-more:focus {
  color: #265985;
}

.rbc-month-view {
  position: relative;
  border: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  width: 100%;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  height: 100%;
}

.rbc-month-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.rbc-month-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -ms-flex-preferred-size: 0px;
      flex-basis: 0px;
  overflow: hidden;
  height: 100%;
}
.rbc-month-row + .rbc-month-row {
  border-top: 1px solid #ddd;
}

.rbc-date-cell {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  padding-right: 5px;
  text-align: right;
}
.rbc-date-cell.rbc-now {
  font-weight: bold;
}
.rbc-date-cell > a, .rbc-date-cell > a:active, .rbc-date-cell > a:visited {
  color: inherit;
  text-decoration: none;
}

.rbc-row-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  overflow: hidden;
}

.rbc-day-bg {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}
.rbc-day-bg + .rbc-day-bg {
  border-left: 1px solid #ddd;
}
.rbc-rtl .rbc-day-bg + .rbc-day-bg {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}

.rbc-overlay {
  position: absolute;
  z-index: 5;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  padding: 10px;
}
.rbc-overlay > * + * {
  margin-top: 1px;
}

.rbc-overlay-header {
  border-bottom: 1px solid #e5e5e5;
  margin: -10px -10px 5px -10px;
  padding: 2px 10px;
}

.rbc-agenda-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  overflow: auto;
}
.rbc-agenda-view table.rbc-agenda-table {
  width: 100%;
  border: 1px solid #ddd;
  border-spacing: 0;
  border-collapse: collapse;
}
.rbc-agenda-view table.rbc-agenda-table tbody > tr > td {
  padding: 5px 10px;
  vertical-align: top;
}
.rbc-agenda-view table.rbc-agenda-table .rbc-agenda-time-cell {
  padding-left: 15px;
  padding-right: 15px;
  text-transform: lowercase;
}
.rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
  border-left: 1px solid #ddd;
}
.rbc-rtl .rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}
.rbc-agenda-view table.rbc-agenda-table tbody > tr + tr {
  border-top: 1px solid #ddd;
}
.rbc-agenda-view table.rbc-agenda-table thead > tr > th {
  padding: 3px 5px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.rbc-rtl .rbc-agenda-view table.rbc-agenda-table thead > tr > th {
  text-align: right;
}

.rbc-agenda-time-cell {
  text-transform: lowercase;
}
.rbc-agenda-time-cell .rbc-continues-after:after {
  content: " »";
}
.rbc-agenda-time-cell .rbc-continues-prior:before {
  content: "« ";
}

.rbc-agenda-date-cell,
.rbc-agenda-time-cell {
  white-space: nowrap;
}

.rbc-agenda-event-cell {
  width: 100%;
}

.rbc-time-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
.rbc-time-column .rbc-timeslot-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.rbc-timeslot-group {
  border-bottom: 1px solid #ddd;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

.rbc-time-gutter,
.rbc-header-gutter {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.rbc-label {
  padding: 0 5px;
}

.rbc-day-slot {
  position: relative;
}
.rbc-day-slot .rbc-events-container {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  margin-right: 10px;
  top: 0;
}
.rbc-day-slot .rbc-events-container.rbc-rtl {
  left: 10px;
  right: 0;
}
.rbc-day-slot .rbc-event, .rbc-day-slot .rbc-background-event {
  border: 1px solid #265985;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 100%;
  min-height: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
  position: absolute;
}
.rbc-day-slot .rbc-background-event {
  opacity: 0.75;
}
.rbc-day-slot .rbc-event-label {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding-right: 5px;
  width: auto;
}
.rbc-day-slot .rbc-event-content {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  word-wrap: break-word;
  line-height: 1;
  height: 100%;
  min-height: 1em;
}
.rbc-day-slot .rbc-time-slot {
  border-top: 1px solid #f7f7f7;
}

.rbc-time-view-resources .rbc-time-gutter,
.rbc-time-view-resources .rbc-time-header-gutter {
  position: sticky;
  left: 0;
  background-color: white;
  border-right: 1px solid #ddd;
  z-index: 10;
  margin-right: -1px;
}
.rbc-time-view-resources .rbc-time-header {
  overflow: hidden;
}
.rbc-time-view-resources .rbc-time-header-content {
  min-width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  -ms-flex-preferred-size: 0px;
      flex-basis: 0px;
}
.rbc-time-view-resources .rbc-time-header-cell-single-day {
  display: none;
}
.rbc-time-view-resources .rbc-day-slot {
  min-width: 140px;
}
.rbc-time-view-resources .rbc-header,
.rbc-time-view-resources .rbc-day-bg {
  width: 140px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  -ms-flex-preferred-size: 0 px;
      flex-basis: 0 px;
}

.rbc-time-header-content + .rbc-time-header-content {
  margin-left: -1px;
}

.rbc-time-slot {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.rbc-time-slot.rbc-now {
  font-weight: bold;
}

.rbc-day-header {
  text-align: center;
}

.rbc-slot-selection {
  z-index: 10;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 75%;
  width: 100%;
  padding: 3px;
}

.rbc-slot-selecting {
  cursor: move;
}

.rbc-time-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  border: 1px solid #ddd;
  min-height: 0;
}
.rbc-time-view .rbc-time-gutter {
  white-space: nowrap;
  text-align: right;
}
.rbc-time-view .rbc-allday-cell {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 100%;
  height: 100%;
  position: relative;
}
.rbc-time-view .rbc-allday-cell + .rbc-allday-cell {
  border-left: 1px solid #ddd;
}
.rbc-time-view .rbc-allday-events {
  position: relative;
  z-index: 4;
}
.rbc-time-view .rbc-row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 20px;
}

.rbc-time-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.rbc-time-header.rbc-overflowing {
  border-right: 1px solid #ddd;
}
.rbc-rtl .rbc-time-header.rbc-overflowing {
  border-right-width: 0;
  border-left: 1px solid #ddd;
}
.rbc-time-header > .rbc-row:first-child {
  border-bottom: 1px solid #ddd;
}
.rbc-time-header > .rbc-row.rbc-row-resource {
  border-bottom: 1px solid #ddd;
}

.rbc-time-header-cell-single-day {
  display: none;
}

.rbc-time-header-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-left: 1px solid #ddd;
}
.rbc-rtl .rbc-time-header-content {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}
.rbc-time-header-content > .rbc-row.rbc-row-resource {
  border-bottom: 1px solid #ddd;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.rbc-time-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  border-top: 2px solid #ddd;
  overflow-y: auto;
  position: relative;
}
.rbc-time-content > .rbc-time-gutter {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.rbc-time-content > * + * > * {
  border-left: 1px solid #ddd;
}
.rbc-rtl .rbc-time-content > * + * > * {
  border-left-width: 0;
  border-right: 1px solid #ddd;
}
.rbc-time-content > .rbc-day-slot {
  width: 100%;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.rbc-current-time-indicator {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #74ad31;
  pointer-events: none;
}@keyframes rotate {
  /* Rotate the image from 0 degrees to 360 degrees */
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.schedule-ai-btn-rotate {
  /* Set the animation to last for 2 seconds and repeat infinitely */
  animation: rotate 2s linear infinite;
  height: 30px;
  width: 30px;
  border: 0px;
  border-radius: 100px;
}
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.w-full {
  width: 100%;
}

.h-64 {
  height: 16rem; /* 64px */
}

.border-2 {
  border-width: 2px;
}

.border-gray-300 {
  border-color: #d1d5db; /* gray-300 */
}

.border-dashed {
  border-style: dashed;
}

.rounded-lg {
  border-radius: 0.5rem; /* rounded-lg */
}

.cursor-pointer {
  cursor: pointer;
}

.bg-gray-50 {
  background-color: #f9fafb; /* gray-50 */
}

.dark:hover\:bg-bray-800:hover {
  background-color: #374151; /* gray-800 */
}

.dark\:bg-gray-700 {
  background-color: #4b5563; /* gray-700 */
}

.hover\:bg-gray-100:hover {
  background-color: #f3f4f6; /* gray-100 */
}

.dark:border-gray-600 {
  border-color: #4b5563; /* gray-600 */
}

.dark:hover\:border-gray-500:hover {
  border-color: #6b7280; /* gray-500 */
}

.dark:hover\:bg-gray-600 {
  background-color: #4b5563; /* gray-600 */
}

.pt-5 {
  padding-top: 1.25rem; /* 5px */
}

.pb-6 {
  padding-bottom: 1.5rem; /* 6px */
}

.svg {
  display: inline-block;
}

.w-8 {
  width: 2rem; /* 8px */
}

.h-8 {
  height: 2rem; /* 8px */
}

.mb-4 {
  margin-bottom: 1rem; /* 4px */
}

.text-gray-500 {
  color: #6b7280; /* gray-500 */
}

.dark\:text-gray-400 {
  color: #9ca3af; /* gray-400 */
}

.mb-2 {
  margin-bottom: 0.5rem; /* 2px */
}

.text-sm {
  font-size: 0.875rem; /* sm */
}

.font-semibold {
  font-weight: 600; /* semibold */
}

.text-xs {
  font-size: 0.75rem; /* xs */
}

.hidden {
  display: none;
}

.image-items {
  display: flex;
  flex-direction: column;
  margin: 20px;
  row-gap: 10px;
  padding-bottom: 100px;
}
.image-img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 10px;
}
.date-picker-sec {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.dates-on-div {
  position: relative;
}
.dates-on-img {
  border-radius: 10px;
  color: blue;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-data {
  border: 1px solid rgb(204, 204, 204);
  border-radius: 5px;
  padding: 8px;
  font-size: 16px;
  height: 40px;
  color: blue;
  background-color: honeydew;
}
.clock-icon {
  height: 40px;
  width: 40px;
  color: #6452ff;
  /* position: absolute; */
  right: 0px;
}
.dates-on-icons {
  display: flex;
  align-items: center;
  /* position: relative; */
}
.delete-icon {
  width: 40px;
  height: 40px;
  color: #ff7070;
  cursor: pointer;
  background-color: white;
  padding: 2px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-btn-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  column-gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.schedule-details {
  display: grid;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  width: 100%;
  grid-template-columns: 4% 12% 12% 16% 16% 16% 15% 3%;
}
.schedule-palm-sec {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}
.schedule-ai-btn {
  height: 30px;
  width: 30px;
  border: 0px;
  border-radius: 100px;
}
.schedule-detail-btn {
  background-color: black;
  color: white !important;
  cursor: pointer;
  box-shadow: 0px 0px 3px 1px black;
  font-weight: bold;
  border-radius: 100px;
  display: flex;
  align-items: center;
  position: absolute;
  right: 5px;
}
.social-icons {
  height: 20px;
  object-fit: cover;
}
.social-media-sec {
  display: flex;
  column-gap: 5px;
  background-color: white;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 10px;
  position: relative;
  padding: 10px;
  cursor: pointer;
}
.social-icons-items {
  display: flex;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  column-gap: 10px;
}
.social_media-header {
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
}
.table-img {
  height: 50px;
  width: 50px;
  border-radius: 10px;
  object-fit: cover;
}

.seo-table-column {
  text-align: center;
  color: black;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  position: relative;
}
.rt-td {
  flex: 100 0 auto;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-btn-sec {
  text-align: center;
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  position: relative;
}
.delete-button {
  border-radius: 5px;
  padding: 2px 10px 2px 10px;
  background-color: #0099ff;
  color: white;
  cursor: pointer;
}
.cancel-button {
  border-radius: 5px;
  padding: 2px 10px 2px 10px;
  background-color: #919394;
  color: white;
  cursor: pointer;
}
.delete-button:hover,
.cancel-button:hover {
  box-shadow: -3px 4px 2px 0px #1e9fa7;
}
.table-txtarea-sec {
  text-align: center;
  color: black;
  text-decoration: none;
  display: flex;
  width: 100%;
}
.table-textarea {
  resize: none;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  overflow: -moz-scrollbars-none !important;
  display: flex;
  width: 100%;
  background-color: transparent;
}
.remove_img {
  color: rgb(218, 75, 75) !important;
  width: 60px !important;
  height: 18px !important;
  font-size: 12px !important;
  min-width: 60px !important;
}
.calender-img {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  position: relative;
}

.calender-img:hover + .img-cart-view {
  display: flex;
  visibility: visible;
}

.img-cart-view {
  display: none;
  height: 200px;
  width: 200px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.calender-img:hover ~ .img-cart-view {
  display: flex;
  visibility: visible;
}
.rbc-event {
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0;
  padding: 2px 5px;
  background-color: #3174ad;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  width: 100%;
  display: flex !important;
  text-align: center;
  flex-direction: column !important;
  height: 72px !important;
  justify-content: center;
}
.rbc-events-container > .rbc-event {
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0;
  padding: 2px 5px;
  background-color: #3174ad;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  width: 100%;
  display: flex !important;
  text-align: center;
  flex-direction: column !important;
  height: 5% !important;
  justify-content: center;
}
/* .rmdp-wrapper {
  position: relative !important;
  left: 160px !important;
  top: 250px !important;
} */
.rbc-time-content > .rbc-day-slot {
  width: 100%;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.rbc-time-content > .rbc-time-gutter {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: flex !important;
  flex-direction: column;
  height: 20px !important;
  row-gap: 30px;
}
.table-media-sec {
  /* position: relative; */
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.seo-table-column-img {
  text-align: center;
  color: black;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /* column-gap: 10px; */
  position: relative;
  width: 100%;
  height: 100%;
}

.green-dot {
  display: flex;
  height: 8px;
  width: 8px;
  background-color: green;
  border-radius: 50%;
  animation: heartBeat 5s infinite;
  padding: 2px;
}
.green-dot-sec {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: white;
  border-radius: 100px;
}
#react-tab-div > .ReactTable > .rt-table {
  overflow-x: hidden !important;
}
@keyframes heartBeat {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    transform: scale(1);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.4);
  }
}
.order-det-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  background-color: #f0f0f0;
  margin: 10px 40px;
  flex-direction: column;
  height: 300px;
}

.shatter-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shatter-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: shatter 1s ease-out forwards;
  overflow: auto;
}

@keyframes shatter {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
.confirem-ship-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
  padding: 0px 40px;
}
.confirm-input {
  margin: 0px;
  min-width: 300px;
  border-radius: 100px;
  padding: "10px 40px 10px 10px";
  height: 40px;
}
.confirem-ship-loader {
  height: 35px;
  width: 35px;
  position: absolute;
  right: 10px;
}
.input-con {
  display: flex;
  align-items: center;
  position: relative;
}
.customer-supp {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100%;
  padding: 0px 40px 0px 40px;
  column-gap: 10px;
}
.customer-supp-item {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.ellipsis-vertica {
  position: absolute;
  right: 10px;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
.edit-modal-con {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: transparent;
  min-width: 500px;
  position: relative;
}
.edit-modal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  background-color: transparent;
}
.select-courier {
  display: grid;
  width: 100%;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  background: white;
  border-bottom: 1px solid;
  font-size: 14px;
  grid-template-columns: 5% 30% 5% 12% 18% 12% 18%;
  padding: 0px 10px 0px 10px;
}
.select-courier-item {
  display: flex;
  width: 100%;
  flex-direction: column;
  row-gap: 5px;
  background-color: #dbdbdb;
  height: 80%;
  overflow: auto;
  padding: 0px 0px 20px 0px;
}
.courier-items {
  text-align: center;
  border-right: 1px solid;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .rating-star {
  display: flex;
  font-family: Verdana;
  font-size: 10px;
} */
.rating-star {
  width: 40px;
  height: 40px;
}
.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  color: gray;
}
.update-track-table {
  margin: 0px 40px 40px 40px;
}
.wallet-money {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid gray;
  border-radius: 10px;
  padding: 2px 5px;
  gap: 10px;
  background: white;
}
.rt-resizable-header-content:has(.update-track-table) {
  font-size: 12px !important;
}
.get-cou-sec {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  padding: 5px;
  background-color: white;
}
/* From Uiverse.io by Yaya12085 */
.modal-card {
  border-width: 1px;
  border-color: rgba(219, 234, 254, 1);
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  height: 100%;
  padding: 10px;
}

.modal-header {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  gap: 1rem;
}

.modal-icon {
  font-size: 12px;
  font-weight: bold;
}

.modal-icon svg {
  height: 1rem;
  width: 1rem;
}

.modal-alert {
  font-weight: 600;
  color: rgba(107, 114, 128, 1);
  font-size: 12px;
}

.modal-message {
  margin-top: 1rem;
  color: rgba(107, 114, 128, 1);
}

.modal-actions {
  margin-top: 1.5rem;
  justify-content: center !important;
}

.modal-actions a {
  text-decoration: none;
}

.modal-mark-as-read,
.modal-read {
  display: inline-block;
  border-radius: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}

.modal-read {
  background-color: rgba(59, 130, 246, 1);
  color: rgba(255, 255, 255, 1);
}
.modal-mark-as-read {
  margin-top: 0.5rem;
  background-color: rgba(249, 250, 251, 1);
  color: rgba(107, 114, 128, 1);
  transition: all 0.15s ease;
}

.modal-mark-as-read:hover {
  background-color: rgb(230, 231, 233);
}

body {
  background-color: #fff;
  /*   background: radial-gradient(at 50% -20%, #908392, #0d060e) fixed; */
}

#handboy {
  animation: swing ease-in-out 1.3s infinite alternate;
  transform-origin: 98% 98%;
  transform-box: fill-box;
}

#girllight {
  animation: swing ease-in-out 1.3s infinite alternate;
  transform-origin: 0% 97%;
  transform-box: fill-box;
}

#hairgirl {
  animation: swinghair ease-in-out 1.3s infinite alternate;
  transform-origin: 60% 0%;
  transform-box: fill-box;
}

#zero {
  transform-origin: bottom;
  transform-box: fill-box;
}

/*************swing************/
@keyframes swing {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

/*************swing hair************/
@keyframes swinghair {
  0% {
    transform: rotate(6deg);
  }
  100% {
    transform: rotate(-6deg);
  }
}
.select-media-sec {
  position: absolute;
  width: 185px;
  height: 100px;
  overflow: auto;
  top: 50px;
  z-index: 1;
  left: 0px;
  background: white;
  padding: 2px 30px;
  border-radius: 10px;
}
.media-check-box {
  height: 16px;
  width: 16px;
  margin: 0px;
  padding: 0px;
}
.offline-seo-rule-con {
  display: grid;
  grid-template-columns: 20% 80%;
  height: 60vh;
  overflow: hidden;
  margin: 10px 40px 10px;
  column-gap: 10px;
}
.offline-seo-textare {
  padding: 0px 40px 0px 10px;
  width: 100%;
  height: 35px;
  box-shadow: 0px 0px 2px 0px black;
  border: 1px solid grey;
  background-color: #fff !important;
  color: black !important;
  border-radius: 10px !important;
}
.offline-seo-textare-error {
  padding: 10px;
  width: 100%;
  height: 35px;
  box-shadow: 0px 0px 2px 0px red;
  border: 1px solid red;
  background-color: #fff !important;
  border-radius: 10px !important;
}
.chip {
  background: #0096fb !important;
  border-radius: 11px !important;
  color: #fff !important;
  display: flex !important;
  font-size: 13px !important;
  line-height: 19px !important;
  margin-right: 5px !important;
  padding: 4px 10px !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 0px !important;
}
.searchWrapper {
  border: 0px solid #ccc !important;
  border-radius: 4px !important;
  height: 35px !important;
  padding: 5px !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  width: 100% !important;
  display: flex !important;
  overflow: hidden !important;
  width: 520px !important;
}
.searchBox {
  width: 90px !important;
}
.option {
  display: flex !important;
  align-items: center !important;
  column-gap: 10px !important;
  padding: 0px 5px !important;
  font-size: 12px !important;
}
.multiSelectContainer input {
  background: transparent !important;
  border: none !important;
  margin-top: 0px !important;
  padding: 0px !important;
}
.vendor-logistic-add .rmdp-input {
  width: 100%;
  height: 35px;
  box-shadow: 0px 0px 2px 0px black;
  border: 1px solid grey;
  background-color: #fff !important;
  color: black !important;
  border-radius: 100px !important;
}
.clearfix button {
  background-color: #04aa6d;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

button:hover {
  opacity: 1;
}

.cancelbtn,
.deletebtn {
  float: left;
  width: 50%;
}

.cancelbtn {
  background-color: #ccc;
  color: black;
}

.deletebtn {
  background-color: #f44336 !important;
}

.container {
  padding: 16px;
  text-align: center;
}

.modal {
  display: block; /* Changed to block when open */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(71, 78, 93, 0.9);
  padding-top: 50px;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto;
  border: 1px solid #888;
  width: 80%;
}

hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}

.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}

.close:hover,
.close:focus {
  color: #f44336;
  cursor: pointer;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
.clearfix {
  display: flex;
  column-gap: 10px;
}
.update-amz-prd-sec {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.unit-view {
  background: #eb5203;
  padding: 2px 5px;
  color: white;
  border-radius: 100px;
}
@media screen and (max-width: 300px) {
  .cancelbtn,
  .deletebtn {
    width: 100%;
  }
}
.custom-offcanvas {
  overflow-y: scroll; /* Ensure scrolling is enabled */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* For WebKit browsers */
.custom-offcanvas::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.custom-offcanvas {
  position: fixed;
  left: 0;
  top: 100px;
  width: 25%;
  height: 100%;
  background-color: #f8f9fa;
  z-index: 1045;
  overflow-x: hidden;
  transition: transform 0.3s ease-in-out;
}

.custom-offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  background-color: #e9ecef;
  border-bottom: 1px solid #dee2e6;
  position: relative;
}

.custom-offcanvas-title {
  margin: 0;
}

.custom-btn-close {
  background: none;
  border: none;
  font-size: 1.5rem;
}

.custom-offcanvas-body {
  overflow-y: auto;
}

.custom-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  row-gap: 10px;
  position: relative;
  z-index: 0;
}

.custom-nav-item-focus {
  margin-bottom: 0.5rem;
  cursor: pointer;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 22%,
    rgba(255, 120, 85, 0.5160189075630253) 100%
  );
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
.custom-nav-item {
  margin-bottom: 0.5rem;
  cursor: pointer;
  width: 100%;
  background-color: white;
}
.custom-nav-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  padding: 0.5rem 1rem;
}

.custom-nav-link:hover {
  background-color: #e9ecef;
}

.custom-nav-text {
  margin-left: 0.5rem;
}

.custom-dropdown {
  position: relative;
}

.custom-dropdown-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  margin-top: 0.5rem;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  z-index: 1000;
}

.custom-dropdown-item {
  display: block;
  padding: 0.25rem 1.5rem;
  text-decoration: none;
  color: #000;
}

.custom-dropdown-item:hover {
  background-color: #e9ecef;
}

.custom-container {
  padding: 1rem;
}

.custom-row {
  display: flex;
}

.custom-col {
  flex: 1;
  min-height: 100vh;
  background-color: white;
  margin: 20px;
  padding: 10px;
}

.custom-btn-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  float: right;
}

.custom-icon-house::before {
  content: "\f015"; /* Example icon content */
}

.custom-icon-dashboard::before {
  content: "\f0e4"; /* Example icon content */
}

.custom-icon-table::before {
  content: "\f0ce"; /* Example icon content */
}

.custom-icon-bootstrap::before {
  content: "\f26e"; /* Example icon content */
}

.custom-icon-products::before {
  content: "\f0c2"; /* Example icon content */
}

.custom-icon-customers::before {
  content: "\f007"; /* Example icon content */
}

.custom-icon-toggle::before {
  content: "\f0a4"; /* Example icon content */
}
.icons-style {
  width: 20px;
  height: 20px;
}
ul,
li {
  margin: 0px !important;
  padding: 0px !important;
  min-width: max-content !important;
}
.dropbtn {
  background-color: #4caf50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.page-item {
  margin: 0 5px;
}

.page-link {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #007bff;
}

.page-link:hover {
  background-color: #f8f9fa;
}

.active .page-link {
  background-color: #007bff;
  color: #fff;
}
.mail-sec {
  height: 350px;
  background: #e9ecef;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  overflow: auto;
  padding: 5px;
  position: fixed;
  margin-right: 40px;
  width: 90%;
}
.mail-item {
  padding: 5px;
  background: white;
  padding-left: 10px;
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  column-gap: 20px;
  font-weight: bold;
  justify-content: center;
  transition: transform 0.5s ease;
  border-bottom: 1px solid gray;
}
.mail-item:hover {
  border: 1px solid gray !important;
}

.mail-icon-sec {
  border: 1px solid gray;
  border-radius: 10px;
  color: black;
  background: linear-gradient(
    90deg,
    rgba(242, 227, 223, 1) 50%,
    rgba(198, 230, 237, 1) 100%
  );
  font-size: 14px;
  transition: transform 0.3s ease;
  height: 30px;
  width: 30px;
  border-radius: 100px;
  padding: 2px;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  position: relative;
}
.mail-icon-name {
  display: flex;
  column-gap: 2px;
  align-items: center;
  display: flex;
  column-gap: 5px;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.all-mail-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
  height: 300px;
}
.all-mail-sec-child {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  padding: 5px;
}
.all-mail-sec-child-items {
  height: 35px;
  display: flex;
  align-items: center;
  padding: 0px 5px;
  justify-content: space-between;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  column-gap: 10px;
  background: white;
  border-bottom: 1px solid gray;
  cursor: pointer;
}
.all-mail-sec-child-items-focus {
  height: 35px;
  display: flex;
  align-items: center;
  padding: 0px 5px;
  justify-content: space-between;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  column-gap: 10px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 22%,
    rgba(255, 120, 85, 0.5160189075630253) 100%
  );
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-bottom: 1px solid gray;
  cursor: pointer;
}
.items-overflow {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mail-login-icon {
  top: 10px;
  left: 20px;
  border-radius: 10px;
  color: black;
  background: linear-gradient(
    90deg,
    rgba(242, 227, 223, 1) 50%,
    rgba(198, 230, 237, 1) 100%
  );
  font-size: 14px;
  transition: transform 0.3s ease;
  height: 100px;
  width: 100px;
  padding: 2px;
}
.all-mail-sec-secondchild {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 0px 10px;
}
.mail-main-con {
  display: grid;
  grid-template-columns: 35% 20% 45%;
  height: 60vh;
  overflow: hidden;
  margin: 10px 40px 10px;
}
.mail-category-sec {
  overflow: auto;
  height: 100%;
  padding: 0px 5px;
  border: 1px solid gray;
}
.mail-category-sec {
  overflow: auto;
  height: 100%;
}

/* Hide scrollbar for Chrome, Safari, and Edge */
.mail-category-sec::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge, and Firefox */
.mail-category-sec {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.default-view {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 0px 5px;
  font-size: 12px;
}
.default-view-sec {
  display: flex;
  align-items: center;
  column-gap: 5px;
  justify-content: center;
}
.email-container {
  background-color: white;
  border-radius: 8px;
  width: 100%;
}

.email-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #f1f3f4;
}

.email-header h2 {
  margin: 0;
  font-size: 1.1em;
  color: #202124;
}

.email-controls {
  display: flex;
  gap: 10px;
}

.email-controls button {
  background: none;
  border: none;
  cursor: pointer;
  color: #5f6368;
  font-size: 1.2em;
}

.email-body {
  padding: 0px;
}

.email-field {
  margin-bottom: 10px;
  display: grid;
  align-items: center;
  grid-template-columns: 20% 80%;
}

.email-field label {
  display: block;
  margin-bottom: 5px;
  color: #5f6368;
  font-size: 0.9em;
}

.email-field input {
  width: 100%;
  padding: 5px;
  border: none;
  border-bottom: 1px solid #f1f3f4;
  font-size: 1em;
  box-sizing: border-box;
}

.email-footer {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-top: 1px solid #f1f3f4;
  column-gap: 10px;
}

.send-button {
  background-color: #1a73e8;
  color: white;
  border: none;
  padding: 1px 25px;
  border-radius: 4px;
  font-size: 0.9em;
  cursor: pointer;
  height: 30px;
}

.toolbar {
  display: flex;
  align-items: center;
}

.toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 10px;
  font-size: 1.2em;
  color: #5f6368;
}
.messenger {
  display: flex;
  height: 100vh;
  margin: 20px;
  column-gap: 10px;
}

.sidebar {
  width: 25%;
  background-color: white;
  border-right: 1px solid #ccc;
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: 70vh;
  overflow: auto;
}

.sidebar h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  cursor: pointer;
  background-color: #e9e9e9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar ul li.active {
  background-color: #007bff;
  color: white;
}

.sidebar ul li:hover {
  background-color: #d6d6d6;
}

.sidebar .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.menubar {
  width: 3%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  height: 70vh;
  overflow: auto;
}

.menubar h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.menubar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menubar ul li {
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  cursor: pointer;
  background-color: #e9e9e9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menubar ul li.active {
  background-color: #007bff;
  color: white;
}

.menubar ul li:hover {
  background-color: #d6d6d6;
}

.menubar .avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  padding: 10px;
}
.chat-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: white;
  height: 70vh;
  overflow: auto;
}

.chat-header {
  background-color: #d1dbe6;
  color: white;
  padding: 10px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-display {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat-placeholder {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  font-size: 16px;
}

.chat-message-container {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.chat-message-container.sent {
  flex-direction: row-reverse;
}

.chat-message {
  max-width: 70%;
  border-radius: 10px;
  font-size: 14px;
  position: relative;
  padding: 5px 10px;
  min-width: 300px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000;
  min-height: 40px;
}

.chat-message.sent {
  background-color: #90e7e375;
  color: black;
}

.chat-message.received {
  background-color: #e0e0e0;
}

.message-input {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ccc;
  background-color: #fff;
  align-items: center;
  column-gap: 10px;
}

.message-input input {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.message-input button {
  padding: 10px 15px;
  margin-left: 10px;
  font-size: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.message-input button:hover {
  background-color: #0056b3;
}
chat-placeholder,
.no-chats {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #888;
  font-size: 16px;
  text-align: center;
}

.no-chats p {
  font-size: 20px;
  color: #555;
  margin-bottom: 10px;
}

.no-chats span {
  font-size: 14px;
  color: #888;
}
.chat-icon-dev {
  background: #f2f2f2;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.chat-icon-dev-active {
  background: #d1dbe6 !important;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.all-data {
  position: relative;
  margin: 12px 0px 0px 0px !important;
  padding: 0px !important;
  font-size: 12px !important;
  font-weight: normal !important;
  white-space: normal; /* Ensures text wraps instead of overlapping */
  overflow-wrap: break-word; /* Breaks long words onto the next line */
}

.time-sec {
  position: absolute;
  bottom: -1px;
  right: 10px;
  font-size: 12px;
  color: #888;
  z-index: 1; /* Ensures it stays above overlapping text */
}

.all-data {
  margin-right: 60px; /* Add space to the right to accommodate the time */
}
.chat-bubble {
  position: relative;
  background: #f1f1f1; /* Change this color to match your design */
  border-radius: 16px; /* Smooth curve for bubble */
  padding: 12px 18px;
  max-width: 300px; /* Adjust width as needed */
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000;
}

.chat-message.received::before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 10px;
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 12px 20px 0px 0px;
  border-color: #e0e0e0 transparent transparent transparent;
}
.chat-message.sent::before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 10px;
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 12px 20px 0px 0px;
  border-color: #cef4f2 transparent transparent transparent;
}
.users-groups-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
}
.users-groups-sec h3 {
  margin-bottom: 0px;
}
.group-users-list {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 3px 0px;
  padding: 10px 5px !important;
}
.group-chat-user {
  top: 0px;
  left: 10px;
  position: absolute;
  bottom: -1px;
  right: 10px;
  font-size: 12px;
  color: black;
  z-index: 1;
  font-weight: bold;
}
.menu-container {
  position: relative;
  margin: 0px !important;
  background: transparent;
}

.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s ease;
}

.menu-button:hover {
  transform: scale(1.1);
}

.menu-icon {
  width: 30px;
  height: 30px;
  color: black;
}

.delete-menu {
  position: absolute;
  bottom: -85px;
  right: -10px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 10px;
  z-index: 10;
  white-space: nowrap;
}

.delete-button {
  background-color: #ff4c4c;
  border: none;
  color: white;
  padding: 8px 12px;
  font-size: 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: no-wrap;
}

.delete-button:hover {
  background-color: #e04c4c;
  white-space: no-wrap;
}
.select-image-sec {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin: 20px;
}
.select-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 2px;
  cursor: pointer;
}
.media-container {
  display: grid;
  grid-template-columns: 50% 50%;
  column-gap: 10px;
  row-gap: 10px;
  margin-top: 10px;
  position: relative;
}
.chat-media {
  width: 200px;
  height: 200px;
  object-fit: contain;
  /* border: 1px solid #d9d2d2; */
  border-radius: 20px;
  padding: 2px;
}
.download-chat-img {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  border: 1px solid;
  padding: 2px;
  top: 5px;
  right: 10px;
  position: absolute;
  background: #007bff;
  color: white;
  cursor: pointer;
}
.media-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-content {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.media-name {
  height: 20px;
  text-overflow: ellipsis;
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
