.slideToUnlock {   
  position:relative;
  text-align: center;
  height: 54px;
  line-height: 54px;
  border-radius: 25px;  
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2px;
  overflow: hidden;
}

.slideToUnlock *{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.progressBar {
    position: absolute;
    left:0;
    top:0;
    width: 54px;
    height: 100%; 
    border-radius: 25px;
   } 
   .slideToUnlockText {
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%; 
    border-radius: 25px;
    background-color:transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
   } 

.drag {
    position: absolute;
    width:50px;
    height: 50px;
    left:0%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    border-radius: 25px;
    cursor: pointer;
    border: 1px solid #cccccc;
    background: #fff;
    color: #555;
    text-align: center;
    margin-left: 2px;
}

.locked {
  font-size: 18px;
  background-color: rgb(168, 167, 167);   
  color: white;
}

.unlocked {
  background-color:rgb(128, 131, 128);
}

.slideToUnlockLoading{
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.slideToUnlock.loading .slideToUnlockLoading{
  display: block;
}

.slideToUnlockUavailable{
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  color: #444;
}

.slideToUnlock.unavailable .slideToUnlockUavailable{
  display: block;
}