#lower_strip_lock {
    margin-top: 4px;
}

.btn-lock {
    position: relative;
    /*top: calc(50% - 32px);
    left: calc(50% - 32px);*/
    display: inline-block;
    /*background: #ff5b5b;*/
    width: 36px;
    height: 40px;
    box-sizing: border-box;
    /*padding: 12px 0 0 18px;*/
    border-radius: 50%;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  .btn-lock svg {
    fill: none;
    transform: translate3d(0, 0, 0);
    vertical-align: initial;
  }
  
  .btn-lock svg .bling {
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 3;
    stroke-dashoffset: 15;
    transition: all 0.3s ease;
  }
  
  .btn-lock svg .lock {
    stroke: #fff;
    stroke-width: 4;
    stroke-linejoin: round;
    stroke-linecap: round;
    stroke-dasharray: 36;
    transition: all 0.4s ease;
  }
  
  .btn-lock svg .lockb {
    fill: #fff;
    fill-rule: evenodd;
    clip-rule: evenodd;
    transform: rotate(8deg);
    transform-origin: 14px 20px;
    transition: all 0.2s ease;
  }
  
  .inpLocker {
    display: none;
  }

/*
  .inpLocker:checked + label {
    background: #20cca5;
  }*/
  
  .inpLocker:checked + label svg {
    opacity: 1;
  }
  
  .inpLocker:checked + label svg .bling {
    animation: bling6132 0.3s linear forwards;
    animation-delay: 0.2s;
  }
  
  .inpLocker:checked + label svg .lock {
    stroke-dasharray: 48;
    animation: locked 0.3s linear forwards;
  }
  
  .inpLocker:checked + label svg .lockb {
    transform: rotate(0);
    transform-origin: 14px 22px;
  }
  
  @keyframes bling6132 {
    50% {
      stroke-dasharray: 3;
      stroke-dashoffset: 12;
    }
  
    100% {
      stroke-dasharray: 3;
      stroke-dashoffset: 9;
    }
  }
  
  @keyframes locked {
    50% {
      transform: translateY(1px);
    }
  }