.slick-slider button.slick-prev,
.slick-slider button.slick-next {
    position: relative;
    z-index: 1;
    margin: 0;
    display: inline-block;
    font-size: 0;
    padding: 0;
    height: 56px;
    width: 56px;
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    border-color: var(--flash);
    background-color: var(--flash);
    cursor: pointer;
    transition: ease all 0.3s;
}

.slick-slider button.slick-prev:focus,
.slick-slider button.slick-next:focus {
    outline: none;
}

.slick-slider button.slick-prev.slick-disabled,
.slick-slider button.slick-next.slick-disabled {
    background-color: lightgrey;
    border-color: lightgrey;
    cursor: not-allowed;
}

.slick-slider button.slick-prev {
    left: -70px;
    right: unset;
    background-image: url('assets/arrow.svg');
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.slick-slider button.slick-next {
    left: unset;
    right: -70px;
    background-image: url('assets/arrow.svg');
}






/*** Slick Dots ***/
ul.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10px;
}

ul.slick-dots li {
    list-style: none;
}

ul.slick-dots li button {
    transition: ease all 0.7s;
    cursor: pointer;
    font-size: 0;
    outline: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    margin-left: 6px;
    margin-right: 6px;
    height: 12px;
    width: 12px;
    background-color: var(--dark-grey);
    opacity: 0.2;
}

ul.slick-dots li.slick-active button {
    opacity: 1;
    background-color: #2E2E2E;
}





@media(max-width:991.98px) {
    /*** Recommended Size to Resize Slick Arrows ***/
}