.cdw-steps-slider {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cdw-steps-slider .process-content {
  display: flex;
  position: relative;
}

.cdw-steps-slider .steps-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
  position: relative;
  padding-left: 30px;
}

.cdw-steps-slider .steps-list::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 1px;
  height: calc(100% - 30px);
  min-height: 40px;
  background: rgba(255, 255, 255, 0.20);
  z-index: 0;
}

.cdw-steps-slider .step-item,
.cdw-steps-slider .step-item * {
  -webkit-tap-highlight-color: transparent;
}

.cdw-steps-slider .step-item {
  cursor: pointer;
  border-bottom: 1px solid #eee;
  padding: 15px 0 15px 0px;
  margin-bottom: 32px;
  margin-left: 24px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 30px;
}

.cdw-steps-slider .bullet-icon {
    position: absolute;
    top: 0;
    left: -51px;
    z-index: 1;
    width: 24px;
    height: 24px;
    opacity: 0.2;
}

.cdw-steps-slider .bullet-icon::before {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.2;
    content: "";
}

.cdw-steps-slider .bullet-icon span {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: currentColor;
}

.cdw-steps-slider .step-item.active .bullet-icon {
    opacity: 1;
}

/*.cdw-steps-slider .step-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #a39682;
  border: 2px solid #f6f2ed;
  z-index: 1;
}
*/
/*.cdw-steps-slider .step-item:last-child::before {
  z-index: 2;
}*/

/*.cdw-steps-slider .step-item.active::before {
  background-color: #a39682;
  box-shadow: 0 0 0 3px #f6f2ed;
}*/

.cdw-steps-slider .step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.cdw-steps-slider .step-header::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 240ms ease;
}

.cdw-steps-slider .step-item.active .step-header::after {
    transform: translateY(-20%) rotate(225deg);
}

.cdw-steps-slider .step-number {
  /*font-weight: 600;*/
  color: #999;
}

.cdw-steps-slider .step-item.active .step-number {
  color: var(--cdw-steps-accent, #ff6b00);
}

.cdw-steps-slider .step-title {
  font-size: 18px;
  font-weight: 500;
}

.cdw-steps-slider .step-body {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.6s ease, opacity 0.6s ease;
}

.cdw-steps-slider .step-item.active .step-body {
  opacity: 1;
}

.cdw-steps-slider .step-description {
  margin-top: 10px;
}

.cdw-steps-slider .step-description p:last-child {
  margin-bottom: 0;
}

.cdw-steps-slider .step-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.cdw-steps-slider .step-link svg {
  flex: 0 0 auto;
}

.cdw-steps-slider .mobile-image {
  display: none;
  margin-top: 10px;
}

.cdw-steps-slider .mobile-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

.cdw-steps-slider .step-images {
  position: sticky;
  top: 50px;
  flex: 1;
  height: 600px;
  margin-left: 40px;
  overflow: hidden;
}

.cdw-steps-slider .step-images .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition-property: width, height;
  transition-duration: 700ms, 700ms;
  transition-timing-function: ease-in-out, ease-in-out;
  transform-style: preserve-3d;
  will-change: width, height;
  overflow: hidden;
}

.cdw-steps-slider .step-images .image-wrapper img {
  width: 100%;
  height: 538px;
  object-fit: cover;
  border-radius: 18px;
  position: static;
  transform-origin: 0% 50%;
  box-sizing: content-box;
}

@media (max-width: 768px) {
  .cdw-steps-slider .process-content {
    flex-direction: column;
  }

  .cdw-steps-slider .step-images {
    display: none;
  }

  .cdw-steps-slider .mobile-image {
    display: block;
  }
}
