@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
:root {
    --red: #E41D33;
    --white: #ffffff;
  }

* {
    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%;
    /* margin-top: 1rem; */
}

ul {
    padding: 0;
}

body {
    height: 100vh;
}

/* header */
.heading {
    display: flex;
    flex-direction: row;
    position: fixed;
    top: -1vh;
    z-index: 1066;
    width: 100%;
    background: #ffffff;
    height: 60px;
    border-bottom: 2px solid rgb(194, 194, 194);
}

#bookReferenceButton {
    display: flex;
    flex-direction: row-reverse;
}

#heading-text {
    text-align: center;
}

.headingText {
    font-size: 25px;
    font-weight: bold;
}
.header-button{
    background-color: var(--red);
    color: var(--white);
    text-decoration: none;
    padding: 7px 15px;
    border-radius: 5px;
}

/*-------------- progress bar section -----------------*/
.step-row {
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    overflow: hidden;
    justify-content: center;
    flex-wrap: wrap;
}

.step-col {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
    width: 20%;
    padding: 10px;
    clip-path: polygon(0 0, 84% 0, 100% 50%, 84% 100%, 0% 100%);
}

#progressbar-active {
    position: relative;
    background:  var(--red);
    border-radius: 10px;
    clip-path: polygon(0 0, 84% 0, 100% 50%, 84% 100%, 0% 100%);
}

.step-col a {
    text-decoration: none;
    font-size: 12px;
    color: #000000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-col a span {
    background:  var(--red);
    padding: 2px 9px;
    border-radius: 100%;
    border: none;
    color: #ffffff;
    margin-right: 5px;
}

#progressbar-active a {
    color: #ffffff;
}

#progressbar-active span {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
}

/* end progress bar section */

/* disclaimer section */

.disclaimer h5 {
    font-size: 14px;
    position: relative;
    font-weight: bold;
    margin-bottom: 0;
}

.disclaimer:before {
    content: "\f05a";
    font-family: "FontAwesome";
    color:  var(--red);
    align-items: center;
    position: relative;
    font-size: 25px;
    padding: 0.25rem 1rem;
}

.disclaimer {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0 5px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    height: 60px;
}

/* footer */
.footer {
    background-image: url("../images/footer.png");
    width: 100%;
    height: 10vh;
    position: relative;
    bottom: 0;

}

.footer-link {
    display: flex;
    gap: 80px;
}

.footer-link a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    margin-top: 30px;
}

/* end footer */

/*-------------------- REVIEW AND SUBMIT PAGE CSS ------------------------*/

/* review section */

.review-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: black;
    background: white;
    height: auto;
    width: 95%;
    border-radius: 10px;
    margin-top: 20px;
    padding: 0.75rem;
    box-shadow: 0px 0 5px rgba(0, 0, 0, 0.5);
}

.review-item h5,
.review-item h6 {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

.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: white;
    font-size: 12px;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
}

.icon {
    transform: translatey(33%);
}

.icon:before {
    content: "\f007";
    font-family: "FontAwesome";
    padding: 3px;
    color: white;
    border: 1px solid  var(--red);
    background:  var(--red);
    border-radius: 100%;
    margin-right: 4px;
}

.selected-item {
    color: black;
    background: white;
    height: auto;
    width: 95%;
    border-radius: 10px;
    transition: 0.1s;
    margin: 10px 0;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.ancillary-details-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    font-size: 12px;
}

.selected-item h6 {
    font-size: 11px;
    margin: 0;
}

.selected-item h4 {
    font-size: 10px;
    margin: 0;
    margin: 0.5rem 0 0 1.5rem;

}

.vertical {
    border: none;
    border-left: 1px solid black;
    height: 27px;
    transform: translatey(39%);
    padding: 0;
}

.selected-item h3 {
    font-size: 16px;
    text-align: center;
    margin: 0 20px;
    transform: translatey(-60%);
    font-weight: bold;
}

.selected-item h3 img {
    width: 19px;
}

#time {
    font-size: 8px;
    position: relative;
    top: -7px;
    left: -60px;
}

.date {
    font-size: 8px;
    position: relative;
    bottom: -5px;
    left: 45px;
}

.selected-item hr {
    margin: 0 0 0 10px;
    width: 95%;
    padding: 0;
}

.conversion {
    margin-right: -10px;
}

