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

.slick-dots
{
    position: absolute;
    bottom: 0;

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    margin-left: 170px; 
    padding: 0;

    list-style: none;

    text-align: center;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}
.slick-dots li
{
    width: 30px;
    height: 2px;
    margin: 0;
    padding: 0 !important;

    cursor: pointer;
    -webkit-transition: .25s;
            transition: .25s; 

    background-color: rgba(0, 0, 0, .11);
}
.slick-dots li button
{
    display: none;
}
.slick-dots li:before
{
    content: none !important;
}
.slick-dots li.slick-active
{
    background-color: black;
}
.slick-dots li:hover
{
    background-color: black;
}
