<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.photo-carousel__pagination {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 20px -40px 0;
}
.swiper-container-horizontal&gt;.photo-carousel__pagination {
    width: calc(100% + 80px);

}
.photo-carousel__pagination .swiper-pagination-bullet {
    position: relative;
    width: 20px;
    height: 20px;
    margin: 10px !important;
    opacity: 0.5;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s;
}

.photo-carousel__pagination .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 2px solid #572F8E;
    border-radius: 50%;
    transition: all 0.3s;
    transform: translate(-50%, -50%);
}

.photo-carousel__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    border-color: #572F8E;
}

.photo-carousel__pagination .swiper-pagination-bullet-active::before {
    width: 12px;
    height: 12px;
    background-color: #572F8E;
    border-color: transparent;
}

.photo-carousel__container {
    max-width: 985px;
    margin: auto;
    padding: 0 40px;
}

.photo-carousel__item {
    display: block;
    position: relative;
    height: 0;
    padding-top: 62%;
    overflow: hidden;
}

.photo-carousel__img {
    position: absolute;
    top: 0;
    left: 0;
}

.photo-carousel {
    margin-bottom: 40px;
	overflow:hidden;
}

@media screen and (max-width: 868px) {

    .photo-carousel__container {
        max-width: 395px;
    }

}</pre></body></html>