﻿


.slider-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    transition: all .5s ease-in-out;
}


.slider::-webkit-scrollbar {
    display: none
}

.column {
    width: 100%;
    padding: 10px;
}


.thumbnail {
    object-fit: cover;
    max-width: 180px;
    max-height: 100px;
    cursor: pointer;
    opacity: 0.5;
    margin: 5px;
    border: 2px solid black;
}

    .thumbnail:hover {
        opacity: 1;
    }

.active {
    opacity: 1;
}

.slide-wrapper {
    width: 100%;
    display: flex;
    min-height: 100px;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out;
}

.slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    transition: all .5s ease-in-out
}



/*
@media (max-width: 560px) {
    .curstor_slider {
        display: none
    }
}*/


@media (max-width: 993px) {

    .slider::-webkit-scrollbar {
        width: 8px;
        max-height: 7px;
        display: block
    }

    .slider::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    }

    .slider::-webkit-scrollbar-thumb {
        background-color: #bcbcbc;
        border-radius: 100px;
    }

        .slider::-webkit-scrollbar-thumb:hover {
            background-color: #a9a9a9;
        }
}



.arrow {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: .3s;
    position: absolute;
    z-index: 10000000000000;
    top: 127px;
    opacity: .5;
}

.arrow_left {
    left: 0;
}

.arrow_right {
    right: 0;
}

.arrow:hover {
    opacity: 1;

}

@media (max-width: 991px) {
    .arrow {
       display:none
    }
}