﻿
.tabs {
    display: flex;
    position: relative;
    grid-gap: 51px;
    padding-bottom: 15px;
}

    .tabs .line {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 3px;
        border-radius: 0px;
        background-color: #2C3537;
        transition: all 0.2s ease;
        z-index: 7;
    }

.tab-item {
    min-width: max-content;
    padding: 0px;
    text-align: center;
    background-color: transparent;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.5s ease;
}

div.tab-item {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #878A8A;
}

.tab-icon {
    font-size: 24px;
    width: 32px;
    position: relative;
    top: 2px;
}

.tab-item:hover {
    opacity: 1;
}

.tab-item.active {
    opacity: 1;
}

div.tab-item.active {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #2C3537;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #2C3537;
}

.tab-content {
    padding: 28px 0;
}

.tab-pane {
    display: none !important;
}

    .tab-pane.active {
        display: block !important;
    }

    .tab-pane h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

.tabs--bottoms {
    position: absolute;
    width: 45.8%;
    border-bottom: 1px solid #ADB2B3;
    margin: -1.8px 0px 0px 0px;
    z-index: 1;
}

.tab-pane--blocks {
    display: grid;
    gap: 39px;
}
