@charset 'UTF-8';

.slick-prev{background: url(/img/arrow_left_carousel.svg) no-repeat center;}
.slick-next{background: url(/img/arrow_right_carousel.svg) no-repeat center;}
.slick-prev:hover
{
    background: url(/img/arrow_left_carousel_hover.svg) no-repeat center;
}
.slick-next:hover
{
    background: url(/img/arrow_right_carousel_hover.svg) no-repeat center;
}
.slick-arrow:focus{outline: none;}
.slick-prev,
.slick-next
{
    position: absolute;
    z-index: 4;
    top: -35px;
    width: 26px;
    height: 20px;
    padding: 0;
    border-radius: 30px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    border: none;
    cursor: pointer;
    outline: none;
}

.slick-prev
{
    left: auto;
    right: 50px;
}

.slick-next
{
    right: 0px;
}

.slick-dots
{
    position: absolute;
    bottom: -73px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    margin-right: 37px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    width: 13px;
    line-height: 0;
    border-radius: 7px;
    height: 13px;
    cursor: pointer;
    vertical-align: top;
    border: 0;
    outline: none;
    background-color: #ccd3d2;
}

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

.slick-dots li button:hover{background-color: #ff7a00;}

@media screen and (max-width: 1170px) {
    .slick-prev,
    .slick-next {
        top: -20px;
    }
}