
.prev-or-next {
  display: flex;
  justify-items: center;
  align-items: center;
  column-gap: 15px;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	max-width: 343px;
	margin: 0 auto;
}

@media all and (max-width: 690px) {
  .prev-or-next {
    max-width: unset;
  }
}

.prev-or-next .btn_prev {
  flex-grow: 1;
	background: white;
	color: #4485F5;
	border: 1px solid #4485F5;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	cursor: pointer;
}
.prev-or-next .btn_next {
  flex-grow: 1;
	background: #A3A3A3 !important;
	border: 1px solid #A3A3A3 !important;
	color: white !important;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
}
.prev-or-next .btn_next.active, 
.prev-or-next .btn_next.btn-active {
	border: 1px solid #4485F5 !important;
	background: #4485F5 !important;
	cursor: pointer;
} 

.survey-traffic__stepper h1.title {
  color: #D8375B;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 32px;
}
.stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 332px;
  margin-bottom: 4px;
}
@media all and (max-width: 375px) {
  .stepper {
    width: 100%;
  }
}
.stepper > div {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
}
.stepper > div p {
  text-align: center;
  margin-top: 10px;
  color: #444444;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}
.stepper .step {
  display: flex;
  align-items: center;
  height: 41px;
}
.stepper .step .circle-step {
  min-width: 32px;
  height: 32px;
  background-color: #DCDCDC;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stepper .step .circle-step i {
  display: none;
}
.stepper .step .circle-step span {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}
.stepper > div.active:not(.success) p {
  font-weight: 600;
}
.stepper > div.active .circle-step {
  background-color: #67BA64;
  border: 4px solid #FFFFFF;
  box-shadow: 0px 0px 0 2px #67ba64;
}
.stepper > div.active .line {
  background-color: #67BA64;
}
.stepper > div.active.success .circle-step {
  border: unset;
  box-shadow: unset;
}
.stepper > div.active.success .circle-step span {
  display: none;
}
.stepper > div.active.success .circle-step i {
  display: block;
  color: white;
}
.stepper .line-two .step {
  display: flex;
  justify-content: center;
  align-items: center;
}
.stepper .line {
  height: 2px;
  background-color: #DCDCDC;
  width: 100%;
}
.stepper .line-one .line:first-of-type {
  background-color: unset !important;
}
.stepper .line-three .line:last-of-type {
  background-color: unset !important;
}
