#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.fullscreen-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.5);
}

.loader-container {
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0px auto;
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  left: 0px;
  right: 0px;
}

.loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
}

.loader-border {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 2px solid #f5f5f5 !important;
  border-bottom-color: #0275d8 !important;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  animation: animloader 1s linear infinite;
}

.image {
  width: inherit;
  height: inherit;
  display: block;
  background-image: url("../../favicon.ico");
  background-position: center;
  background-repeat: no-repeat;
}

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

.loaded #loader-wrapper {
  opacity: 0;
  display: none;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}
