.popup-shadow {
	background-color: #000000;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 1000;
	opacity: 0.75;
	display: none;
}
.popup {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1001;
    display: block;
    overflow-y: auto;
}
.popup-tbl {
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
    margin: 0px auto;
}
.popup-tr {
    display: table-row;
    height: 100%;
}
.popup-td {
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    text-align: center;
}
.popup-content-wrap {
    display: inline-block;
    max-width: 100%;
    min-width: 320px;
    max-height: 100%;
}
.popup-content {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
}
.popup-content > * {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
}
.popup-content * {
    max-width: 100%;
}

.popup-close-button {
	position: absolute;
	right: 20px;
	top: 20px;
	background-color: #f09000;
	color: #fff;
	font-size: 48px;
	line-height: 48px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	cursor: pointer;
	transform: scale(1);
	transition: 250ms;
}
.popup-close-button:hover {
	background-color: #ffb020;
	transform: scale(1.1);
}