.iframe-wrapper {
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	z-index: 100;
	background: rgba(39,45,51,.8);
	display: none;
}

.iframe-wrapper iframe {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 0px;
    width: 700px;
    height: 900px;
    max-height: calc(100% - 100px);
    max-width: calc(100% - 200px);

    box-shadow: 0px 0px 70px 0px rgba(0,0,0,.4);
}