@charset 'UTF-8';

/* Arrows */
.slick-prev,
.slick-next {
    border: none;
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background: none;
    z-index: 10;
}

.slick-prev {
    left: -5px;
}

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

.slick-prev:before,
.slick-next:before {
    width: 60px;
    height: 60px;
    padding: 0;
    cursor: pointer;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #D90000;
    border: 2px solid #D90000;
    border-radius: 100px;
    font-weight: normal;
    font-family: sans-serif;
    font-weight: bold;
}

.slick-next:before {
    content: '>';
}

.slick-prev:before {
    content: '<';
}

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

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #333;
    border-radius: 100px;
}

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

.slick-dots li button {
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover {
    background: none;
}

@media screen and (max-width: 480px) {
    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }

    .slick-prev:before,
    .slick-next:before {
        width: 50px;
        height: 50px;
    }

    .slick-dots {
        bottom: -70px;
    }
}