.swiperRoomInfo {
    width: 65%;
    overflow: hidden;
    user-select: none;
    border-radius: 5px;
    height: 600px;

    .swiper-slide img {
        object-position: center;
        border-radius: 5px;
    }

    .swiper-button-next {
        color: #fff;
    }

    .fslightbox-swiper {
        z-index: 3;
    }

    .swiper-button-prev {
        color: #fff;
    }

    .swiper-pagination-bullet {
        background: #fff;
        opacity: 0.4;
        width: 10px;
        height: 10px;
        border-radius: 0px;
    }

    .swiper-pagination-bullet-active {
        background: #fff;
        opacity: 1;
    }

    .swiper-pagination {
        position: absolute;
        top: 1em;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .swipper-fullscreen {
        position: absolute;
        right: 1em;
        bottom: 1em;
        z-index: 1;
        width: 1.5em;
        cursor: pointer;
    }
}

.swiper-slide {
    overflow: hidden;
}

.roominfo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    .roominfo-maininfo {
        color: var(--text-second-color);
        padding: 0em 0.5em;

        h3 {
            font-size: 2.2em;
            text-align: center;
        }

        .dull-line {
            height: 1px;
            background-color: rgba(0, 0, 0, 0.325);
            width: 70%;
            margin: auto;
        }

        p,
        li {
            padding-top: 1em;
            font-size: 1.3em;
            
        }

        li {
            margin-left: 1em;
        }
        

        .roominfo-price {
            padding-top: 2em;

            span {
                font-size: 2.2em;
                color: rgb(28, 104, 45);
            }
        }

        .roominfo-convenience-grid {
            padding-top: 2em;
            display: grid;
            grid-template-columns: repeat(3, 1fr);

            .roominfo-convenience-el {
                margin: 0.2em;
            }

            .flex-row {
                img {
                    width: 2.5em;
                }
            }
        }

    }
}

@media (max-width: 800px) {
    .roominfo-grid {
        display: flex;
        flex-direction: column;
    }

    .swiperRoomInfo {
        width: 100%;
        height: auto;
        border-radius: 0px !important;
    }

    .swiper-slide img {
        border-radius: 0px !important;
    }

    .roominfo-grid .roominfo-convenience-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}