/* =========================
   DOTS
========================= */
.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.slick-dots li {
    margin: 0 4px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    background: #eee;
    border: none;
    border-radius: 50%;
    text-indent: -9999px;
}

.slick-dots .slick-active button {
    width: 20px;
    height: 10px;
    border-radius: 10px;
    background: var(--white);
    border: 3px solid var(--secondary);
}

/* =========================
   SLIDER CORE
========================= */
.slick-slider {
    position: relative;
}

.slick-slide {
    margin: 0 12px;
}

.slick-slide img {
    display: block;
}

/* =========================
   ARROWS
========================= */
button.slick-prev,
button.slick-next {
    position: absolute;
    top: -15%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    background-color: #1a1a1a;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
}

/* REMOVE DEFAULT ICONS */
.slick-prev::before,
.slick-next::before {
    content: none !important;
}

/* LEFT */
button.slick-prev {
    right: 100px;
    left: auto;
    background-image: url("/img/lefts-arrow.png");
}

/* RIGHT */
button.slick-next {
    right: 30px;
    background-image: url("/img/rights-arrow.png");
}

/* HOVER */
button.slick-prev:hover,
button.slick-next:hover {
    background-color: #1a1a1a;
}
