//Header font weight
h1 {
  font-weight: 300;
}

h2 {
  font-weight: 400;
}

h3 {
  font-weight: 500;
}

h4 {
  font-weight: 600;
}

h5 {
  font-weight: 700;
}

h6 {
  font-weight: 800;
  text-transform: none;
}

//Fix the input height
.form-control { 
  height: auto;
}

.form-group {
  .bootstrap-select.btn-block {
    width: 100%;
  }
  .btn-block+.btn-block {
    margin: 0;
  }
}

.btn-default {
  &:hover,
  &:focus {
    color: @btn-default-hover-color;
    text-decoration: none;
  }
}
.btn-primary {
  &:hover,
  &:focus {
    color: @btn-primary-hover-color;
    text-decoration: none;
  }
}
// Warning appears as orange
.btn-warning {
  &:hover,
  &:focus {
    color: @btn-warning-hover-color;
    text-decoration: none;
  }
}
// Danger and error appear as red
.btn-danger {
  &:hover,
  &:focus {
    color: @btn-danger-hover-color;
    text-decoration: none;
  }
}
// Success appears as green
.btn-success {
  &:hover,
  &:focus {
    color: @btn-success-hover-color;
    text-decoration: none;
  }
}
// Info appears as blue-green
.btn-info {
  &:hover,
  &:focus {
    color: @btn-info-hover-color;
    text-decoration: none;
  }
}
