
.step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}

.step-circle {
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
  padding: 0 10px;
  background: #24243a;
}
.step-circle .icon_box{
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--midnight-slate);
  margin: 0 auto 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-circle p{
  margin: 0 0 4px;
  color: var(--text-primary);
}
.step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #007bff;
  z-index: -1;
}

.multi-step-form-main{
  background-color: rgba(105, 44, 151, 10%);
  padding: 1.5rem;
  border: 1px solid rgba(156, 163, 175, 10%);
  border-radius: 16px;
}
.multi-step-form-main .step .step_title h2{
  text-align: center;
  color: var(--text-primary);
}
.multi-step-form-main .step .step_title h3{
  font-size: 18px;
}
.multi-step-form-main .step .step_title p{
  text-align: center;
}
.custom_radio_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -1rem;
}
.custom_radio_col{
  width: 33.333%;
  padding: 1rem;
}

.custom_radio_col_box {
  position: relative;
}
.custom_radio_col_box input{
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.custom_radio_col_box .custom_radio_col_box_inner{
  background-color: var(--midnight-slate);
  padding: 1.5rem;
  border: 1px solid rgba(156, 163, 175, 10%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.custom_radio_col_box input:checked + .custom_radio_col_box_inner{
  border-color: var(--bold-teal);
}
.custom_radio_col_box .custom_radio_col_box_inner svg{
  width: 50px;
  height: 50px;
}
.custom_radio_col_box .custom_radio_col_box_inner h5{
  color: var(--text-primary);
}
.custom_radio_col_box .custom_radio_col_box_inner p{
  text-align: center;
}
#multi-step-form{
  overflow-x: hidden;
}
.maxwidth_500{
  max-width: 500px;
  margin: 24px auto;
}
