/* BEM support Func
 -------------------------- */
/* Break-points
 -------------------------- */
/* Scrollbar
 -------------------------- */
/* Placeholder
 -------------------------- */
/* BEM
 -------------------------- */
.my-dv-adorn-4__container {
  overflow: hidden;
}

.my-dv-adorn-4 .normal {
  animation: ani-height ease-in-out infinite;
}
.my-dv-adorn-4 .reverse {
  animation: ani-width ease-in-out infinite;
}
@keyframes ani-height {
  0% {
    height: 0%;
  }
  70% {
    height: 100%;
  }
  100% {
    height: 100%;
  }
}
@keyframes ani-width {
  0% {
    width: 0%;
  }
  70% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}