﻿

.color-red {
    color: var(--MAIN-COLOR);
}

.content-detail-room, .content-detail-formula {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.wrap-Options-CC-Lieu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    width: 100%;
    margin-top: 56px;
}

/* Rooms - Sidebar */
.wrap-rates {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    align-self: stretch;
}

.wrap-rates-sidebar {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 40px
}

section.othersFormulas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    align-self: stretch;
}


.wrap-rates-description {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-self: stretch;
    flex-grow: 1;
}

/* Résumé de la réservation */

.warning-description div {
    font-size: 16px;
}

.wrap-booking-resume {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

section.missing-dates-warning.title-rates .resume-booking {
    border-radius: 8px;
}

.warning-description.resume-booking i {
    color: var(--color-white);
    font-size: 14px;
}

.resume-booking {
    border-radius: 8px;
    background: var(--Menu-hover, #343957);
    display: flex;
    padding: 16px;
    gap: 16px;
    align-items: center;
    align-self: stretch;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: space-between;
}

.resume-booking div {
    color: var(--Colors-BE-BLANC, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    gap: 5px;
    align-items: center;
}

.date-booking-resume a {
    color: var(--Colors-BE-BLANC, #FFF);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.date-booking-resume span {
    color: var(--Colors-BE-BLANC, #FFF);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}


.pax-booking-resume {
    color: var(--Colors-BE-BLANC, #FFF);
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.date-booking-resume {
    display: flex;
    gap: 5px;
}

.changeDate {
    display: flex;
    align-self: self-end;
    cursor: pointer;
    margin-left: auto;
}

.changeDate span {
    color: var(--Colors-BE-BLANC, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.descriptionRoom {
    font-size: 14px;
}

.warning-description.resume-booking .title {
    flex-wrap: nowrap;
}

/* MEDIA QUERIES */

@media (min-width: 1025px) and (max-width: 1400px) {

    .resume-booking div, .date-booking-resume span, .date-booking-resume strong {
        font-size: 14px;
    }

    .infos-rooms .liste-infos-room-bloc .item-infos {
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .wrap-rates-sidebar {
        justify-content: space-between;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .wrap-Options-CC-Lieu {
        gap: 40px;
    }

    .slider-rooms .bloc-room {
        height: 410px;
    }

    .resume-booking div, .date-booking-resume span, .date-booking-resume strong {
        font-size: 14px;
    }

    .infos-rooms .liste-infos-room-bloc .item-infos {
        font-size: 14px;
    }

    .wrap-Options-CC-Lieu {
        margin-top: 0;
    }

}

@media (max-width: 768px) {

    .warning-description div {
        font-size: 14px;
    }

    .warning-description.resume-booking i {
        font-size: 18px;
        color: var(--color-white);
    }

    .wrap-rates-sidebar {
        gap: 32px;
    }

    .wrap-rates-description {
        gap: 16px;
    }

    .resume-booking .changeDateForMobile {
        display: flex;
    }

    .resume-booking {
        display: flex;
        padding: 16px;
        align-items: center;
        gap: 8px;
        align-self: stretch;
        justify-content: space-between;
    }

    .resume-booking div {
        font-size: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .wrap-Options-CC-Lieu {
        gap: 32px;
        margin-top: 0;
    }

    .bloc-room .wrap-info-room {
        padding: 0 16px;
        gap: 14px;
    }

    .wrap-rates-sidebar {
        flex-direction: column;
    }

    .wrap-description .infos-rooms {
        flex-direction: column;
    }

    .content-detail-room {
        width: 100%;
        margin: 0 auto;
    }

    .rooms {
        align-items: flex-start;
        gap: 25px;
    }

    section.othersFormulas {
        gap: 40px;
    }


}