/* Owl Carousel Default Theme */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.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;
    transition: background-color 0.3s ease;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: rgba(255, 255, 255, 0.8); /* Thay Ă„â€˜Ă¡Â»â€¢i mÄ‚ u nĂ¡Â»Ân khi hover */
    color: #545454;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/* Custom Styles */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: #bdbdbd;
    outline: 0;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev {
    border-radius: 100%;
}

.owl-carousel .owl-nav button.owl-next {
    border-radius: 100%;
}

.owl-carousel .owl-nav button i {
    color: #fff !important;
    font-size: 20px;
    transition: color 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
    background-color: #fff;
    filter: Alpha(Opacity=100);
    opacity: 1;
}

.owl-carousel .owl-nav button:hover i {
    color: #000 !important;
}

.owl-carousel .owl-nav button {
    position: absolute;
    top: 46%;
}

.owl-carousel .owl-nav .owl-prev {
    left: 20px;
}

.owl-theme .owl-nav .owl-next {
    right: 20px;
}

/* Responsive Styles for Screens Smaller Than 768px */
@media only screen and (max-width: 768px) {
    .owl-carousel .owl-nav button {
        display: none !important;
    }
}