
.preload, .preload-alter {
  overflow: hidden;
}

/* Preload 
  ------------------------------------------- */
.preload-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0,25,51, 0.95);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999999999;
  display: block;
  overflow: hidden;
}

.preload-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  margin: -100px 0 0 -100px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-top: 5px solid #ffffff;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 1s infinite linear;
}

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

  to {
    transform: rotate(360deg);
  }
}

.preloadIndex {
  overflow: hidden;
}

.p-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #001933;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999999999;
  display: block;
  overflow: hidden;
}

.p-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177px;
  height: 150px;
  z-index: 100;
  margin: -86px 0 0 -86px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #001933;
  background-repeat: no-repeat;
  background-position: center center;
  animation: preloadIndex 1s linear infinite alternate;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.toggle-cul-nav button {
  background-color: transparent;
  border: none;
  color: rgba(var(--theme-font-color),1);
  cursor: pointer;
  display: inline-block;
  font-size: calc(14.8px + .0625vw);
  font-weight: 400;
  letter-spacing: .03em;
  padding: calc(8px + 1.25vw) 10px calc(8px + 1.25vw) 12px;
}

.booking-resource li, .booking-time li, .booking-date-availability li {
  position: relative;
  float: left;
  width: 100%;
  padding: 0px 5px;
}

.booking-time li {
  width: 33.33%;
}

.booking-resource input[type="radio"], .booking-time input[type="radio"], .booking-date-availability input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  cursor: pointer;
}

