.las-process-timeline {
  width: 100%;
  margin: 0;
  padding: 0;
}
.las-process-timeline__steps {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px 0;
}
.las-process-timeline__steps.desktop {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.las-process-timeline__steps.desktop::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background-color: rgba(183, 185, 170, 0.3490196078);
  z-index: 0;
}
@media (max-width: 767px) {
  .las-process-timeline__steps.desktop {
    display: none !important;
  }
}
.las-process-timeline__steps.mobile {
  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .las-process-timeline__steps.mobile {
    display: flex !important;
  }
}
.las-process-timeline__step {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}
.mobile .las-process-timeline__step {
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 16px;
  padding-left: 0;
}
.mobile .las-process-timeline__step:not(.is-last)::after {
  content: "";
  position: absolute;
  left: 22.5px;
  top: 46px;
  width: 2px;
  height: calc(100% + 24px);
  background-color: rgba(183, 185, 170, 0.3490196078);
  z-index: 0;
}
.las-process-timeline__step-circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--las-accent, #F0C05A);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.mobile .las-process-timeline__step-circle {
  width: 46px;
  height: 46px;
  min-width: 46px;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 1.3rem;
}
.las-process-timeline__step-icon {
  padding: 20px 13px;
  width: 80px;
  height: 80px;
  background: #FAFDDE;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-bottom: 16px;
  z-index: 1;
  transition: all 0.3s ease;
  line-height: 1;
}
.las-process-timeline__step-icon i, .las-process-timeline__step-icon svg {
  display: block;
  width: 48px;
  height: 48px;
}
.mobile .las-process-timeline__step-icon {
  font-size: 36px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.mobile .las-process-timeline__step-icon i, .mobile .las-process-timeline__step-icon svg {
  width: 36px;
  height: 36px;
}
.las-process-timeline__step-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.mobile .las-process-timeline__step-content {
  flex: 1;
}
.las-process-timeline__step-title {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #1a1a1a;
  word-wrap: break-word;
  font-family: "Play";
  font-style: normal;
  font-weight: 400;
  color: #000000;
}
@media (max-width: 767px) {
  .las-process-timeline__step-title {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
.las-process-timeline__step-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin-top: 8px;
  word-wrap: break-word;
  opacity: 0.9;
}
@media (max-width: 767px) {
  .las-process-timeline__step-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .las-process-timeline__steps.desktop {
    gap: 30px;
  }
  .las-process-timeline__step-title {
    font-size: 1.05rem;
  }
  .las-process-timeline__step-icon {
    font-size: 42px;
  }
  .las-process-timeline__step-icon i, .las-process-timeline__step-icon svg {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 480px) {
  .las-process-timeline__steps.mobile {
    gap: 20px;
    padding: 5px 0;
  }
  .las-process-timeline__step-circle {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 1.3rem;
  }
  .las-process-timeline__step-icon {
    font-size: 32px;
  }
  .las-process-timeline__step-icon i, .las-process-timeline__step-icon svg {
    width: 32px;
    height: 32px;
  }
  .las-process-timeline__step-title {
    font-size: 1rem;
  }
  .las-process-timeline__step-desc {
    font-size: 0.85rem;
  }
  .mobile .las-process-timeline__step:not(.is-last)::after {
    left: 22.5px;
    top: 46px;
    width: 2px;
    height: calc(100% + 20px);
  }
}
@media print {
  .las-process-timeline__steps.mobile {
    display: none !important;
  }
  .las-process-timeline__steps.desktop {
    display: flex !important;
  }
}/*# sourceMappingURL=las-process-timeline.css.map */