@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

:root {
    --red: #F17126;
    --white: #ffffff;
    --black : #000000;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

#container-width {
    width: 100%;
}

ul {
    padding: 0;
}

body {
    height: 100vh;
}

/* header */
.heading {
    display: flex;
    flex-direction: row;
    position: fixed;
    top: 0vh;
    left: 0;
    z-index: 9999;
    width: 100%;
    background: var(--white);
    height: 60px;
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 5vw;
    height: auto;
}

.logo-container img {
    width: 150px;
}

.plusBtn {
    background-color: var(--red);
    color: var(--white);
    font-size: 32px;
    border-radius: 50%;
}

#bookReferenceButton {
    display: flex;
    flex-direction: row-reverse;
}

#heading-text {
    text-align: center;
}

.headingText {
    margin: 0;
    margin-top: 1vw;
    font-size: 1.5vw;
    font-weight: bold;
}

.header-button {
    background-color: var(--red);
    color: var(--white);
    text-decoration: none;
    padding: 7px 0.75vw;
    border-radius: 5px;
    font-size: 0.75vw;
}
#close-btn{
    background-color: var(--red);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.75vw;
}
.feedback-initial-container{
    display: none;
    position: fixed;
    background-color: #f8f3ed;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    background: rgba(248, 243, 237, 0.5);
    backdrop-filter: blur(15px);
    z-index: 999;
    overflow: hidden;
  }
.feedback-main-popup{
    display: flex;
    position: absolute;
    width: 50%;
    height: auto;
    top: 20%;
    left: 50%;
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    border-radius: 1vw;
    z-index: 2;
    overflow: hidden;
    transform: translate(-50%,-20%);
}
.popup-question{
    background-color:var(--red);
    width: 65%;
    padding: 1vw 2vw;
    color: var(--white);
    display: flex;
    flex-direction: column;

}
.popup-answer{
    background-color:var(--white);
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}
.popup-question1{
    font-size: 1.2vw;
}
.popup-question2{
    font-size: 1vw;
}
.feedback-button{
    text-align: center;
    min-width: 7vw;
    font-size: 0.75vw;
    padding: 0.4vw;
    border-radius: 1vw;
    border: 1px solid var(--red);
    transition: 0.3s;
    font-weight: 600;
}
#yesButton{
    background-color: var(--red);
    color: var(--white);
}
#yesButton:hover{
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--red);
}
#noButton:hover{
    border: 1px solid var(--red);
}

/* Feedback Question CSS */
.feedback-question-main{
    display: none;
   position: fixed;
   z-index: 99999;
   top: 0;
   left: 0;
   height: 100vh;
   width: 100%;
   background: rgba(255, 255, 255, 0.5);
   -webkit-backdrop-filter: blur(15px);
   backdrop-filter: blur(15px);
   overflow: scroll;
}
.feedback-question-container{
    width: 40%;
    height: auto;
    background-color: var(--white);
    border: 2px solid var(--red);
    border-radius: 15px;
    padding: 1vw 1.5vw;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.feedback-header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.feedback-header-container .feedback-header{
    font-size: 1.5vw;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 2px;
}
.feedback-header-container .close-btn{
    background-color: var(--white);
    padding: 7px 14px;
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    border-radius: 50%;
    color: var(--red);
    cursor: pointer;
    font-size: 1.2vw;
}
.feedback-questions{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 15px 0;
}
.question p{
    font-size: 0.85vw;
    margin-bottom: 0;
}
.question-option .answer-textbox{
    /* width: 80%; */
    border: 1px solid var(--red);
    border-radius: 5px;
    padding: 3px 5px;
    font-size: 0.65vw;
    font-weight: 500;
}
.question-option .answer-textbox:focus{
    border: 2px solid var(--red);
    outline: none;
}
.question-option{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.radio-option-container{
    display: flex;
    align-items: center;
    gap: 10px;
}
.radio-option-container label{
    font-size: 0.75vw;
    font-weight: 500;
}
.submit-feedback-btn {
    background: var(--red);
    color: var(--white);
    font-size: 0.75vw;
    padding: 0.55vw;
    border-radius: 1.2vw;
    width: 25%;
    transition: 0.3s;
    border: 1px solid var(--red);
    font-weight: 600;
}
.submit-feedback-btn:hover{
    background-color: transparent;
    border: 1px solid var(--red);
    color: var(--red);
}
.feedback-thankyou-container{
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    overflow: scroll;
}
.thankyoubanner{
    position: absolute;
    background-color: var(--red);
    width: auto;
    min-height: 15vh;
    max-height: auto;
    top: 20%;
    left: 50%;
    border-radius: 1vw;
    transform: translate(-50%, -20%);
    color: var(--white);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 1.5vw;
    padding: 0 5vw;
}
.submit-btn-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.submit-btn-info{
    color: var(--red);
    font-size: 0.80vw;
}
/*-------------- progress bar section -----------------*/
.step-row {
    border-radius: 0.55vw;
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    flex-wrap: wrap;
    /* flex: 1; */
    width: 33%;
    padding: 0.55vw;
    /* clip-path: polygon(0 0, 84% 0, 92% 50%, 84% 100%, 0% 100%) */
}

#progressbar-active {
    position: relative;
    background: var(--red);
    border-radius: 0.55vw;
    /* clip-path: polygon(0 0, 84% 0, 92% 50%, 84% 100%, 0% 100%); */
    /* clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0% 100%); */
}

 
.step-col a {
    text-decoration: none;
    font-size: 0.75vw;
    color: var(--black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-col a span {
    background: var(--red);
    padding: 2px 10px;
    border-radius: 100%;
    border: none;
    color: var(--white);
    margin-right: 5px;
}

#progressbar-active a {
    color: var(--white);
}

#progressbar-active span {
    background: var(--white);
    color: var(--black);
    font-weight: 600;
}

/* end progress bar section */

/* disclaimer section */

.disclaimer h5 {
    font-size: 0.75vw;
    position: relative;
    font-weight: bold;
    margin-bottom: 0;
}

.disclaimer .info-icon {
    color: var(--red);
    font-size: 1vw;
    margin-right: 0.25rem;
}

/* .disclaimer:before {
    content: "\f05a";
    font-family: "FontAwesome";
    color: var(--red);
    align-items: center;
    position: relative;
    font-size: 1.25vw;
    padding: 0.25rem 1rem;
} */

.disclaimer {
    background: var(--white);
    border-radius: 0.55vw;
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    height: auto;
    display: flex;
    align-items: flex-start;
    padding: 0.65rem 0.5rem;
}

.disclaimer p {
    font-size: 0.65vw;
    font-weight: 500;
    margin: 0;
    line-height: 0.70vw;
}

.disclaimer ul {
    margin: 0;
}

.disclaimer ul li {
    font-size: 0.65vw;
    list-style-type: circle;
    margin-left: 1.2rem;
    font-weight: 500;
}

.disclaimer-content {
    margin-top: 0.5rem;
}

.bundle-btn {
    color: var(--white);
    background-color: var(--red);
}

.bundle-btn:hover {
    color: var(--white);
    background-color: var(--red);
}

#lounge-container,
#confirmation-bundle {
    padding-bottom: 6rem;
}

