
body{
    font-family: "Manrope", sans-serif;
}

.progress-container {
    position: relative;
    width: 70%;
    max-width: 500px;
    margin: 30px auto;
}

.progress-bar {
    position: absolute;
    top: -10px;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #ddd;
    z-index: 1;
}

.progress {
    height: 4px;
    background-color: #4CAF50;
    width: 0%;
    z-index: 2;
    position: absolute;
    top: -10px;
    left: 0;
    transition: width 0.4s ease;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.step {
    text-align: center;
    flex: 1;
    font-size: 14px;
    color: #777;
    cursor: pointer;
    user-select: none;
}

.step.active {
    font-weight: bold;
    color: #000;
}

.icon {
    position: absolute;
    top: -40px;
    transition: left 0.4s ease;
    transform: translateX(-50%);
}


.box-bg{
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #FFF;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.03);
    position: relative;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.green-box{
    background: #58BA49;
    color: #fff;
    border-radius: 10px;
    width: fit-content;
    padding: 5px 15px;
    position: absolute;
    top: -17px;
    right: 30px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


.heading, .sub-heading {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.confirm-sec span {
    color: #161616;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 116.82%;
}

.heading img {
    background: #58BA49;
    padding: 5px;
    border-radius: 50px;
    width: 25px;
    box-shadow: 2px 2px 5px #cdcdcd;
}

.heading h3 {
    color: #000;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 0;
    margin-left: 13px;
}

.box-bg p{
    color: rgba(22, 22, 22, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    margin-top: 15px;
}
.sub-heading h6{
    margin-bottom: 0;
    margin-left: 10px;
}
.sub-heading img {
    width: 100%;
    display: flex;
    align-items: center;
}
.sub-heading span {
    width: 16px;
}
.sub-heading h6{
    color: #161616;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 116.82%; /* 29.205px */
}



.park-time, .park-times {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.park-time p, .park-times p{
    margin-bottom: 0;
    color: rgba(22, 22, 22, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin-top: 0;
}
.park-time h6, .park-times h6{
    color: #161616;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 0;
}
.park-sec{
    border-radius: 20px;
    border: 0.5px solid #F5F5F5;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.03);
    padding: 10px;
    margin-top: 20px;
}
.park-time {
    border-bottom: 1px solid #F5F5F5;
}
.day-line {
    background: #F5F5F5;
    width: 1px;
    height: 40px;
}


.calendar-container {
    padding: 0;
    max-width: 100%;
    margin-top: 30px;
  }
.calendar-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 50px;
}

.select-wrapper {
  position: relative;
  display: inline-block;
}
  .calendar-header select {
  appearance: none; /* Safari fix for custom styles */
  -webkit-appearance: none;
  -moz-appearance: none;

  font-size: 16px;
  padding: 8px 15px 8px 45px;
  border-radius: 9px;
  border: none;
  background: #f0f0f0;
  color: #000;
  font-weight: 500;
  line-height: 1.2;

  }
.date-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* Prevents icon from blocking clicks on select */
}

.date-icon img {
  width: 20px;
  height: 20px;
}
table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
  }

  /* Default date style */
  .calendar-date {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
  }

  /* Hover effect */
  .calendar-date:hover {
    background-color: #e8f5e9;
  }

  /* Inactive days (previous/next month) */
  .inactive {
    color: #ccc;
    cursor: default;
  }

  /* Active selected date */
  .calendar-date.active {
    background-color: #58BA49;
    color: white;
  }

  /* Message box (hidden by default) */
  .date-select {
    display: none;
    margin-top: 15px;
    padding: 10px;
    background: #f4f4f4;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
  }

  .date-select img {
    width: 20px;
    vertical-align: middle;
    margin-right: 8px;
  }
  .continue-btn button {
    width: 100%;
    background-color: #58BA49;
    color: white;
    padding: 9px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
  }
  .continue-btn button:hover {
    background-color: #218838;
  }
  .date-select {
    border-radius: 9px;
    background: #F0F0F0;
    padding: 8px 10px;
    margin-top: 20px;
  }
  .date-select p{
    margin: 0;
  }
  .date-select p img{
    margin-right: 10px;
  }

  .date-select {
    display: none;
    margin-top: 15px;
    text-align: left;
    font-size: 14px;
    color: #444;
  }
  .date-select img {
    width: 20px;
    vertical-align: middle;
    margin-right: 5px;
  }
  .heading-sec{
    display: block;
  }
  .heading-sec h3{
    color: #161616;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
  }
.heading-sec p{
    color: rgba(22, 22, 22, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}
.accordion-button:not(.collapsed){
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    padding-bottom: 0;
}

.price-dtl {
    display: flex;
}
.ticket-cnt h6{
    color: #161616;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 0;
}
.ticket-cnt p{
    color: rgba(22, 22, 22, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin: 0;
}
.accordion-content {
    border-radius: 10px;
    border: 0.5px solid rgba(0, 0, 0, 0.26);
    box-shadow: 0 4px 40px 0 rgb(213 213 213 / 3%);
    padding: 10px 15px 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.ticket-video img{
    width:90%; 
    height: 400px; 
    object-fit:contain;
}
.accordion-item:not(:first-of-type){
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color) !important;
}
.ticket-video {
    text-align: center;
}
.accordion-item {
    margin-bottom: 15px;
}

.counter {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 0.5px solid rgba(0, 0, 0, 0.26);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.03);
}

.counter button {
    width: 32px;
    height: 32px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    color: #28a745;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    background: transparent;
}

.counter button:hover {
    background: #218838;
    color: #fff;
}

.counter .count {
    font-size: 18px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}
.accordion-body, .count-sec{
    height: 200px;
    overflow: auto;
    background: transparent;
}


.accordion-body::-webkit-scrollbar, .count-sec::-webkit-scrollbar {
  display: none; /* Hide scrollbar for WebKit browsers */
}

/* For Firefox */
.accordion-body,.count-sec {
  scrollbar-width: none; /* Hide scrollbar */
}

/* For Internet Explorer and old Edge */
.accordion-body, .count-sec {
  -ms-overflow-style: none; /* Hide scrollbar */
}
.success-btn a{
    text-decoration: none;
}
.confirm-btn button, .success-btn a{
    border-radius: 7.12px;
    background: #58BA49;
    box-shadow: -1.424px -1.424px 2.848px 0 #69CF4F inset, 1.424px 2.136px 2.848px 0 #81D06D inset, 0 1.424px 7.12px 0 rgba(0, 0, 0, 0.10);
    border: 0;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: auto;
    text-align: center;
    padding: 10px 60px;
}

.equip-price {
    white-space: nowrap;
}


.confirm-sec{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #F2F2F2;
    padding-top: 21px;
}
.price-sec{
    color: #161616;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
}
.price-sec{
    display: flex;
    align-items: center;
}

.summary {
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    border: 0.5px solid rgba(0, 0, 0, 0.26);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.03);
    padding: 15px;
    margin:10px 15px 20px;
    flex-wrap: wrap;
}
.summary p{
    margin: 0;
    color: #58BA49;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}
.summary h6{
    color: #161616;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
}
.booking-head{
    display: flex;
    align-items: center;
    margin-left: 8px;
}
.booking-head img{
    width: 40px;
}
.booking-head h5{
    margin: 0;
}
.booking-box{
    border-radius: 10px;
    border: 0.5px solid rgba(0, 0, 0, 0.26);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.03);
    padding: 10px 0;
    margin-top: 20px;
}


.total-price-sec{
    border-top: 1px solid #eee;
}
.count-sec {
    padding: 10px 15px;
    position: relative;
}
.convenience {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px 0;
}
.convenience p{
    color: #161616;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 0;
}
.convenience h6{
    color: #161616;
font-size: 18px;
font-style: normal;
font-weight: 500;
}
.convenience h4{
    color: #58BA49;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 5px;
}
.ticket-sec{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.edit {
    border-radius: 9px;
    background: #F0F0F0;
    padding: 6px 12px;
    margin-right: 15px;
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    white-space: nowrap;
}
.edit svg{
    margin-right: 5px;
}
.booking-form input{
    border-radius: 10px;
    border: 0.5px solid rgba(0, 0, 0, 0.26);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.03);
    width: 100%;
    padding: 8px 15px;
    margin-bottom: 20px;
    height: 45px;
}
.radio-sec{
    display: flex;
}
.radio-sec img{
    margin-left: 10px;
}
.radio-sec{
    border-radius: 10px;
    border: 0.5px solid rgba(0, 0, 0, 0.26);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.03);
    padding: 15px;
}
.pay-sec{
    border-radius: 10px;
    border: 0.5px solid rgba(0, 0, 0, 0.26);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.03);
    padding: 15px;
}
.pay-sec h3 {
    color: #161616;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 15px;
}
.booking-form {
    margin-bottom: 20px;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
    border: 0.5px solid rgba(0, 0, 0, 0.26);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    position: absolute;
    left: 0;
    height: 45px !important;
}
.iti input, .iti input[type=text]{
    padding-left: 10px !important;
    margin-left: 90px !important;
    width: 70%;
}
.terms-sec {
    text-align: center;
    color: rgba(22, 22, 22, 0.40);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin: 45px 0;
}
.terms-sec span a{
    color: #58BA49;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
}
.terms-sec input {
    margin-right: 10px;
}


 .ticket-cnt {
    margin-left: 10px;
}



.swiper {
    width: 100%;
    height: 100vh;
    position: relative;
    object-fit: cover;
    padding-bottom: 75px !important;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

section.header-logo {
    position: absolute;
    top: 0;
    z-index: 9;
    left: 40%;
}
.bike-tab {
    position: absolute;
    top: 150px;
    width: 70%;
    z-index: 9;
    left: 15%;
}
.bike-tab .step{
    color: #fff;
}
.destination {
  position: absolute;
  top: 33%;
  z-index: 9;
  width: 100%;
}

.no-ticket {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #58BA49;
}



.banner-location-img {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  max-height: 80vh; /* responsive height */
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.terms-btn {
    width: 100%;
    text-align: right;
    padding-right: 10px;
}
.terms-btn a {
    font-size: 12px;
    color: #000;
    text-decoration: none;
}
.terms-sec a{
    font-size: 15px;
    text-align: center;
}
.location-image {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px; /* space between items */
}

.banner-img {
    position: relative;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    background: #FFF;
    padding: 6px;
    transition: .2s;
    cursor: pointer;
}

.banner-img img {
    border-radius: 20px;
    height: 100%;
    display: block;
    object-fit: cover;
}

.location-box img {
    border: 0;
}
.location-box p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
    margin-left: 5px;
}
.location-box, .insta-box {
    background: #58ba49;
    color: #fff;
    padding: 5px 16px;
    border-radius: 10px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.insta-box{
    padding: 5px !important;
}
.mob-btn{
    display: none;
}
.banner-location-img h3 {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 7px;
}

.banner-img.active .location-box {
    display: block;
}

.banner-img:hover,
.banner-img.active {
    border: 7px solid #58BA49;
    border-radius: 26px;
    background: transparent;
    padding: 0;
    transition: .3s;
}

.location {
    position: absolute;
    bottom: 4px;
    left: 22px;
}

.location p {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
}

.head-sec h1{
    color: #FFF;
    font-size: 86.251px;
    font-style: normal;
    font-family: Marcellus;
    font-weight: 400;
}
.section-padding{
    padding: 0 120px;
}
.logo-section{
    width: auto;
}
.booking-count {
    height: 150px !important;
    margin: 0 !important;
}
.equip-sec img{
    background: transparent;
    box-shadow: none;
    margin-left: -15px;
}
.payment-process{
    align-items: center;
}
.head-sec{
    display: flex;
    align-items: center;
}
.skip-btn button{
    background: #F4B008;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 0;
    color: #fff;
}
.skip-btn a{
    color: #FFF;
    text-decoration: none;
}
.place-details {
    display: flex;
    justify-content: space-between;
    width: 67%;
}
.equip-sec {
    justify-content: space-between;
    width: 100%;
}
.cart-btn button{
    background: #58BA49;
    padding: 5px 25px;
    width: fit-content;
    border: 0;
}
.equip-img{
    width: 35%;
}
.equip-details{
    width: 65%;
}
.equip-rate {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.equip-ticket h5{
    color: #161616;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
}
.equip-ticket h6{
    color: rgba(22, 22, 22, 0.60);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px; /* 168.75% */
}
.dots-sec{
    display: flex;
    align-items: center;
}
.cart-btn a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}
.equip-img img{
    height: 100%;
    object-fit: cover;
}
.equip-price h4{
    color: #161616;
    font-size: 39.017px;
    font-style: normal;
    font-weight: 700;
}

.equ-count-sec{
    height: 310px;
}
    .count-sec {
      padding: 10px;
      margin: 20px 0;
      transition: opacity 0.3s ease;
    }

    /* Fade effect */
    .count-sec.fade {
      opacity: 0.3;
      pointer-events: none;
    }

    /* Modal background */
    .custom-modal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    /* Modal box */
    .modal-content {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      width: 100%;
      max-width: 100%;
      position: relative;
    }

    /* Close button */
    .close {
      position: absolute;
      right: 15px;
      top: 10px;
      font-size: 24px;
      cursor: pointer;
    }

    .dots {
      cursor: pointer;
      width: 25px;
    }

.overlay {
    content: '';
    background: rgba(0, 0, 0, 0.16);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.ticket-popup{
    height: 310px !important;
    top: 28% !important;
}
.popup {
    position: absolute;
    background: url('../images/popup-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 13%;
    top: 19%;
    padding: 28px;
    width: 75%;
    border-radius: 15px;
    height: 335px;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.popup::-webkit-scrollbar {
  display: none; /* Hide scrollbar for WebKit browsers */
}
.head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.head h1{
    color: #161616;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    margin: 0;
}
.mob-btn .confirm-sec, .mob-btn .total-price-sec, .continue-btn.mob-btn {
    position: fixed;
    bottom: 0;
    z-index: 9;
    background: #fff;
    width: 100%;
    padding: 10px;
    left: 0;
        flex-wrap: inherit;
}
.mob-btn .confirm-btn {
    width: fit-content;
        margin: 0;
}
.mob-btn .confirm-btn button{
            padding: 10px;
}
.popup h6 {
    color: #161616;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}

.popup p, .popup li{
    color: rgba(22, 22, 22, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px; /* 150% */
}
 .booking-info img {
        width: 35px;
        margin-right: 15px;
    }
    .booking-info{
        border-radius: 6.036px;
        background: #F0F0F0;
        padding: 8px;
        margin: 10px;
        display: flex;
        align-items: center;
    }
    .booking-info p{
        margin-bottom: 0 !important;
        font-size: 12px;
        margin-top: 0;
    }
    section.success-sec {
    height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    width: 100%;
    text-align: center;
}
section.success-sec h5 {
    color: #000;
    font-size: 20.769px;
    font-style: normal;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 22px;
}
section.success-sec p{
    color: #000;
font-size: 14px;
font-style: normal;
font-weight: 500;
}
.mob-heading{
    display: none;
}

.add {
    cursor: pointer;
}
.add:hover{
    background: #218838;
    color: #fff;
    border-radius: 5px;
}
@media (max-width:1544px){
       .location-image {
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}
}
@media (max-width:1143px){
       .location-image {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}
@media (max-width:768px){
    .progress-container{
        width: 100%;
    }
    .heading h3{
        font-size: 20px;
    }
    .ticket-video img{
        height: auto;
    }
    .count-section{
        margin-left: auto;
        margin-top: 0;
        height: auto;
        width: 100%;
        justify-content: end;
    }
    
    .heading-sec p{
        font-size: 14px;
        line-height: 23px;
    }
    .confirm-btn button, .success-btn a{
        padding: 10px 30px;
        width: 100%;
        margin-top: 15px;
    }
    
}
@media (max-width: 540px){
    .logo-section img{
        width:100%;
    }
    .summary p{
        margin-bottom: 15px;
    }
    .summary h6{
        margin-bottom: 3px;
    }
    .booking-head h5{
        font-size: 18px;
    }
    .iti input, .iti input[type=text]{
        margin-left: 85px !important;
        width: 62%;
    }
    .iti{
        margin-bottom: 20px;
    }
    .pin-code {
        padding-right: 11px !important;
    }
}


.location-image {
    height: auto;
    overflow-y: auto;
}

.thumbnail-image{
    height: 170px !important;
}
.social-sec{
    display: flex;
}
.social-sec {
    display: flex;
    position: absolute;
    z-index: 99;
    right: 8%;
    top: 16%;
}
.main-banner-img-sec{
    position: relative;
}



/* For Chrome, Safari, Edge */
.location-image {
  overflow: auto; /* or scroll */
}

.location-image::-webkit-scrollbar {
  display: none; /* Hide scrollbar for WebKit browsers */
}

/* For Firefox */
.location-image {
  scrollbar-width: none; /* Hide scrollbar */
}

/* For Internet Explorer and old Edge */
.location-image {
  -ms-overflow-style: none; /* Hide scrollbar */
}


 .no-tiket-container {
            background: white;
            border-radius: 16px;
            padding: 3rem;
            max-width: 500px;
            width: 100%;
            margin: 0 auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

 .empty-state-2 {
            background: linear-gradient(135deg, #58BA49 0%, #12420b 100%);
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
            color: white;
        }

        .empty-state-2 .no-ticket-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .empty-state-2 h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .empty-state-2 p {
            opacity: 0.95;
            font-size: 0.95rem;
        }

.no-ticket-icon{
   
    top: -40px;
   font-size: 2.5rem;
}


/* loader */

.loader-container {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  width: 100%;
}

/* Spinner Loader */
.loader.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #4CAF50;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Spin Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-container.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
}

/* Size Variations */
.loader.small {
  width: 30px;
  height: 30px;
  border-width: 3px;
}

.loader.large {
  width: 70px;
  height: 70px;
  border-width: 7px;
}
