@charset 'UTF-8';
/* Arrows */
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top:50%;
    display: none;
    width: 24px;
    height: 42px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    transform: translateY(-50%);
    z-index:999;
}
.slick-prev.slick-disabled, .slick-next.slick-disabled {
    display: none;
}

/* Dots */
.slick-dots {
    position: absolute;
    bottom: 32px;
    display: none;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    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;
    border-radius:50%;
    border:1px solid #50605E;
    background: rgba(255,255,255,.7);
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 16px;
    height: 16px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li.slick-active {
    background: rgba(255,255,255,1);
}

@media only screen and (max-width:810px) {
    .slick-dots {
        bottom: 16px;
    }
    .slick-dots li {
        width: 12px;
        height: 12px;
        margin: 0 4px;
    }
    .slick-dots li button {
        width: 12px;
        height: 12px;
    }
}
@media only screen and (max-width:600px) {
    .slick-dots {
        bottom: 10px;
    }
    .slick-dots li {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
    .slick-dots li button {
        width: 8px;
        height: 8px;
    }
}