#main-loading-wrapper {
      margin: 0;
      padding: 0;
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      width: 100%;
      overflow-y: auto;
      min-height: 600px;
      zoom: 1;
      /* background: #272727; */
      background: linear-gradient(180deg, #074595 0%, #6589A4 100%);
      z-index: 999;
}
#main-loading-wrapper > .spinner {
    height: 50px;
    width: 50px;
    background-image: url('../images/ic_appLoader.svg');
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;

    
    -webkit-animation: spin 1000ms linear infinite;
    -moz-animation: spin 1000ms linear infinite;
    -o-animation: spin 1000ms linear infinite;
    animation: spin 1000ms linear infinite;
}

.gateway-error {
    font-size: 20px;
    text-align: center;
    margin-top: 300px;
}

html {
    height: 100%;
}
.network-failure-error {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.network-failure-error > #reload-error-button {
    width: 142px;
    height: 40px;
    margin: auto;
    position: absolute;
    right: 0;
    border-radius: 25px;
    background-color: transparent;
    margin-top: 25px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: 1px solid #30CA77;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff;
    cursor: pointer;
    
  }
.network-failure-error > #reload-error-button:hover {
    background-color: #30CA77;
}
.network-failure-error > h1 {
    text-align: left;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff;
} 
.network-failure-error > h2 {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff;
}  
.network-error-body {
    background-image: linear-gradient(to bottom, #064495, #6589A4) !important;
}


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

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

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

@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

#haircheck-app {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    min-height: 600px;
    zoom: 1;
    display: none;
    /* background: #272727; */
    z-index: 1000;
}