html,body{
    overflow-x: hidden;
}


#prev-btn-container {
    cursor: grab;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    width: fit-content;
    background-color: transparent;
}



.slider {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    white-space: nowrap;
    transition: all 0.2s;
    transform: scale(0.98);
    will-change: transform;
    user-select: none;
    cursor: pointer;
}

.slider.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    transform: scale(1);
}



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

    .scroll_wrap {
        width: 90%;
    }

    .slider {
        width: auto;
    }

}