.focus-dialog-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 1001;
    display: none;
}

.focus-dialog {
    position: fixed;
    background-color: #fff;
    max-width: 98%;
    width: 30rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: .1rem;
    padding: .2rem;
}

.focus-dialog td.formCellLabel {
    width: auto;
}

.focus-dialog-header {
    padding: .5rem;
    background-color: rgb(237, 244, 248);
    border-radius: .1rem;
    font-size: .75rem;
}

.focus-dialog-title {
    font-weight: bold;
}

.focus-dialog-body {
    padding: 0 0 0 .25rem;
}

.focus-dialog-close-button {
    position: absolute;
    right: 8px;
    top: 3px;
    cursor: pointer;
}

.focus-dialog-close-button:hover {
    opacity: .7;
}

.focus-dialog-button-cell {
    text-align: right;
}

.focus-dialog .focus-dialog-button-cell button.focus-button {
    padding: .25rem;
}

@media all and (max-width: 575px) {
    .focus-dialog .formCellLabel,
    .focus-dialog .formCellInput {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .focus-dialog .focus-dialog-button-cell button.focus-button {
        font-size: 1rem;
    }
}