.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #1e00f4;
}

input:focus + .slider {
    box-shadow: 0 0 1px #1e00f4;
}

input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 28px;
}

.slider.round:before {
    border-radius: 50%;
}



/* Scroll */

.list {
    margin-top: 10px;
    display: flex;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    margin-left: 15px;
    margin-right: 15px !important;
    padding-inline-start: 0px !important;
}

.scroll-snap-type {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.list-item {
    scroll-snap-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.paddle {
    position: absolute;
    top: 140px;
    bottom: 0;
    border: none;
    padding: 0;
    max-height: 50px;
    outline: none;
    background-color: transparent;
    width: 25px;
}
/*
@media(min-width: 400px){
    .paddle {
        top: 270px;
    }

}

@media(min-width: 600px){
    .paddle {
        top: 320px;
    }

}*/

.left-paddle {
    left: 10px;
}

.right-paddle {
    right: 10px;
}

.grabbing{
    cursor: grabbing;
}

.item-overlay{
    position: absolute;
    right: 0;
    left: 28px;
    top: 40px;
    bottom: 0;
    color:#333;
}

.mainPack{
    width: 240px;
    float: left;
    background-color: #f2f2f2;
    border-radius: 6px;
    margin: 0px 10px;
}

.mainPack{
    padding: 0px 20px 10px 20px;
}
.list {
    margin-top: 0px; 
    margin-left: 22px;
    margin-right: 22px !important;
}
.paddles{
    display: block;
}


