html, body {
    height: 100%;
    margin: 0;
}

.react-app-container-loader-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    z-index: 9999;
    pointer-events: none;
    display: none;
}

.modeCover {
    background-color: #fff;
  }

.modeModal {
    background-color: rgba(0, 0, 0, 0.3);
  }

.modeOverlay {
    background-color: transparent;
  }

.modeScreen {
    background-color: rgba(255, 255, 255, 0.5);
  }
  
.modeBackground {
    background-color: #eee;
}

.react-app-container-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
}

.react-app-container-loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.react-app-container-loader .circular {
    animation: react-app-container-rotate 1.4s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.react-app-container-loader .path {
    stroke-dasharray: 80, 200;
    stroke-dashoffset: 0;
    animation: react-app-container-dash 1.4s ease-in-out infinite;
    stroke-linecap: round;
    stroke: #3f51b5;
}

@keyframes react-app-container-rotate {
    0% {
        transform-origin: 50% 50%;
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes react-app-container-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 100, 200;
        stroke-dashoffset: -15px;
    }
    100% {
        stroke-dasharray: 100, 200;
        stroke-dashoffset: -125px;
    }
}
