.content-area td {
    padding: 10px;
}

/* For the Please Wait... */
.modal-dialog {
    position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; width: 140px; height: 200px;
}

/* For the Individual / Grouped */
.switch {
    position: relative;
    top: 6px;
    display: inline-block;
    width: 46px;
    height: 13px;
    background-color: #34928b;
    border-radius: 11px;
    transition: all 0.3s;
}		
.switch::after {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 11px;
    background-color: white;
    top: 1px;
    left: 1px;
    transition: all 0.3s;
}		
input[type='checkbox']:checked + .switch::after {
    transform: translateX(33px);
}		
input[type='checkbox']:checked + .switch {
    background-color: #7983ff;
}		
.offscreen {
    position: absolute;
    left: -9999px;
}