/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}

.owl-item {
    padding: 10px;
    transition: transform 0.3s ease;
}
.item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.owl-nav button {
    border: none;
    margin: 0 10px;
    transition: all 0.3s ease;
}
.owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.custom-dots {
    display: flex;
    justify-content: center;
    margin-top: 0.53vw;
}
.custom-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E4E6E8;
    margin: 0 2px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.custom-dot.active {
    background: #D1D5D8;
    width: 16px;
    border-radius: 10px;
    transition: width 0.2s ease;
}