.preloader {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: #e5e5e5;
  z-index: 90;
  visibility: visible;
  -webkit-transition: opacity 0.4s, visibility 0.4s ease-in-out;
  transition: opacity 0.4s, visibility 0.4s ease-in-out;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.preloader__image {
  width: 200px;
}

.preloader__logo {
  margin-top: -30px;
  width: 188px;
  opacity: 0;
}

.preloader__logo.anim {
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.preloader__logo.vis {
  opacity: 1;
}
