@charset 'UTF-8';

/* Arrows */

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

    position: absolute;
    top: 50%;

    display: block;

    width: 30px;
    height: 70px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 999;
    transition: 0.3s;
}


.slick-prev {
    border-right: 3px solid #ff7400;
    left: 0px;
    background: url(../img/left.png) no-repeat center left;
    background-size: 17px;
}

.slick-next {
    border-left: 3px solid #ff7400;
    right: 0px;
    background: url(../img/right.png) no-repeat center right;
    background-size: 17px;
}

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

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


/* Dots */

.slick-dots {
    position: relative;
    bottom: 10px;
    display: flex;
    margin: 20px auto 0;
    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: 12px;
    height: 12px;
    list-style: none;
    cursor: pointer;
}

.slick-dots li.slick-active button{
    background: #ff7400;
}

.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: 1px solid #ff7400;
    font-size: 0;
    cursor: pointer;
}


@media only screen and (max-width: 1370px) {
    .slick-prev {
        left: 0px;
    }

    .slick-next {
        right: 0px;
    }
}
