@charset 'UTF-8';

/* Arrows */

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: calc(50% - 15px);

    display: block;

    width: 40px;
    height: 40px;
    padding: 0;

    cursor: pointer;

    border: none;
    border-radius: 8px;
    outline: none;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
}


.slick-prev {
    left: 20px;
    background: url(../img/left.svg) no-repeat center;
    background-size: 8px;
    background-color: #F5F5F7;
}

.slick-next {
    right: 20px;
    background: url(../img/right.svg) no-repeat center;
    background-size: 8px;
    background-color: #F5F5F7;
}

/*
.slick-prev:hover {
    background: url(../img/left_hover.png) no-repeat center;
}

.slick-next:hover {
    background: url(../img/right_hover.png) no-repeat center;
}
*/


/* Dots */

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

.slick-dots {
    position: relative;
    bottom: -30px;
    display: flex;
    margin: 0 auto;
    padding: 0;
    width: auto;
    text-align: center;

    justify-content: center;
    align-items: center;
}

.slick-dots li {
    position: relative;
    display: block;
    margin: 0 5px;
    padding: 0;
    width: 16px;
    height: 16px;
    list-style: none;
    cursor: pointer;
}

.slick-dots li.slick-active button{
    background: #fff;
    background: #6f8dad;
}

.slick-dots li button {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: inherit;
    border: 0;
    border-radius: 100%;
    background: #fff;
    border: 2px solid #6f8dad;
    font-size: 0;
    cursor: pointer;
}