/*Slick Arrows*/
.slick-arrow {
    position: absolute;
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    padding: 0;
    z-index: 10;
    margin: 0px;
    border-width: 0px;
    background: unset;
    font-size: 0px;
}
.slick-arrow:after {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 6px);
    width: 10px;
    height: 10px;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
}
.slick-prev {
    left: 10px;
    transform: rotate(135deg);
}
.slick-next {
    right: 10px;
    transform: rotate(-45deg);
}

/*Slick Dots*/
.slick-dots {
    position: absolute;
    bottom: 20px;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    padding: 0px;
    margin: 0px;
}
.slick-dots li {
    margin: 0 5px;
    width: 12px;
    height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-dots button {
    width: 100%;
    height: 100%;
    padding: 0px;
    border-width: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: unset;
    font-size: 0px;
    opacity: 0.6;
}
.slick-dots button:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.slick-dots li.slick-active button {
    opacity: 1;
}

