
.mods-category-changer {
    width: 100%;
    padding-top: 88px;
}
.mod-category-tabs {
    max-width: 506px;
    height: 58px;
    border-radius: 14px;
    border: 2px solid rgb(44, 41, 44);
    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: rgb(19, 26, 26);
    backdrop-filter: blur(69px);
    -webkit-backdrop-filter: blur(69px);

    padding: 4px;
    margin: 0 auto;
    gap: 0;
}

.mod-tab {
    all: unset;
    flex: 1;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    height: 50px;
    color: #C4C8E3;

    font-family: "SF";
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;

    white-space: nowrap;
    transition: 400ms;

}

.mod-tab .badge {
    margin-left: 10px;
}
.badge .tooltip {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    position: absolute;
    bottom: 50%;
    right: 35%;
    transform: translate(100%, 0%);
    z-index: 10;

    font-size: 14px;
    background-color: #141114;
    padding: 10px;
    max-width: 300px;
    white-space: normal;
    word-wrap: break-word;
    border-radius: 10px;

    border: 2px solid #2C292C;
    color: #86939E;
}

.badge:hover .tooltip {
    opacity: 1;
}


.mod-tab.active {
    color: #FFFFFF;
    background: linear-gradient(90deg, #F4AE3D, #FCC325);
    width: 165px;
}




