app-root:empty + .pre-loader {
  display: block;
}

.pre-loader, .table-loader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 10px !important;
}

.pre-loader.main {
  position: absolute;
}

.pre-loader.whole {
  background-color: rgba(255, 255, 255, 1);
}

.table-loader {
  position: absolute;
  top: 60px;
  overflow: visible;
}

.auto-loader {
  position: absolute;
  top: 3px;
  overflow: visible;
  font-size: 7px !important;
  right: 20px;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 9em;
  height: 9em;
}

.loader.small,
.loader.small:after {
  border-radius: 50%;
  width: 4em;
  height: 4em;
  position: relative;
}

.loader.medium,
.loader.medium:after {
  border-radius: 50%;
  width: 7.5em;
  height: 7.5em;
  position: relative;
}

.loader {
  font-size: 10px;
  text-indent: -9999em;
  border: 1px solid rgba(185, 184, 188, 0.25);
  border-left-color: #59bae6;
  border-left-width: 5px;
  animation: load 1.1s infinite linear;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  top: 45%;
  position: relative;
  box-sizing: content-box;
}

.loader.small {
  border-width: .5em;
}

.loader.medium {
  border-width: .8em;
}

.zoom-type {
  position: absolute;
  transform: translate(0%, 0%);
  margin: auto;
  font-size: 14px;
  font-weight: 300;
  color: #59bae6;
}

.zoom {
  animation: zoom 3s linear infinite;
}

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

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

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

@keyframes zoom {
  0% {
    font-weight: 300;
  }

  50% {
    font-weight: 400;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    font-weight: 300;
  }
}


/* Custom Responsive SCSS
--------------------------------*/
@media only screen and (min-width : 320px) {
  .zoom-type {
    top: 52%;
    left: 39%;
  }
}

@media only screen and (min-width : 360px) {
  .zoom-type {
    top: 50.5%;
    left: 40.5%;
  }
}

@media only screen and (min-width : 411px) {
  .zoom-type {
    top: 50%;
    left: 41.5%;
  }
}

@media only screen and (min-width : 480px) {
  .zoom-type {
    top: 49.5%;
    left: 43%;
  }
}

@media only screen and (min-width : 768px) {
  .zoom-type {
    top: 49%;
    left: 45.4%;
  }
}

@media only screen and (min-width : 800px) {
  .zoom-type {
    top: 48%;
    left: 45.5%;
  }
}

@media only screen and (min-width : 1024px) {
  .zoom-type {
    top: 48%;
    left: 46.7%;
  }
}

@media only screen and (min-width : 1280px) {
  .zoom-type {
    top: 50%;
    left: 47.3%;
  }
}

@media only screen and (min-width : 1440px) {
  .zoom-type {
    top: 49%;
    left: 47.5%;
  }
}

@media only screen and (min-width : 1920px) {
  .zoom-type {
    top: 49%;
    left: 48.2%;
  }
}
