@charset 'UTF-8';

/* Arrows */

.slick-prev, .slick-next {
    display: block;
    width: 30px;
    height: 60px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    padding: 0;
    border: none;
    background: #1b93dc no-repeat center;
    background-size: 9px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    position: absolute;
    top: 50%;
    outline: none;
    cursor: pointer;
    z-index: 2;
}

.slick-prev:hover, .slick-next:hover {
    background-color: #d0d0d0;
}

.slick-prev:focus, .slick-next:focus {
    color: transparent;
    outline: none;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    color: #ff0202;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -15px;
    background-image: url(../img/ic_arrow-prev.svg);
}

.slick-next {
    right: -15px;
    background-image: url(../img/ic_arrow-next.svg);
}

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

.slick-dots {
    position: absolute;
    bottom: -40px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 4px;
    margin-right: 15px;
    background-color: #d9d9d9;
    padding: 0;
    cursor: pointer;
}

.slick-dots li:last-child {
    margin-right: 0;
}

.slick-dots li.slick-active {
    background-color: #1b93dc;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}
