.tab-menu-container {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E9EAEA;
    margin-bottom: 25px;
}

.tab-menu {
    display: flex;
    align-items: center;

}

.tab-menu.wide {
    flex: 0 0 100%;
}

.tab-menu__item {
    margin-right: 45px;
}

.tab-menu__item:last-child {
    margin-right: 0;
}

.tab-menu__item.green>a {
    color: #008E7D;
}

.tab-menu__item.right-border {
    margin-right: 90px;
}

.tab-menu__item.right-border .tab-menu__link::before {
    content: '';
    position: absolute;
    right: -48px;
    width: 1px;
    height: 50%;
    background-color: #E9EAEA;
}

.tab-menu__item-archive {
    margin-left: auto;
}

.tab-menu__link {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: rgba(43, 45, 51, 0.5);
    padding-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.tab-menu__item.selected .tab-menu__link {
    color: #2B2D33;
}

.tab-menu__item.selected .tab-menu__link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    bottom: -1px;
    background-color: #FF0000;
    left: 0;
    right: 0;
}

.tab-menu__link-count {
    display: flex;
    background: #eee;
    margin-left: 7px;
    width: 20px;
    height: 20px;
    align-items: center;
    /* text-align: center; */
    justify-content: center;
    border-radius: 100%;
    font-weight: 700;
    font-size: 11px;
    line-height: 12px;
    color: #2B2D33;
    transform: translateY(2px);
}



@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {
    .tab-menu {
        flex-wrap: wrap;
    }

    .tab-menu__link {
        font-weight: 100;
        font-size: 15px;
    }
}

@media (max-width: 991.98px) {

    .tab-menu__item.right,
    .tab-menu__item:last-child {
        margin-right: 0;
    }

    .tab-menu__item.right {
        margin-left: auto;
    }
}

@media (max-width: 767.98px) {

    .tab-menu {
        flex-wrap: wrap;
    }

    .tab-menu__item {
        margin-right: 15px;
    }

    .tab-menu__link {
        font-size: 15px;
        padding-bottom: 8px;
        margin-bottom: 10px;
    }

    .tab-menu__item-archive {
        margin-left: 0;
    }

    .tab-menu__link-count {
        transform: translateY(1px);
        margin-left: 8px;
    }

    .tab-menu__item.selected .tab-menu__link::after {
        display: none;
    }

    .tab-menu-container {
        border-bottom: 0;
    }

    .tab-menu__item-archive .tab-menu__link {
        padding: 0;
        font-weight: 400;
        text-decoration: underline;
    }

    .tab-menu__item-archive.selected .tab-menu__link,
    .tab-menu__item:not(.tab-menu__item-archive) .tab-menu__link {
        padding: 8px 17px;
        border-radius: 20px;
        font-weight: 400;
        color: #2B2D33;
        border: 1px solid #eee;
        text-decoration: none;
    }

    .tab-menu__item.selected .tab-menu__link {
        background-color: #19B28D;
        color: #fff;
        border-color: transparent;
    }

    .tab-menu__item.right-border {
        margin-right: 15px;
    }

    .tab-menu__item.right-border .tab-menu__link::before {
        display: none;
    }


}

@media (max-width: 575.98px) {}