
.fullscreen-container {
     display: none;
     position: fixed;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     background: rgb(44, 106, 160, 0.9);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;     
     z-index: 9999;
}


.fullscreen-container .overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}


.fullscreen-container .overlay__content span{
    font-size: 1.2em;
    color: #fff;
}

.fullscreen-container .global-spinner {
    width: 120px;
    height: 120px;
    display: inline-block;
    border-width: 3px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100% !important;
    border-style: solid;
}

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