.booking-resource label, .booking-time label, .booking-date-availability label {
  position: relative;
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: 50px;
  line-height: 48px;
  padding: 0 10px;
  text-align: center;
  font-weight: 700;
  color: var(--heading);
  transition: all .25s ease-in-out;
  border: 1px solid rgb(0, 25, 51);
  background: linear-gradient(100deg, #E5F2FF, #CCE5FF) !important;
  border-radius: var(--bs-border-radius) !important;
}

  .booking-resource label svg, .booking-time label svg, .booking-date-availability label svg {
    line-height: 48px;
    vertical-align: sub;
    margin: -2px 10px;
    fill: var(--heading);
  }

  .booking-resource .select, .booking-resource label:hover, .booking-resource label:active, .booking-resource input:hover + label, .booking-resource input:active + label, .booking-time .select, .booking-time label:hover, .booking-time label:active, .booking-time input:hover + label, .booking-time input:active + label, .booking-date-availability .select, .booking-date-availability label:hover, .booking-date-availability label:active, .booking-date-availability input:hover + label, .booking-date-availability input:active + label {
    background-color: #0080FF !important;
    background-image: none !important;
    color: #ffffff !important;
  }

.booking-date .datepicker-inline, .booking-date .datepicker-days table, .booking-date .table-condensed {
  width: 100% !important;
  max-width: none !important;
}


.booking-date .datepicker td {
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.booking-date .datepicker-days, .booking-date .datepicker-inline, .booking-date .datepicker-days table, .booking-date .table-condensed {
  width: 100% !important;
  max-width: none !important;
  border-collapse: separate;
  border-spacing: 10px;
}

  .booking-date .datepicker-days table thead tr:first-child th:hover, .booking-date .datepicker-days table td.day:hover, .booking-date .datepicker-days table td.hour:hover, .booking-date .datepicker-days table td.minute:hover, .booking-date .datepicker-days table td.second:hover, .booking-date .datepicker-days table td span:hover {
    background: #0080FF !important;
  }


  .booking-date .datepicker table tr td.active.active:hover.booking-date .datepicker table tr td span.active.active,
  .booking-date .datepicker-days table tbody tr td.active, .datepicker-days table tbody tr td.active:hover,
  .booking-date .datepicker-days table tbody tr td span.active {
    background-color: #0080FF !important;
    background-image: none !important;
    color: #ffffff !important;
    border: 2px solid var(--heading);
  }

.booking-date .datepicker table tr td span.focused, .booking-date .datepicker table tr td span:hover {
  background-color: #0080FF !important;
  background-image: none !important;
  color: #ffffff !important;
  border-radius: var(--bs-border-radius) !important;
}

.booking-date .datepicker-days table tbody tr td.today {
  background-color: #ffffff !important;
  background-image: none !important;
}

  .booking-date .datepicker-days table tbody tr td.today:before {
    border-bottom-color: #0080FF !important;
  }

  .booking-date .datepicker-days table tbody tr td.today::after {
    content: '';
    display: inline-block;
    border: solid transparent;
    border-width: 0 0 7px 7px;
    border-bottom-color: #0080FF;
    border-top-color: rgba(0, 0, 0, 0.2);
    position: relative;
    bottom: 0;
    right: 0;
  }

.booking-date .datepicker table tr td {
  color: var(--heading) !important;
  font-weight: bold;
  border: 1px solid rgb(0, 25, 51);
  background: linear-gradient(100deg, #E5F2FF, #CCE5FF) !important;
  border-radius: var(--bs-border-radius) !important;
}

  .booking-date .datepicker table tr td.disabled,
  .booking-date .datepicker table tr td.disabled:hover {
    color: #dc3545 !important;
    cursor: default;
    font-weight: bold;
    opacity: 0.2;
  }

.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.booking-party .theme-menu {
  border: 1px solid rgba(var(--light-border),1);
  width: 100%;
  background-color: rgba(var(--box-background),1);
  border-radius: 4px;
  color: rgba(var(--light-color),1);
  font-size: 16px;
  font-weight: 400;
  padding: 6px 10px;
}

.hide {
  pointer-events: none !important;
  display: none !important;
  visibility: hidden !important;
  height: 0px !important;
  width: 0px !important;
  margin: 0px !important;
  padding: 0px !important;
  cursor: not-allowed !important;
  clear: both !important;
}

.store-logo img {
  width: 60px;
}

.customize-order select {
  max-width: 380px !important;
}

.customize-order .custom-input, .customize-order select {
  border: 1px solid rgba(var(--light-border),1);
  width: 100%;
  max-width: 380px;
  background-color: rgba(var(--box-background),1);
  border-radius: 4px;
  color: rgba(var(--light-color),1);
  font-size: 16px;
  font-weight: 400;
  padding: 6px 10px;
}

.bundle-option ul li {
  float: left;
  width: 50%;
}

.product-slider-1 .img-fluid {
  width: 120px;
  height: 100px;
}

label.error {
  display: block;
  color: rgba(var(--theme-default));
  font-size: 16px;
  font-weight: bold;
}

.home-search .search-details {
  height: auto !important;
  margin-bottom: 30px;
  margin-bottom: 30px;
}


header .header-1 .main-menu nav .nav-menu > li .active {
  color: rgba(var(--theme-default));
  font-weight: bold;
}

  header .header-1 .main-menu nav .nav-menu > li .active::before {
    width: 70%;
  }

header .mobile-fix-option ul li .active {
  color: rgba(var(--theme-default));
  font-weight: bold;
}

  header .mobile-fix-option ul li .active .iconsax svg [stroke] {
    stroke: rgba(var(--theme-default));
  }


.error {
  color: red !important;
}

.mob-space {
  visibility: hidden;
  display: none;
}

@media (max-width: 700px) {
  .store-logo img {
    width: 40px;
  }

  .cut-text {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 400px;
    height: 1.2em;
    white-space: nowrap;
  }
}

@media (max-width: 577px) {
  .mob-hide {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .bundle-option ul li {
    float: left;
    width: 100%;
  }

  .booking-time li {
    width: 33.33%;
  }

  .cut-text {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 285px;
    height: 1.2em;
    white-space: nowrap;
  }

  .mob-space {
    visibility: visible;
    display: block;
    margin:25px 0px;
  }
}

@media only screen and (max-width: 767px) {

  #cart-table thead {
    display: none;
  }

  .cart-item {
    margin-bottom: 15px;
    padding-inline-start: 98px;
    min-height: 140px;
    display: block;
    font-size: 12px;
    font-weight: 600;
    position: relative;
  }

    .cart-item td {
      display: flex;
      align-items: center;
      flex-direction: row;
      flex-wrap: wrap;
      padding: 10px 0 !important;
      padding-left: 0px;
      margin: 0;
      font-size: 13px !important;
    }

      .cart-item td[cart-data-title]::before {
        content: attr(cart-data-title);
        color: var(--main);
        text-align: start;
        flex: 1 1 auto;
      }

      .cart-item td:first-child {
        width: 100% !important;
        max-width: 100% !important;
        text-align: start;
        padding-left: 0;
      }

  .cart-table table tbody tr td:first-child {
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .cart-item .item_product {
    display: flex;
  }

  .cart-item td:not(:last-child) {
    border-bottom: 1px dashed #d7d7d7;
  }

  .cart-item .img-box {
    position: absolute;
    width: 80px;
    top: 0;
    left: 0;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .cart-item .cart-box {
    width: 100%;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.nav-cart {
  position: relative;
}

header .mobile-fix-option {
  padding: 5px 0px;
}

.nav-cart .item-count {
  position: absolute;
  height: 25px;
  width: 25px;
  background-color: rgba(var(--theme-default));
  color: #fff;
  border-radius: 50%;
  top: -3px;
  right: -5px;
  line-height: 25px;
  font-size: calc(10.8px + .0625vw);
}



.whatsapp, .call_us {
  position: fixed;
  left: 1rem;
  text-decoration: none;
  z-index: 1030;
  bottom: 1.5rem;
  display: flex;
  gap: 1rem;
}

.call_us {
  bottom: 5rem;
}

  .whatsapp i, .call_us i {
    font-weight: bold;
    font-size: 1.5rem;
    background-color: rgba(var(--theme-default),1);
    color: rgba(var(--white),1);
    border-radius: 50%;
    padding: 0.5rem;
  }

  .whatsapp [class*=" ai-"]::before, .whatsapp [class^="ai-"]::before, .call_us [class*=" ai-"]::before, .call_us [class^="ai-"]::before {
    font-weight: bold !important;
  }

@media (max-width: 577px) {
  .whatsapp, .call_us {
    bottom: 5rem;
  }

  .call_us {
    left: 4rem;
  }
}