body {
    font-family: 'Inter', sans-serif;
}

.rooms-outer-container {
    padding: 0 5%;
    margin: 1% 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}

.rooms-buttons-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

#language {
    border: none;
    background-color: transparent;
    color: var(--main-color);
}

#language:focus-visible {
    outline: none;
}

.button-date {
    box-sizing: border-box;
    width: 200px;
    background: var(--main-color);
    color: var(--main-light-color);
}

.rooms-inner-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 0;
    gap: 40px;
}

.room-wrapper {
    height: 200px;
    width: 100%;
    max-width: 1000px;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
    border-radius: 12px;
}

.room-image img {
    width: 200px;
    height: 200px;
    border-radius: 12px 0 0 12px;
}

.room-title-wrapper {
    justify-content: space-between;
}

.room-description-wrapper {
    width: 100%;
    justify-content: space-between;
    padding: 24px 24px;
}

.room-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #101828;
}

.room-date {
    font-weight: 300;
    font-size: 14px;
    line-height: 28px;
    color: #101828;
    white-space: nowrap;
}

.room-description {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 30px 12px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: #101828;
    overflow-wrap: break-word;
    max-width: 728px;
}

.room-description-list--left {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    height: 50%;
}

.room-description-list--right {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    height: 50%;
}

.room-buttons-wrapper {
    justify-content: space-between;
}

.room-price {
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
}

.room-area {
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
}

.room-button {
    width: 38%;
    background: var(--main-color);
    color: var(--main-light-color);
}

.menu-aside-content {
    display: flex;
    flex: 1 0 auto;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.room-aside-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-image: url(../img/coliving/aside-image.png);
}

.room-aside-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
}

.room-aside-title {
    color: var(--gray-900, #101828);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.menu-aside-description {
    color: var(--gray-900, #101828);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.room-aside-description--location {
    color: var(--gray-900, #101828);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.room-aside-description--location a {
    font-size: 14px;
    color: var(--gray-900, #101828);
}

.room-aside-description-list-container {}

.room-aside-description-list {
    color: var(--gray-900, #101828);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    list-style-position: inside;
}

.room-aside-description-additonal {
    color: var(--gray-900, #101828);
    font-style: italic;
    font-weight: 300;
    line-height: normal;
}

.menu-footer {
    padding: 0px 16px 16px 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.social-media--buttons {
    justify-content: space-between;
    gap: 5px;
}

.instagram-button,
.facebook-button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: var(--main-light-color);
    border: 1px solid var(--second-color);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
}

.button-order {
    padding: 0 3px;
    text-wrap: nowrap;
}

.button-order>svg {
    padding: 0;
}


/* MODAL */

.modal-calendar-wrapper {
    display: none;
}

.calendar-container {
    background-color: var(--main-light-color);
    box-sizing: border-box;
    width: 400px;
    border-radius: 12px;
    padding: 24px;
    height: auto;
}

.calendar-header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 0 24px;

}

.calendar-content-container {
    padding: 20px;

}

.calendar-buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #f1f1f2;
}

.calendar-button--reset,
.calendar-button--apply {
    cursor: pointer;
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
}

.calendar-button--reset {
    background-color: var(--main-light-color);
    color: var(--gray-900, #101828);
    border: 1px solid var(--gray-900, #d0d5dd);
}

.calendar-button--apply {
    background-color: var(--main-color);
    color: var(--main-light-color);
    border: 1px solid var(--second-color);
}

.close-modal-calendar {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.not-found {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: left;
    border: unset;
    box-shadow: unset;
}

.not-found-title {
    color: var(--text-text, #101828);
    /* H2 36sb */
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.admin-link {
    color: var(--main-color);
}

.not-found-description {
    color: var(--text-text, #101828);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.show {
    display: flex !important;
}

.register-on-room.unselect {
    background-color: var(--main-reserved-color);
    cursor: default;
}

.hide {display: none !important;}
@media (max-width: 1240px) {
    .room-wrapper {
        height: 230px;
    }

    .room-image img {
        width: 230px;
        height: 230px;
    }

    .room-description-list li {
        width: 50%;
    }
}

@media (max-width: 1140px) {
    .room-description {
        padding: 12px 0px 12px 0;
    }
}

@media screen and (max-width: 768px) {
    .rooms-buttons-wrapper {
        width: 100%;
        max-width: 360px;
    }

    .room-wrapper {
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        height: 440px;
        width: 100%;
        max-width: 360px;
        border-radius: 12px;
    }

    .room-image {
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 200px;
    }

    .room-image img {
        width: 100%;
        height: auto;
        border-radius: 10px 10px 0 0;
    }

    .room-description-wrapper {
        box-sizing: border-box;
        width: 100%;
        justify-content: space-between;
        padding: 0 24px 24px 24px;
    }

    .room-title-wrapper {}

    .room-title {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
    }

    .room-date {
        font-weight: 300;
        font-size: 14px;
        line-height: 28px;
        white-space: nowrap;
    }

    .room-description {
        padding: 12px 0px 12px 12px;
    }

    .room-description-list--left {
        padding: 0;
        width: 45%;
    }

    .room-description-list--right {
        padding: 0;
        width: 50%;
    }

    .room-buttons-wrapper {
        justify-content: space-between;
    }

    .room-price {
        font-size: 14px;
        font-weight: 600;
    }

    .room-area {
        font-size: 14px;
        font-weight: 600;
    }

    .room-button {
        width: 40%;
        font-weight: 500;

    }

    .not-found {
        height: auto;
    }
}