.radio-group {
    background-color: var(--white);
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    padding: 1rem;
    border-radius: 5px;
    text-align: left;
    margin-bottom: 2rem;
    width: 100%;
}

.radio-header {
    font-size: 0.85vw;
    font-weight: 600;
    text-wrap:nowrap;
}

.radio-group .radio {
    border: 2px solid #f7af86;
    border-radius: 5px;
    margin: 0.5rem 0;
    text-align: left;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    cursor: pointer;
}

#seat-map-container {
    position: relative;
    padding-bottom: 8rem;
}

/* footer */
.footer {
    /* background-image: url(../images/footer.png); */
    background-color: var(--red);
    width: 100%;
    height: 10vh;
    position: fixed;
    margin-top: 4rem;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.footer p {
    color: var(--white);
    margin: 0;
}
.footer_below{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.terms-condition{
    display: flex;
    flex-direction: column;
    /* gap: 0.5vw; */
}
.terms-links{
    display: flex;
    justify-content:flex-end;
    align-items: center;
    gap: 1vw;
}
.terms-links span{
    color: var(--white);
}
.terms-links a{
    text-decoration: none;
    color: var(--white);
    font-size: 1vw;
}
.support-heading{
    font-size: 1vw;
}
.contact-info p{
    font-size: 0.65vw;
}
/* end footer */

/* --------Loader CSS ---------------*/
#center-loading {
   /* display: none; */
   position: fixed;
   z-index: 99999;
   top: 0;
   left: 0;
   height: 100vh;
   width: 100%;
   background: rgba(0, 0, 0, 0.5);
   /* Add vendor prefixes for older iOS support */
   -webkit-backdrop-filter: blur(15px); /* Adjust the blur value as needed */
   backdrop-filter: blur(15px); /* Standard syntax */
}

.bar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.wave {
    display: inline-block;
    margin-right: 4px;
    height: 3vh;
    width: 10px;
    border-radius: 2px;
    background-color: var(--red);
    animation: loading 1s ease-in-out infinite alternate;
}

@-webkit-keyframes loading {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(1, 3);
    }
  
    100% {
      transform: scale(1);
    }
  }

.wave:nth-child(2) {
    animation-delay: -0.2s;
}

.wave:nth-child(3) {
    animation-delay: -0.4s;
}

.wave:nth-child(4) {
    animation-delay: -0.6s;
}

.wave:nth-child(5) {
    animation-delay: -0.8s;
}

/* --------Loader CSS ---------------*/



/*-------------------- REVIEW AND SUBMIT PAGE CSS ------------------------*/

/* review section */

.review-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--black);
    background: var(--white);
    height: auto;
    width: 95%;
    border-radius: 0.55vw;
    margin-top: 1.2vw;
    padding: 0.75rem;
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
}

.review-item h5,
.review-item h6 {
    font-size: 0.85vw;
    margin: 0;
    font-weight: 700;
    margin: 0 0.9rem;
}

.review-item h6 img {
    width: 3%;
    border: 2px solid var(--red);
    border-radius: 100%;
    margin-right: 4px;
    padding: 3px;
}

.review-item button {
    background: var(--red);
    color: var(--white);
    font-size: 0.65vw;
    border: none;
    padding: 5px 0.55vw;
    border-radius: 4px;
    margin-right: 0.9rem;
}

