
/* Arrows */
.slick-arrow { display: none !important; }

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

.slick-dots
{
    position: absolute;
    bottom: -50px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 16px;
    height: 16px;
    cursor: pointer;
    color: transparent;
    outline: none;
    background: #BBBBBB;
    border: 4px solid #F8F8F8;
    border-radius: 50%;
    transition: 0.3s;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #3BB0E1;
    opacity: 1;
    color: transparent;
}
.slick-dots li button:before
{
    font-size: 10px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    content: '•';
    text-align: center;
    color: transparent;
    transition: 0.3s;
}
.slick-dots li.slick-active button:before
{
    color: transparent;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #3BB0E1;
}
