/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.numDots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.numDots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.numDots li button {
    font-size: 12px;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    border: 0;
    outline: none;
    background: rgba(172, 172, 172, 0.5);
    color: #ffffff;
    border-radius: 50%;
}

.numDots li button:hover,
.numDots li button:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 1);
    color: #333;
}

.numDots li.slick-active button {
    color: #ffffff;
    background-color: #333;
}

@media only screen and (max-width: 660px) {
    .slick-dotted.slick-slider {
        margin-bottom: 0;
    }

    button.slick-prev,
    button.slick-next {
        display: none !important;
    }

    .numDots {
        display: none !important;
    }
}