#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader-navigation {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader-navigation .spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--ccn-blue) !important;
    border-width: 2px;
    border-top-color: var(--mschoa-color-blue-standard);
    border-bottom-color: var(--mschoa-color-blue-standard);
    border-left-color: var(--mschoa-color-blue-standard);
}

#loader .spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--ccn-blue) !important;
    border-width: 2px;
    border-top-color: var(--mschoa-color-blue-standard);
    border-bottom-color: var(--mschoa-color-blue-standard);
    border-left-color: var(--mschoa-color-blue-standard);
}

.loader_new {
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid var(--mschoa-color-blue-standard);
    border-bottom: 2px solid var(--mschoa-color-blue-standard);
    border-left: 2px solid var(--mschoa-color-blue-standard);
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;

}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .mschoa-loader-father {
    position: fixed;  
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}