body {
      margin: 0;
      height: 100vh; /* Full height of the viewport */
      display: flex;
      justify-content: center; /* Horizontally center */
      align-items: center; /* Vertically center */
      background-color: #F7F7F7;
      font-size: 13px;
      font-family: 'Open Sans';
      color: #43484E;
    }

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loader {
    border: 6px solid #026670 !important;
    border-radius: 50%;
    border-left: 6px solid white;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

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

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