.checkbox-list {
  float:left;
  display: inline-block;
  margin-left: 0px;
  padding-left: 0px;
}

.radio-list {
  /* float:left; */
  display: inline-block;
  margin-left: 0px;
  padding-left: 0px;
}

.checkbox label.text {
  cursor: pointer;
  display: inline-block;
  margin-right: 15px;
  padding-left: 40px;
  position: relative;
  line-height: 25px; /*line-height: 50px;*/
  margin-bottom: 25px; /*margin-bottom: 0px;*/
}

.radio label.text {
  cursor: pointer;
  display: inline-block;
  margin-right: 15px;
  padding-left: 35px;
  position: relative;
  line-height: 20px; /*line-height: 40px;*/
  margin-bottom: 25px; /*margin-bottom: 0px;*/
}

form > .row {
  margin-right: 0px;
  margin-left: -15px;
}

form > .row > .col-md-6, form > .row > .col-md-12, form > .row > .col-md-4, form > .row > .col-md-8, form > .row > .col-md-5, form > .row > .col-md-3 {
  padding-left: 15px;
  padding-right: 0px;
}

.form-control:focus {
  border: none;
  outline: 0;
  -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,0.0), 0 0 0px rgba(0, 0, 0, 0.0);
  box-shadow: inset 0 0px 0px rgba(0,0,0,0.0), 0 0 0px rgba(0, 0, 0, 0.0);
}

.has-border .form-control {
  border: none;
  outline: 0;
  -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,0.0), 0 0 0px rgba(0, 0, 0, 0.0);
  box-shadow: inset 0 0px 0px rgba(0,0,0,0.0), 0 0 0px rgba(0, 0, 0, 0.0);
}

/*.has-error .form-control {
  border: 1px solid #fa7070;
  outline: 0;
  -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,0.0), 0 0 0px rgba(0, 0, 0, 0.0);
  box-shadow: inset 0 0px 0px rgba(0,0,0,0.0), 0 0 0px rgba(0, 0, 0, 0.0);
}*/

.has-success .form-control {
  border: none;
  outline: 0;
  -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,0.0), 0 0 0px rgba(0, 0, 0, 0.0);
  box-shadow: inset 0 0px 0px rgba(0,0,0,0.0), 0 0 0px rgba(0, 0, 0, 0.0);
}

.has-error .form-control:focus, .has-success .form-control:focus {
  border: none;
  outline: 0;
  -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,0.0), 0 0 0px rgba(0, 0, 0, 0.0);
  box-shadow: inset 0 0px 0px rgba(0,0,0,0.0), 0 0 0px rgba(0, 0, 0, 0.0);
}

.has-error .form-control {
  background-image: url(../images/required.svg);
  padding-right: 2.45rem;
  background-repeat: no-repeat;
  background-position: center right 1rem;
  -webkit-background-size: 1.25rem 1.25rem;
  background-size: 1.25rem 1.25rem;
}

.form-section-spacing {
  padding-bottom: 40px;
}

.form-section-spacing-02 {
  padding-bottom: 20px;
}

.form-inline {
  display: inline;
  float: left;
  margin-right: 30px;
}

.checkbox-tall {
  margin-top: 30px;
}

.radio, .checkbox {
  position: relative;
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
}

.checkbox label {
  min-height: 20px;
  padding-left: 35px;
  margin-bottom: 15px;
  font-weight: 300;
  cursor: pointer;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;  
  font-size: 13px;
  color: #191d22;
}

.radio label {
  min-height: 20px;
  padding-left: 35px;
  margin-bottom: 15px;
  font-weight: 300;
  cursor: pointer;
  font-size: 13px;
  color: #191d22;
}

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -30px;
}

input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
  outline: none;
}

input[type="checkbox"] {
    display: none;
}

input[type="radio"] {
    display: none;
}

.checkbox label::before {
  background-color: #FFF;
  top: 1px; /*top: 13px;*/
  content: "";
  display: inline-block;
  height: 22px;
  width: 22px;
  left: 0px;
  margin-right: 10px;
  position: absolute;
}

.radio label::before {
  background-color: #FFF;
  top: 2px; /*top: 10px;*/
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  left: 0px;
  margin-right: 10px;
  position: absolute;
  border-radius: 10px;
}

input[type="checkbox"]:checked + label::before {
  color: #F3F3F3;
  background: #FFF url(../images/checkmark-icon-01.svg) no-repeat scroll center center;
  background-size: 9px auto;
  line-height: 15px;
  text-align: center;
}

input[type="radio"]:checked + label::before {
  color: #F3F3F3;
  background: #FFF url(../images/radio-icon-01.svg) no-repeat scroll center center;
  background-size: 6px auto;
  line-height: 15px;
  text-align: center;
}

select {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

option {
  -webkit-appearance: none;
  -moz-appearance: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

#register_message {
  color: red;
  font-family: "proxima-nova", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 19px;
  font-weight: 300;
  font-size: 13px;
  margin-top: 10px;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}