.owl-prev,
.owl-next {
    width: 45px;
    height: 45px;
    margin: 10px;
    background-color: #ffffff !important;
    color: rgb(0, 0, 0) !important;
    border-radius: 5px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer !important;

    /* Display none temporal */
    /* display: none;  */
}

.owl-next {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -30px;
    top: 90px;
}

.owl-prev {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -30px;
    top: 90px;
}

/* Media queries para tablets */
@media (max-width: 1000px) {
    .owl-next {
        right: -25px;
    }
    .owl-prev {
        left: -25px;
    }
}

@media (max-width: 700px) {
    .owl-next {
        right: -15px;
    }
    .owl-prev {
        left: -15px;
    }
}

@media (max-width: 350px) {
    .owl-next {
        width: 35px;
        height: 35px;
        right: -15px;
        top: 95px;
    }
    .owl-prev {
        width: 35px;
        height: 35px;
        left: -15px;
        top: 95px;
    }
}

.owl-next > span,
.owl-prev > span {
    width: 100%;
    height: 100%;
    font-size: 30px;
    position: relative;
    top: -4px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel {
    display: none !important;
}
.no-js .owl-carousel {
    display: block !important;
    margin-bottom: 40px !important;
}
.owl-carousel.owl-loaded {
    display: block !important;
    margin-bottom: 40px !important;
}
