.eligiPopup
{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.6);
	z-index: 8;
    display: flex;
    align-items: center;
}
.eligiPopup > .eligiPopupDialog
{
    background: #e8e8e8;
    width: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    border-radius: 5px;
    box-shadow: 5px 5px 10px black;
	max-height: 70%;
    overflow: auto;
    margin-top: -40px;
}
.eligiPopup > .eligiPopupDialogSmall
{
    background: #e8e8e8;
    width: 30%;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    border-radius: 5px;
    box-shadow: 5px 5px 10px black;
	max-height: 70%;
    overflow: auto;
    margin-top: -40px;
}
.eligiPopup > .eligiPopupDialogLarge
{
    background: #e8e8e8;
    width: 80%;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    border-radius: 5px;
    box-shadow: 5px 5px 10px black;
	max-height: 70%;
    overflow: auto;
    margin-top: -40px;
}
.eligiPopup > .eligiPopupDialog > .eligiPopupHeader
{
	padding: 15px;
    border-bottom: 1px solid #cacaca;
}
.eligiPopup > .eligiPopupDialog > .eligiPopupBody
{
	padding: 15px;
}
.eligiPopup > .eligiPopupDialog > .eligiPopupFooter
{
	padding: 15px;
    border-top: 1px solid #cacaca;
}