.icon {
    transform: translatey(33%);
}

.icon:before {
    content: "\f007";
    font-family: "FontAwesome";
    padding: 5px;
    color: var(--white);
    border: 1px solid var(--red);
    background: var(--red);
    border-radius: 100%;
    margin-right: 10px;
    font-size: 0.55vw;
}

.selected-item {
    color: var(--black);
    background: var(--white);
    height: auto;
    width: 95%;
    border-radius: 0.55vw;
    transition: 0.1s;
    margin: 0.55vw 0;
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    display: inline-block;
}

.ancillary-details-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    font-size: 0.65vw;
}
#details-container{
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.selected-item h6 {
    font-size: 0.75vw;
    margin: 0;
    text-transform: capitalize;
}

.selected-item h4 {
    font-size: 0.55vw;
    margin: 0;
    margin: 0.5rem 0 0 2rem;
    color: #afa9a9;
    font-weight: 600;

}

.vertical {
    border: none;
    border-left: 1px solid var(--black);
    height: 27px;
    transform: translatey(39%);
    padding: 0;
}

.selected-item h3 {
    font-size: 1vw;
    text-align: center;
    margin: 0 1.2vw;
    transform: translatey(-60%);
    font-weight: bold;
}

.selected-item h3 img {
    width: 1.2vw;
}

.flight-container {
    text-align: center;
    font-size: 8px;
}

.city {
    font-size: 10px;
}

.flight-img {
    width: 10px;
}

#time {
    font-size: 8px;
    position: relative;
    top: -7px;
    left: -4.3vw;
}

.date {
    font-size: 8px;
    position: relative;
    bottom: -5px;
    left: 3.7vw;
}

.selected-item hr {
    margin:0 0.55vw 0 0.45vw;
    width: 97%;
    padding: 0;
}

.conversion {
    margin-right: -0.55vw;
}

.conversion span {
    color: var(--red);
    font-weight: 600;
    font-size: 0.75vw;
    line-height:10px;
}
.citiesContainer {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    /* border-left: 1px solid #b3afaf; */
}
.citiesContainer::before{
    position: absolute;
    content: '';
    width: 1px;
    height: 60%;
    background-color: #b3afaf;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
}
.timeDate {
    display: flex;
    flex-direction: column;
    line-height: 12px;
    font-size: 0.6vw;
}
.city p{
    font-size: 0.75vw;
}
.tax-disclaimer{
    font-size: 0.65vw;
    text-align: center;
}
#checkin-text{
    color: var(--red);
    font-size: 0.9vw;
    margin-top:15px;
    background: var(--white);
    border-radius: 0.55vw;
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    height: auto;
    padding: 0.65rem 1rem;
}
#checkin-text-confirmation{
    color: var(--red);
    font-size: 1vw;
}
/* end review section */

/* Selected Ancillary section */
.ancillary-box {
    justify-content: center;
    color: var(--black);
    background: var(--white);
    border-radius: 0.55vw;
    transition: 0.3s;
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    padding: 0.5rem 0;
}

#ancillary hr {
    margin: 0 0 0 0.55vw;
    width: 95%;
    padding: 0;
    display: flex;
    justify-content: center;
}

/* .ancillary-content{
    display: none;
} */
.weightName {
    display: inline;
}

.fa-suitcase {
    color: var(--red);
    margin: 0 5px 0 0;
}

.fa-briefcase {
    color: var(--red);
    margin: 0 5px 0 0;
    position: relative;
    top: 7px;
}

.fa-chair {
    color: var(--red);
    margin: 0 5px 0 0;
    position: relative;
    top: 7px;
    font-size: 0.65vw;
}

.fa-utensils {
    color: var(--red);
    margin: 0 3px 0 0;
    font-size: 0.75vw;
}

.fa-couch {
    color: var(--red);
    margin: 0 3px 0 0;
}

.passenger-no {
    margin-left: 1.1rem;
    /* position: relative;
    top: -0.75vw; */

}

.fa-sack-dollar {
    border: 2px solid var(--red);
    border-radius: 50%;
    background-color: var(--red);
    color: var(--white);
    padding: 2px;
    cursor: pointer;
}

.cart-items li {
    font-size: 0.65vw;
    font-weight: bold;

}

/* #checkout h4::before {
    content: "\f0b1";
    font-family: "FontAwesome";
    color:  var(--red);
    margin: 0 5px 0 0;
} */

#checkout h4 {
    font-size: 0.65vw;
    margin-bottom: 0;
    font-weight: bold;
}

#checkout .row {
    font-size: 0.55vw;
    margin: 0 0 1vw 1vw;
    font-weight: bold;
}

.cart-items {
    line-height: 0.75vw;

}

.passenger-details {
    margin: 1rem 0;
}

.name-price {
    display: flex;
    justify-content: space-between;
}

.name-price p {
    font-size: 0.65vw;
    margin-bottom: 0;
}

.passenger-name {
    font-size: 0.65vw;
    margin-left: 1.2vw;
}

.selected-ancillary {
    margin-top: 1rem;
    margin-bottom: 8rem;
}

.ancillary-container {
    margin-top: 1rem;
}

.ancillary-title {
    font-size: 0.85vw;
    font-weight: 600;
    margin: 0;
    padding: 0 1.6rem;
}

