.slick-dots {
    display: block;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 2px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    content: "";
    text-align: center;
    background-color: #cbd5e1;
    border-radius: 50%;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: #ff0005;
}

@media(max-width:768px) {
    .slick-next,
    .slick-prev {
        display: none !important;
    }
}