.conversion span {
    color:  var(--red);
    font-weight: 600;
    font-size: 14px;
}

/* end review section */

/* Selected Ancillary section */
.ancillary-box {
    justify-content: center;
    color: black;
    background: white;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0px 0 3px rgba(0, 0, 0, 0.5);
}

#ancillary hr {
    margin: 0 0 0 10px;
    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;
}

.fa-utensils {
    color:  var(--red);
    margin: 0 3px 0 0;
    font-size: 15px;
}

.fa-couch {
    color:  var(--red);
    margin: 0 3px 0 0;
}

.passenger-no {
    margin-left: 1.1rem;
    position: relative;
    top: -15px;

}

.fa-sack-dollar {
    border: 2px solid  var(--red);
    border-radius: 50%;
    background-color:  var(--red);
    color: #fff;
    padding: 2px;
    cursor: pointer;
}

.cart-items li {
    font-size: 13px;
    font-weight: bold;

}

/* #checkout h4::before {
    content: "\f0b1";
    font-family: "FontAwesome";
    color:  var(--red);
    margin: 0 5px 0 0;
} */

#checkout h4 {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: bold;
}

#checkout .row {
    font-size: 10px;
    margin: 0 0 8px 20px;
    font-weight: bold;
}

.cart-items {
    line-height: 14px;

}

.passenger-details {
    margin: 1rem 0;
}

.name-price {
    display: flex;
    justify-content: space-between;
}

.name-price p {
    font-size: 12px;
    margin-bottom: 0;
}

.passenger-name {
    font-size: 12px;
    margin-left: 20px;
}

.selected-ancillary {
    margin-top: 1rem;
    margin-bottom: 8rem;
}

.ancillary-container {
    margin-top: 1rem;
}

.ancillary-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 0 0.75rem;
}

.checkout2 h4,
.checkout h4,
#totalCheckout h4,
#taxPrice h4 {
    font-size: 13px;
    float: right;
    font-weight: bold;
}

#tax:before {
    content: "\f3d1";
    font-family: "FontAwesome";
    color:  var(--red);
    margin-right: 10px;
}

#tax {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: bold;
}

#total {
    font-size: 16px;
    position: relative;
    left: 20px;
    top: -10px;
}

#cart::after {
    content: "\f061";
    font-family: "FontAwesome";
    color: white;
    margin-left: 10px;
}

#cart {
    background:  var(--red);
    color: white;
    font-size: 13px;
    border: none;
    padding: 10px;
    border-radius: 20px;
    width: 50%;
}

#cart-item {
    color: var(--white);
    font-size: 12px;
    border: none;
    padding: 5px;
    border-radius: 5px;
    width: 40%;
    z-index: 10000;
    background-color: var(--red);
}

#cart-item:before {
    content: "\f07a";
    font-family: "FontAwesome";
    color: white;
    margin-right: 5px;
    font-size: 12px;
}

/* End Selected Ancillary section */

/* media querry */

@media (max-width: 1156px) {
    #checkout2 h4 {
        font-size: 9px;
        margin-right: 8px;
    }

    #total {
        font-size: 13px;
    }

    .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: 12px;
        margin-right: 8px;
    }

    #total {
        font-size: 16px;
    }

    .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) {
    .selected-item {
        height: 160px;
        width: 100%;
    }

    .selected-item h6 {
        font-size: 10px;
        padding: 7px 0 0 0;
        text-align: center;
    }

    .selected-item h4 {
        font-size: 9px;
        margin: 5px 0 0 13px;
        text-align: center;
    }

    #vertical {
        display: none;
    }

    .selected-item h3 {
        margin: 20px 0 0 0;
        font-size: 14px;
    }

    #conversion {
        margin: 7px;
    }

    .review-item button {
        font-size: 10px;
        margin-right: 5px;
        padding: 5px;
        margin-top: 10px;
    }


    .review-item h5,
    .review-item h6 {
        font-size: 10px;
        padding: 5px 0 0 5px;
    }

    #tax:before {
        margin-left: -15px;
    }

    #total {
        left: 0px;
    }

    #checkout2 h4 {
        margin-right: -10px;
    }

    .baggage-ancillary button {
        width: 100%;
    }

    #seat-info {
        margin-left: 20px;
    }

    .radio-group {
        margin-left: -25px;
    }

    .radio span {
        font-size: 8px;
    }

    .radio span i {
        font-size: 15px;
    }

    #check_eligibility {
        height: 6vh;
    }
}

