/*** LABELS ***/
.label {
    display: inline-flex;
    padding: 4px 6px;
    gap: 4px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid var(--main-black-shades-90);
    color: var(--main-black-shades-70);
    font-size: 12px;
    letter-spacing: -0.12px;
    font-weight: 500;
    line-height: 17px;
    background: var(--main-white);
    white-space: nowrap;
}
.label.overlay {
    border-radius: var(--radius-xxs);
    border: 1px solid rgba(255, 255, 255, 0.50);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    color: var(--main-white);
}
.label.tci {
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0.5px;
}


@media screen and (max-width: 575px) {
    .label {
        padding: 1px 4px;
        border-radius: 2px;
        font-size: 11px;
        letter-spacing: -0.11px;
        line-height: 16px;
    }
}