/*body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
}*/

.owl-carousel {
    position: relative;
    left: 20%;
    width: 70%;
}

@media screen and (min-width: 550px) {
    .owl-carousel {
        left: 12%;
        width: 80%;
    }
}

.owl-carousel .owl-stage {
    height: 80px;
}

.owl-carousel .owl-item {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
    max-height: 80px;
    height: auto;
}

.owl-nav {
    display: flex;
    justify-content: center;
}

.owl-carousel .owl-prev {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: $color-primary-gray-dark;
    color: white;
    font-family: panton, arial, sans-serif;
    padding: 10px;
    margin: 5px 10px;
}

.owl-carousel .owl-next {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: $color-primary-gray-dark;
    color: white;
    font-family: panton, arial, sans-serif;
    padding: 10px;
    margin: 5px 10px;
}