body {
  padding: 0;
  margin: 0;
}

body:not(.loaded) {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

body .global-loader {
  display: flex;
  content: '';
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000001;
}

.global-loader__body {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 202px;
  width: 232px;
  margin-top: -101px;
  margin-left: -116px;
  text-align: center;
}

.global-loader__logo {
  width: 98px;
  height: 102px;
  margin: 0 auto 36px;
  background: url('/assets/image/logo.svg') no-repeat;
  background-size: cover;
}

.global-loader__logo--msk-energo {
  margin-bottom: 60px;
  width: 232px;
  height: 96px;
  background: url('/assets/image/msk-logo.svg') no-repeat;
  background-size: cover;
}

.global-loader__line {
  width: 232px;
  height: 4px;
  opacity: 0.8;
  border-radius: 6px;
  background-color: #8eb3e0;
  margin-bottom: 37px;
  position: relative;
  overflow: hidden;
}

.global-loader__line:before {
  display: block;
  content: '';
  width: 92px;
  height: 4px;
  opacity: 0.7;
  border-radius: 6px;
  background-color: #00478c;

  position: absolute;
  left: 0;
  top: 0;
  animation-name: line-animation;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes line-animation {
  from {
    left: -92px;
  }
  to {
    left: 232px;
  }
}

.global-loader__text {
  width: 100%;
  height: 23px;
  font-family: Graphik !important;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
  color: #757575;
}

body.loaded .global-loader {
  display: none;
}
