/* SLIDER BUTTONS */
.arrow-prev, .arrow-next {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 120%;
    position: absolute;
    top: 50%;
    padding: 7px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    color: #ddd;
    border-radius: 100px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.arrow-prev:hover, .arrow-next:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.arrow-prev {
    left: 15px;
}

.arrow-next {
    right: 15px;
}

.dot-pointers {
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    left: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.slider-dot {
    background: #fff;
    height: 5px;
    width: 20px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}

.slider-dot:hover,
.slider-dot-current {
    background: #ff3333;
}