.content-tabs-wrapper-tabs{
    display: flex;
    position: relative;
    justify-content: space-evenly;
    /* border-bottom:  1px solid #e5e9ec; */
}

.tabs-wrapper{
    width: 20%;
}
.tab-button{
    height: 100%;
    display: flex;
}

.tab-button-icon-text{
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.tab-out-icon-title{
    display: flex;
}

.tab-button-icon-text .general-title{
    width: 100%;
    display: flex;
    justify-content: center;
}

.tab-underline-indicator {
    position: absolute;
    bottom: 0;
    height: 4px;
    width: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
    left: 0;
}

.tab-underline-indicator svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tab-underline-indicator.horizontal {
    height: 4px;
    width: 0;
    bottom: 0;
    left: 0;
}

.tab-underline-indicator.vertical {
    width: 4px;
    height: 0;
    top: 0;
    left: 0;
    display: none;
}

@media (max-width: 576px) {
    .content-tabs-wrapper-tabs{
        flex-direction: column;
    }
    .tab-underline-indicator {
        width: 4px;
        height: 0;
        top: 0;
        bottom: auto;
    }
    .tab-button{
        min-height: 50px;
        display: flex;
        align-items: center;
        margin-left: 10px;
    }
    .tabs-wrapper{
        width: 100%;
    }
    .tab-button-icon-text{
        justify-content: start;
    }
    .content-tabs-wrapper-tabs{
        border-left:  1px solid #e5e9ec;
        border-bottom: none;
    }
    .tab-underline-indicator.horizontal {
        display: none;
    }
    .tab-underline-indicator.vertical {
        display: block;
    }
    
}
