.custom-nav{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.custom-nav-btn{
    position: relative;
    overflow: hidden;
    display: block;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: #fed700;
    border-radius: 50%;
}
.swiper-button-disabled{
    opacity: 0.3;
}
.custom-nav-btn:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.custom-nav-btn_prev:after{
    background: url("../images/arrow-left.svg") no-repeat center, #fed700;
}
.custom-nav-btn_next:after{
    background: url("../images/arrow-right.svg") no-repeat center, #fed700;
}

.custom-dots{
    /*width: 100%;*/
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*gap: 15px;*/

    width: 100%;
    display: flex;
    gap: 15px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
    -ms-overflow-style: none;

    scroll-behavior: smooth;
}
.custom-dots::-webkit-scrollbar{
    display: none;
}

.custom-dots .swiper-dot{
    flex-shrink: 0;
}

.custom-dots .swiper-dot{
    position: relative;
    min-width: 62px;
    height: 64px;
    background: #e9e9e9;
    border-radius: 50px;
    counter-increment: day;
    padding: 0 25px;
    transition: 0s;
}
.custom-dots .swiper-dot:before{
    content: counter(day);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: none;
    color: #4F4F4F;
}
.custom-dots .swiper-dot.active{
    background: #fed700;
    color: #000;
    padding: 0 40px;
}
.custom-dots .swiper-dot.active:before{
    content: 'Шаг 'counter(day);
    color: #000;
}
.custom-dots-default{
    display: flex;
    align-items: center;
    gap: 10px;
}
.custom-dots-default .swiper-dot{
    width: 16px;
    height: 16px;
    background: var(--gray, #f3f3f3);
    border-radius: 2px;
}
.custom-dots-default .swiper-dot.active{
    background: var(--yellow,#fed700);
}
@media (max-width: 991px) {
    .custom-nav,
    .custom-dots{
        gap: 10px;
    }
    .custom-dots .swiper-dot:before{
        font-size: 18px;
    }
}
@media (max-width: 767px) {

    .custom-dots .swiper-dot{
        min-width: unset;
    }
}
@media (max-width: 575px) {
    .custom-nav-btn{
        width: 50px;
        height: 50px;
    }
    .custom-nav-btn:after{
        background-size: 15px;
    }
    .custom-dots{
        gap: 8px;
    }
    .custom-dots .swiper-dot{
        height: 50px;
        padding: 0 19px;
    }
    .custom-dots-default{
        gap: 8px;
    }
    .custom-dots-default .swiper-dot{
        width: 12px;
        height: 12px;
    }

    .custom-dots .swiper-dot.active{
        padding: 0 24px;
    }
}
