/* swich-btn  */
 #button-1 .knobs:before {
    content: "we";
    position: absolute;
    top: 4px;
    left: 5px;
    width: 28px;
    height: 28px;
    color: #000000;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    background-color: #F1C70B;
    border-radius: 50%;
    box-shadow: 3px -3px 5.8px -2px #A4913A inset;
  }
  
  #button-1 .checkbox:checked + .knobs:before {
      content: "Me";
      left: 41px;
      background-color: #F1C70B;

      width:28px;
      height: 28px;
      top: 4px;
  }
  
  #button-1 .checkbox:checked ~ .layer {
    background: #2E2E2E;
    box-shadow: -1.298px -1.623px 3.246px 0px rgba(67, 67, 67, 0.25) inset, 1.947px 1.947px 3.246px 0px rgba(16, 16, 16, 0.25) inset;


  }
  
  #button-1 .knobs,
  #button-1 .knobs:before,
  #button-1 .layer {
    transition: 0.3s ease all;
    display: flex;
      align-items: center;
      justify-content: center;
  }
  
  
  #app-cover {
    position: absolute;
    top: -47px;
    /* animation-name: blink; */
    animation-duration: 1.3s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    /* // animation-timing-function: cubic-bezier(1, 0, 0, 1); */
    /* animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1); */
  }
  
  
  @keyframes blink {
    0% {
      transform:scale3d(1,1,1);
      opacity: 0.8;
    }
    100% {
      transform:scale3d(1.1,1,1.1);
      opacity:1;
    }
  }
  
 
  

  
  
  

  
  .button-cover {
    height: 100px;
    margin: 20px;
    background-color: #fff;
    box-shadow: 0 10px 20px -8px #c5d6d6;
    border-radius: 4px;
  }
  
  .button-cover:before {
    counter-increment: button-counter;
    content: counter(button-counter);
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d7e3e3;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
  }
  
  .button-cover,
  .knobs,
  .layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .button {
    position: relative;
    top: 50%;
    width: 74px;
    height: 36px;
    overflow: hidden;
  }
  
  .button.r,
  .button.r .layer {
    border-radius: 100px;
  }
  
  .button.b2 {
    border-radius: 2px;
  }
  
  .checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
  }
  
  .knobs {
    z-index: 2;
  }
  
  .layer {
    width: 100%;
    transition: 0.3s ease all;
    z-index: 1;
    background-repeat: no-repeat;
    background-color: #FFF;
    background-position: right;

box-shadow: 0px -3.246px 3.246px 0px rgba(196, 196, 196, 0.25) inset, 1.623px 2.272px 5.193px 0px rgba(87, 86, 86, 0.42) inset
  }
   






  

  @media (max-width:991px) {
    
    #app-cover {
      position: sticky;
      top: 10px;
      z-index: 9;
      margin-bottom: 10px;
    }
    
  }

  @media (max-width:768px) {
    /* #app-cover {
      bottom: 72px;
  } */

    
  }

  @media (max-width: 457px) {
    #app-cover {
        bottom: 52px;
    }
}

/* swich-btn  