.checkout2 h4,
.checkout h4,
#totalCheckout h4,
#taxPrice h4 {
    font-size: 0.65vw;
    float: right;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 0;
}

#tax:before {
    content: "\f3d1";
    font-family: "FontAwesome";
    color: var(--red);
    margin-right: 0.55vw;
}

#tax {
    font-size: 0.75vw;
    margin-bottom: 0;
    font-weight: bold;
}

#total {
    font-size: 1vw;
    position: relative;
    left: 1.2vw;
    top: -0.55vw;
}

#cart::after {
    content: "\f061";
    font-family: "FontAwesome";
    color: var(--white);
    margin-left: 0.55vw;
}

#cart {
    background: var(--red);
    color: var(--white);
    font-size: 0.65vw;
    border: none;
    padding: 0.55vw;
    border-radius: 1.2vw;
    width: 70%;
}
.cart-btn-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-item{
    color: var(--red);
    font-size: 0.65vw;
    border: none;
    padding: 0.5vw;
    border-radius: 5px;
    width: 45%;
    z-index: 999;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--red);
}
.buy-now{
    color: #4cc04c;
    font-size: 0.65vw;
    border: none;
    padding: 0.5vw;
    border-radius: 5px;
    width: 40%;
    z-index: 99;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #4cc04c;
}
.buynow-active{
    background-color: #4cc04c;
    color: var(--white);
}
.submit-active{
    background-color: var(--red);
    color: var(--white);
}
.info-icon{
    position: relative;
}
.btn-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: auto;
    font-size: 0.65vw;
    font-weight: 500;
    text-align: center;
    background-color: #000;
    border-radius: 5px;
    color: #fff;
    padding: 0.5rem;
    text-wrap: nowrap;
    z-index: 999;
}
.btn-tooltip::before {
    content: '';
    position: absolute;
    bottom: -10px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 10px 10px 0;
    border-color: #000 transparent transparent;
}

.info-icon:hover .btn-tooltip {
    display: flex;
}


/* Check eligibility screen css */
.redirect-container{
    margin-top: 2rem;
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    border-radius: 15px;
    padding: 25px;
}
.redirect-container > h4{
    font-size: 1.5vw;
    font-weight: 600;
    margin-bottom: 0;
}
.check-btn-container{
    margin-top: 2rem;
}
.check-eligibilty-btn{
    background-color: #fff;
    border:2px solid var(--red);
    border-radius: 10px;
    padding: 10px;
    color: var(--red);
    text-decoration: none;
    transition: 0.3s;
    font-size: 1vw;
}
.check-eligibilty-btn:hover{
    color: var(--white);
    background-color: var(--red);
}
.error_msg{
    border-radius: 0.55vw;
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-size: 1.3vw;
    padding: 2vh 0;
}
/* End Selected Ancillary section */

/* media querry */

@media (max-width: 1156px) {
    #checkout2 h4 {
        font-size: 9px;
        margin-right: 8px;
    }

    #total {
        font-size: 0.65vw;
    }

    .section3 {
        height: 32%;
    }

    #seat-info {
        margin-left: -60px;
    }
}

@media (max-width: 991px) {
    .review-item {
        width: 100%;
    }

    .selected-item {
        width: 100%;
    }

    .section3 {
        height: 100%;
    }

    .ancillary-content {
        width: 75%;
    }

    #checkout2 h4 {
        font-size: 0.65vw;
        margin-right: 8px;
    }

    #total {
        font-size: 1vw;
    }

    .passenger-buttons {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    #seat-availability {
        display: flex;
    }

    #seat-info {
        justify-content: center;
        margin-left: -40px;
    }

    #check_eligibility {
        height: 7vh;
    }
}

@media (max-width: 576px) {
    .logo img{
        width: 75px;
    }
    .redirect-container > h4{
        font-size: 16px;
    }
    .check-eligibilty-btn{
        font-size: 12px;
    }
    .footer{
        height: auto;
        margin-top: 0;
    }
    .contact-info{
        margin-bottom: 0.5rem;
    }
    .contact-info p{
        font-size: 10px;
    }
    .selected-item {
        height: 160px;
        width: 100%;
    }
    .footer_below{
        display: block;
    }
    .support-heading{
        font-size: 14px;
    }
    .terms-links{
        display: block;
    }
    .terms-links span{
      margin: 0 0.25rem;
    }
    .terms-links a{
        font-size: 14px;
    }
    .error_msg{
        border-radius: 5px;
    }
    .error_msg div{
        font-size: 14px;
        padding: 0 10px;
    }
    .selected-item h6 {
        font-size: 0.55vw;
        padding: 7px 0 0 0;
        text-align: center;
    }

    .selected-item h4 {
        font-size: 9px;
        margin: 5px 0 0 0.65vw;
        text-align: center;
    }

    #vertical {
        display: none;
    }

    .selected-item h3 {
        margin: 1.2vw 0 0 0;
        font-size: 0.75vw;
    }

    #conversion {
        margin: 7px;
    }

    .review-item button {
        font-size: 0.55vw;
        margin-right: 5px;
        padding: 5px;
        margin-top: 0.55vw;
    }


    .review-item h5,
    .review-item h6 {
        font-size: 0.55vw;
        padding: 5px 0 0 5px;
    }

    #tax:before {
        margin-left: -0.75vw;
    }

    #total {
        left: 0px;
    }

    #checkout2 h4 {
        margin-right: -0.55vw;
    }

    .baggage-ancillary button {
        width: 100%;
    }

    #seat-info {
        margin-left: 1.2vw;
    }

    .radio-group {
        margin-left: -1.25vw;
    }

    .radio span {
        font-size: 8px;
    }

    .radio span i {
        font-size: 0.75vw;
    }

    #check_eligibility {
        height: 6vh;
    }
}

