/* stylelint-disable no-descending-specificity */
[class*=icheck-] input[type=checkbox]:first-child {
  position: absolute !important;
  opacity: 0;
  margin: 0;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

[class*=icheck-] input[type=checkbox]:first-child + label {
  padding-left: 29px !important;
  min-height: 22px;
  line-height: 22px;
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
}

[class*=icheck-] input[type=checkbox]:first-child + label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid #d3cfc8;
  border-radius: 0;
  margin-left: -29px;
}

[class*=icheck-] input[type=checkbox]:first-child:checked + label::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 10px;
  border: 2px solid #fff;
  border-left: none;
  border-top: none;
  transform: translate(7.75px, 4.5px) rotate(45deg);
}

.icheck-default input[type=checkbox]:first-child:checked + label::before {
  background-color: #e6e6e6;
  border-color: #adadad;
}

.icheck-default input[type=checkbox]:first-child:checked + label::after {
  border-bottom-color: #333;
  border-right-color: #333;
}

.icheck-default input[type=checkbox]:first-child:not(:checked, :disabled):hover + label::before {
  border-color: #adadad;
}

.icheck-primary input[type=checkbox]:first-child:checked + label::before {
  background-color: #337ab7;
  border-color: #2e6da4;
}

.icheck-primary input[type=checkbox]:first-child:not(:checked, :disabled):hover + label::before {
  border-width: 2px;
  border-color: #2e6da4;
}

[class*=icheck-] input[type=hidden] + input[type=checkbox] {
  position: absolute !important;
  opacity: 0;
  margin: 0;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

[class*=icheck-] input[type=hidden] + input[type=checkbox] + label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid #d3cfc8;
  border-radius: 0;
  margin-left: -29px;
}

[class*=icheck-] input[type=hidden] + input[type=checkbox]:checked + label::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 10px;
  border: 2px solid #fff;
  border-left: none;
  border-top: none;
  transform: translate(7.75px, 4.5px) rotate(45deg);
}

.icheck-primary input[type=hidden] + input[type=checkbox]:checked + label::before {
  background-color: #337ab7;
  border-color: #2e6da4;
}

.icheck-primary input[type=hidden] + input[type=checkbox]:not(:checked, :disabled):hover + label::before {
  border-width: 2px;
  border-color: #2e6da4;
}

body.login-page {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
}
body.login-page b.login-box,
body.login-page .card-body {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
body.login-page .login-card-body .row.align-items-center {
  min-height: 2.5rem;
}
body.login-page .login-card-body .icheck-primary {
  display: flex;
  align-items: center;
}
body.login-page .login-card-body .icheck-primary label {
  margin-bottom: 0;
  cursor: pointer;
}
body.login-page .login-box form.new_user {
  margin-bottom: 1rem;
}
