.preloader-wrap {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    /* фоновый цвет */
    background: #e0e0e0;
    z-index: 1002;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: 1s opacity, 1s visibility;
}
.preloader {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box {
    max-width: 200px;
    max-height: 200px;
    min-width: 200px;
    min-height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    animation: 4s linear 0.1s infinite rotate;
}
.anim-block {
    width: 100px;
    height: 20px;
    transform-origin: 100% 11px;
    transform: rotate(0deg);
    position: absolute;
}
.anim-block:nth-child(1) {
  transform: rotate(60deg);
/*  animation: 4s linear 0.0s infinite rotate;*/
}
.anim-block:nth-child(2) {
  transform: rotate(120deg);
/*  animation: 4s linear 0.33s infinite rotate;*/
}
.anim-block:nth-child(3) {
  transform: rotate(180deg);
/*  animation: 4s linear 0.66s infinite rotate;*/
}
.anim-block:nth-child(4) {
  transform: rotate(240deg);
/*  animation: 4s linear 1.0s infinite rotate;*/
}
.anim-block:nth-child(5) {
  transform: rotate(300deg);
/*  animation: 4s linear 1.33s infinite rotate;*/
}
.anim-block:nth-child(6) {
  transform: rotate(360deg);
/*  animation: 4s linear 1.66s infinite rotate;*/
}
/*.anim-block:nth-child(7) {
  transform: rotate(210deg);
  animation: 4s linear 2.0s infinite rotate;
}
.anim-block:nth-child(8) {
  transform: rotate(240deg);
  animation: 4s linear 2.33s infinite rotate;
}
.anim-block:nth-child(9) {
  transform: rotate(270deg);
  animation: 4s linear 2.66s infinite rotate;
}
.anim-block:nth-child(10) {
  transform: rotate(300deg);
  animation: 4s linear 3.0s infinite rotate;
}
.anim-block:nth-child(11) {
  transform: rotate(330deg);
  animation: 4s linear 3.33s infinite rotate;
}
.anim-block:nth-child(12) {
  transform: rotate(360deg);
  animation: 4s linear 3.66s infinite rotate;
}*/
.svg-anim {
    height: 82px;
    width: 30px;
    transition: all 200ms ease;
}
.anim-block:nth-child(1) > .svg-anim {
/*  transform: rotate(60deg);*/
  animation: 2s linear 0.0s infinite scale;
}
.anim-block:nth-child(2) > .svg-anim {
/*  transform: rotate(60deg);*/
  animation: 2s linear 0.66s infinite scale;
}
.anim-block:nth-child(3) > .svg-anim {
/*  transform: rotate(60deg);*/
  animation: 2s linear 1.33s infinite scale;
}
.anim-block:nth-child(4) > .svg-anim {
/*  transform: rotate(60deg);*/
  animation: 2s linear 2.0s infinite scale;
}
.anim-block:nth-child(5) > .svg-anim {
/*  transform: rotate(60deg);*/
  animation: 2s linear 2.66s infinite scale;
}
.anim-block:nth-child(6) > .svg-anim {
/*  transform: rotate(60deg);*/
  animation: 2s linear 3.33s infinite scale;
}
@keyframes rotate {
  0% { transform: rotate(0deg)  }
  100% { transform: rotate(-360deg) }
}
@keyframes scale {
  0% { transform: scale(1.0)  }
  25% { transform: scale(2.5)  }
  50% { transform: scale(1.0)  }
  75% { transform: scale(2.5)  }
  100% { transform: scale(1.0) }
}
.loaded_hiding.preloader-wrap {
    transition: 0.3s opacity;
    opacity: 1;
    display: flex;
    visibility: visible;
}

.loaded.preloader-wrap {
    opacity: 0;
    visibility: hidden;
}

