﻿

.wrap-rooms-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.wrap-rooms-title {
    display: flex;
    align-self: stretch;
    flex-direction: column;
}

.title-rooms {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    width: 100%;
}

.title-rooms h2 {
    color: var(--color-black);
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.title-rooms i, .top-rooms i {
    font-size: 26px;
    font-weight: 600;
    display: flex;
}

.title-rooms i,
.top-rooms i,
.formula-group-item-title i {
    transition: transform 0.3s ease;
}

.rotate {
    transform: rotate(180deg);
}

.list-rooms {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 40px;
    align-self: stretch;
    flex-wrap: wrap;
}

.no-offer-available {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    align-self: stretch;
}

.no-offer-available-description {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 10px;
    background: var(--MAIN-COLOR-LIGHT);
}

.no-offer-available-description img {
    width:25px;
    height: 25px;
    object-fit: cover;
}

.no-offer-available-description .title {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    flex: 1 0 0;
    color: var(--color-black);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.no-offer-available-description .title i {
    color: var(--MAIN-COLOR);
}
    
.no-offer-available-description .description {
    color: var(--color-black);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
}

@media (min-width: 769px) and (max-width: 1024px) {

    .title-rooms i {
        font-size: 22px;
    }

}

@media (max-width: 768px) {

    .wrap-Options-CC-Lieu .rooms {
        gap: 16px;
    }

    .title-rooms i, .top-rooms i {
        font-size: 20px;
    }

    .list-rooms {
        width: 100%;
        gap: 32px;
    }

    .no-offer-available-description .description {
        font-size: 14px;
    }
}

@media (max-width: 480px ) {

    .rooms.tel {
        display: block;
    }

    .rooms {
        display: none;
    }

    .rooms-all {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100% !important;
    }

    .rooms-left {
        width: 100% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        padding-top: 0 !important;
    }
}





