.tabs {
    position: relative;
    width: 100%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0px 6px 15px 1px rgba(176, 184, 203, 0.26);
    border-radius: 6px;
    padding-left: 20px;
}

.tabs .tabs-nav {
    width: 100%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs .tabs-nav .tab {
    height: 100%;
    line-height: 68px;
    position: relative;
    font-size: 16px;
    cursor: pointer;
    margin-right: 75px;
}
.tabs .tabs-nav .tab:last-of-type {
    margin-right: 0;
}

.tabs .tabs-nav .tab.active {
    color: var(--color-primary);
    font-weight: bold;
    transition: font-weight 0.3s ease;
}

.tab-bar {
    position: absolute;
    bottom: 0;
    left: var(--left);
    width: var(--width);
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.tab-wrap {
    padding: 80px 50px;
}
