.popupBoxes {
    padding: 0px;
    border: 1px solid var(--MidPurple);
    opacity: 1;
}

.popupSectionHeader {
    height: 30px;
    background-color: var(--MidPurple);
    color: var(--MainBackgroundColour);
    font-size: 16px;
    font-weight: bold;
    cursor: move;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popupSectionHeaderMulti {
    background-color: var(--MidPurple);
    color: var(--MainBackgroundColour);
    font-size: 16px;
    font-weight: bold;
    cursor: move;
    /*set width when use this class and use p for the content*/
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr;
}

    .popupSectionHeaderMulti p {
        place-self: center;
		display:grid;
    }

.popupSectionBody {
    text-align: center;
}

.popupSectionBody, .popupSectionBodyForm {
    padding: 10px;
    font-size: 12px;
    background-color: var(--MainBackgroundColour);
    overflow: auto;
}

.popupSectionBodyForm {
    text-align: left;
}

.popupSectionFooter {
    text-align: center;
}

    .popupSectionFooter input:not(:first-child) {
        margin-left: 15px;
    }

.popupSectionFooter, .popupSectionFooter_mix {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #CFD8DC;
    background-color: var(--PaleGrey);
    min-width: 300px;
}

    .popupSectionFooter_mix .left, .popupSectionFooter_mix .right {
        flex: 1;
    }

.popupSectionFooter_mix {
    padding: 0 5px;
}

/*
 popupSectionFooter usage -->result: all items align centre
<div class="popupSectionFooter">
    <input id="btnRunReport" runat="server" type="button" onclick="javascript: printAccReport();" value="#View Report#" />
    <input id="btnReportCancel" runat="server" type="button" value="<%$ LanguageGlobal:CommandField_CancelText|#Cancel# %>" generateresource="False" onclick="javascript: AccReportPopup.close(); getElement('AccReportPopup').style.display = 'none';" />
</div>


popupSectionFooter_mix usage  -->result: some items align left, some centre, some right
                  note: <div class="right"></div> can be empty but it is mandatory 
<div class="popupSectionFooter_mix">
    <div class="left">
	<asp:CheckBox ID="chkOpenMeetingRC" Checked="true" runat="server" Text="#Open Meeting Record Card#" />
    </div>
    <div>
	<input id="btnOK" runat="server" type="button" onclick="javascript: addCustsToMeetingParent();" value="<%$ LanguageGlobal: btnOK|#OK# %>" generateresource="False" />
	<input id="btnCancel" runat="server" type="button" onclick="javascript: meetingSelector_btnCancel_onclick();" value="<%$ LanguageGlobal: CommandField_CancelText|#Cancel# %>" generateresource="False" />
    </div>
    <div class="right"></div>
</div>
*/