/* -----------------------------------------------
// Default CSS
----------------------------------------------- */
.application-form {
  max-width: 500px;
  width: 100%;
  margin: 50px auto;
  padding: 40px;
  background: #edf1f3;
  border: 0;
  border-radius: 5px;
}

.form-title {
  font-size: 26px;
  color: #333333;
  text-align: center;
  margin: 0 0 30px 0;
}

.application-form #first-step { display: block; }
.application-form #second-step { display: none; }

.application-form .form-row {
  display: flex;
  flex-direction: column;
}

.application-form .form-col {
  display: flex;
  flex-direction: column;
  margin: 0 0 25px 0;
}

.application-form .form-direction-row {
  flex-direction: row !important;
  justify-content: space-between;
}

.application-form .form-col-6 {
  display: flex;
  flex: 0 0 49%;
}

.application-form .dropdown-arrow {
  position: relative;
}

.application-form .label {
  color: #333333;
  margin: 0 0 10px 0;
  font-size: 15px;
  text-align: left;
}

.application-form select,
.application-form input[type="text"], 
.application-form input[type="email"] {
  height: 35px;
  border: 0;
  border-radius: 5px;
  padding: 0 10px;
  font-size: 15px;
}

.application-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.application-form .next-btn,
.application-form .submit-btn,
.application-form .previous-btn{
  border: 0;
  border-radius: 5px;
  padding: 10px 10px;
  font-size: 17px;
  font-weight: bold;
  width: 100%;
}

.application-form .next-btn,
.application-form .submit-btn{
  background: #32b2fc;
  color: #ffffff;
}

.application-form .next-btn:hover,
.application-form .submit-btn:hover{
  background: #004a75;
}

.application-form .previous-btn {
  background: #cccccc;
}

.application-form .previous-btn:hover {
  background: #aaaaaa;
}

/* -----------------------------------------------
//  Custom checkbox
----------------------------------------------- */
.application-form .checkbox {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.2;
  color: #333333;
  text-align: justify;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.application-form .checkbox a {
  color: #2196F3 !important;
  text-decoration: none !important;
}

.application-form .checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.application-form  .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #ccc;
}

.application-form .checkbox:hover input[type="checkbox"] ~ .checkmark {
  background-color: #A0D5FF;
}

.application-form .checkbox input[type="checkbox"]:checked ~ .checkmark {
  background-color: #2196F3;
}

.application-form  .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.application-form .checkbox input[type="checkbox"]:checked ~ .checkmark:after {
  display: block;
}

.application-form .checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
