/* Custom Dialog box */
.dialog-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: transparent;
    z-index: 9990;
}
.dialog-container.dialog-hide {
	display: none;
}
.dialog-close::before {
	content: '✖';
}
.dialog-close {
	display: block;
	position: absolute;
	right: 0.1em;
	top: 0.1em;
	font-size: 1.5em;
	cursor: pointer;
}
.dialog-overlay {
	position: fixed;
	width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0,0,0,0.3);
}
.dialog-content {
	width: 500px;
	margin: 50vh auto;
	transform: translateY(-50%);
	padding: 2em 1em;
	background: #fff;
}
.dialog-content > div > div > h4 {
	margin-top: 0;
}
.dialog-open .jumbo-buttons-wrapper {
	z-index: 9989;
}