.slider {
    touch-action: pan-y;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}

.slider, .slider * {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.dots {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.dots li {
    display: inline-block;
    padding: 0;
    position: relative;
    margin: 0 5px;
}
.dots li button {
    border: 1px solid #2d2d2b;
    display: inline-block;
    margin: 2px;
    color: transparent;
    background-color: transparent;
    overflow: hidden;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    font-size: 0;
    padding: 1px;
    position: relative;
    cursor: pointer;
}

.dots :global li.slick-active button:after {
    content: ' ';
    display: inline-block;
    border-radius: 100%;
    width: 6px;
    height: 6px;
    position: absolute;
    background-color: #2d2d2b;
    top: 1px;
    left: 1px;
}

.dots.light li button {
    border-color: #fff;
}

.dots.light :global li.slick-active button:after {
    background-color: #fff;
}