.swiper-wrapper {
    transition-timing-function: linear !important;
}
.swiper-slide {
    width: 100% !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}
.swiper-button-prev,
.swiper-button-next {
    background-image: url('/images/icons/icon-swiper-arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    --swiper-navigation-size: 1.5rem;
    --swiper-navigation-sides-offset: .8rem;
    width: var(--swiper-navigation-size);
}

.swiper-button-prev {
    transform: rotate(180deg);
    background-position: center left;
}
.swiper-pagination-bullet {
    --swiper-pagination-bullet-width: .3rem;
    --swiper-pagination-bullet-height: .3rem;
    background-color: #fff;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: #fff;
    --swiper-pagination-bullet-width: .4rem;
    --swiper-pagination-bullet-height: .4rem;
}

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    --swiper-pagination-bottom: .8rem;
}


/* #region - single apartment slider */
.swiper-apartment-wrapper {
    position: relative;
    overflow: hidden;
    max-width: unset;
    padding: 0;
}
.swiper-apartment {
    width: 100%;
    height: 100%;
}
.swiper-apartment img {
    max-height: 50vh;
}

.swiper-apartment .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto !important;
    position: relative;
}
.swiper-slide .fullscreen {
    position: absolute;
    bottom: .8rem;
    right: .8rem;
}
.swiper-apartment .swiper-button-prev, .swiper-apartment .swiper-button-next{
    background-image: url('/images/icons/icon-arrow-light-filled.svg');
}
/* Modal Styles */
.fullscreen-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 99;
}
.fullscreen-modal.active {
    display: flex;
}

.fullscreen-modal-content {
    position: relative;
    /*height: 80%;*/
    /*max-height: 750px;*/
    /*width: fit-content;*/
    width: 80%;
    max-width: 1200px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}
.fullscreen-modal .swiper-slide {
    display: flex;
    justify-content: center;
}
.fullscreen-modal img {
    height: 100%;
    width: auto;
    max-height: 98vh;
}

.fullscreen-modal .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 2.5rem;
    font-weight: 200;
    cursor: pointer;
    z-index: 100;
    display: flex;
}
/* #endregion - single apartment slider */