@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(get-svg-url('checkmark', $user-variables: (fill: 'tomato')));
* Example: background-image: url(get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink')));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.site-intro {
  display: block;
  position: fixed;
  z-index: 990;
  opacity: 0;
}
@media (max-width: 1199.98px) {
  .site-intro {
    display: none;
  }
}
.site-intro.is-confirm {
  display: none;
}
.site-intro__animation {
  display: flex;
  align-items: flex-end;
  position: fixed;
  right: 0;
  top: 20%;
  width: 200px;
  max-width: 100%;
  height: auto;
  flex-flow: column;
  opacity: 1;
}
.site-intro__animation .blobs {
  display: block;
  position: relative;
  width: 184px;
  height: 92px;
  margin-right: 5px;
  max-width: 100%;
}
.site-intro__animation .blobs .blob {
  display: inline-block;
  opacity: 1;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/upload/_base/site-intro/blob-empty.svg");
  pointer-events: none;
}
.site-intro__animation .blobs .blob--first {
  bottom: 0;
  right: 0;
  height: 5px;
  width: 5px;
}
.site-intro__animation .blobs .blob--second {
  bottom: 7px;
  right: 10px;
  width: 8px;
  height: 7px;
}
.site-intro__animation .blobs .blob--third {
  bottom: 13px;
  right: 23px;
  width: 15px;
  height: 15px;
}
.site-intro__animation .blobs .blob--text {
  top: 0;
  left: 0;
  width: 140px;
  height: 80px;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  place-items: center;
  padding: 5px;
  background-image: url("/upload/_base/site-intro/blob-text.svg");
  background-size: contain;
  pointer-events: auto;
  cursor: pointer;
  filter: drop-shadow(1px 1px 2px #00a939);
}
.site-intro .message {
  display: block;
  position: absolute;
  opacity: 0;
  font-size: 18px;
  line-height: 1.25;
}
.site-intro .message--first {
  opacity: 1;
}
.site-intro .intro-alien {
  width: 45px;
  height: 86px;
  background-image: url("/upload/_base/site-intro/intro-alien.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.site-intro__video {
  display: block;
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 150ms ease-out;
}
.site-intro__video.is-show {
  pointer-events: auto;
  opacity: 1;
}
.site-intro__skip-button {
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  position: fixed;
  bottom: 60px;
  text-transform: uppercase;
  color: white;
  mix-blend-mode: difference;
  padding: 5px;
  background-color: transparent;
  border: none;
  letter-spacing: 1.6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  line-height: 1.4;
}
.site-intro__skip-button.is-active {
  opacity: 1;
  pointer-events: auto;
}
