/* -------- MIXINS -------- */
/* ------------------------ */
.overlay {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #003250;
}

.modal-wrapper {
  z-index: 10000;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 290px;
  background-color: #2A2D33;
  border-radius: 5px;
  font-family: "Avenir", sans-serif;
  color: #515866;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.profile-img {
  position: absolute;
  background-image: url("../img/profile.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 113%;

  border-radius: 5%;
  width: 160px;
  height: 160px;
  border: 4px solid #ccccc;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.profile-add {

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5%;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  right: 20px;
  cursor: pointer;

}
.profile-add:hover {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.load-gif {
  position: absolute;
  background: url("http://www.wallies.com/filebin/images/loading_apple.gif");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 60px;
  height: 60px;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.25s;
  -moz-transition: opacity 0.25s;
  transition: opacity 0.25s;
  opacity: 0;
}
.load-gif > div {
  margin-top: 70px;
  color: rgba(255, 255, 255, 0.7);
}
.load-gif.show {
  opacity: 1;
}

.text-wrapper {
  margin: 12px;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  -moz-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.text-wrapper.show {
  opacity: 1;
}

.nav {
  font-size: 21px;
  font-weight: 600;
  text-align: center;
  margin: 80px 0 25px;
  height: 30px;
  width: 100%;
}
.nav div {
  -webkit-user-select: none;
  padding-bottom: 8px;
  border-bottom: 2px solid #515866;
  width: 50%;
  float: right;
  cursor: pointer;
  color: #626975;
  border-bottom: 2px solid #626975;
}
.nav div.selected {
  color: #fff;
  font-weight: 900;
  border-bottom: 0px solid #fff;

}


.content {
  font: 500 12px/40px "Avenir", sans-serif;
  height: 40px;
  padding: 0 10px;
  color: #000000;
  background: #ffffff;
   border: 1px solid #eaece7;
  width: -webkit-calc(100% - 20px);
  width: calc(100% - 20px);
  border-radius: 5px;
}
.content:focus {
  outline: none;
  background: #ffffff;
}

.security {
  position: absolute;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
  transform: translateY(5px);
  right: -5px;
  width: 60px;
  height: 60px;
  opacity: 1;
}
.security.hide {
  opacity: 0;
}

.circle {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: background 0.25s ease;
  -moz-transition: background 0.25s ease;
  transition: background 0.25s ease;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.circle.background {
  z-index: 9999;
  background: #4fdbbe;
}
.circle.fill {
  z-index: 10000;
}
.circle.cover {
  z-index: 10000;
  background: #2A2D33;
  width: 50px;
  height: 50px;
}

.security-type {
  z-index: 10001;
  text-align: center;
  line-height: 90%;
  position: absolute;
  color: #19CC8B;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-48%, -40%);
  -moz-transform: translate(-48%, -40%);
  -ms-transform: translate(-48%, -40%);
  -o-transform: translate(-48%, -40%);
  transform: translate(-48%, -40%);
}

.security-level {
  font-weight: 900;
}

.secure {
  font-weight: 300;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.password .content {
  color: #fff;
}

.forget {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  width: 180px;
  letter-spacing: 0.5px;
  margin: 0 auto;
  padding: 3px;
  border-bottom: 1px solid #515866;
  cursor: pointer;
  -webkit-transition: opacity 0.5s, margin 0.5s 0.5s;
  -moz-transition: opacity 0.5s, margin 0.5s 0.5s;
  transition: opacity 0.5s, margin 0.5s 0.5s;
}
.forget:hover {
  color: #626975;
  border-bottom: 1px solid #626975;
}
.forget.selected {
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 1;
  height: 0;
  padding: 0;
}

.button {
  color: #fff;
  background: #b69957 ;

  border: 1px solid #ffffff;
  border-radius: 10px;
  font-weight: 400;
  width: 265px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  cursor: pointer;
  -webkit-transition: background 0.25s ease;
  -moz-transition: background 0.25s ease;
  transition: background 0.25s ease;
  font-size:14px;
}
.button:hover {
  background: #b69957;
}

.text, .text a, .icons a {
  color: #fff;
}

.text a:hover, .icons a:hover {
  color: #515866;
}
