/* switch */
.check-active-register {
    display: inline-block;
    margin-left: 8px;
    font-weight: 500;
}
.check-active-register input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.check-active-register label {
    cursor: pointer;
    text-indent: -9999px;
    width: 42px;
    height: 16px;
    background: grey;
    border-radius: 16px;
    position: relative;
    left: 5px;
}

.check-active-register label:after {
    content: '';
    position: absolute;
    top: 1px;
    right: 1px;
    width: 18px;
    height: 14px;
    background: #fff;
    border-radius: 14px;
    transition: 0.3s;
}
.check-active-register input:checked + label {
    background: #2CB2A2;
}
.check-active-register input:checked + label:after {
    right: calc(100% - 23px);
    transform: translateX(100%);
}
.check-active-register input + label:after {
    right: calc(100% - 1px);
    transform: translateX(100%);
}
.check-active-register label:active:after {
    width: 24px;
}
.check-active-register .form-check {
    padding-top: 15px;
    padding-left: 0;
}
.check-active-register .form-check:before {
    content: '';
    color: #2CB2A2;
    position: relative;
    bottom: 2px;
}
.check-active-register .form-check:after {
    content: 'Oui';
    color: grey;
    position: relative;
    bottom: 2px;
    left: 12px
}
/* !switch */