﻿.advantages-booking-boxes {
    width: 98%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px auto 10px;
    justify-content: space-evenly;
    max-width: 875px;
}
#advantagesBookingBoxes:has(>.landing-page) {
    min-height: 90px;
}
.change-or-cancel-box, .low-deposit-box, .tp-rated-box, .magic-stars-box, .abta-atol-box {
    cursor: pointer;
}
.landing-page {
    width: 270px;
    height: 100%;
    font-size: 14px;
    color: var(--blue);
    background: var(--background-color);
    border: 3px solid var(--blue);
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    text-align: center;
}
    .landing-page img {
        padding: 15% 0 0 0;
    }
    .landing-page span {
        padding: 3px;
        min-height: 40px;
        text-align: center;
        align-content: center;
        width: 100%;
        font-size: 12px;
        line-height: 13px;
    }
.change-or-cancel-box-details, .low-deposit-box-details, .experience-box-details, .tp-rated-box-details, .magic-stars-box-details, .abta-atol-box-details {
    display: none;
    font-size: 13px;
    line-height: 1.3;
    border: 1px solid var(--orange);
    background-color: var(--orange);
    color: var(--background-color);
    padding: 7px;
    border-radius: 7px;
    text-align: center;
    box-shadow: 0 5px 9px 0 rgba(0, 0, 0, .6);
    z-index: 1001;
}

/* DESKTOP */
@media (min-width: 1024px) {
}
/* END DESKTOP */
/* TABLET */
@media (min-width: 769px) and (max-width: 1023px) {
}
/* END TABLET */

/* MOBILE */
@media (max-width: 768px) {
    #advantagesBookingBoxes:has(>.landing-page) {
        width: 95%;
        min-height: 80px;
        margin: 10px auto 10px;
    }
    .landing-page {
        font-size: 9px;
    }
        .landing-page img {
            padding: 15% 0 0 0;
            width: 25px;
        }
        .landing-page span {
            padding: 12px 2px 2px 2px;
            font-size: 9px;
            min-height: 47px;
            line-height: 11px;
            text-align: center;
            align-content: center;
        }
}