@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

body, html{
  overflow-x: hidden !important;
}


/*-----------------------------------------------------------
    0. Header & Footer Section CSS Start
-------------------------------------------------------------*/
.my-acc-div {
    width: max-content !important;
}

/*-----------------------------------------------------------
    0. Header & Footer Section CSS End
-------------------------------------------------------------*/

/*-----------------------------------------------------------
    1. Ticket Search Section CSS Start
-------------------------------------------------------------*/

/* Card container */
.ts-wrap .ts-form {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 18px 22px;
  gap: 28px;
  flex-wrap: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.ts-wrap .ts-field {
  min-width: 240px;
}

.ts-wrap .ts-label {
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
}

.ts-wrap .ts-label i {
  font-size: 20px;
  color: #fd4c5c;
  margin-right: 5px;
}


.ts-wrap .form-select,
.ts-wrap .form-control {
  border: 0;
  border-radius: 8px;
  padding-left: 0;
  box-shadow: none;
  color: #7b7b7b;
  font-family: "Hanken Grotesk", sans-serif;
  border: none !important;
  outline: none !important;
}

.ts-wrap .form-control::placeholder {
  font-weight: 400;
  font-family: "Hanken Grotesk", sans-serif;
}

.ts-wrap .form-control::active {
  outline: none;
}

.ts-wrap .form-control::focus {
  outline: none;
  border-color: transparent !important;
}



.ts-wrap .form-select {
  background-image: none;
}

.ts-wrap .ts-cta .ts-btn {
  background: linear-gradient(180deg, #ff5d6b 0%, #ff4156 100%);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 20px 40px;
  font-weight: 600;
  transition: .5s;
}

.ts-wrap .ts-cta .ts-btn:hover {
  background: linear-gradient(180deg, #00bb98 0%, #00bb98 100%);
}

.ts-wrap .ts-cta .ts-btn i {
  font-size: 18px;
  margin-right: 5px;
}

.ts-wrap .ts-form svg {
    width: 24px;
    height: auto;
    fill: #fd4c5c;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
    color: #fff !important;
    background: #fd4c5c !important;
}

.flatpickr-day:hover {
    background: #00bb98 !important;
    border-color: #00bb98 !important;
    color: #fff !important;
}

.flatpickr-day.today {
    background: #00bb98 !important;
    border-color: #00bb98 !important;
    color: #fff !important;
}

.flatpickr-day.selected {
    background: #00bb98 !important;
    border-color: #00bb98 !important;
}




/* Responsive tighten */
@media (max-width: 768px) {
  .ts-wrap .ts-form { gap: 18px; padding: 14px; }
  .ts-wrap .ts-cta { width: 100%; }
  .ts-wrap .ts-cta .ts-btn { width: 100%; }
}


/* Make the selection look like Elementor inputs */
.select2-container .select2-selection--single {
  height: var(--e-form-field-height, 42px);
  border-radius: var(--e-form-field-border-radius, 6px);
  border: 1px solid var(--e-form-border-color, #e0e0e0);
  display: flex; align-items: center;
  padding: 0 .75rem;
  background: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--e-form-field-text-color, #6f6f6f);
  line-height: 1.4;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: .5rem;
}

/* Dropdown panel */
.select2-container .select2-dropdown {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  overflow: hidden;
}

/* Item hover (this is what native select can’t do) */
.select2-container .select2-results__option--highlighted[aria-selected] {
  background-color: #F5F5F5 !important;
  color: #fd4c5c !important;
}

/* Ensure it shows above popups/headers if needed */
.select2-container { z-index: 9999 !important; }

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 0;
}

.select2-container--default .select2-selection--single {
    background-color: #fff !important;
    border: 0px solid #aaa !important;
    border-radius: 4px !important;
    font-weight: 400 !important;
    font-family: "Hanken Grotesk", sans-serif !important;
}

.select2-container .select2-selection--single {
    height: auto !important;
    margin: 0 0 -4px;
}

.select2-container .select2-selection--single {
    padding: 0 !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  font-weight: 400 !important;
  font-family: "Hanken Grotesk", sans-serif !important;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 400 !important;
  font-family: "Hanken Grotesk", sans-serif !important;
}


/* Remove the extra right space that was reserved for the arrow */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-right: .75rem;    /* adjust as needed */
}


/* Hide the Select2 caret */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;            /* removes the arrow */
}








.select2-results__option {
  font-weight: 400 !important;
  font-family: "Hanken Grotesk", sans-serif !important;
  transition: .5s;
}


/* .select2-results__option:hover {
    background: #00bb98 !important;
    color: #fff !important;
} */

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
    background-color: #ddd;
    color: #fd4c5c !important;
}


.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: #00bb98 !important;
    color: #fff !important;
}

/*-----------------------------------------------------------
    1. Ticket Search Section CSS End
-------------------------------------------------------------*/

/*-----------------------------------------------------------
    2. Counter Section CSS Start
-------------------------------------------------------------*/
.counter-card:hover {
  transition: .5s;
}

.counter-card .counter-icon-path {
  transition: all 0.3s ease;
  transform: scale(1);
}

.counter-card:hover .counter-icon-path {
  
    transition: all 0.3s ease;
    transform: scale(1.1);
    background-color: #ffffff33 !important;
}

.counter-card:hover .elementor-counter-title {
  color: #fff !important;
}

.counter-card:hover .elementor-counter-title {
  color: #fff !important;
}

.counter-card:hover .elementor-counter-number-wrapper {
  color: #fff !important;
}


/*-----------------------------------------------------------
    2. Counter Section CSS End
-------------------------------------------------------------*/

/*-----------------------------------------------------------
    3. Testimonial Section CSS Start
-------------------------------------------------------------*/

