
 #unlock_slider .width_full > div{
  width: 80%;
  margin: 0 auto;
}


#elock_unlocker{
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  max-width: 260px;
  height: 80px;
  border: white;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#slider {
  transition: width 0.3s, border-radius 0.3s, height 0.3s;
  position: absolute;
  left: -10px;
  background-color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#slider.unlocked {
  transition: all 0.3s;
  width: 100%;
  left: 0 !important;
  height: inherit;
  border-radius: inherit;
}


.slide-text {
  color: #151515;
  font-size: 20px;
  margin-left: 35px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}


.bottom {
  position: fixed;
  bottom: 0;
  font-size: 14px;
  color: white;
}

.bottom a {
  color: white;
}