.cs-sos-01-slider-viewport-wrapper {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.swiper {
    overflow: visible;
}

.swiper-slide {
    width: 400px;
}

.cs-sos-01-controls {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 40px;
    padding: 0 40px;
}

.cs-sos-01-controls:has(> :nth-child(2)) {
    justify-content: space-between;
}

.cs-sos-01-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cs-sos-01-nav .cs-sos-01-button-prev,
.cs-sos-01-nav .cs-sos-01-button-next {
    position: static;
    margin: 0;
    width: 40px;
    height: 40px;
    background-color: #f5f5f7;
    border-radius: 50%;
}

.cs-sos-01-nav .cs-sos-01-button-prev::after,
.cs-sos-01-nav .cs-sos-01-button-next::after {
    font-size: 12px;
    color: #1d1d1f;
    font-weight: 700;
}

.cs-sos-01-pagination {
    display: flex;
    justify-content: center;
    position: unset;
}

.cs-sos-01-button-prev {
    background: url(/site/component/slider-01/images/icon-swiper-button-gray.svg) no-repeat;
}

.cs-sos-01-button-next {
    background: url(/site/component/slider-01/images/icon-swiper-button-gray.svg) no-repeat;
    transform: rotate(180deg);
}

.cs-gray .cs-sos-01-button-prev {
    background: url(/site/component/slider-01/images/icon-swiper-button-white.svg) no-repeat;
}

.cs-gray .cs-sos-01-button-next {
    background: url(/site/component/slider-01/images/icon-swiper-button-white.svg) no-repeat;
    transform: rotate(180deg);
}

.cs-sos-01-button {
    cursor: pointer;
}

.cs-sos-01-button.swiper-button-disabled {
    opacity: .35;
    cursor: unset;
}

.cs-sos-01-slide-content {
    min-height: 500px;
}

.swiper-pagination-bullet {
    background-color: #767676;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #1D1D1F;
}

/* X-LARGE SCREENS (CASCADE TO LOWER SCREEN) */
@media only screen and (min-width: 1442px) {
    
}
 
/* LARGE SCREENS (SPECIFIC) */
@media only screen and (min-width: 1069px) and (max-width:1441px) {
    
}
 
/* MEDIUM SCREENS (CASCADE TO LOWER SCREENS) */
@media only screen and (max-width: 1068px) {
    
}
 
/* MEDIUM SCREENS (SPECIFIC) */
@media only screen and (min-width: 736px) and (max-width:1068px) {
 
}
 
/* SMALL SCREENS */
@media only screen and (max-width: 735px) {
    .cs-sos-01-slide {
        /* width: calc(100vw - 80px) !important; */
    }

    .cs-sos-01-slide-content {
        min-height: 650px;
    }
}
 
/* EXTRA SMALL SCREENS < 400px */
@media only screen and (max-width: 400px) {
 
}