body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.preloader-wrapper {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5b6065;
  color: #fff;
  z-index: 9999;
  transition: opacity 300ms linear;
  pointer-events: none;
}
.preloader {
  position: relative;
}
.preloader__container {
  position: absolute;
  top: 10px;
  right: 0;
  animation: container ease-in-out 4s infinite alternate;
}
.preloader__logo {
  position: absolute;
  top: -80px;
  left: 0;
  font-family: sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}
.preloader__logo p {
  padding: 0;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}
.preloader__logo span {
  font-size: 11px;
  white-space: pre-wrap;
}

.brand-fix {
  display: flex;
}

@keyframes container {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-250px);
  }
}
