.mmxmodal {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: #f1f1f1de;
	z-index: 10000000;
}
.mmxmodal-container {
	position: absolute;
	top: 32px;
	bottom: 32px;
	left: 32px;
	right: 32px;
	background: white;
	padding: 30px;
	overflow: auto;
	box-shadow: 0px 0px 20px 2px rgb(0 0 0 / 10%);
}
iframe.mmxmodal-container {
	position: static;
	width: calc(100% - 64px);
	height: calc(100% - 64px);
	margin: 32px;
	padding: 0;
	border: 0;
}
.mmxmodal-close {
	position: absolute;
	right: 0;
	top: 0;
	width: 32px;
	height: 32px;
	opacity: 0.4;
	cursor: pointer;
}
.mmxmodal-close:hover {
	opacity: 1;
}
.mmxmodal-close:before, .mmxmodal-close:after {
	content: '';
	position: absolute;
	left: 15px;
	height: 33px;
	width: 2px;
	background-color: #333333;
}
.mmxmodal-close:before {
	transform: rotate(45deg);
}
.mmxmodal-close:after {
	transform: rotate(-45deg);
}
@media (max-width: 600px) {
	.mmxmodal-container {
		top: 32px;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 12px;
	}
	iframe.mmxmodal-container {
		padding: 0;
		width: 100%;
		height: calc(100% - 32px);
		margin: 32px 0 0 0;
	}
}