.logo {
    max-height: 227px; 
    display: block; 
    margin: auto;        
    }
    
    #busyIndicator {
    
        height: 100%;
        width: 100%;
    }
#loadingContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-align: center;
    display: none;
}
    .loader {
        position: relative;
        width: 64px;
        height: 64px;
        background: #0a3500;
        border-radius: 50%;
        overflow: hidden;
      }
      .loader:after{
        content: '';
        position: absolute;
        inset: 8px;
        margin: auto;
        background: #222b32;
         border-radius: 50%;
      }
      .loader:before{
        content: '';
        position: absolute;
        inset: 0px;
        margin: auto;
        background: #009530;
        animation: crlMugLoader 2s linear infinite alternate;
      }
      @keyframes crlMugLoader {
        0%  ,10% { transform: translateY(64px) }
        90% , 100% { transform: translateY(0px) }
      }
          