
.tabSection {
    flex-direction: row;
    flex-wrap: wrap;
    display: flex; 
    gap: 5px;
    padding: 25px;
    width:100%
}

.div-tabsection {
    background-color: #fff;
    border-bottom: 1px solid var(--main-color);
}
.divTabHeader {
    color: #888;
    background-color: #fff;
    padding: 5px 15px 5px 15px;    
    cursor: pointer;
}
.divTabHeader.active {
    color: var(--main-color) !important;
    font-weight: bold;
    background-color: #fff;
}
/* --- */

.tabs {
    /* position: absolute; */
    background-color: #fff;
    border: none;
    padding: 0px;
    /* overflow: hidden; */
    /* z-index: 9999; */
    width: 100%;
    /* height: 80%; */
}

.tab-label {
    background-color: #fff;
    border-bottom: 1px solid #f3f3f3;
    padding: 15px;
    display: flex;
    flex-direction: row;
    gap: 10px
}

.tab-label:hover {
    background-color: #fafafa;
    border-radius: 0px;
    border-bottom: 5px solid #f3f3f3;
}

.tabs .tab-header {
    /* height: 1em; */
    display: flex;
    align-items: center;
    /* padding: 15px; */
    width: 100%
}

.tabs .tab-header>.tab-label {
    width: calc(100% / 7);
    text-align: center;
    font-weight: bold;
    font-size: 12pt;
    color: #ccc;
    cursor: pointer;
}

.tabs .tab-header>div.active {
    color: #00acee;
    border-bottom: 5px solid var(--secondary-color);
}

.tabs .tab-indicator {
    position: relative;
    width: calc(60% / 5);
    height: 5px;
    background-color: var(--main-color);
    left: 15px;
    border-radius: 5px;
}

.tabs .tab-body {
    position: relative;
    height: calc(100% - 0px);
    /* top: 30px; */
    /* padding: 20px; */
}

.tabs .tab-body>div {
    position: absolute;
    /* top: -200%; */
    opacity: 0;
    margin-top: 5px;
    transform: scale(0.9);
    transition: opacity 500ms ease-in-out 0ms, transform 300ms ease-in-out 0ms;
    display: none
}

.tabs .tab-body>div.active {
    top: 20px;
    opacity: 1;
    transform: scale(1);
    margin-top: 0px;
    display: block
}

.tabs .tab-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff !important;
}