/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .passenger {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2%;
    background-color: #f5f5f5;
    margin-bottom: 1%;
    border-radius: 20px;
}

.passenger > p {
    flex-basis: 48%;
    margin-bottom: 2%;
}

#add-passenger {
    margin-bottom: 2%;
}

.passenger h4 {
    flex-basis: 100%;
    margin-bottom: 1%;
    font-family: inherit;
}

input#coupon_code,
input#coupon_code + button {
    display: none
}

.coupon {
    flex-basis: 100%;
}

.coupon > .together {
    flex-basis: 100%;
    padding: 2%;
    border: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.coupon > .together h4 {
    flex-basis: 100%;
    display: flex;
    gap: 10px;
}

.coupon > .together input {
    flex-basis: 78%
}

.coupon > .together button {
    flex-basis: 20%;
    width: 20%;
}

.coupon svg {
    max-width: 60px;
}

.product-element-top .wd-buttons {
    display: none;
}

.product-label.onsale{
    display:none !important;
}

[data-elementor-device-mode="desktop"] .whb-general-header {
background-color: #fff;
}
    
@media (max-width: 768.98px) {
    .wd-checkout-steps {
            display: flex;
    justify-content: center;
    }
    .wd-checkout-steps li:not(.step-active),
    .wd-checkout-steps li span:after,
    .wd-checkout-steps li:after {
        display: initial !important;
    }

    .wd-checkout-steps li {
        font-size: 80% !important;
    }

    .wd-checkout-steps li:after {
        margin: 0 5px !important;
    }
}

@media (max-width: 576px) {
    .coupon > .together h4 {
        display: block;
        text-align: center;
        margin: 0;
    }
    
    .coupon h4 svg {vertical-align: top;margin-right: 5px;}
    
    .coupon > .together input {
        flex-basis: 100%;
    }
    
    .coupon > .together button {
        width: 50%;
        margin: auto;
        margin-top: 5px;
    }
}