.swiper-button-next.swiper-button-arrow,.swiper-button-prev.swiper-button-arrow {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    cursor: pointer;
    border-radius: 50%;
    background-color: #f0f2f5;
    border: 1px solid transparent;
    color: #0ea5e9;
    transition: background-color .2s ease,border-color .2s ease,color .2s ease
}

.swiper-button-next.swiper-button-arrow svg,.swiper-button-prev.swiper-button-arrow svg {
    width: 9px;
    height: 15px
}

.swiper-button-next.swiper-button-arrow:hover,.swiper-button-prev.swiper-button-arrow:hover {
    background-color: var(--soft-sand);
    border-color: #38bdf8;
    color: #38bdf8
}

.swiper-button-next.swiper-button-arrow:active,.swiper-button-prev.swiper-button-arrow:active {
    background-color: var(--intraservis-blue);
    border-color: #0284c7;
    color: #fff
}

.swiper-button-next.swiper-button-arrow.swiper-button-disabled,.swiper-button-prev.swiper-button-arrow.swiper-button-disabled {
    background-color: #f0f2f5;
    cursor: not-allowed;
    opacity: .6;
    color: #adb5bd
}