@media (max-width: 41.25vw) {
    .step-col {
        margin-right: 0;
        width: 100%;
        justify-content: flex-start;
    }

    .step-row {
        flex-direction: column;

    }

    .step-col a span {
        margin-right: 2px;
    }
}


/* end of media querry */

/*------------------- SELECT EMPTY SEAT PAGE CSS ------------------- */

/* seat selection section */


.seats:hover {
    cursor: pointer;
    transform: scale(1.2);
    transition: 0.4s;
}

.seats-row {
    display: flex;
    justify-content: center;
}

#seat-container {
    display: flex;
    flex-direction: column;
}

#seatdisplay-container {
    display: flex;
    flex-direction: column;
    overflow: scroll;
    height: 500px;
    cursor: auto;
}

.seat-columns-container {
    display: flex;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2vw;
}

.seat-columns {
    display: flex;
    align-items: center;
    justify-content: center;
}

.column {
    /* margin: 0 2rem; */
    text-align: center;
    font-size: 1.2vw;
    font-weight: 600;
    height: 2vw;
    width: 2vw;
    border-radius: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0.35vw 0.55vw;
}

.seats {
    height: 2vw;
    width: 2vw;
    border-radius: 5px;
    text-align: center;
    display: flex;
    margin: 0.35vw 0.55vw;
}

.seat {
    border-radius: 0.25vw;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.25vw 0.55vw
}


.seats-column {
    display: flex;
    flex-direction: row;
    border-radius: 0.75vw;
}

.seats-id {
    display: none;
}

.row-number {
    position: relative;
    margin: 0 0.55vw;
    font-size: 1.2vw;
    display: flex;
    align-items: center;
}

.seats-price {
    display: none;

}

.seats:hover .seats-price {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65vw;
}

.column-space {
    width: 3.5vw;
}

.price-tag {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    border-top: 3px solid;
    width: 55%;
    margin: auto;
    border-radius: 1.2vw;
}

@media(max-width: 1399px) {
    .price-tag {
        width: 65%;
    }
}

@media(max-width: 1199px) {
    .price-tag {
        width: 75%;
    }
}

@media(max-width: 991px) {
    .price-tag {
        width: 50%;
    }
}

.price-tag span {
    position: relative;
    background: var(--white);
    top: -0.55vw;
    padding: 0 8px;
    font-size: 0.65vw;
}

.seats-col-name {
    height: 30px;
    width: 30px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    margin: 5px 0.55vw;
}

.alphabet-labels {
    display: flex;
    justify-content: center;
    font-size: 1.25vw;
    gap: 37px;
    /* position: absolute;
    background-color: var(--white);
    z-index: 9999; */
}

.alphabet-label:nth-child(3) {
    margin-right: 30px;
}

.alphabet-label:nth-last-child(3) {
    margin-left: 33px;
}

.seats.available {
    background-color: #ffa500;

}

.seats.blocked {
    visibility: hidden;
    pointer-events: none;
}

.seats.selected {
    background-color: #59bc67;
    color: var(--white);
}

.seats.bidded {
    background-color: rgb(95 123 223);
    pointer-events: none;
}

.spacer {
    width: 2vw;
}

.seats.unavailable {
    background-color: #cccccc;
    pointer-events: none;
}

.seats.selected {
    background-color: #59bc67;
    color: var(--white);
}

.seats.bidded {
    background-color: rgb(95 123 223);
    pointer-events: none;
}
.seats.prev{
    background-color: rgb(119 0 255);
    pointer-events: none;
}

.disabled-label {
    pointer-events: none;
    opacity: 0.5;
}

.disabled-btn {
    pointer-events: none;
    opacity: 0.5;
    tabindex: -1;
}

.radio {
    font-size: 0.55vw;
    vertical-align: middle;
    display: flex;
    flex-direction: row;
    font-weight: bold;
}

.radio i {
    margin: 0 0.5vw;
    font-size: 1.2vw;
    color: var(--red);
}

.radio-active {
    background-color: var(--red);
    color: var(--white);
    border: none !important;
}

.radio-active input[type="radio"],
.agree-checkbox-container .agree-checkbox,
.feedback-checkbox{
    accent-color: #ff6002;
    height: 0.85vw;
    width: 0.85vw;
    border: 1px solid var(--white);
}
.agree-checkbox-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.agree-checkbox-container a{
    color: var(--red);
}
.agree-checkbox-container p{
    font-size: 0.65vw;
    margin: 0;
}
.radio i.active {
    color: var(--white);
}

.radio span {
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    /* margin-left: 0.5rem; */
    line-height: 0.65vw;
    font-size: 0.75vw;
}

