@charset 'UTF-8';

/* Arrows */
.slick-prev,
.slick-next
{
    display: none !important;
}

/* Dots */
.slick-dotted.slick-slider{
    margin-bottom: 30px;
}
@media screen and (max-width: 959px) {
    .slick-dotted.slick-slider{
        margin-bottom: 10vw;
    }
}

.slick-dots
{
    position: absolute;
    bottom: -3rem; left: 0; right: 0;

    display: inline-block;

    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
@media screen and (max-width: 959px) {
    .slick-dots{
        bottom: -8vw;
        margin: 0 auto;
    }
}
.slick-dots li
{
    position: relative;
    display: inline-block;

    padding: 0;

    cursor: pointer;
    }
    .slick-dots li:nth-of-type(n+2){
        margin: 0 0 0 2%;
    }
@media screen and (max-width: 959px) {
    .slick-dots li:nth-of-type(n+2){
        margin: 0 0 0 4vw;
    }
}

.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 8px;
    height: 8px;
    padding: 0.4rem 0.8rem;

    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: 0.8;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 8px;

    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    margin: auto;

    width: 7px;
    height: 7px;
    border-radius: 50%;

    content: '';
    background: #000000;

    /*content: '•';*/
    text-align: center;

    /*opacity: .8;*/
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    top: -1px;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border: 2px solid #000000;
    /*box-sizing: border-box;*/
}
@media screen and (max-width: 959px) {
    .slick-dots li button:before{
        width: 6px;
        height: 6px;
    }

    .slick-dots li.slick-active button:before{
        width: 3px;
        height: 3px;
    }
}
