* {
  box-sizing: border-box;
}

h1 {
  text-align: center;  
}

input ,select {
  padding: 18px;
  width: 100%;
  border: 1px solid #47ae62;
}
.form-wizard-next-btn:hover, input:hover{
  background: #768eba;
}
/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

.form-wizard-next-btn {
  background-color: #47ae62;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  border-radius: 0px;
  cursor: pointer;
  width: 100%;
}

.form-wizard-next-btn:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 34px;
    width: 100px;
    margin: 0 -3px;
    background-color: #000;
    border: none;
    display: inline-block;
    padding-top: 5px;
    color: #fff;
}

.step.active {
    background-color: #47ae62;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #47ae62;
}
.step-hr{
  border-top: 6px solid rgba(0,0,0,.1);
}
.form-wizard-next-btn, #prevBtn{
  width: 100%;
  height: 4rem;
}
.hr-form{
  width: 18rem;
  border-top: 3px solid rgb(0 0 0);
}
input::-webkit-input-placeholder {
    -webkit-text-security: none;
    color: #000;
    direction: inherit !important;
    pointer-events: none !important;
    text-orientation: inherit !important;
    writing-mode: inherit !important;
}
.step-head{
  font-family:impact,impact-w01-2010,impact-w02-2010,impact-w10-2010,sans-serif;
  letter-spacing:0.4em;
  font-size:20px;
  font-variant: normal;
  font-style: normal;
  font-weight: normal;
}
.head-p{
  letter-spacing:0.15em;
  font-size: 14px;
}


.form-wizard .wizard-fieldset {
  display: none;
}
.form-wizard .wizard-fieldset.show {
  display: block;
  position: relative;
}
.form-wizard .wizard-form-error {
  display: none;
  color: red;
  width: 100%;
}

.form-wizard .form-control:focus {
  box-shadow: none;
}
.form-wizard .form-group {
  position: relative;
  margin: 25px 0;
}
.form-wizard .wizard-form-text-label {
  position: absolute;
  left: 10px;
  top: 16px;
  transition: 0.2s linear all;
}
.form-wizard .focus-input .wizard-form-text-label {
  color: #d65470;
  top: -18px;
  transition: 0.2s linear all;
  font-size: 12px;
}
.form-wizard .form-wizard-steps {
  margin: 30px 0;
}
.form-wizard .form-wizard-steps li {
  width: 16.66%;
  float: left;
  position: relative;
}
.form-wizard .form-wizard-steps li::after {
  background-color: #f3f3f3;
  content: "";
  height: 2px;
  left: 0;
  /*position: absolute;*/
  right: 0;
  top: 44%;
  transform: translateY(-50%);
  width: 100%;
  border-bottom: 1px solid white;
  border-top: 1px solid white;
}
.form-wizard .form-wizard-steps li span {
  background-color: black;
  /*border-radius: 50%;*/
  display: inline-block;
  /*border: 2px solid white;*/
  height: 30px;
  color: white;
  line-height: 30px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}
.form-wizard .form-wizard-steps li:last-child::after {
  width: 50%;
}
.form-wizard .form-wizard-steps li.active span, .form-wizard .form-wizard-steps li.activated span {
  background-color: #1e7e34;
  color: white;
}
.form-wizard .form-wizard-steps li.active::after, .form-wizard .form-wizard-steps li.activated::after {
  background-color: #ffffff;
  left: 50%;
  width: 50%;
  border-color: #ffffff;
}
.form-wizard .form-wizard-steps li.activated::after {
  width: 100%;
  border-color: #ffffff;
}
.form-wizard .form-wizard-steps li:last-child::after {
  left: 0;
}
.form-wizard .wizard-password-eye {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.f-300{
  font-weight: 300;
}

/* The container */
.container-check {
  display: block;
  position: relative;
  /*font-family: 'Raleway', sans-serif;*/
  padding-left: 40px;
  margin-bottom: 8px;
  font-weight: 300;
  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 */
.container-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    border-radius: 50%;
    width: 20px;
    border: 1px solid #47ae62;
    background-color: #ffffff;
}

/* On mouse-over, add a grey background color */
.container-check:hover input ~ .checkmark {
  background-color: #768eba;
}

/* When the checkbox is checked, add a blue background */
.container-check input:checked ~ .checkmark {
  background-color: #fff;
}

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

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

/* Style the checkmark/indicator */
/*.container-check .checkmark:after {
  left: 9px;
  top: 3.5px;
  width: 5px;
  height: 10px;
  border: solid #47ae62;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}*/
.container-check .checkmark:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #47ae62;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
}

footer{
  background: #47ae62;
}
footer a, footer a:hover{
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 575.98px) {

.step {
    height: 34px;
    width: 29px;
    }
  }
@media (min-width: 576px) and (max-width: 767.98px) { 
.step {
    height: 34px;
    width: 29px;
    }
}