/*
Copyright inpleworks, Co.
XET CSS v2.0.4 2024-08-02 for supported in all modern browsers
By xetemplate(https://xetemplate.com)
*/
.xet-page .page__workflow {
  position: relative;
  padding-top: 2rem;
}
.xet-page .page__workflow .item {
  position: relative;
  display: flex;
  gap: 2rem;
  min-height: 50vh;
}
.xet-page .page__workflow .item .progress-bar {
  z-index: 0;
  position: absolute;
  top: 3rem;
  left: 2rem;
  bottom: -1rem;
  width: 4px;
  background-color: rgba(0, 0, 0, 0.05);
}
.xet-page .page__workflow .item .progress-bar .progress {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  background: var(--xet-theme-color);
}
.xet-page .page__workflow .item span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 500;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0.75;
  color: #fff;
  border: 4px solid var(--xet-theme-color);
  background-color: #ff8066;
}
.xet-page .page__workflow .item .item__container {
  position: relative;
}
.xet-page .page__workflow .item .item__container > div + div {
  margin-top: 1rem;
  font-size: 1.25rem;
}
.xet-page .page__workflow .item .item__container .item__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--xet-theme-color);
}
.xet-page .page__workflow .item .item__container .item__icon img {
  width: 6rem;
  opacity: 0.9;
}
.xet-page .page__workflow .item .item__container .item__icon img.dark {
  display: none;
}
.xet-page .page__workflow .item:last-child .progress-bar {
  display: none;
}

@media (min-width: 992px) {
  .xet-page .page__workflow {
    width: 50vh;
    margin: auto;
    padding-top: 4rem;
  }
  .xet-page .page__workflow .item .item__container > div + div {
    margin-top: 2rem;
  }
}