div.block-stepper-slider {
  position: relative;
  padding-top: 70px;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(100vw - var(--wp--style--global--content-size))/-2 !important;
  margin-right: calc(100vw - var(--wp--style--global--content-size))/-2 !important;
  padding-left: calc((100vw - var(--wp--style--global--content-size)) / 2) !important;
  padding-right: 100px !important;
  box-sizing: border-box;
  overflow: hidden;
}
div.block-stepper-slider * {
  box-sizing: border-box;
}
div.block-stepper-slider .block-slider-controls {
  margin-top: var(--wp--preset--spacing--2-xl);
  justify-content: center;
  width: var(--wp--style--global--content-size) !important;
}
div.block-stepper-slider .steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  position: absolute;
  top: -60px;
  width: calc(100% - 330px);
  left: 165px;
}
@media screen and (max-width: 768px) {
  div.block-stepper-slider .steps {
    width: calc(100% - 60vw);
    left: 30vw;
  }
}
div.block-stepper-slider .steps:after {
  content: "";
  width: 100%;
  background-color: white;
  height: 2px;
  position: absolute;
  z-index: 1;
  top: 19px;
}
div.block-stepper-slider .steps:before {
  content: "";
  width: var(--percentage, 0%);
  background-color: var(--wp--preset--color--primary);
  height: 2px;
  position: absolute;
  z-index: 2;
  top: 19px;
  transition: all 0.3s;
}
div.block-stepper-slider .steps .step {
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: black;
  z-index: 3;
  overflow: hidden;
}
div.block-stepper-slider .steps .step.active {
  background-color: var(--wp--preset--color--primary);
  color: white;
  position: relative;
}
div.block-stepper-slider .steps .step.active:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M8.79508%2015.8749L4.62508%2011.7049L3.20508%2013.1149L8.79508%2018.7049L20.7951%206.70492L19.3851%205.29492L8.79508%2015.8749Z%22%20fill%3D%22white%22%2F%3E%3C%2Fsvg%3E");
  background-color: var(--wp--preset--color--primary);
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 9999px;
}
div.block-stepper-slider .custom-slider {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
div.block-stepper-slider .custom-slider .slider-wrapper {
  width: inherit;
  align-items: stretch !important;
  height: inherit !important;
}
div.block-stepper-slider .custom-slider .slide {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  width: 330px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  color: black;
  gap: 75px;
}
@media screen and (max-width: 768px) {
  div.block-stepper-slider .custom-slider .slide {
    width: 60vw;
  }
}
div.block-stepper-slider .custom-slider .slide h3 {
  margin-top: 0;
  margin-bottom: var(--wp--preset--spacing--xs);
}
div.block-stepper-slider .custom-slider .slide p {
  margin: 0;
}