/*************************************************
* Popup
*************************************************/

#infobox {
	position: fixed;
	left: 	0;
	right: 	0;
	top: 	0;
	bottom: 0;
	width:  100%;
	height: 100%;
	
	background: rgba(255,255,255,0.9);
	
	transition: 		opacity 500ms ease;
	
	z-index: -1;
	opacity: 0;
}

#infobox.active {
	z-index: 30009;
	opacity: 1;
}

#infoinner {	
	background: #fff;
	
	position: absolute;
    top:   30px;
    left:  20px;
    right: 20px;
	
	width: 100%;
	max-width: 90%;
	max-height: 90%;
	
	overflow: auto;
	
	border-radius: 10px;
	
	margin: 0 auto;	
	
	-webkit-box-shadow: 0 5px 30px -5px rgba(80,80,80,0.6);
			box-shadow: 0 5px 30px -5px rgba(80,80,80,0.6);
}

@media (min-width:768.02px) {
	#infoinner {	
		position: relative;
		left: auto;
		right: auto;
		width: 680px;
		max-width: 90%;
	    top: 50%;
	    transform: translateY(-50%);
	    
	    overflow: auto;
	}
}

#infocontent {
	padding: 60px;
	position: relative;
	
	overflow: auto;
}

@media (max-width:720px) {
	#infocontent {
		padding: 60px 20px 20px 20px;
		position: relative;
	}
}

#infobox h3.sectiontitle {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 24px;
	color: #4d7d6a;
	
	padding-right: 40px;
}

#infobox p {
	margin-bottom: 10px;
	line-height: 1.5;
	font-weight: 400;
}

#infobox p.hidelink {
	margin-top: 20px;
	font-weight: 500;
	margin-bottom: 0;
}

#infobox p.nomargin {
	margin-bottom: 0;
}

#infobox_hide {
	position: absolute;
	right: 10px;
	top: 10px;
	width:  60px;
	height: 60px;
	
	cursor: pointer;
}

#infobox_hide span {
	
}

#infobox a img {
	transition: all 400ms ease;
}

#infobox a:hover img {
	opacity: 0.8;
}

#infobox_hide span,
#infobox_hide span:before,
#infobox_hide span:after {
	display: inline-block;
	height: 2px;
	position: absolute;
	width: 30px;
		 	
	background-color: #4d7d6a;
	
	border-radius: 2px;
}

#infobox_hide span {
    left:  15px;
    top:   28px;
	background: transparent;
}

#infobox_hide span:before,
#infobox_hide span:after {
    content: "";
    left: 0;
	top: 0;
	width: 30px;
}

#infobox_hide span:before {
	transform: 			rotate(-45deg);
}

#infobox_hide span:after {
    transform: 		rotate(45deg);
}