@charset "utf-8";
/* CSS Document */

.modal-form {
	margin: 0 0 -250px 0;
	padding: 20px;
	width: 300px;
	background: #FFF;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
	font: normal 12px/20px Arial, Helvetica, sans-serif;
	color: #666;
	position: fixed;
	bottom: 50%;
	left: 0;
	z-index: 9999;
	display: none;
}
.modal-form-title {
	margin-bottom: 10px;
	font: normal 22px/25px arial;
	color: #333;
}
.modal-form h3 {
	margin-bottom: 10px;
	font: normal 20px/20px Arial, Helvetica, sans-serif;
	color: #666;
}
.modal-form p {
	font-size: 11px;
	line-height: 15px;
	color: #999;
}
.modal-form-subtitle {
	margin-bottom: 0;
	clear: both;
}
.modal-form p.error, .modal-form p.success {
	padding: 4px 0;
	display: none;
	width: 100%;
	clear: both;
	text-align: center;
	text-transform: uppercase;
	float: left;
}
.modal-form p.error {
	color: red;
	border: #F2DADA solid 1px;
	background: #FFEBEB;
}
.modal-form p.success {
	color: green;
	border: #D9EDD1 solid 1px;
	background: #EDFFE6;
}
.modal-form .form-modal {
	margin-bottom: 0;
}
.modal-form label {
	display: block;
	margin-bottom: 0;
	line-height: inherit;
}
.modal-form label.radio {
	margin-bottom: 10px;
	width: 150px;
	float: left;
	padding-left: 0;
}
.modal-form input[type=text], .modal-form input[type=email] {
	margin: 0;
	padding: 0 9px;
	width: 260px;
	height: 28px;
	background: #FFF;
	border: 1px solid #E5E5E5;
	border-radius: 0;
	font: normal 14px/28px Arial, Helvetica, sans-serif;
	color: #333;
}
.modal-form label input[type=text]:focus, .modal-form label input[type=email]:focus {
	border-color: #333;
	box-shadow: none;
}
.modal-form label.radio input, .modal-form label.checkbox input {
	float: left;
	width: 14px;
	height: 20px;
	margin-right: 5px;
	border: none;
	box-shadow: none;
}
.modal-form label.checkbox {
	font: normal 11px/18px Arial, Helvetica, sans-serif;
	color: #999;
	padding-left: 0;
}
.modal-form label.checkbox span {
	font-size: 12px;
}
.modal-form label.checkbox a {
	color: #333;
}
.modal-form label.checkbox a:hover {
	text-decoration: underline;
}
.modal-form label span {
	margin-bottom: 5px;
	color: #F00;
	display: none;
	font-size: 12px;
}
.modal-form label span.show {
	display: block !important;
}
.modal-form label input[type=radio], .modal-form label input[type=checkbox] {
	margin: 0;
}
.modal-form label input[type=email], .modal-form label input[type=text] {
	margin-bottom: 10px;
	width: 280px;
	box-shadow: none;
}
.modal-form button {
	margin: 10px 0;
	width: 260px;
	height: 30px;
	background: #333;
	border: none;
	color: #FFF;
	text-transform: uppercase;
	cursor: pointer;
	display: block;
}
.modal-form button:hover {
	background: #999;
}
.modal-form .close-parent {
	margin: 10px 0;
	color: #999;
	float: right;
}
.modal-form .close-modal {
	color: #999;
	float: right;
}
.modal-form .close-modal {
	font-size: 10px;
	position: absolute;
	top: 0px;
	width: 30px;
	color: #FFF;
	right: -30px;
	height: 30px;
	font-size: 17px;
	line-height: 30px;
	text-align: center;
	background: #333;
}
.modal-form .close-modal:hover {
	background: #999;
}
.modal-form .checkbox-common-box input {
	float: left;
}
.modal-form .checkbox-common-box label {
	float: left;
	font-size: 11px;
	width: 255px;
	line-height: 16px;
	margin-bottom: 10px;
}
.modal-form .checkbox-common-box br {
	clear: both;
}
.modal-form label span.newsletter {
	border: 0;
	text-transform: none;
	text-align: left;
	clear: both;
}
/* Desktop large layout */
@media (min-width: 1200px) {
}
/* Desktop small layout */
@media (min-width: 980px) and (max-width: 1199px) {
}
/* Tablet layout */
@media (min-width: 768px) and (max-width: 979px) {
}
/* Mobile landscape layout */
@media (min-width: 480px) and (max-width: 767px) {
	.modal-form {
		display: none !important;
		margin-left: -170px;
		padding: 20px;
		background: #FFF;
	}
	.modal-form-subtitle {
	}
}
/* Mobile portrait layout */
@media (max-width: 479px) {
	.modal-form {
		display: none !important;
		margin-left: -170px;
		padding: 20px;
		background: #FFF;
	}
	.modal-form .close-modal {
		margin-right: -15px;
		top: -40px;
		right: 50%;
	}
}