.tabs__container, .tabs__drop-down-tab>ul {
    width: 100%;
    height: min-content;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.tabs__container {
    max-width: 1132px;
}

.tabs__tab {
    position: relative;
    display: inline-flex;
    height: 48px;
    justify-content: flex-end;
    align-items: flex-end;
    cursor: pointer;
}

.tabs__tab a, .tabs__tab button {
    margin: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    user-select: none;
    text-align: center;
    font: 21px/28px font-primary;
    letter-spacing: 1.68px;
    color: var(--color-primary-600);
    fill: var(--color-primary-600);
    text-transform: uppercase;
    transition: color 0.125s, fill 0.125s, background-color 0.125s;
}

.tabs__tab > div {
    position: absolute;
    bottom: 2px;
    left: 6.3px;
    width: calc(100% - 12.6px);
    height: 2px;
    background-color: #FFF;
    transition: background-color 0.125s;
    display: none;
}

.tabs__tab:hover a, .tabs__tab:hover button {
    background-color: #FFF;
    color: #030810;
    fill: #030810;
    font-weight: 600;
}

.tabs__tab:hover > div {
    background-color: #030810;
}

.tabs__tab:active a, .tabs__tab:active button {
    background-color: #B5B5B5;
    color: #030810;
}

.tabs__tab svg {
    transition: transform 0.25s;
}

.tabs__tab-arrow--rotated {
    transform: rotate(90deg);
}

.tabs__tab__current-page > div {
    display: block;
}

.tabs__tab__current-page a, .tabs__tab__current-page button {
    font-weight: 600;
    padding-left: 6.3px;
    letter-spacing: 6.3px;
}
