.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off { 
    opacity: 0 !important; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; }
.bootstrap-switch.bootstrap-switch,
.bootstrap-switch .bootstrap-switch-container {
    position: relative;
    width: 48px !important;
    min-width: 48px !important;
    height: 24px !important;
    border-radius: 30px;
    background-color: var(--grey-02);
    border: none !important;
    margin: 0 }
.bootstrap-switch .bootstrap-switch-label {
    height: 16px !important;
    width: 16px !important;
    border-radius: 100% !important;
    position: absolute !important;
    top: 4px !important;
    left: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: var(--time-01); }
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {
    left: 28px !important;
    background-color: var(--secondary); }
.bootstrap-switch.bootstrap-switch.bootstrap-switch-on,
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-container { background-color: var(--primary); }
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-handle-on { z-index: 11; }

/* Novo Comp */
.form-switch {
    padding-left: 1.5em !important;
}

.form-switch > .form-check-input,
.form-switch > .form-check-input:focus {
    padding: 4px;
    background-size: 16px 16px;
    background-origin: content-box;
}

.form-switch > .form-check-input, 
.form-switch > .form-check-input:focus {
	background-image: var(--form-switch-base64-image-inactive)
}

.form-switch > .form-check-input:checked,
.form-switch > .form-check-input:focus:checked {
    background-image: var(--form-switch-base64-image-active);
}

.form-switch > .form-check-input {
    background-color: var(--border);
    position: relative;
    width: 48px !important;
    height: 24px !important;
    border-radius: 30px;
    border: 1px solid transparent !important;
    display: inline-block;
    direction: ltr;
    cursor: pointer;
    text-align: left;
    overflow: hidden;
    line-height: 8px;
    z-index: 0;
    user-select: none;
    vertical-align: middle;
    transition: .2s;
}

.form-switch > .form-check-input:checked {
    background-color: var(--form-check-background-color);
    transition: .2s;
}

.form-switch > .form-check-input:focus-visible {
    border: 1px solid var(--primary) !important;
}

.form-switch > .form-check-input:checked:focus-visible {
    border: 1px solid var(--secondary) !important;
}

.form-switch.sm > .form-check-input {
    height: 20px !important;
    width: 44px !important;
    min-width: 44px !important;
    background-size: 14px 14px !important;
}

/* .form-switch {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.form-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-switch > .form-switch-token + .form-switch-label,
.form-switch .form-switch-label + .form-switch-token {
    margin-left: 12px;
}

.form-switch-token {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 22px;
    background-color: var(--grey-2); //
    transition: .25s;
    border-radius: 30px;
    flex-shrink: 0;
}

.form-switch-token:before {
  position: absolute;
  content: “”;
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white-01); //
  transition: .25s;
  border-radius: 100%;
}

.form-switch-label {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 400;
    font-family: ‘Poppins’, sans-serif;
}

input:checked + .form-switch-token  {
    background-color: var(--primary); //
}

input:focus + .form-switch-token {
    box-shadow: 0 0 1px var(--primary); //
}

input:checked + .form-switch-token:before { transform: translateX(26px); }
 */
