.container {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  height: 120px;
  width: auto;

  background-image: linear-gradient(136deg, #7a9dff 0%, #29bec4 100%);
  position: relative;
  border-radius: 5px;
}
/* ------ UNLOCK ------ */

#unlock {
  touch-action: none;
  font-family: helvetica;
  position: absolute;
  top: 25%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 1;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
#unlock.unlock {
  opacity: 0;
  -webkit-transform: translate(-486px, -50%);
  -ms-transform: translate(-486px, -50%);
  -o-transform: translate(-486px, -50%);
  transform: translate(-486px, -50%);
}
#unlock .title {
  opacity: 0.5;
  color: #fff;
  font-size: 11px;
}
#unlock .subtitle {
  color: #fff;
  font-size: 16px;
}
#unlock .content {
  
  top: 50%;
  width: 300px;
  height: 40px;
  margin: auto;
  position: relative;
  text-align: center;
}
#unlock .content:after {
  color: #fff;
  font-size: 1.2em !important;
  font-family: f-gm;
  position: absolute;
  left: 50%;
  bottom: -5px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
#unlock .content::after {
  content: "Deslice... " !important;
}
#unlock .content .drag {
  cursor: pointer;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  border-radius: 100px;
  position: absolute;
  z-index: 1;
  left: 0px;
  touch-action: none;

  -webkit-transition: background-color 0.25s ease;
  -moz-transition: background-color 0.25s ease;
  -ms-transition: background-color 0.25s ease;
  -o-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
#unlock .content .drag:active {
  cursor: ns-resize;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;

  background-color: rgba(255, 255, 255, 0.6);
}
#unlock .content .drag img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#unlock .content .drag:active svg {
  fill: #fff;
}

#unlock .content .dot {
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: 2px;
  top: 80%;
  height: 100%;
}
#unlock .content .dot:after {
  content: '';
  height: 1px;
  width: 1px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#unlock .content .drop {
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  position: absolute;
  right: 0px;
  top: 0px;

  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#unlock .content .drop.active {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
#unlock .content .drop.hover {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
#unlock .content .drop .wave {
  width: 19px;
  height: 19px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;

  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#unlock .content .drop.active .wave {
  background-color: rgba(255, 255, 255, 0.5);
}
#unlock .content .drop.hover .wave {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: translate(-50%, -50%) scale(1.7);
  -ms-transform: translate(-50%, -50%) scale(1.7);
  -o-transform: translate(-50%, -50%) scale(1.7);
  transform: translate(-50%, -50%) scale(1.7);
}

/* ------ END UNLOCK ------ */

/* HOME */
#home {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
#home.unlock {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.restart {
  font-family: helvetica;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* END HOME */
