body, html {
  overflow-x: hidden;
}

body {
  /* font-family: "Raleway", sans-serif; */
}

/*------------------------*/
.main_steper {
  width: 100%;
  display: flex;
  position: relative;
  margin-top: 50px;
  z-index: 1;
}

.stepper {
  width: 25rem;
  background-color: #670042;
  padding: 35px 35px 45px;
  border-radius: 0 80px 0 0;
}

.steps {
  position: relative;
  padding: 0.5rem 0;
  padding-bottom: 25px;
  color: #fff;
  font-size: 16px;
}
.steps:after {
  content: "";
  position: absolute;
  height: 100%;
  border: 1px dashed #ffffffab;
  right:calc(50px / 3);
  top: 5px;
  z-index: 1;
}
.steps.step-active span {
  background-color: #fff799;
  color: #000;
}
.steps span {
  position: relative;
  z-index: 2;
  padding: 7px 8px;
  margin-left: 12px;
  font-size: 16px;
  background-color: #892565;
  border-radius: 50px;
}
.steps:last-child:after {
  display: none;
}

.form {
  background: #fff;
  text-align: right;
  width: 71%;
  display: none;
  padding-right: 5rem;
  overflow: hidden;
}
.form h1 {
  color: #000000;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 28px;
}
.form h1 span {
  display: block;
  color: #670042;
}
.form h1:after {
  content: "";
  /* position: absolute; */
  /* left: 0; */
  /* bottom: -20px; */
  /* width: 50px; */
  /* height: 5px; */
  /* background-color: #081d3c; */
}
.form label {
  color: #323232;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 0;
  display: block;
}
.form .form-control {
  margin-bottom: 15px;
  /* border-color: #29abe2; */
  /* color: #081d3c; */
  /* height: 50px !important; */
  width: 100%;
}
.form .input-group {
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  align-self: baseline;
  align-items: center;
  width: 126px;
  background-color: #fff;
  display: flex;
  padding: 10px 7px;
  margin-bottom: 18px;
}
.form .input-group .form-control {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  height: auto !important;
  /* border-right: 1px solid #29abe2; */
  background-color: transparent;
  width: 100%;
}
.form .input-group .btn {
  background-color: #fff;
  border-radius: 50%;
  padding: 2px 4px;
  color: #000;
  font-size: 12px;
  background-color: transparent;
}
.form .input-group .btn:focus, .form .input-group .btn:visited, .form .input-group .btn:active {
  box-shadow: none;
}
.form .input-group .input-group-btn:first-child {
  border-right: 1px solid #29abe2;
}

.form__btn {
  background: #101010;
  color: #fff;
  outline: none;
  border: none;
  padding: 15px 20px;
  width: 7rem;
  margin: 0 auto 1rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border-radius: 5px;
}
.form__btn.next {
  background-color: #670042;
}

.form--message-text {
  width: 100%;
  background: #fff;
  color: #444;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1.4rem;
  box-shadow: 0.2rem 0.2rem 0.5rem rgba(51, 51, 51, 0.2);
  animation: fadeIn 0.8s;
  border-radius: 1rem;
  margin-left: 5rem;
}

.form-active {
  z-index: 1000;
  display: block;
}

.form-active-animate {
  animation: moveRight 1s;
}

.form-inactive {
  display: block;
  animation: moveLeft 1s;
}

.step-active {
  color: #fff799;
  font-weight: 700;
  font-size: 18px;
}

.custom-control-label::before {
  background-color: #fff;
  border: 1px solid #29abe2;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #ee6d58;
}

@media screen and (max-width: 992px) {
  .main_steper {
    flex-direction: column;
  }

  .stepper {
    width: 100%;
    display: flex;
    white-space: nowrap;
    overflow: auto;
    justify-content: space-between;
    align-items: end;
    align-items: flex-start;
        padding: 35px 20px;
  }

  .steps {
    padding-bottom: 0;
  }
  .steps:after {
    height: 1px;
    top: 18px;
    width: 100%;
  }
  .steps emp {
    display: block;
    font-size: min(max(10px, 2.5vw), 11px);
    margin-top: 10px;
    width: 60px;
    white-space: break-spaces;
  }

  .form {
    width: 100%;
    padding-right: 0;
    padding-top: 25px;
  }
}

/*# sourceMappingURL=style.css.map */
 /* The container */
.radioContainer {
  display: block;
  position: relative;
  padding-right: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.radioContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50px;
}

/* On mouse-over, add a grey background color */
.radioContainer:hover input ~ .checkmark {
  background-color: #670042;
  border-radius: 50px;
}

/* When the checkbox is checked, add a blue background */
.radioContainer input:checked ~ .checkmark {
  background-color: #670042;
  border-radius: 50px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.radioContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.radioContainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 575px) {
.steps:after{ display: none; }
.steps span{ margin-right: 0px; }
.steps emp{ font-size: 10px; }
.steps { text-align: center;border: 1px solid #813866;min-height: 85px;padding: 5px;padding-top: 16px;}
.stepper{ gap:1% }
}

@media screen and (max-width: 480px) {
.stepper{ border-radius: 10px; }
}