.ag-theme-alpine {
    /* customise with CSS variables */
    outline: 1px;
    outline-color: white !important;
    border-color: white !important;
}

div.ag-root .ag-cell-focus {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.hidden {
    display: none !important;
}

/* .row {
    width: 100%;
    left: 0;
    margin-left: 0;
} */

.dark {
    .boxes {
        background-color: rgb(40, 42, 54);
    }
}

.boxes {
    border-radius: 7px;
    background-color: white;
    padding: 12px;
    border: 0.5px solid rgba(213, 213, 213, 0.345);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-wrap: pretty;
    margin-bottom: 8px;
}

.notifBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    padding: 5px;
    flex-wrap: wrap;
    display: flex;
    gap: 7px;
    z-index: 10000312332;
}

.NotifCard {
    background-color: white;
    border-radius: 7px;
    overflow: hidden;
    transition: all 1s;
    width: 300px;
    min-height: 50px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.NotifCardBody {
    font-size: smaller;
    font-weight: bold;
    width: 90%;
    padding: 5px;
}

.NotifCardClose {
    font-weight: bold;
    width: 10%;
    cursor: pointer;
    background-color: rgb(104, 104, 104);
    color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.dark {
    .NotifCard {
        color: black;
    }
}

/* Float Menu */

.optionsFloatMenu {
    margin-top: 4px;
    position: fixed;
    border-radius: 5px;
    background-color: white;
    padding: 10px;
    z-index: 9999;
    width: 220px;
    max-width: 220px;
    min-width: 220px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.btnMenuOption {
    /* text-wrap: pretty; */
    overflow: hidden;
    text-overflow: ellipsis;

}

.btnMenuOption:hover {
    background-color: rgb(230, 230, 230);
    text-wrap: pretty;

}

/* Float Menu */


/* header */

/* Others */

.btnTabs {
    cursor: pointer;

    &:hover {
        color: rgb(161, 161, 161);
    }
}

a:not([href]):not([class]) {
    color: white;
}