.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10400;
	background-color: rgba(55,55,55,0.8);
}

.modal-backdrop.fade {
	opacity: 0;
}

.modal-backdrop,
.modal-backdrop.fade.in {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.modalView {
	display: none;
	position: fixed;
	top: 10%;
	left: 50%;
	z-index: 10500;
	width: 900px;
	max-width: 90vh;
	/*margin-left: -280px;*/
	transform: translateX(-50%);
	background-color: rgba(20,20,20,1);
	border: 1px solid #999999;
	border: 1px solid rgba(0, 0, 0, 0.3);
	*border: 1px solid #999999;
	/* IE6-7 */

	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
	outline: none;
}

.modalView {
	color: #5c6268;
	font-size: 14px;
	line-height: 1.42857;
	overflow: hidden;
}

.modalView.fade {
	-webkit-transition: opacity .3s linear, top .3s ease-out;
	-moz-transition: opacity .3s linear, top .3s ease-out;
	-o-transition: opacity .3s linear, top .3s ease-out;
	transition: opacity .3s linear, top .3s ease-out;
	top: -25%;
}

.modalView.fade.in {
	top: 10%;
}

.modal-header {
	padding: 9px 15px;
	border-bottom: 1px solid #EEEEEE;
}

.modal-header .close {
	margin-top: 2px;
	float: right;
	background: none;
	/*color: #000;*/
	padding: 5px 8px 7px;
	line-height: 12px;
	vertical-align: middle;
	font-size: 20px;
	font-weight: bold;
}

.modal-header .close > span {
	text-transform: uppercase;
}

.modal-header h4 {
	color: #fff;
	margin: 0;
	line-height: 30px;
}

.modal-body {
	position: relative;
	overflow-y: auto;
	/*max-height: 400px;*/
	padding: 15px;
}

.modal-form {
	margin-bottom: 0;
}

.modal-footer {
	padding: 14px 15px 15px;
	margin-bottom: 0;
	text-align: right;
	/*background-color: #F5F5F5;*/
	border-top: 1px solid #DDDDDD;
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
	-webkit-box-shadow: inset 0 1px 0 #FFFFFF;
	-moz-box-shadow: inset 0 1px 0 #FFFFFF;
	box-shadow: inset 0 1px 0 #FFFFFF;
	*zoom: 1;
}

.modal-footer:before,
.modal-footer:after {
	display: table;
	content: "";
	line-height: 0;
}

.modal-footer:after {
	clear: both;
}

.modal-footer .btn + .btn {
	margin-left: 5px;
	margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
	margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
	margin-left: 0;
}

.modal-body .form-group {
	clear: both;
	margin-bottom: 1em;
}

.modal-body .form-group > .control-label,
.modal-body .form-group > .form-control {
	width: 100%;
	margin-bottom: 5px;
	color: #fff;
}

.modal-body .form-group > .form-control,
.modal-body .form-group > .styled-select {
	font-size: 14px;
	border-width: 1px;
}

.contact .form-group .styled-select::after {
	right: 10px;
}

/*.modal-body .form-group.has-error input,*/
/*.modal-body .form-group.has-error textarea,*/
/*.modal-body .form-subscribe .email-container.has-error input {*/
	/*border: 1px solid #a94442;*/
/*}*/

/*.modal-body .form-group.has-error label.control-label {*/
	/*color: #a94442;*/
/*}*/

/*.ignore .form-control {*/
/*}*/

/*.required .control-label:after {*/
	/*content: " *";*/
/*}*/

#results {
	display: none;
	border: 1px solid #cccccc;
	text-align: center;
}

#results .text {
	margin: 10px;
}

#results.show {
	display: block;
	padding: 10px;
}

#results {
	margin-bottom: 30px;
}

#results.error {
	border-color: #a94442 !important;
	color: #a94442;
}

#results.success {
	border-color: #DD7902 !important;
	color: #DD7902;
}

#form {
	position: relative;
}

.modalView button {
	width: auto;
}

@media (max-width: 767px) {
	.modalView {
		position: fixed;
		top: 20px;
		left: 20px;
		right: 20px;
		width: auto;
		margin: 0;
	}

	.modalView.fade {
		top: -100px;
	}

	.modalView.fade.in {
		top: 20px;
	}
}