/*modal*/

.modal
{	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999999;
}

.close-btn
{	text-align: right;
	text-decoration: none;
	font-size: 1.8rem;
	color: #666;
}

.modal-bg
{	background: rgba(0,0,0,0.8);
	height: 100vh;
	position: absolute;
	width: 100%;
}
.modal-box
{	background: #fff;
	left: 50%;
	padding: 16px;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 80%;
	text-align: center;
}
.modal-box h5
{	margin:5px 0px;
	font-size: 18px;
	font-weight: 600;
}
.modal-box .inner_html
{	margin:5px 0px;
}
.modal-box .link_text
{	margin-top:10px;
	font-size: 16px;
}
.modal-box .link_btn
{	text-decoration: underline;
	cursor: pointer;
}

	.modal-box .inner_html img
	{	width: 350px;
		margin: 0px auto;
	}
@media screen and (max-width: 480px)
{	
	.modal-box .inner_html img
	{	width: 90%;
		
	}
	
	
}


