/* Dots */
.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    background-color: #afafaf;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}
.slick-dots li.slick-active button {
    background-color: #393939;
}