@media (max-width: 425px) {
    .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;
}

.seats {
    height: 30px;
    width: 30px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    margin: 7px 10px;
}

.seat {
    border-radius: 5px;
    text-align: center;
    display: flex;
    margin: 5px 10px;
}
   

.seats-column {
    display: flex;
    flex-direction: row;
    border-radius: 15px;
}

.seats-id {
    display: none;
}

.row-number {
    position: relative;
    margin: 0.2rem 1rem;
    font-size: 22px;
}

.seats-price {
    display: none;

}

.seats:hover .seats-price {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.column-space {
    width: 5rem;
}

.price-tag {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    border-top: 3px solid;
    width: 55%;
    margin: auto;
    border-radius: 20px;
}

@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: white;
    top: -10px;
    padding: 0 8px;
    font-size: 12px;
}

.seats-col-name {
    height: 30px;
    width: 30px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    margin: 5px 10px;
}

.alphabet-labels {
    display: flex;
    justify-content: center;
    font-size: 25px;
    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: #d7bde4;
    /* animation: changeColor 1s linear ; */
}

/* @keyframes changeColor{
    from{
        background-color: #4cc04c;
    }
    to{
        background-color: #d7bde4;
    }
} */


.seats.available.standard {
    background-color: #7e94d0;
    /* animation: changeStandardColor 1s linear ; */
}

/* @keyframes changeStandardColor{
    from{
        background-color: #4cc04c;
    }
    to{
        background-color: #7e94d0;
    }
} */
.seats.unavailable {
    background-color: #cccccc;
    pointer-events: none;
}

.seats.selected {
    background-color:  var(--red);
    color: #fff;
}

.seats.available.standard.selected {
    background-color:  var(--red);
    color: #fff;
}


.radio {
    font-size: 10px;
    vertical-align: middle;
    display: flex;
    flex-direction: row;
    font-weight: bold;
}

.radio i {
    margin-left: 0.8rem;
    font-size: 20px;
    color: #cccccc;
}

.radio i.active {
    color:  var(--red);
}

.radio span {
    display: flex;
    justify-content: center;
    position: relative;
    margin-left: 0.5rem;
    line-height: 10px;
}

.radio+.radio {
    margin-left: 2rem;
}

input[type="radio"] {
    accent-color:  var(--red);
    height: 13px;
    width: 13px;
}

.seat-information {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#seat-description {
    font-size: 9px;
    line-height: 12px;
    font-weight: 600;
    pointer-events: none;
}


#seat-description span {
    display: flex;
    justify-content: center;
    position: relative;
    top: -30px;
    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: 15px;
    border-radius: 20px;
}

#baggagehr span {
    position: relative;
    background: #ffffff;
    top: -11px;
    font-weight: bold;
    font-size: 13px;
}

.weightbased {
    font-size: 11px;
    color: #000000;
    line-height: 15px;
    height: 70px;
    width: 60%;
    padding: 14px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.weightbased i {
    font-size: 15px;
    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: #ffffff;
    line-height: 15px;
    height: 70px;
    width: 60%;
    padding: 14px;
}

.weightbased.active i {
    font-size: 15px;
    margin-right: 5px;
}

.weightbased.active p {
    margin: 0;
}

.weightbased.active p .spanPrice {
    position: relative;
    float: right;
    font-size: 11px;
}

.passenger-button {
    background-color: #ffffff;
    box-shadow: 0px 0 4px rgba(0, 0, 0, 0.5);
    width: 100%;
    font-size: 15px;
    line-height: 15px;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 10px;
    border: none;
}

#passenger_btn_seat {
    width: 65%;
}

.passenger-button.active {
    color: #ffffff;
    background:  var(--red);
}

.destination-button.active {
    color: #ffffff;
    background:  var(--red);
}

.destination-button {
    background-color: #ffffff;
    box-shadow: 0px 0 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    height: 40px;
    width: 100%;
    font-size: 15px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.destination-buttons {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

#skip {
    background:  var(--red);
    color: #ffffff;
    width: 30%;
    padding: 7px;
    border: none;
    border-radius: 5px;
}

.bidding {
    justify-content: center;
    color: black;
    background: white;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0px 0 3px rgba(0, 0, 0, 0.5);
    padding: 1rem;

}
#biding-item{
    font-size: 14px;
}

