.custom-toggle {
    cursor: pointer;
    display: block !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
  }
  
  .custom-toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 40px;
    height: 20px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
  }
  .custom-toggle-switch:before, .custom-toggle-switch:after {
    content: "";
  }
  .custom-toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    width: 14px;
    height: 14px;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: left 0.25s;
  }
  .custom-toggle:hover .custom-toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
  }
  .custom-toggle-checkbox:checked + .custom-toggle-switch {
    background: #387c83;
  }
  .custom-toggle-checkbox:checked + .custom-toggle-switch:before {
    left: 23px;
  }
  
  .custom-toggle-checkbox {
    position: absolute;
    visibility: hidden;
  }
  
  .custom-toggle-label {
    position: relative;
    top: 2px;
  }

  .custom-toggle-label-right {
    margin-left: 5px;
  }

  .custom-toggle-label-left {
    margin-right: 5px;
  }