.switch-container{
    margin-left: .5rem;
    margin-right: .5rem;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: .5rem;
}
.switch-no-label{
    font-size: 1rem;
}

.switch-label-disabled{
    color: #ccc;
}

.switch-yes-label{
    font-size: 1rem;
}
.switch {
    position: relative;
    display: inline-block;
    width: 3.5rem;
    height: 1.6rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: lightgrey;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.2rem;
    width: 1.2rem;
    left: 4px;
    bottom: 4px;
    background-color: #3CA6A6;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--bg-secondary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--bg-secondary-color);
}

input:checked + .slider:before {
    transform: translateX(1.75rem);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked:disabled + .slider {
    background-color: lightgrey;
}