.toggle {
    position: relative;
    width: 44px;
    height: 27px;
    margin: 20px 30px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
  }
  .toggle input[type=checkbox] {
    display: none;
  }
  .toggle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #e9e9eb;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .toggle:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 21px;
    height: 21px;
    display: block;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 4.5px 14px -3px rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .toggle.checked:before {
    background: #19a9c2;
  }
  .toggle.checked:after {
    left: 20px;
    box-shadow: 0 4.5px 10px -30px rgba(0, 0, 0, 0.5);
  }