.sw-tabs-area{
    position: relative;
    display: inline-block;

    .sw-tab-content{
        display: none;
    
        &.active{
            display: inline-block;
        }
    }
}

.sw-tabs {
	position: relative;
	padding:0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;

    .sw-tab {
        position: relative;
        display: inline-block;
        text-decoration: none;
        padding: 1.2em;
        font-size: 14px;
        font-weight: 600;
        color: #424f5a;
        text-align: center;
        width: 100%;
        cursor: pointer;
    }

    .sw-tab.active {
        font-weight: 700;
        outline:none;
        border-bottom: 3px solid var(--theme-primary);
    }

    &.sw-tab:not(.active):hover {
        background-color: inherit;
        color: #7c848a;
    }
    
    .yellow-bar {
        position: absolute;
        z-index: 10;
        bottom: 0;
        height: 3px;
        background: #458CFF;
        display: block;
        left: 0;
        transition: left .2s ease;
        -webkit-transition: left .2s ease;
    }
}


.sw-tabs-vertical {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding:0;
    
    .sw-tab {
        position: relative;
        display: inline-block;
        text-decoration: none;
        padding: 10px;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        color: #424f5a;
        text-align: center;
        width: 100%;
        cursor: pointer;

        &.sw-tab-bordered.active {
            border-left: none;
            border-top: none;
            border-right: none;
            border-bottom: 2px solid var(--theme-primary);
        }

        &.active {
            font-weight: 700;
            outline:none;
            border: 2px solid var(--theme-primary);
            border-radius: 4px;
        }

        &.sw-tab-bordered-s.active {
            border-left: none;
            border-top: none;
            border-right: none;
            border-bottom: 2px solid var(--theme-secondary);
        }

        &.sw-tab-s.active {
            font-weight: 700;
            outline:none;
            border: 2px solid var(--theme-secondary);
            border-radius: 4px;
        }
        
        &:not(.active):hover {
            background-color: inherit;
            color: #7c848a;
        }
    }
}

