/*
 * 	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: rgba(69,46,100,0.8);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10001;
	display: none;
}

.portBox {
	max-width:1280px;
	position: absolute;
	display:none;
	background: #ffffff;
	z-index: 20001;
	padding: 20px;
	text-align:left;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 10px;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
	-box-shadow: 0 0 10px rgba(0,0,0,.4);
	width: 500px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
	
}

.close-portBox{
		padding: 15px; 10px 0px 0px;
		color: #432c60;
		font-size: 34px;
		line-height: 25px;
		position: absolute;
		right: 0px;
		text-align: center;
		top: 0px;
		text-decoration: none;
		font-weight: bold;
		cursor: pointer;
}

.close-portBox:hover{
	color: #ff3000; background: none;	
}





	.portBox h1 {
		text-align: center;
		font-size: 28px;
		font-family: 'Montserrat', sans-serif;
		font-weight: 700;
		color: #ff3000;
		margin: 0px 0px 0px 0px;
		border: 0px;
		padding: 10px 0px 0px 0px;
	}

	.portBox h2 {
		text-align: center;
		font-size: 14px;
		line-height: 22px;
		font-family: 'Montserrat', sans-serif;
		font-weight: 400;
		color: #757575;
		margin: 0px 0px 0px 0px;
		border: 0px;
		padding: 10px 20px 0px 20px;
	}



	.formRow {
		display: block;
		margin: 10px auto 0px;
		text-align: center;
	}

	.formRow label {
		width: 100%;
		display: block;
		text-align: left;
		font-size: 18px;
		font-family: 'Montserrat', sans-serif;
		font-weight: 400;
		color: #432c60;
		padding: 10px 0px 0px 0px;
		border: 0px;
		margin: 0px 0px 0px 0px;

	}


	.formRow .input {
		width: 100%;
		height: 50px;
		text-align: left;
		font-size: 16px;
		font-family: 'Montserrat', sans-serif;
		font-weight: 400;
		color: #452e64;
		padding: 0px 0px 0px 10px;
		border: 0px solid #452e64;
		margin: 0px 0px 0px 0px;
		box-sizing: border-box; /* REMOVES PADDING WITH 100% WiDTHS */
		-webkit-appearance: none;
		outline: none;
		border-radius: 6px;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		background: #d1d7f3;
	}


	.formRow .select {
		width: 100%;
		height: 35px;
		text-align: left;
		font-size: 16px;
		font-family: 'Montserrat', sans-serif;
		font-weight: 400;
		color: #452e64;
		padding: 0px 0px 0px 10px;
		border: 0px solid #452e64;
		margin: 0px 0px 0px 0px;
		box-sizing: border-box; /* REMOVES PADDING WITH 100% WiDTHS */
		outline: none;
		border-radius: 6px;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		background:#d1d7f3 url(../../images/select-arrow.png);
		background-repeat: no-repeat;
		background-position: 100% 50%;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		cursor: pointer;
	}


	::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	  color: #452e64;
	}
	::-moz-placeholder { /* Firefox 19+ */
	  color: #452e64;
	}
	:-ms-input-placeholder { /* IE 10+ */
	  color: #452e64;
	}
	:-moz-placeholder { /* Firefox 18- */
	  color: #452e64;
	}




	.modalButton {
		width: 100%;
		height: 70px;
		text-align: center;
		font-size: 25px;
		font-family: 'Montserrat', sans-serif;
		font-weight: 700;
		color: #fff;
		padding: 0px 0px 0px 0px;
		border: 0px solid #452e64;
		margin: 0px 0px 0px 0px;
		box-sizing: border-box; /* REMOVES PADDING WITH 100% WiDTHS */
		-webkit-appearance: none;
		border-radius: 6px;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		background: #ff3000;
		cursor: pointer;
	}







