.aico-toggle-button {
    position: relative;
    width: 40px;
    height: 20px;
    align-self: center;
    margin-left: 10px;
}

.aico-hidden-checkbox {
  display: none;
}

  .aico-toggle-label {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    border-radius: 30px;
    position: absolute;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .aico-hidden-checkbox:checked + .aico-toggle-label {
    background-color: #000000;
  }

  .aico-toggle-label::after {
    content: '';
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
  }

  .aico-hidden-checkbox:checked + .aico-toggle-label::after {
    transform: translateX(20px);
  }