.containerLongAnim {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  opacity: 1;
  z-index: 10000;
  transition: 0.3s all ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
}
.containerLongAnim .content {
  height: 50vh;
  display: flex;
  position: absolute;
  top: max(150px, 50%);
  left: 50%;
  transform: translate(-50%, -50%);
}
.containerLongAnim .imgContain {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.containerLongAnim .imgContain {
  position: absolute;
  animation-timing-function: ease-in-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
}
.containerLongAnim .element1 {
  width: 274px;
  height: 100%;
  background-image: url("../img/Logo/tree1.png");
  z-index: 10001;
  opacity: 0;
  transform: translate(calc(-50% - 15vh), -50%) scaleX(1) scaleY(1);
  animation: tree1 0.3s ease-in-out 0.3s, fadeIn 0.3s ease-in-out forwards 0.3s;
}
.containerLongAnim .element2 {
  width: 187px;
  height: 94.1176471%;
  background-image: url("../img/Logo/tree2.png");
  z-index: 10003;
  animation: tree2 0.3s ease-in-out forwards;
}
.containerLongAnim .element3 {
  width: 225px;
  height: 83.8709677%;
  background-image: url("../img/Logo/tree3.png");
  z-index: 10002;
  opacity: 0;
  transform: translate(calc(-50% + 15vh), -50%) scaleX(1) scaleY(1);
  animation: tree3 0.3s ease-in-out 0.3s, fadeIn 0.3s ease-in-out forwards 0.3s;
}
.containerLongAnim.hide {
  opacity: 0;
}
@keyframes tree1 {
  0% {
    transform: translate(-50%, -50%) scaleX(0.4) scaleY(0.9);
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  100% {
    transform: translate(calc(-50% - 15vh), -50%) scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@keyframes tree2 {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes tree3 {
  0% {
    transform: translate(-50%, -50%) scaleX(0.4) scaleY(0.9);
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  100% {
    transform: translate(calc(-50% + 15vh), -50%) scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=loader.css.map */