body, html {
  overflow-x: hidden;
}

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

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

.stepper {
  width: 20rem;
  background-color: #081d3c;
  padding: 35px;
  border-radius: 15px;
}

.steps {
  position: relative;
  padding: 0.5rem 0;
  padding-bottom: 25px;
  color: #fff;
}
.steps:after {
  content: "";
  position: absolute;
  height: 100%;
  border: 1px dashed #fff;
  left: calc(50px / 3);
  top: 5px;
  z-index: 1;
}
.steps.step-active span {
  background-color: #fff;
}
.steps span {
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border: 1px solid #ee6d58;
  position: relative;
  z-index: 2;
  padding: 7px 6px;
  margin-right: 25px;
  font-size: 20px;
  font-weight: 600;
  background-color: #081d3c;
}
.steps:last-child:after {
  display: none;
}

.form {
  background: #fff;
  text-align: left;
  width: 71%;
  display: none;
  padding-left: 5rem;
  overflow: hidden;
}
.form h1 {
  color: #081d3c;
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  margin-bottom: 40px;
}
.form h1 span {
  display: block;
  color: #ee6d58;
}
.form h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 50px;
  height: 5px;
  background-color: #081d3c;
}
.form label {
  color: #081d3c;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 20px;
}
.form .form-control {
  margin-bottom: 15px;
  border-color: #29abe2;
  color: #081d3c;
  height: 50px !important;
}
.form .input-group {
  border: 1px solid #29abe2;
  border-radius: 15px;
  align-self: baseline;
  align-items: center;
  width: 100px;
  background-color: #fff;
}
.form .input-group .form-control {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  height: auto !important;
  border-right: 1px solid #29abe2;
  background-color: transparent;
}
.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: #081d3c;
  color: #fff;
  outline: none;
  border: none;
  padding: 0.5rem 0.7rem;
  width: 7rem;
  margin: 1rem auto;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}
.form__btn.next {
  background-color: #ee6d58;
}

.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: #ee6d58;
  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;
  }

  .steps {
    padding-bottom: 0;
  }
  .steps:after {
    height: 1px;
    top: 24px;
    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-left: 0;
    padding-top: 25px;
  }
}

/*# sourceMappingURL=style.css.map */
 /* The container */
.radioContainer {
  display: block;
  position: relative;
  padding-left: 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;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius:0px 8px;
}

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

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

/* 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: 7px;
  height: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}