#root {
  width: 100%;
  height: 100%;
}

.loader__wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    text-align: center;
}

.loader__wrapper .loader__loader {
    border: 3px solid #fff;
    border-top-color: #e2010b;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s ease-in-out infinite;
    margin: 40vh auto 0;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
