/**
 * ======== COLORS ========
 *
*/
.teal {
    color: #03fcd3;
}

.btn-teal {
    color: rgb(33, 37, 41);
    background-color: #03fcd3;
    border-color: #03fcd3;
}


/* ======== C O M P O N E N T S ======== */

/**
 * ======== AVATAR ========
 *
*/
.avatar-dropdown {
    text-decoration: none;
}

.avatar {
    align-items: center;
    background-color: #03fcd3;
    border-color: #fff;
    border-radius: 50%;
    color: rgb(33, 37, 41);
    display: flex;
    height: 2.5rem;
    justify-content: center;
    text-align: center;
    width: 2.5rem;
}

.avatar span {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
}

.avatar-dropdown.dropdown-toggle::after {
    content: none;
}

/** ================================
 *              UTILS 
 *  ================================
*/

/**
 * @ WIDTH
 *
*/
.w-80 {
    width: 80%;
}

/**
 * @ TABLE ROWS
*/
.t-row {
    display: flex;
    flex-direction: row;
    height: 2rem;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
}

.row-item { 
    align-items: center;
    border: 1px solid white;
    display: flex;
    justify-content: center;
}

.row-item p {
    margin-bottom: 0;
}



/** ================================
 *          BOOTSTRAP MODS
 *  ================================
*/

/* move modal down from top of page */
.modal {
    top: 10%;
}