* {
  box-sizing: border-box;
}

body {
  background-color: #f1f1f1;
}

#regForm,
#personalForm,
#mortgageForm,
#vehicleForm {
  background-color: #ffffff;
  margin: 100px auto;
  /*   font-family: Raleway; */
  padding: 40px;
  width: 100%;
  min-width: 300px;
}

h1 {
  text-align: center;
}

input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

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

button {
  background-color: #04AA6D;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #043668;
}

.fl-col {
  display: flex;
  flex-direction: column;
}

.fl-col label, .fl-col a {
  margin: 15px 0;
  padding: 10px;
  font-size: 2rem;
}

.custom-btn {
  background: #043668 !important;
  border: #043668 !important;
  font-size: 2rem;
  /*   padding: 14px 20px; */
}

.custom-btn:hover,
.custom-btn.active {
  background: #0d6efd !important;
  border: #0d6efd !important;
}

#happiness_percent_r,
#monthly_revenue {
  display: none;
}

.slider-amount,
.monthly_revenue-amount {
  font-weight: 600;
  font-size: 32px;
  color: #043668;
}

.textbox {
  margin: 10px;
  width: 100%;
}

.selectBox {
  /* width: 5% !important; */
  margin: 10px 0px;
}

.phone {
  /* width: 85% !important; */
  margin: 10px 0px;
}

.iti__selected-flag {
  padding: 0px 5px 0 5px !important;
  margin-left: 12px !important;
}

#confettiImage {
  position: absolute;
  width: 1200px;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.irs--round .irs-min,
.irs--round .irs-max {
  display: none;
}

#mortgage_r,
#income_r,
#debtconsolidation,
#monthly_income,
#vehicle_r {
  display: none;
}

.iti__country-list, .iti__arrow {
    display: none;
}

.fade-in {
  animation: fadeIn ease 5s;
  -webkit-animation: fadeIn ease 5s;
  -moz-animation: fadeIn ease 5s;
  -o-animation: fadeIn ease 5s;
  -ms-animation: fadeIn ease 5s;
}


@keyframes fadeIn{
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}