.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
   width: 66px;
   height: 66px;
   display: grid;
   border: 4.5px solid #0000;
   border-radius: 50%;
   border-right-color: #106BA7;
   animation: spinner-animation 1s infinite linear;
   position: relative;
}

.spinner::before,
.spinner::after {
   content: "";
   grid-area: 1/1;
   margin: 2.2px;
   border: inherit;
   border-radius: 50%;
   animation: spinner-animation 2s infinite;
}

.spinner::after {
   margin: 8.9px;
   animation-duration: 3s;
}

/* Logo in the center */
.spinner-logo {
    position: absolute;
    width: 30px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

@keyframes spinner-animation {
   100% {
      transform: rotate(1turn);
   }
}

.hidden {
    display: none !important;
}
