/* ==============================|Loader for Buttons|================================= */
.load {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit
}

.load::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 3px solid #fff;
    width: 30px;
    height: 30px;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    animation: loading1 1s ease infinite;
    z-index: 10
}

.load::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 3px dashed #fff;
    width: 30px;
    height: 30px;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    animation: loading1 2s linear infinite;
    z-index: 5
}

@keyframes loading1 {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.activeLoading .loading {
    visibility: visible;
    opacity: 1
}

/* ==============================|Alert Message CSS|==================================== */
.alertMessages {
    background-color: rgb(21, 21, 21);
    color: white;
    padding: 10px;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 2px 2px 2px;
    max-width: 450px;
    box-sizing: border-box;
}

.closeMessage {
    cursor: pointer;
}

/* ========================================================================= */

.navbar .navbar-menu-wrapper .navbar-nav .nav-item .nav-link.active {
    color: #2b80ff;
    position: relative;
    font-weight: 700;
}
.card .card-body {
   background: #e7e7e7;
}