#mealsbiding {
    display: none;

}

#seatbiding {
    display: none;
}

#bid h6 {
    font-weight: bold;
    font-size: 15px;
}

#bid hr {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
}

#bid .bid-value {
    font-size: 12px;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

.minmax-price {
    font-size: 12px;
    margin-bottom: 0;
    line-height: 12px;
}

.sliderRangeContainer {
    position: relative;
    z-index: 10006;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #015aaa;
    border: 2px solid #6cb5f5;
    cursor: pointer;
}

::-webkit-scrollbar {
    display: none;
}

/* ------------SVG Gauge meter------------------ */
.wrapper {
    position: relative;
    width: 100%;
    height: 76px;
    margin-top: -1.5rem;
}

.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: 50%;
    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: 12px;
    border-right: 1px solid rgb(189, 179, 179);
}

.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: 10px;
    left: 10px;
}

#mealCard img {
    height: 7rem;
    object-fit: contain;
    margin-top: 0.3vh;
}
.mealitem{
    display: flex;
    flex-wrap: wrap;
    gap:25px
}
.mealbox{
    width: 30%;
}

.food-info {
    font-size: 13px;
    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: 15px;
    width: 12px;
    color:  var(--red);
    cursor: pointer;
}
.food-details{
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    display:none;
    width: auto;
    font-size: 12px;
    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: 20px;
    -webkit-user-select: none;
    user-select: none;
}

.meal-price {
    color:  var(--red);
    font-size: 13px;
    display: flex;
    justify-content: center;
    position: relative;
    top: 2px;
}

.counter {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    bottom: 0;
}

.counter button {
    width: 1.875rem;
    height: 1.875rem;
    padding: 0;
    margin-bottom: 0 5px;
    font-size: 15px;
    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 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.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: 13px;
    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: 10px;
    padding: 0.4rem 0.2rem;
    text-align: center;
}

.pricePerson.active {
    background-color:  var(--red);
    cursor: pointer;
    transition: 0.3s;
    color: #ffffff;
}

/* .pricePerson:hover.pricePerson p,
.pricePerson:hover.pricePerson label{
    color: #fff;
}  */
.silverGold {
    color:  var(--red);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.silverGold.active {
    color: #ffffff;
}

.pricePerson p {
    font-size: 11px;
    margin-bottom: 0;
}

.pricePerson label {
    font-weight: 600;
    font-size: 14px;
}

.benefits {
    margin: 0;
    margin-top: 1em;
    font-size: 12px;
}

.rating .fa {
    color:  var(--red);
}

.rating>.fa,
.rating>.far {
    font-size: 11px;
    margin-right: 0.1rem;
}

.rating label {
    font-size: 12px;
}

.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: 10px;
    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(-10%);
}

.text-overlay {
    position: absolute;
    top: 30%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #ffffff;
}

.thankyou-note {
    font-size: 18px;
    font-weight: bold;
}

.text-overlay p {
    font-size: 2vw;
    font-weight: 600;
    margin-bottom: 10px;
    margin: 0;
}

.text-style {
    font-size: 20px;
    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 {
    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: 10px;
    outline: none;
    width: 50%;
    height: 50px;
}

.form-row a {
    margin: 5px;
    padding: 12px 20px;
    background-color:  var(--red);
    color: 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: 10px;
    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: 10px;
}

.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: 15px;
    overflow: hidden;
    transition: 0.5s;
}

#ancillaryproduct {
    width: 24%;
}

.ancillaryitem-bundle {
    box-shadow: 0 4px 8px #00000026;
    padding: 0;
    border-radius: 15px;
    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: 10px;
    color:  var(--red);
    font-weight: bold;
}

.ancillary-offers {
    font-size: 12px;
}

.bid-amount {
    font-size: 12px;
}

.bidnow-btn {
    position: relative;
    bottom: 10px;
}

#plusText {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#plusText span {
    font-weight: 600;
    font-size: 16px;
    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: 512px) {
    #ancillaryproduct {
        width: 100%;
    }
}

#ancillary-content{
    display:none;
}

.list-group-item p {
    display: flex;
}

.list-group-item p .item-price{
    position: absolute;
    right: 0;
    color:  var(--red);
}
.item-details {
    width: 60%;
}