
.iframe-box{
	height: 70vh;
	width: calc(70vh * 0.515);
	background-color: #fff;
	position: fixed;
	right: 120px;
	top: 5em;
	box-shadow: 2px 4px 5px #f1f2f6;
	border: 1px solid #f1f2f6;
	display: none;
	flex-wrap: wrap;
	z-index: 99999;
}
.iframe-box .title-box{
	width: 100%;
	height: 30px;
	border-bottom: 1px solid #f1f2f6;
	padding: 0 15px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.iframe-box .title-box .icon{
	height: 50%;
	width: auto;
	opacity: .6;
	cursor: pointer;
}
.iframe-box .iframe{
	width: 100%;
	height: 100%;
}

@media only screen and (max-width: 767px) {
	.iframe-box{
		width: 100%;
		height: 100vh;
		left: 0;
		top: 0;
	}
	
}