.testimonial.type-testimonial.swiper-slide-next .testi-border {
    border-color: #fd4c5c;
}


/*-----------------------------------------------------------
    3. Testimonial Section CSS End
-------------------------------------------------------------*/

/*-----------------------------------------------------------
    4. Video Section CSS Start
-------------------------------------------------------------*/

#video_btn #uc_blox_play_button_elementor_9cd88d3 a span:before {
    border: 1px dashed #FFFFFF;
}

/*-----------------------------------------------------------
    4. Video Section CSS End
-------------------------------------------------------------*/

/*-----------------------------------------------------------
    5. Product Slider Section CSS Start
-------------------------------------------------------------*/

.prod-block p.price {
    margin-bottom: 0;
}

.prod-loop .elementor-swiper-button.elementor-swiper-button-next {
    margin-top: -6%;
}

.prod-loop .elementor-swiper-button.elementor-swiper-button-prev {
    margin-top: -6%;
    margin-left: 93%;
}

.prod-loop span.ovatb-unit {
    display: none;
}

.prod-loop span.woocommerce-Price-currencySymbol {
    margin-left: 0px;
}


.prod-loop .prod-info {
    min-height: 160px;
    justify-content: space-between;
}

/* container should clip the zoomed bg */
.prod-block {
  position: relative;
  overflow: hidden;
}

/* your element that currently has the background-image */
.prod-block .prod-block-bg {
  position: relative;           /* needed for ::before */
  /* keep your background-image, position, etc. here */
}

/* clone the background onto a pseudo element and scale it */
.prod-block .prod-block-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: inherit;          /* uses the same bg as .prod-block-bg */
  background-size: cover;       /* or whatever you use */
  background-position: center;
  transform: translateZ(0) scale(1);  /* kick to GPU */
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.prod-block:hover .prod-block-bg::before {
  transform: translateZ(0) scale(1.1);
}


/*-----------------------------------------------------------
    5. Product Slider Section CSS End
-------------------------------------------------------------*/


/*-----------------------------------------------------------
    6. Cart & Checkout Section CSS Start
-------------------------------------------------------------*/

.woocommerce-cart, .woocommerce-checkout {
    font-family: "Hanken Grotesk", Sans-serif !important;
}

.wp-block-woocommerce-cart {
    container-type: inline-size;
    width: 100%;
    max-width: 100%;
    margin-left: -15px;
}

.wc-block-components-button:not(.is-link) {
    align-items: center;
    display: inline-flex;
    height: auto;
    justify-content: center;
    position: relative;
    text-align: center;
    transition: box-shadow .1s linear;
    background-color: #fd4c5c;
    border: 1px solid;
    border-color: #fd4c5c;
    color: #fff !important;
    border-radius: 5px;
}

.woocommerce-cart tr.wc-block-cart-items__header {
    border-top: 2px solid #fff;
}

.woocommerce-cart a.wc-block-components-product-name {
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #fd4c5c;
    transition: .5s;
}

.woocommerce-cart a.wc-block-components-product-name:hover {
    color: #fd4c5c;
}

.wc-block-components-button:not(.is-link):hover {
    background-color: #fff;
    color: #fd4c5c !important;
    border-color: #fd4c5c !important;
}

/*-----------------------------------------------------------
    6. Cart & Checkout Section CSS End
-------------------------------------------------------------*/

/*-----------------------------------------------------------
    7. Single Product Section CSS Start
-------------------------------------------------------------*/

.single-product .woocommerce-product-details__short-description p {
    font-family: "Hanken Grotesk", Sans-serif !important;
}


.single-product .summary.entry-summary p.price{
  font-family: "Hanken Grotesk", Sans-serif !important;
  font-size: 22px;
  color: #fd4c5c;
}


.woocommerce div.product .woocommerce-tabs .panel > h2:first-child {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
  font-family: "Hanken Grotesk", Sans-serif !important;
}

.single-product nav.woocommerce-breadcrumb {
    display: none;
}


.woocommerce div.product div.summary {
    margin-top: 3rem;
}

.single-product div.product .product_title {
    clear: none;
    margin-top: 0;
    padding: 0;
    font-weight: 700;
}

.single-product #main {
  max-width: 1290px;
}

.single-product div.product.elementor ul.tabs {
    margin: 0;
    display: flex;
    justify-content: center;
}

.woocommerce .elementor-2109 .elementor-element.elementor-element-5c2273c .woocommerce-tabs .woocommerce-Tabs-panel {
  margin-top: 2rem !important;
}



.woocommerce .elementor-2109 .elementor-element.elementor-element-5c2273c .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-family: "Hanken Grotesk", Sans-serif;
  font-size: 1.7411em;
  line-height: 1.21;
  font-weight: bold;
}


.single-product .woocommerce-tabs ul.wc-tabs li a {
    padding: 20px 36px !important;
}

.single-product .prod-loop span.woocommerce-Price-amount.amount {
    color: #1f2124;
    font-size: 20px;
}



/*-----------------------------------------------------------
    7. Single Product Section CSS End
-------------------------------------------------------------*/

/*-----------------------------------------------------------
   8. Responsive  CSS Start
-------------------------------------------------------------*/

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

  .prod-loop .elementor-swiper-button.elementor-swiper-button-next {
    display: none !important;
  }

  .prod-loop .elementor-swiper-button.elementor-swiper-button-prev {
    display: none !important;
  }

    .ts-wrap .ts-form {
      display: flex;
      flex-wrap: wrap;
  }


}

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

  .wp-block-woocommerce-cart {
      margin-left: 0px;
  }

  .ts-wrap .ts-form {
      display: block;
  }

  .ts-wrap .ts-field {
    margin-bottom: 1rem;
  }

}

/*-----------------------------------------------------------
    8. Responsive  CSS End
-------------------------------------------------------------*/