/* css/build.css */
img {
  max-width: 100%;
  height: auto;
}

.text-helper {
  margin-top: 0.2em;
  font-size: 0.8em;
  display: block;
}

.form-group p {
  margin: 0;
}

/* LOGIN */

.fl-login-holder {
  margin-bottom: 1.5em;
}

.fl-login-header {
  text-align: center;
  margin-bottom: 1.5em;
}

.fl-login-form .form-control {
  padding-left: 56px;
  padding-right: 15px;
  position: relative;
}

.fl-login-form .form-group label {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 17px;
  width: 44px;
  height: 24px;
  font-size: 22px;
  line-height: 24px;
  margin-top: -12px;
  z-index: 9;
  border-right: 1px solid #337ab7;
  text-align: center;
  color: #337ab7;
}

.fl-login-form .form-group label .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.fl-login-form .form-group .toggle-password-visibility {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 44px;
  height: 24px;
  margin-top: -12px;
  background-color: transparent;
  border: none;
  color: #337ab7;
}

.fl-login-form .form-group .toggle-password-visibility:focus-visible {
  outline-color: #337ab7;
}

.fl-login-form .form-group .toggle-password-visibility .icon {
  top: 5px;
  left: 50%;
  position: absolute;
  margin-left: -10px;
}

.fl-login-form .form-group .toggle-password-visibility .icon.eye-open {
  top: 7px;
}

input.form-control {
  height: 45px;
  box-shadow: none;
  -webkit-appearance: none;
}

.form-btns {
  text-align: center;
  padding-top: 1.5em;
  margin-bottom: 1.5em;
}

.form-btns .btn-login {
  transition: width 0.35s ease-out;
  overflow: hidden;
}

.form-btns .btn-login.loading {
  width: 52px;
  margin: 0 auto;
  transition: width 0.35s ease-out;
  pointer-events: none;
}

/* END OF LOGIN */
/* LOADER ANIMATION */
.loader {
  display: none;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  max-width: 21px;
  height: 10em;
  max-height: 21px;
}

.loader {
  margin: 2px auto;
  font-size: 2px;
  position: relative;
  text-indent: -9999em;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #fff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* END OF LOADER ANIMATION */
/* VERIFICATION */
.fl-restore-pass {
  display: none;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.fl-restore-pass .state {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fl-restore-pass .state.past {
  -webkit-transform: translate3d(-105%, 0, 0);
  transform: translate3d(-105%, 0, 0);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.fl-restore-pass .state.present {
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.fl-restore-pass .state.future {
  -webkit-transform: translate3d(105%, 0, 0);
  transform: translate3d(105%, 0, 0);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: none;
}

.state p {
  margin: 0.5em 0 20px;
}

.state p + p {
  /*margin-top: -10px;*/
}

.state .input-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.state .input-wrapper input + input {
  margin-top: 10px;
}

.state[data-state="verify-code"] input.form-control {
  padding-left: 56px;
}

.state .back {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  height: 24px;
  line-height: 24px;
  width: 44px;
  font-size: 24px;
  border-right: 1px solid #337ab7;
  margin-top: -12px;
  cursor: pointer;
}

.state .has-error input.form-control {
  border-color: #a94442;
}

.state .has-error input.form-control:focus {
  box-shadow: none;
}

.text-danger {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#offline-notification {
  display: none;
  width: 100%;
  line-height: 27px;
  text-align: center;
  color: #fff;
  background-color: #ce4844;
}

.fl-restore-pass .verify-identity.loading,
.fl-restore-pass .authenticate.loading {
  width: 52px;
  margin: 0 auto;
  transition: width 0.35s ease-out;
  pointer-events: none;
}
/* END OF VERIFICATION */
@media screen and (min-width: 640px) {
  .container-fluid {
    padding: 0 12.5%;
  }

  [data-widget-package="com.fliplet.login-data-source"] .btn.btn-primary,
  [data-widget-package="com.fliplet.login-data-source"] .btn.btn-secondary,
  [data-widget-package="com.fliplet.login-data-source"] .btn.btn-danger {
    clear: none;
    display: inline-block;
    min-width: 30%;
    margin: 0 auto;
    max-width: 100%;
  }
}

.password-checker {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: left;
}

.panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

.password-checker .panel-body {
  padding: 15px 15px 5px 15px;
}

.requirement {
  display: flex;
  align-items: flex-start;
  color: #333;
  margin-bottom: 8px;
}

.requirement .requirement-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  background-color: #f8f6f7;
  margin-bottom: 0;
  border-radius: 50%;
  margin-right: 8px;
}

.requirement .requirement-marker i.fa {
  color: #fff;
  font-size: 10px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.requirement input:checked + .requirement-marker {
  background-color: #3c763d;
}

.requirement input:checked + .requirement-marker i.fa {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
