/**
 * CSS para customizar os botão prev e next do owlcarousel
*/

.custom-carousel {
    position: relative;
}

.owl-carousel {
    z-index: 0;
}

.custom-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
}

.custom-nav button {
    background-color: #000;
    color: #fff;
    border: none !important;
    padding: 5px 10px !important;
    margin: 0 !important;
    cursor: pointer !important;
    display: inline-block !important;
    position: absolute !important;
    transform: translateY(-50%) !important;
}

.custom-nav .prev {
    left: 0;
}

.custom-nav .next {
    right: 0;
}

.owl-carousel .item {
    background-color: #ccc;
    margin: 0px;
    text-align: center;
}

.owl-nav {
    display: none;
}
