
.httpslottiefilescomanimat-icon {
  height: 95px;
  width: 95px;
  position: relative;
  border-radius: 25px;
  object-fit: cover;
  opacity: 0;
}
.httpslottiefilescomanimat-icon.animate {
  animation: 1s ease 0s 1 normal forwards slide-in-top;
}
.animation-container {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 50px 0;
}
.fill,
.fill1 {
  border: 0;
  outline: 0;
  background-color: #d9d9d9;
  height: 65px;
  flex: 1;
  position: relative;
  border-radius: 25px;
  opacity: 0;
  min-width: 317px;
  text-align: center;
}
.fill.animate {
  animation: 1s ease 1s 1 normal forwards slide-in-left;
}
.fill1.animate {
  animation: 1s ease 0s 1 normal forwards slide-in-right;
}
.fill-parent {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  max-width: 100%;
}
.stroke {
  border: 0;
  outline: 0;
  background-color: #d9d9d9;
  align-self: stretch;
  height: 65px;
  position: relative;
  border-radius: 25px;
  opacity: 0;
  min-width: 250px;
  text-align: center;
}
.stroke.animate {
  animation: 1s ease 2s 1 normal forwards fade-in-top;
}
.frame-parent11,
.property-1variant3 {
  align-self: stretch;
  flex-direction: column;
  box-sizing: border-box;
  gap: 10px;
}
.frame-parent11 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 15px 150px 0;
  min-height: 290px;
  max-width: 100%;
}
.property-1variant3 {
  border-radius: 25px;
}
.property-1variant3,
.property-1variant3-wrapper,
.root1 {
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.property-1variant3-wrapper {
  flex: 1;
  border-radius: 5px;
  border: 1px dashed #9747ff;
  box-sizing: border-box;
  overflow: hidden;
  flex-direction: column;
  padding: 20px;
}
.root1 {
  width: 100%;
  flex-direction: row;
  line-height: normal;
  letter-spacing: normal;
}
@media screen and (max-width: 884px) {
  .fill-parent {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 707px) {
  .property-1variant3 {
    padding-bottom: 380px;
    box-sizing: border-box;
  }
}
@keyframes slide-in-top {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-200px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}