/* -----------------
   TABS
------------------*/

.tabs {
    display: flex;
    gap: 10px;
    /* margin: 20px 0; */
}

.tab {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: .25s;
}

.tab:hover {
    background: rgba(255, 255, 255, 0.12);
}

.tab.active {
    background: linear-gradient(135deg, #00ffcc, #008a6d);
    background: linear-gradient(135deg, #00ffcc, var(--secondary-color));
    color: white;
}


/* ===================== */
/* TABS */
/* ===================== */

.tabs {
    display: flex;
    gap: 10px;
}

.tab {
    padding: 8px 18px;
    border-radius: 20px;
    background: #15171d;
    cursor: pointer;
    transition: .2s;
    border: 1px solid #222;
}

.tab:hover {
    background: #1b1e25;
}

.tab.active {
    background: var(--primary-color);
    color: #000;
}


/* ===================== */
/* TAB CONTENT ANIMATION */
/* ===================== */

#tab-content {
    animation: fadeIn .35s ease;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}