html {
  height: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  background-color: #ffffff;
  background-size: 100% 100%;
}
.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.contain, .stretch, .cover {
  display: block;
  width: 100%;
  height: 100%;
}
.contain {
  object-fit: contain;
}
.cover {
  object-fit: cover;
}
.bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.bottomLeft {
  position: absolute;
  bottom: 0;
  left: 0;
}
.bottomRight {
  position: absolute;
  bottom: 0;
  right: 0;
}
/* Прогресс-бар */
#splash-progress-container {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 6px;
  background-color: #eee;
  border-radius: 4px;
  overflow: hidden;
}
#splash-progress-bar {
  height: 100%;
  width: 0%;
  background-color: #2F70AF;
  transition: width 0.2s ease;
}