.bo-tabs__item {display: none;}
.bo-tabs__item--active {display: block;}


.bo-tabs__nav {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 15px;
}
.bo-tabs__nav-btn {
    outline: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 24px;
    color: var(--black);
    opacity: 0.45;
    text-align: center;
    margin-right: 24px;
    background-color: inherit;
    transition: opacity 0.25s ease;
}

@media (max-width: 600px) {
    .bo-tabs__nav-btn {
        font-size: 18px;
        margin-right: 18px;
    }
}
@media (max-width: 480px) {
    .bo-tabs__nav-btn {
        font-size: 16px;
        margin-right: 12px;
    }
    .bo-tabs__nav {
        overflow-x: auto;
        width: 100%;
        white-space: nowrap;
    }
}

.bo-tabs__nav-btn--active {
    opacity: 1;
}
/*.bo-tabs__nav-wrapper {}*/
.bo-tabs__nav-progressbar {
    width: 520px;
    height: 2px;
    background-color: var(--orange-opacity-0-02);
}
@media (max-width: 600px) {
    .bo-tabs__nav-progressbar {
        width: 410px;
    }
}
@media (max-width: 480px) {
    .bo-tabs__nav-progressbar {
        width: 350px;
    }
}
@media (max-width: 380px) {
    .bo-tabs__nav-progressbar {
        width: 275px;
    }
}
.bo-tabs__nav-progressbar--active {
    height: 100%;
    width: 0px;
    background-color: var(--orange);
    animation-name: bo-progressbar;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
}
.bo-tabs:hover .bo-tabs__nav-progressbar--active,
.bo-tabs--animation-none {
    animation-name: none;
}

.bo-tabs__animated {
    animation-name: bo-tabs-animation;
    animation-duration: 1s;
}


@keyframes bo-progressbar {
    0% {width: 0;}
    100% {width: 100%;}
}
@keyframes bo-tabs-animation {
    0% {width: 25%; opacity: 0}
    50% {width: 100%;}
    100% {opacity: 1}
}
