.horizontalScroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.horizontalScroll::-webkit-scrollbar {
    display: none;
}

.horizScrollBarBox {
    width: 100%;
}

.horizScrollBarBox .horizScrollBarWrap {
    width: 100%;
    max-width: 1060px;
    padding: 0 30px;
    margin: 0 auto;
}

.horizScrollBarBox .horizScrollBarMain {
    width: 100%;
    overflow-x: auto;
}

.horizScrollBarBox .horizScrollBarMain::-webkit-scrollbar {
    height: 10px;
}

.horizScrollBarBox .horizScrollBarMain::-webkit-scrollbar-track {
    background: #fff;
    box-shadow: none;
    border: none;
    border-radius: 10px;
}

.horizScrollBarBox .horizScrollBarMain::-webkit-scrollbar-thumb {
    background: #1996E3;
    border-radius: 10px;
}

.horizScrollBarBox .horizScrollBarCt {
    height: 1px;
}

@media (max-width: 768px) {
    .horizScrollBarBox .horizScrollBarWrap {
        padding: 0 3.8%;
    }

    .horizScrollBarBox .horizScrollBarMain {
        pointer-events: none;
    }
}