﻿

.box
{
	margin: 0 auto;
	margin: 5px 0 0 0;
	text-align: center;
	
	
}

.button
{
	font-size: 12px;
	color: #fff;
	border-radius: 20px/50px;
	text-decoration: none;
	cursor: pointer;
	/*transition: all 0.3s ease-out;*/
}
.button:hover
{
	color: #fff;
}

.overlay
{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	/*transition: opacity 500ms;*/
	visibility: hidden;
	opacity: 0;
	z-index:99999;
	/*overflow-y:scroll;*/
	
}
.overlay:target
{
	visibility: visible;
	opacity: 1;
}

.popup
{
	margin: 50px auto;
	background: #fff;
	border-radius: 5px;
	width: 90%;
	position: relative;
	/*transition: all 5s ease-in-out;*/
	z-index:999999;
	top:5% !important;
}

.popup .close
{
	position: absolute;
	top: 7px;
	right: 15px;
	transition: all 200ms;
	font-size: 40px;
	font-weight: bold;
	text-decoration: none;
	color: #000;
}
.popup .close:hover
{
	color: #e40d00;
}
.popup .content
{
	max-height: 30%;
	overflow: auto;
	margin-top:-40px;
	padding:10px;
}

@media screen and (max-width: 700px)
{

	.popup {
		width: 90% !important;
		top: 25% !important;
		margin: 0 !important;
		padding: 0 !important;
		left: 17px !important;
	}
	}
