body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

small,
.small {
    font-size: 12px;
}

header {
    background-color: #333;
    color: white;
    font-size: 16px;
    line-height: 32px;
    padding: 10px;
}

.alert-message {
  border: 0;
  border-radius: 0;
  line-height: 16px;
}

.logo {
    margin-right: 15px;
}

.check-box {
  border: 1px solid #d0d2d3;
  height: 25px;
  white-space: nowrap;
  width: 25px;
}

.check-box input[type=checkbox] {
  display: none;
}

.check-box input[type=checkbox] + label {
  display: inline-block;
  font-weight: normal;
  height: 25px;
  left: 31px;
  line-height: 22px;
  position: relative;
}

.check-box input[type=checkbox] + label:before {
  color: green;
  content: "\00a0";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 24px;
  height: 25px;
  left: -31px;
  position: absolute;
  width: 25px;
}

.check-box input[type=checkbox]:checked + label:before {
  content: "\f00c";
  letter-spacing: 5px;
}

.btn-primary {
    color: white;
    background: #faa635;
    border-color: #faa635;
    border-radius: 3px;
    box-shadow: 0px 1px 0px rgba(0,0,0,0.11);
}

.btn-primary:hover {
    background: #faa635;
    border-color: #faa635;
    border-radius: 3px;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.25);
}

.form-signin p {
    margin-bottom: 2px;
    margin-top: 10px;
}

.margin-group {
    margin-bottom: 20px;
}

.loading-overlay {
    background: rgba(81, 81, 81, 0.90);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.loading-icon {
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
}