/*DEFAULT LOAD*/
.ajax_load {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1032;
}

.ajax_load_box {
    margin: auto;
    text-align: center;
    color: #ffffff;
    font-weight: var(--weight-bold);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ajax_load_box_circle {
    border: 16px solid #e3e3e3;
    border-top: 16px solid var(--hover-color-green);
    border-radius: 50%;
    margin: auto;
    width: 80px;
    height: 80px;

    -webkit-animation: spin 1.2s linear infinite;
    -o-animation: spin 1.2s linear infinite;
    animation: spin 1.2s linear infinite;
}

.ajax_load_box_title {
    margin-top: 15px;
    font-weight: var(--weight-strong);
}
/*DEFAULT MENU*/
header {
    font-size: 1em;
    font-weight: 700;
}
header.active a{
    background-color: #535353;
    color: #fff !important;
}
.nav-link {
    color: #403737 !important;
    text-decoration: none;
    padding: 5px 20px;
}

.nav-link:hover, .nav-link:focus {
    text-decoration: none;
    background-color: #0d6efd;
    color: #fff !important;
    font-weight: 700;
}