/* type range */
/* Базовий вигляд */
.range {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 9999px;
    background: #E7A100;
    outline: none;
    cursor: pointer;
}

/* Chrome/Safari */
.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 9999px;
    background: #FFA800;
    border: 2px solid white;
    box-shadow: 0 0 0 5px rgba(255, 168, 0, 0.25);

}

/* Firefox */
.range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 9999px;
    background: #FFA800;
    border: 2px solid white;
    box-shadow: 0 0 0 5px rgba(255, 168, 0, 0.25);
}

/* Firefox track */
.range::-moz-range-track {
    height: 4px;
    border-radius: 9999px;
    background: transparent;
    /* фон ми малюємо інлайном через background */
}

/* Disabled (якщо треба) */
.range:disabled {
    opacity: .5;
    cursor: not-allowed;
}

@media screen and (min-width: 768px) {
    .range::-webkit-slider-thumb {

        width: 30px;
        height: 30px;


    }

    /* Firefox */
    .range::-moz-range-thumb {
        width: 30px;
        height: 30px;

    }

    /* Firefox track */
    .range::-moz-range-track {
        height: 4px;
        border-radius: 9999px;
        background: transparent;
        /* фон ми малюємо інлайном через background */
    }
}

/* slider */
.mySwiper1 {
    overflow: hidden !important;
    height: 100%;
}


.btn-wrp .swiper-button-prev1,
.btn-wrp .swiper-button-next1 {
    background-color: #282828;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 42% !important;

    position: absolute;
    z-index: 10;
}

.btn-wrp .swiper-button-prev1 {
    left: 0px;
    transform: translate(-80%, 50%);
}

.btn-wrp .swiper-button-next1 {
    right: 0px;
    transform: translate(80%, 50%);
}




@media screen and (min-width:768px) {

    .mySwiper .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        border: 2px solid #5e8197;
    }

    .mySwiper .swiper-pagination-bullet-active {
        width: 40px;
        height: 16px;
    }

    .btn-wrp .swiper-button-prev1,
    .btn-wrp .swiper-button-next1 {
        background-color: #282828;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: 38% !important;

        position: absolute;
        z-index: 10;
    }




}

.borderK {
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}