/**
 * Style of next and previous buttons
 */

.prev,
.next {
    width: 35px;
    height: 35px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    border-radius: 0 3px 3px 0;
    -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
    -webkit-user-select: none;
    background-color: white;
    opacity: .9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    border-radius: 50%;
    z-index: 999999;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.prev {
    left: 30px;
}
.next {
    right: 30px;
}
/* RESPONSIVE */
@media screen and (max-width: 900px) {
    .prev svg,
    .next svg {
        width: 25px;
        height: 25px;
    }
}
@media screen and (max-width: 750px) {
    .prev svg,
    .next svg {
        width: 20px;
        height: 20px;
    }
}
@media screen and (max-width: 480px) {
    .prev {
        left: 10px;
    }
    .next {
        right: 10px;
    }
    .prev svg,
    .next svg {
        width: 15px;
        height: 15px;
    }
}
@media screen and (max-width: 380px) {
    .prev {
        padding-right: 10px;
    }
    .next {
        padding-left: 10px;
    }
}