/* Size Font Breadcrumbs */
.yoast-breadcrumbs {
    font-size: 16px;
}

.blog-breadcrumbs-yoast a {
    color: var(--accent-font);
}

.blog-breadcrumbs-yoast a:hover {
    color: var(--accent-second);
}
.blog-breadcrumbs-yoast {
    color: var(--accent-font) !important;
}


/* Slide Owl */
.owl-dots {
    text-align: center;
    margin: 10px auto 20px;
    position: static;
    bottom: 20px;
    right: 20px;
}
.owl-dots button,
.owl-dot {
    width: 14px;
    height: 8px;
    opacity: 0.3;
    border-radius: 100px;
    margin: 0 2px;
    background: #979797 !important;
}
.owl-dots button.active,
.owl-dot.active {
    opacity: 0.85;
    width: 30px;
}
.owl-stage {
    display: flex;       
}
.abs_nav .owl-dots {
    position: absolute;
    bottom: 5px;
}

.owl-nav {
    display: flex;
    justify-content: space-between;
}


.owl-prev span {
    font-size: 40px;
    position: absolute;
    top: 40%;
    background: var(--accent);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    line-height: 0;
    padding-top: 10px;
    border-radius: 30px;
    font-weight: 600;
    color: white;
    left: -10px;
    opacity: 30%;
}

.owl-next span {
    font-size: 40px;
    position: absolute;
    top: 40%;
    background: var(--accent);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    line-height: 0;
    padding-top: 10px;
    border-radius: 30px;
    font-weight: 600;
    color: white;
    right: -10px;
    opacity: 30%;
}

.item-slider .owl-dots {
    margin: 0px auto 20px;
}


@media only screen and (max-width: 600px) {
    .yoast-breadcrumbs {
        font-size: 14px;
    }

    .owl-nav {
        justify-content: space-around;
    }

    .owl-prev span {
        top: unset;
        left: 25%;
    }

    .owl-next span {
        top: unset;
        right: 25%;
    }

}