.section-tab-editor .tab-description {
    display: none;
}

.section-tab-editor .tab-description.active {
    display: block;
}

.section-tab-editor .sw--tab-editor {
    margin-bottom: 3.5rem;
}

.section-tab-editor .sw--tab-editor .swiper-slide a.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #D9D9D9;
    padding-bottom: 2rem;
    transition: 0.3s;
    color: var(--color1);
    font-family: var(--medium_font);
    font-size: clamp(0.875rem, 2vw, 1rem);
}


.section-tab-editor .sw--tab-editor .swiper-slide a.tab.active {
    border-bottom: 2px solid #C1AE59;
}

.section-tab-editor .sw--tab-editor .swiper-slide a.tab:hover {
    color: #C1AE59;
}

.section-tab-editor .sw-navigation .icon-arrow-left,
.section-tab-editor .sw-navigation .icon-arrow-right {
    color: var(--color1);
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
}


@media (max-width: 768px) {
    .section-tab-editor .sw--tab-editor {
        margin-bottom: 2rem;
    }

    .section-tab-editor .sw-navigation.sw-between .swiper-nav-next,
    .section-tab-editor .sw-navigation.sw-between .swiper-nav-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    .section-tab-editor .sw-navigation.sw-between .swiper-nav-next {
        right: 0rem;
        top: 15%;
    }

    .section-tab-editor .sw-navigation.sw-between .swiper-nav-prev {
        left: 0rem;
        top: 15%;
    }

    .sw-navigation .icon-arrow-left:hover,
    .sw-navigation .icon-arrow-right:hover {
        background-color: transparent;
    }
}