.loading {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000000;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, .9);
}

.landing.loading {
  background: #eee;
}

.loading .logo {
  position: absolute;
  margin: auto;
  display: block;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 80px;
  height: 80px;
  background: url(../images/logo.png) no-repeat center center;
  background-size: 64px 64px;
  animation: reverseRotate 2s linear infinite;
}

.landing.loading .loader {
  box-shadow: none;
}

.loading:not(.landing) .loader,
.loading:not(.landing) .logo {
  top: -50px;
}

.loading .loader {
  position: absolute;
  margin: auto;
  display: block;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 5px solid rgba(0, 0, 0, .2);
  border-top-color: rgba(255, 0, 0, .8);
  border-left-color: rgba(255, 0, 0, .8);
  animation: rotate .5s linear infinite;
}

.loading .text {
  position: absolute;
  margin: auto;
  display: block;
  left: 50%;
  top: 50%;
  right: 0px;
  bottom: 0px;
}

.loading .text input {
  display: block;
  width: 250px;
  padding: 0px!important;
  height: auto;
  margin: 0px!important;
  margin-top: 30px!important;
  margin-left: -125px!important;
  background: none;
  border: none;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(255, 30, 30, 1);
}

.loading .text input:hover {
  border: 0px!important;
  color: rgba(255, 30, 30, 1);
}

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

@keyframes reverseRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}