input[type="radio"] {
    accent-color: #ff5e00;
    height: 0.85vw;
    width: 0.85vw;
}

.seat-information {
    display: flex;
    justify-content: center;
    gap: 0.15vw;
}

#seat-description {
    font-size: 0.45vw;
    line-height: 0.65vw;
    font-weight: 600;
    pointer-events: none;
}

#seat-description span {
    display: flex;
    justify-content: center;
    position: relative;
    top: -1.55vw;
    text-align: center;
}

/* end of seat selection section */


/* Excess Baggage */
#baggagehr {
    position: relative;
    width: 55%;
    border-top: 3px solid var(--red);
    text-align: center;
    line-height: 0.75vw;
    border-radius: 1.2vw;
}

#baggagehr span {
    position: relative;
    background: var(--white);
    top: -11px;
    font-weight: bold;
    font-size: 0.65vw;
}

.weightbased {
    font-size: 11px;
    color: var(--black);
    line-height: 0.75vw;
    height: 70px;
    width: 60%;
    padding: 0.75vw;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.weightbased i {
    font-size: 0.75vw;
    margin-right: 5px;
}

.weightbased p {
    margin: 0;
}

.weightbased p .spanPrice {
    position: relative;
    float: right;
    font-size: 11px;
}

.weightbased.active {
    font-size: 11px;
    background: var(--red);
    color: var(--white);
    line-height: 0.75vw;
    height: 70px;
    width: 60%;
    padding: 0.75vw;
}

.weightbased.active i {
    font-size: 0.75vw;
    margin-right: 5px;
}

.weightbased.active p {
    margin: 0;
}

.weightbased.active p .spanPrice {
    position: relative;
    float: right;
    font-size: 11px;
}

.passenger-container {
    position: relative;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    padding: 1rem;
    border-radius: 5px;
}

.passenger-button {
    width: 100%;
    background-color: var(--white);
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    font-size: 0.75vw;
    margin-bottom: 0.55vw;
    border-radius: 0.55vw;
    padding: 5px 0.55vw;
    border: none;
    text-transform: capitalize;
}

/* #passenger_btn_seat {
    width: 65%;
}*/
.passenger-button.active {
    color: var(--white);
    background: var(--red);
}

.destination-button.active {
    color: var(--white);
    background: var(--red);
}

.destination-button {
    background-color: var(--white);
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    text-align: center;
    min-width: 10vw;
    max-width: 15vw;
    font-size: 0.75vw;
    margin-bottom: 0.5vw;
    padding: 0.55vw;
    border-radius: 0.5vw;
    border: none;
}

.destination-buttons {
    display: flex;
    flex-direction: row;
    gap: 2vw;
}

#skip {
    background: var(--red);
    color: var(--white);
    width: 30%;
    padding: 7px;
    border: none;
    border-radius: 5px;
}

.bidding {
    justify-content: center;
    color: black;
    background: var(--white);
    border-radius: 0.55vw;
    transition: 0.3s;
    box-shadow: 0px 0px 5px rgb(183 177 177 / 50%);
    padding: 1rem;

}

.slideText p {
    font-size: 0.55vw;
    margin-bottom: 0;
}

.slideText i {
    margin: 0 -2px;
    color: #a0a4ac;
}

.confirmationText {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 0.65vw;
    margin-top: 5px;
}

.biding-item {
    font-size: 0.75vw;
}

#mealsbiding {
    display: none;

}

#bid h6 {
    font-weight: bold;
    font-size: 0.75vw;
}

#bid hr {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
}

#bid .bid-value {
    font-size: 0.85vw;
    text-align: center;
    margin-bottom: 0;
    line-height: 0.95vw;
}

.minmax-price {
    font-size: 0.65vw;
    margin-bottom: 0;
    line-height: 0.65vw;
}

.minmax-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.minmax-text {
    font-size: 0.65vw;
    color: #ed1b24;
    margin: 0;
}

.sliderRangeContainer {
    position: relative;
    z-index: 999;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1.2vw;
    width: 1.2vw;
    border-radius: 50%;
    background: #015aaa;
    border: 2px solid #6cb5f5;
    cursor: pointer;
}

::-webkit-scrollbar {
    display: none;
}

.singleseatprice{
    color: var(--red);
    float: right;
}
/* ------------SVG Gauge meter------------------ */
.wrapper {
    position: relative;
    width: 100%;
    height: 76px;
    margin-top: -1.9rem;
}

.meter {
    width: 100%;
    height: auto;
    transform: rotateX(180deg);
    z-index: 100;
}

.circle {
    fill: none;
}

.outline,
.mask {
    stroke: #f1f1f1;
    stroke-width: 0;
}

.range {
    stroke-width: 30;
}

.meter_needle1,
#meter_needle2,
#meter_needle3,
#meter_needle4,
#meter_needle5,
#meter_needle6,
#meter_needle7,
#meter_needle8,
#meter_needle11,
#meter_needle12 {
    height: 52%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 46%;
    transform-origin: bottom center;
    transform: rotate(270deg);
}

@media only screen and (min-width: 280px) and (max-width: 900px) {
    .meter_needle1 {
        height: 50%;
        top: 46%;
    }

    .wrapper {
        height: 76px;
        width: 100px;
    }
}

