﻿
#modal-upsell {
    display: none;
    width: 550px;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    background: var(--color-white);
    min-height: 250px;
    max-height: 80vh;
    overflow-y: auto;
}

#modal-upsell.active {
    display: flex;
    z-index: 200;
}

.modal-upsell-booking {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 10px;
    background: #FFF;
}

.wrap-upsell-bloc-booking-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.upsell-bloc-booking-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.upsell-bloc-booking-title h2 {
    color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.close-btn-upsell i {
    font-size: 20px;
    cursor: pointer;
}

.upsell-bloc-booking-title-description p {
    color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.upsell-bloc-img {
    display: flex;
    align-self: stretch;
}

.upsell-bloc-img img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
}

.upsell-infos-room {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.upsellinfos-room-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.upsellinfos-room-title h3 {
    color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.upsell-infos-room-surface {
    display: flex;
    height: 20px;
    align-items: center;
    gap: 6px;
    color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.upsell-infos-room-dates-composition {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.upsell-infos-room-dates-composition i {
    font-size: 14px;
}

.upsell-infos-room-dates {
    display: flex;
    align-items: center;
    gap: 6px;
}

.upsell-infos-room-dates span {
    color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.upsell-infos-room-dates strong {
    color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.upsell-infos-room-composition {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-black);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.upsell-infos-room-description {
    align-self: stretch;
}

.upsell-infos-room-description p {
    color: var(--color-black);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.upsell-infos-room-discount {
    align-self: stretch;
}

.upsell-infos-room-discount p {
    color: var(--color-black);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.upsell-bloc-boutons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.upsell-bloc-boutons .modal-bloc-boutons-btn {
    display: flex;
    padding: 10px 24px;
    height: 42px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    cursor: pointer;
    background: var(--HEB-BOUTON, #3951AC);
}

.upsell-bloc-boutons .modal-bloc-boutons-btn span {
    color: var(--Colors-BE-BLANC, #FFF);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

.upsell-bloc-boutons .noThanksButton-Upsell span {
    color: var(--Colors-BE-PROMOTION, #CC1541);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}