.owl-prev, .owl-next{
    width: 100px;
    height: 50px;
    margin: 10px;
    background-color: #263238 !important;
    color: rgb(255, 255, 255) !important;
    border-radius: 8px;
    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(.25, .8, .25, 1);
    cursor: pointer !important;

    svg{
        fill: white;
    }
}

.owl-next{
    position: absolute;
    right: 10px;
}

.owl-prev{
    position: absolute;
    right: 130px;
}

@media screen and (max-width: 800px) {
    .owl-next{
        display: none;
    }
    
    .owl-prev{
        display: none;
    }
}


.owl-next:hover, .owl-prev:hover{
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

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

