.form-switch {
    color: #fff;
    user-select: none;
    cursor: pointer;
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, .25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.form-switch .form-check-input {
    width: 2em;
    border-radius: 2em;
    position: relative;
    transform: scale(1);
}

.form-switch .form-check-input:after {
    width: 2em;
    content: "";
    height: 14px;
    width: 14px;
    background-color: grey;
    border-radius: 2em;
    display: block;
}

.form-switch .form-check-input:checked:after {
    background-color: #fff;
    margin-left: auto;
}

.form-check-input:checked {
    background-color: #036a5a;
    border-color: #036a5a;
}

.form-switch .form-check-label:first-child {
    margin-left: 0;
    margin-right: 10px;
}

.form-switch .form-check-input {
    transform: scale(1) !important;
    vertical-align: middle;
    border: 0 !important;
    margin: 0;
}


.form-switch {
    cursor: default;
}

.form-switch .form-check-input {
    cursor: pointer;
}