/*
 * 	portBox 1.0 - jQuery plugin
 *	written by Joey Navarro	
 *	http://www.joeynavarro.com
 *
 *	Copyright (c) 2013 Joey Navarro (http://www.joeynavarro.com)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *
 */
/*-----------------------------------------
portBox CSS
------------------------------------------*/
.portBox-overlay {  
	height: 100%;
	width: 100%;
	background: #000000;
	opacity: 0.6;
	filter: alpha(opacity=60);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: none;
}

.portBox {
	width:40%;
	position: absolute;
	z-index: 2000;
	display:none;
	background: #ffffff;
	padding: 30px;
	text-align:left;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}

.close-portBox{
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 20px;
	line-height: .5;
	position: absolute;
	top: -5px;
	right: -7px;
	color: #fff !important;
	text-shadow:none;
	font-weight:bold;
	cursor: pointer;
	border-radius:50%;
	padding:5px;
	background-color:#5c5c5c;
	overflow:visible;
	border:1px solid #fff;
	text-decoration:none;
}

.close-portBox:hover{
	color: #5c5c5c !important;
	background-color:#fff;
	border:1px solid #5c5c5c;	
}

.close-portBox:before {
	content: "";
	width: 0%;
}

.portBox a:hover {
	color: #616948;
}

.portBox h2 {
	margin: 20px 0 5px 0;
	padding:0;
	line-height:1;
	font-size:20px;
	font-weight:400;
}


@media only screen and (min-width: 200px) and (max-width: 767px) {
.portBox {padding: 10px; width:98%;min-width:200px;}
}