.meter-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.check-bid {
    width: 100%;
    font-size: 0.65vw;
    border-right: 1px solid rgb(189, 179, 179);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.bi-coin{
    font-size: 2vw;
    margin: 0 0.5vw;
    color: var(--red);
}
.check-bid p {
    margin-bottom: 0;  
}

/*-------------SVG Gauge meter ------------------ */




/*------------------- STANDBY MEALS CSS ------------------- */

/*Meal Card*/
#mealCard {
    height: 15rem;
    min-width: 10rem;

}

input[name="food"] {
    position: relative;
    top: 0.55vw;
    left: 0.55vw;
}

#mealCard img {
    height: 7rem;
    object-fit: contain;
    margin-top: 0.3vh;
}

.mealitem {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25vw
}

.mealbox {
    width: 30%;
}

.food-info {
    font-size: 0.65vw;
    font-weight: bold;
    margin: 0;
}

.fa-circle-plus {
    color: var(--red);
}

.fa-circle-minus {
    color: var(--red);
}

#mealCard .card-body .fa-circle-info {
    position: relative;
    float: right;
    height: 0.75vw;
    width: 0.65vw;
    color: var(--red);
    cursor: pointer;
}

.food-details {
    position: absolute;
    top: -1.25vw;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: auto;
    font-size: 0.65vw;
    font-weight: 500;
    text-align: center;
    background-color: var(--red);
    border-radius: 7px;
    color: #fff;
    padding: 0.25rem;
    text-wrap: nowrap;
    z-index: 999;
}

.fa-circle-info:hover .food-details {
    display: flex;
}

.plus-minus-button {
    position: absolute;
    bottom: -6px;
    display: flex;
    width: 100%;
    justify-content: center;
}

/* Meal Card Checkbox */
.radiobtnContainer {
    display: block;
    position: relative;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 1.2vw;
    -webkit-user-select: none;
    user-select: none;
}

.meal-price {
    color: var(--red);
    font-size: 0.65vw;
    display: flex;
    justify-content: center;
    position: relative;
    top: 2px;
}

.counter {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.55vw;
    bottom: 0;
}

.counter button {
    width: 1.875rem;
    height: 1.875rem;
    padding: 0;
    margin-bottom: 0 5px;
    font-size: 0.75vw;
    border-radius: 50%;
}

.activeCard {
    border-width: 2px;
    border-color: var(--red)
}

@media(max-width:1199px) {
    .food-info {
        font-size: 11px;
    }
}

/*---------------- Add lounge page --------------*/
.loungeContainer {
    padding: 0.75rem 0;
    margin-bottom: 1rem;

}

.lounge-options {
    box-shadow: 0px 0px 0.55vw rgba(0, 0, 0, 0.5);
    border-radius: 0.55vw;
}

.loungePrice {
    position: relative;
    display: flex;
    justify-content: space-around;
}

.mainLoungeImg {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.loungeNamePrice {
    position: relative;
}

.loungeName p {
    font-size: 0.65vw;
    font-weight: 600;
    margin-bottom: 0;
}

.luggageServices>input {
    margin: 0 0.5rem;
}

.luggageServices {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.pricePerson {
    border: 2px solid var(--red);
    border-radius: 0.55vw;
    padding: 0.4rem 0.2rem;
    text-align: center;
}

.pricePerson.active {
    background-color: var(--red);
    cursor: pointer;
    transition: 0.3s;
    color: var(--white);
}

/* .pricePerson:hover.pricePerson p,
.pricePerson:hover.pricePerson label{
    color: #fff;
}  */
.silverGold {
    color: var(--red);
    font-size: 1.1vw;
    font-weight: 600;
    text-align: center;
}

.silverGold.active {
    color: var(--white);
}

.pricePerson p {
    font-size: 11px;
    margin-bottom: 0;
}

.pricePerson label {
    font-weight: 600;
    font-size: 0.75vw;
}

.benefits {
    margin: 0;
    margin-top: 1em;
    font-size: 0.65vw;
}

.rating .fa {
    color: var(--red);
}

.rating>.fa,
.rating>.far {
    font-size: 11px;
    margin-right: 0.1rem;
}

.rating label {
    font-size: 0.65vw;
}

.list ul {
    padding: 0;
    margin-bottom: 0;
}

.list ul li {
    color: #757981;
    font-size: 11px;
    margin: 0.2rem 0;
}

.list i {
    color: #4cc04c;
}

@media(max-width:1400px) {
    .loungePrice {
        width: 60%;
    }
}

/*---------------- Add lounge page --------------*/

/*-----CONFIRMATION PAGE-----*/

.confirmationPolygon {
    background-color: var(--red);
    padding-bottom: 0.55vw;
    clip-path: polygon(100% 0%, 100% 40%, 50% 80%, 0% 40%, 0% 0%);
    position: relative;
    top: 4.4vh;
}

#confirmation {
    width: 100%;
    clip-path: polygon(100% 0%, 100% 40%, 50% 80%, 0% 40%, 0% 0%);
    position: relative;
}

#confirmation img {
    width: 100%;
    display: block;
    position: relative;
    transform: translateY(0%);
}

.text-overlay {
    position: absolute;
    top: 30%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: var(--white);
}

.thankyou-note {
    font-size: 1vw;
    font-weight: bold;
}

