@charset "UTF-8";
.form-group {
  margin-bottom: 15px;
}
.form-group > label {
  font-weight: 700;
  padding: 0 0 4px;
}
.form-group > .form-control + .form-control {
  margin-top: 10px;
}
.form-group > .help-block {
  color: #f00;
}

.form-field-image {
  margin-bottom: 10px;
}

.form-field-image img {
  max-width: 600px;
}

input {
  border: 1px solid #e0e0e0;
  outline: transparent;
}
input:focus {
  border-color: #519cff;
}

label {
  margin: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-control {
  min-height: 40px;
  border-radius: 3px;
}
.form-control::-moz-placeholder {
  color: #B9B9B9;
}
.form-control::placeholder {
  color: #B9B9B9;
}

.minheight {
  min-height: 150px;
}

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

.niceCheckbox {
  position: relative;
  padding: 0;
  cursor: pointer;
}
.niceCheckbox:hover .custom-checkbox {
  border-color: #B3B3B3;
}
.niceCheckbox:hover .checkbox-text-label > span:first-of-type {
  text-decoration: underline;
}
.niceCheckbox:hover .checkbox-text-label > span:last-of-type {
  text-decoration: none;
}
.niceCheckbox > label {
  cursor: pointer;
}

.niceCheckbox .custom-checkbox {
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: 1px solid #CCC;
  background-color: #fff;
  border-radius: 2px;
}

.niceCheckbox .custom-checkbox:after {
  position: absolute;
  top: 2px;
  left: 1px;
  width: 12px;
  height: 7px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  content: "";
  background: transparent;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  border: 3px solid #000;
  border-top: 0;
  border-right: 0;
}

.niceCheckbox input[type=checkbox]:checked + .custom-checkbox:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.form-group .checkbox-text-label, .checkbox-text-label {
  display: flex;
  padding: 5px 5px 5px 25px;
  font-size: 1rem;
  line-height: 20px;
  min-height: 28px;
}
.form-group .checkbox-text-label > .thumbnail, .checkbox-text-label > .thumbnail {
  width: 20px;
  height: 20px;
  float: right;
  margin-left: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.form-group .checkbox-text-label > span, .checkbox-text-label > span {
  flex: 0 0 auto;
}
.form-group .checkbox-text-label > span:first-of-type, .checkbox-text-label > span:first-of-type {
  flex: 1 1 auto;
}
.form-group .checkbox-text-label > span:not(:first-of-type), .checkbox-text-label > span:not(:first-of-type) {
  color: #898989;
  text-decoration: none;
}

/* Nice select */
.niceSelect select, .niceSelect option {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.niceSelect select {
  margin: 0;
  padding: 10px 28px 10px 10px;
  outline: none;
  display: inline-block;
  cursor: pointer;
  border: 1px solid #CECECE;
  width: 100%;
}

.niceSelect {
  position: relative;
}

.niceSelect:after {
  position: absolute;
  top: 11px;
  right: 10px;
  font-size: 16px;
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  pointer-events: none;
}

.niceSelect.date:after {
  content: "\f783";
}

/* Select 2 */
.select2-container {
  display: block;
}

.select2-container .select2-choice {
  padding: 0 0 0 6px;
  border: none;
  height: 38px;
  line-height: 38px;
  border-radius: 3px;
  background-color: #fff;
  background-image: none;
}

.select2-container .select2-choice .select2-arrow {
  line-height: 38px;
  position: absolute;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0 3px 3px 0;
  background-image: none;
  background-color: #e9e9e9;
  width: 24px;
}
.select2-container .select2-choice .select2-arrow b {
  background: url(/mix/images/select2.png?c074577…) no-repeat 3px 6px;
}

.input-validation {
  border-color: #f00;
}

.login-page--content .card {
  width: 100%;
  max-width: 450px;
}
.login-page--content .card h1 {
  margin: 10px 0;
  font-size: 2em;
  font-weight: 700;
}
.login-page--content .card h3 {
  font-size: 1.4rem;
  font-weight: 700;
}
.login-page--content .card .form-group:last-child {
  margin-bottom: 0;
}
.login-page--content .card .card-footer a + a {
  margin-left: 10px;
}
.login-page--content a.show-password {
  cursor: pointer;
}

/*# sourceMappingURL=login.css.map*/