/* PIN
 ========================================================================== */
.pin-wrap {
  display: none;
  z-index: 100;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #161616;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
}

.pin-wrap.open {
  display: flex;
}

.pin-wrap button {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 20px;
  padding: 10px 14px;
  color: #ccc;
}

.pin-wrap button:hover {
  color: #000;
}

.pin-cont {
  width: 100%;
}

.pin-cont > h2 {
  font-size: 16px;
  margin-bottom: 18px;
}

.pin-cont > p {
  margin-bottom: 40px;
  font-size: 13px;
}

.pin-cont > p > span {
  color: #f44336;
}

.dots-cointainer {
  position: relative;
  width: 100%;
}

.dots {
  position: relative;
  left: 50%;
  width: 60%;
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  align-items: center;
  padding: 1em;
  padding-top: 3em;
  padding-bottom: 2em;
}

.dot {
  position: relative;
  background: rgba(200, 200, 200, 0.4);
  border-radius: 0.8em;
  width: 1em;
  height: 1em;
  -webkit-transform: scale3d(0.7, 0.7, 0.7);
  transform: scale3d(0.7, 0.7, 0.7);
}

.dot.active {
  -webkit-animation: growDot 0.5s ease;
  animation: growDot 0.5s ease;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /* position: relative;
  background: rgba(0, 0, 0, 1);
  border-radius: 0.8em;
  width: 1em;
  height: 1em;
  -webkit-transform: scale3d(0.7, 0.7, 0.7);
  transform: scale3d(0.7, 0.7, 0.7); */
}

.dot.wrong {
  -webkit-animation: wrong 0.9s ease;
  animation: wrong 0.9s ease;
}

.dot.correct {
  -webkit-animation: correct 0.9s ease;
  animation: correct 0.9s ease;
}

.wrapper-number {
  display: grid;
  grid-template-columns: 33.3% 33.3% 33.3%;
}

.grid-number {
  /*background: #3aae1e;*/
  height: 60px;
  line-height: 3.5em;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.grid-number:active {
  background: #f0f0f0;
}

.finger {
  cursor: pointer;
}

.wrapper-alphabet {
  /*display: grid;*/
  display: none;
  grid-template-columns: 14.2% 14.2% 14.2% 14.2% 14.2% 14.2% 14.2%;
}

@-webkit-keyframes growDot {
  100% {
    /*background: #9c6cff;*/
    background: #000;
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
}

@keyframes growDot {
  100% {
    background: #000;
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
}

@-webkit-keyframes wrong {
  20% {
    background: #f44336;
  }

  40% {
    -webkit-transform: translate(-5px, 0);
    transform: translate(-5px, 0);
  }

  60% {
    -webkit-transform: translate(3px, 0);
    transform: translate(3px, 0);
  }

  80% {
    -webkit-transform: translate(-1px, 0);
    transform: translate(-1px, 0);
  }
}

@keyframes wrong {
  20% {
    background: #f44336;
  }

  40% {
    -webkit-transform: translate(-5px, 0);
    transform: translate(-5px, 0);
  }

  60% {
    -webkit-transform: translate(3px, 0);
    transform: translate(3px, 0);
  }

  80% {
    -webkit-transform: translate(-1px, 0);
    transform: translate(-1px, 0);
  }
}

@-webkit-keyframes correct {
  20% {
    background: limegreen;
  }

  40% {
    -webkit-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }

  60% {
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
  }

  80% {
    -webkit-transform: translate(0, -1px);
    transform: translate(0, -1px);
  }
}

@keyframes correct {
  20% {
    background: limegreen;
  }

  40% {
    -webkit-transform: translate(0, -5px);
    transform: translate(0, -5px);
  }

  60% {
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
  }

  80% {
    -webkit-transform: translate(0, -1px);
    transform: translate(0, -1px);
  }
}

.re-enter-form {
  display: none;
}

.re-enter-form > p {
  text-align: center;
}

.re-enter-form > a {
  display: block;
  text-align: left;
  font-size: 13px;
  color: #a7a7a7;
}

.re-enter-form > a:hover {
  text-decoration: underline;
}

.re-enter-form > a > i {
  margin-right: 4px;
}

.pw-nnemonics {
  border-radius: 6px;
  margin: 14px 0 10px;
  text-align: left;
  box-shadow: 0 0 0 1px rgb(16 22 26 / 40%);
  overflow: hidden;
}

.pw-nnemonics > div {
  position: relative;
  padding: 6px 14px;
  border-bottom: 1px solid #e8e8e8;
}

.pw-nnemonics > div > span {
  font-size: 13px;
  color: #696969;
}

.pw-nnemonics > div > span > i {
  margin-right: 6px;
}

.pw-nnemonics button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 14px;
  border-left: 1px solid rgb(16 22 26 / 80%);
}

.pw-nnemonics button:hover {
  background-color: rgb(16 22 26 / 30%);
}

.pw-nnemonics button > i {
  margin-right: 6px;
}

.pw-nnemonics > span {
  display: block;
  padding: 10px 14px;
  word-break: break-all;
}

.pw-nnemonics.view > div {
  border: 0;
  padding-bottom: 20px;
  position: relative;
}

.pw-nnemonics.view .fa-eye {
  position: absolute;
  bottom: 5px;
  right: 90px;
  cursor: pointer;
}

.pw-nnemonics.view #mnemonics {
  width: calc(100% - 80px);
  color: rgb(167 182 194 / 60%);
  word-break: break-all;
  transition: opacity 0.5s ease-in-out;
}

#encrypted-import-for-copy {
  position: absolute;
  top: 0;
  left: -10px;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}