/* Dots */

.slick-dots {
    margin-bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 8px;
    content: "";
    border-radius: 0px;
    text-align: center;
    opacity: 1;
    background-color: #ccc;
}

.slick-dots li.slick-active button:before {
    background-color: #0053a2;
}

@media(max-width:768px) {
    .slick-dots {
        bottom: 5px;
    }
}