.text-overlay p {
    font-size: 2vw;
    font-weight: 600;
    margin-bottom: 0.55vw;
    margin: 0;
}

.text-style {
    font-size: 1.2vw;
    text-decoration: underline var(--red);
    font-weight: bold;
}

.order-number {
    color: var(--red);
}

.message {
    position: relative;
    top: -3vh;
}



/*------------------- Ancillary Selection Screen ------------------- */


#selectionfooter {
    width: 100%;
}

#selectionfooter img {
    width: 100%;
    max-width: 100%;
    clip-path: polygon(50% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 50%);
}

#check_eligibility {
    position: relative;
    margin-top: 10rem;
    transform: translateY(-100%);
}

.form-row {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.text-box {
    margin: 5px;
    padding: 8px;
    border: 3px solid var(--red);
    border-radius: 0.55vw;
    outline: none;
    width: 50%;
    height: 50px;
}

.form-row a {
    margin: 5px;
    padding: 0.65vw 1.2vw;
    background-color: var(--red);
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .polygon {
    background-color: var(--red);
    padding-bottom: 0.55vw;
    clip-path: polygon(100% 0%, 100% 40%, 50% 65%, 0% 40%, 0% 0%);
} */

/* .landing { */
    /* width: 100%;
    clip-path: polygon(100% 0%, 100% 40%, 50% 65%, 0% 40%, 0% 0%);
    position: relative; */
/* } */

.landing img {
    width: 100%;
    display: block;
    position: relative;
    /* transform: translateY(-32%); */
}

.passenger-info {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    width: 75%;
    display: flex;
    margin: auto;
    border-radius: 0.55vw;
}

.pnr-details {
    margin: 1vh;
    line-height: 1.5vh;
    margin-bottom: 0;

}

.pnr-details span {
    float: right;
    margin-right: 2vh;
}

.ancillarydetails {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.ancillaryitem {
    box-shadow: 0 4px 8px #00000026;
    margin: 1vh;
    padding: 0;
    border-radius: 0.75vw;
    overflow: hidden;
    transition: 0.5s;
}

#ancillaryproduct {
    width: 24%;
}

.ancillaryitem-bundle {
    box-shadow: 0 4px 8px #00000026;
    padding: 0;
    border-radius: 0.75vw;
    overflow: hidden;
    transition: 0.5s;
    margin: 1vh;
}

.ancillaryitem:hover {
    transform: scale(1.05);
    /* border: 3px solid  var(--red); */
}

.ancillaryitem-bundle:hover {
    transform: scale(1.05);
    /* border: 3px solid  var(--red); */
}

.ancillary-img {
    width: 100%;
    height: 150px;
}

.ancillary-bundle-img {
    width: 100%;
    height: 150px;
}

.ancillary-price {
    float: right;
    position: relative;
    right: 0.55vw;
    color: var(--red);
    font-weight: bold;
}

.ancillary-offers {
    font-size: 0.65vw;
}

.bid-amount {
    font-size: 0.65vw;
}

.bidnow-btn {
    position: relative;
    bottom: 0.55vw;
}

#plusText {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#plusText span {
    font-weight: 600;
    font-size: 1vw;
    margin-left: 1rem;
}

#plusButton {
    height: 35px;
    width: 35px;
}

@media(max-width: 992px) {
    #ancillaryproduct {
        width: 32%;
    }
}

@media(max-width: 768px) {
    #ancillaryproduct {
        width: 45%;
    }
}

@media(max-width: 50.65vw) {
    #ancillaryproduct {
        width: 100%;
    }
}

#ancillary-content {
    display: none;
}

.list-group-item {
    margin-bottom: 0.55vw;
}

.list-group-item p {
    display: flex;
}

.list-group-item .item-price {
    position: absolute;
    right: 0;
    color: var(--red);
}

.item-details {
    width: 60%;
    font-size: 0.65vw;
}

.fa-trash-can {
    font-size: 1vw;
    line-height: 1vw;
    padding: 5px 0.55vw;
    border: 0;
    outline: 0;
    font-weight: 900;
    cursor: pointer;
    border-radius: 34px;
    transition: 0.25s;
    background-color: rgb(247, 239, 244);
    filter: drop-shadow(3.4px 3.4px 3.4px rgb(183, 177, 181)) drop-shadow(-3.4px -3.4px 3.4px white);
    -webkit-filter: drop-shadow(3.4px 3.4px 3.4px rgb(183, 177, 181)) drop-shadow(-3.4px -3.4px 3.4px white);
    box-shadow: inset 4.3px 4.3px 7px #fff;
    color: var(--red);
    position: absolute;
    top: -2px;
    right: 70px;
    cursor: pointer;
}

.fa-trash-can:hover {
    filter: drop-shadow(5px 5px 3.4px rgb(183, 177, 181));
    -webkit-filter: drop-shadow(5px 5px 3.4px rgb(183, 177, 181));
    box-shadow: inset 2.5px 2.5px 2.5px #fff;
}

.fa-trash-can:active {
    filter: drop-shadow(0px 0px 0px rgb(183, 177, 181));
    -webkit-filter: drop-shadow(0px 0px 0px rgb(183, 177, 181));
    box-shadow: inset 4.3px 4.3px 7px rgb(183, 177, 181);

}

