.ss-wrapper-aaf8da3b {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    font-family: inherit;
}
.ss-label-text {
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}
.ss-toggle-container {
    position: relative;
    width: 60px;
    height: 30px;
}
.ss-switch-input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.ss-switch-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    transition: .4s;
    border-radius: 34px;
}
.ss-switch-label:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.ss-switch-input:focus + .ss-switch-label {
    box-shadow: 0 0 1px #2196F3;
}
.ss-switch-input:checked + .ss-switch-label:before {
    transform: translateX(30px);
}
