.swiper{
    width: 520px;
    height: 60px;
    padding: 0 5px;
    opacity: 1;
    border-radius: 16px;
    border: solid 1px #ed1b36;
    background-color: #2D2C2C;
    display: flex;align-items: center;
}

.slideToUnlock {   
    position:relative;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;  
    width: 100%;
}

.progressBar {
    position: absolute;
    left:0;
    top:0;
    width: 0;
    height: 100%; 
    border-radius: 14px;
   } 
   .text {
    font-family: 'Montserrat';
    font-size: 16px;
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%; 
    color: #f14a5e;
    background-color:transparent;
    -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 */
   } 
   @keyframes text {
    from {
      max-width: 0.5rem;
    }
    to {
      max-width: 3rem;
    }
  }

.drag {
    position: absolute;
    width:64px;
    height: 50px;
    left:0%;
    display: inline-block;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: -5px 6px 16px 0 rgba(0, 0, 0, 0.16);
    background-color: #f14a5e;
    color: #692003;  
    text-align: center;
}
.dra::after {
    content: '';
    display: block;
    position: absolute;
    left: 22px;
    top: 12px;
    background: url("https://d2ivesio5kogrp.cloudfront.net/static/yuppedu/images/arrows.svg") no-repeat right;
    width: 24px;
    height: 20px;
    background-size: 100% 100%;
    transition: transform 0.5s;
    transform: translate(0, 10%);
}

.locked {
    font-size: 16px;
    font-family: 'Montserrat';      
    background-color: transparent;   
}
.unlocked {
    background-color:#ed1b36;
}