body, .form-control {
    font-family: 'nunito', sans-serif;
}
h1{
    font-family: 'Nunito', sans-serif;
    margin-bottom: 18px;
}
label {
    color: #444;
    font-size: 10pt;
    font-weight: 800;
    margin: 0;
    padding: .3em;
    
} 
.btn-send {
    
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    /*letter-spacing: 0.1em;*/
    margin-bottom: 20px;
    padding-left: 24px;
    padding-right: 24px;
    
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px; /* future proofing */
    -khtml-border-radius: 40px; /* for old Konqueror browsers */
}


.help-block.with-errors {
    color: #ff5050;
    margin-top: 5px;
}



/* SWITCH CSS*/

.switch {
  position: relative;
  display: inline-block;
    margin: 0   10px  10px  0;
}
.switch-input {
  display: none;
}
.switch-label {
  display: block;
  width: 48px;
  height: 24px;
  text-indent: -150%;
  clip: rect(0 0 0 0);
  color: transparent;
  user-select: none;
}
.switch-label::before,
.switch-label::after {
  content: "";
  display: block;
  position: absolute;
  cursor: pointer;
}
.switch-label::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dedede;
  border-radius: 9999em;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.switch-label::after {
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
  -webkit-transition: left 0.25s ease;
  transition: left 0.25s ease;
}
.switch-input:checked + .switch-label::before {
  background-color: #89c12d;
}
.switch-input:checked + .switch-label::after {
  left: 24px;
}








/* */
.none {display:none;}
.block {display:block;}