/* 
  old color: #04AA6D;
  new color: #67bf70;
*/

.C_smac_switch {
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  
  .C_smac_switch i {
    position: relative;
    display: inline-block;
    margin-right: .5rem;
    width: 46px;
    height: 26px;
    background-color: #e6e6e6;
    border-radius: 23px;
    vertical-align: text-bottom;
    transition: all 0.3s linear;
  }
  
  .C_smac_switch i::before {
    content: "";
    position: absolute;
    left: 0;
    width: 42px;
    height: 22px;
    background-color: #e0e0e0;
    border-radius: 11px;
    transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
    transition: all 0.25s linear;
  }
  
  .C_smac_switch i::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 11px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.24);
    transform: translate3d(2px, 2px, 0);
    transition: all 0.2s ease-in-out;
  }
  
  .C_smac_switch:active i::after {
    width: 28px;
    transform: translate3d(2px, 2px, 0);
  }
  
  .C_smac_switch input:disabled + i {
      opacity: 0.5;
  }
  
  .C_smac_switch:active input:checked + i::after { transform: translate3d(16px, 2px, 0); }
  
  .C_smac_switch input { displAy: none; }
  
  .C_smac_switch input:checked + i { background-color: #444; }
  
  .C_smac_switch input:checked + i::before { transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0); }
  
  .C_smac_switch input:checked + i::after { transform: translate3d(22px, 2px, 0); }


  .C_smac_switch-btn1 {
    width: 50px; height: 50px; position: relative;
    border-radius: 100%; background-color: white;

    -webkit-box-shadow: 0px -1px 2px 0px #212428 inset, 0px 2px 2px #535d65 inset, 0px 2px 2px -1px #050606, 0px 3px 4px -1px #1a1d1f;
    -moz-box-shadow: 0px -1px 2px 0px #212428 inset, 0px 2px 2px #535d65 inset, 0px 2px 2px -1px #050606, 0px 3px 4px -1px #1a1d1f;
    box-shadow: 0px -1px 2px 0px #212428 inset, 0px 2px 2px #535d65 inset, 0px 2px 2px -1px #050606, 0px 3px 4px -1px #1a1d1f;
    text-shadow: 0px 1px 1px #33393e, 0 0 0 black, 0px 1px 1px #33393e;
  }


  .C_smac_switch-btn {
    width: 50px; height: 50px; position: relative;
    border-radius: 100%; background-color: white;
    box-shadow: 0px 1px 2px 0px #a0a0a0;
  }

  .C_smac_switch-btn:active {
    box-shadow: 0px 1px 2px 0px #a0a0a0 inset;
  }

  .C_smac_switch-btn img {
    width: 30px; height: 30px; margin-left: 10px; margin-top: 10px;
  }

  .C_smac_switch-btn1:active {
      -webkit-box-shadow: 0px 0px 4px #1c1f22 inset, 0px 2px 1px -1px #474747, 0px 4px 2px 0px #1a1d1f inset, 0px 4px 2px 1px #212428 inset;
      -moz-box-shadow: 0px 0px 4px #1c1f22 inset, 0px 2px 1px -1px #474747, 0px 4px 2px 0px #1a1d1f inset, 0px 4px 2px 1px #212428 inset;
      box-shadow: 0px 0px 4px #1c1f22 inset, 0px 2px 1px -1px #474747, 0px 4px 2px 0px #1a1d1f inset, 0px 4px 2px 1px #212428 inset;
  }