/*
  Animation lockscreen
*/
@-webkit-keyframes lockScreenBackground {
  from {
    height: 0px;
    width: 0px;
    border-radius: 0px;
    transform: translateX(0) translateY(0);
  }
  to{
    height: 4000px;
    width: 4000px;
    border-radius: 4000px;
    transform: translateX(-2000px) translateY(-2000px);
  }
}

@-webkit-keyframes loaderOpacity {
  from {
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

@-webkit-keyframes loaderLoading {
  from {
    transform: translateX(-50%) translateY(-50px) rotate(0deg);
  }
  to{
    transform: translateX(-50%) translateY(-50px) rotate(360deg);
  }
}

.login__btn--lockscreen {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.login__btn--lockscreen__loader:after,
.login__btn--lockscreen__loader:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  top: -20px;
  transform: translateX(-50%) translateY(-50px);
}

.login__btn--lockscreen__loader:after {
  border: 6px solid rgba(255,255,255, 0.8);
  border-radius: 100%;
  border-bottom-color: rgba(0,0,0,0);
  border-left-color: rgba(0,0,0,0);
  -webkit-animation : loaderLoading 0.5s infinite linear;
}

.login__btn--lockscreen__loader:before {
  border: 6px solid rgba(255,255,255, 0.5);
  border-radius: 100%;
}

.login__btn--lockscreen__loader {
  z-index: 1;
  color: #FFFFFF;
  position: relative;
  -webkit-animation : 1.5s loaderOpacity 0s forwards linear;
}

.login__btn--lockscreen__background {
  position: absolute;
  background: rgba(95,171,241, 1);
  -webkit-animation : lockScreenBackground 1s forwards cubic-bezier(0.72, 0.03, 0.45, 0.89);
}

.login__btn--lockscreen__background--close {
  height: 0px;
  border-radius: 0px;
  transition: height .5s ease-out;
}

.tooltip__password {
  padding: 1em 1em 1em 2em;
}

.tooltip__password > li {
  list-style: none;
  position: relative;
  line-height: 2em;
  color: rgb(138,152,184);
  font-size: 14px;
}

.tooltip__password > li::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  left: -18px;
  top: 50%;
  border-radius: 100%;
  border: 1px solid gray;
  transform: translateY(-50%);
}

.tooltip__password__lvl-1--check:before {
  background: rgb(206,94,115);
}

.tooltip__password__lvl-2--check:before {
  background: rgb(253,199,8);
}

.tooltip__password__lvl-3--check:before {
  background: rgb(95,171,241);
}

.tooltip__password__lvl-4--check:before {
  background: rgb(49,175,112);
}
