/*
 *  (c) 2016 Jainish Senjaliya <jainishsenjaliya@gmail.com>
 *  All rights reserved
 *  Fancy Layout 
*/

*::after, *::before {
	box-sizing: border-box;
}
*{
	box-sizing: border-box;
}


.tx-js-contact-form .form-group::after, 
.tx-js-contact-form .form-group::before{
	content: " ";
	display: table;
}

.tx-js-contact-form .form-group::after{
	clear: both;
}

.tx-js-contact-form .col-sm-3, 
.tx-js-contact-form .col-sm-9 {
	min-height: 1px;
	padding:0 15px;
	position: relative;
}

.tx-js-contact-form .col-sm-3 {
	width: 25%;
	float: left;
}

.tx-js-contact-form .col-sm-9 {
	width: 75%;
	float: left;
}

.tx-js-contact-form .col-sm-offset-3 {
	margin-left: 25%;
}

.tx-js-contact-form .form-group label {
	padding-top: 7px;
	text-align: right !important;
	font-weight: bold;
}


.tx-js-contact-form textarea.form-control {
	height: auto;
	overflow: hidden;
}

.tx-js-contact-form .form-control:focus{
	border-color:#66afe9;
	outline:0;
	outline: thin dotted \9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

.tx-js-contact-form .form-control.error{
	border-color: red;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(255, 4, 0, 0.5);
	-moz-box-shadow:	0px 0px 10px 0px rgba(255, 4, 0, 0.5);
	box-shadow:			0px 0px 10px 0px rgba(255, 4, 0, 0.5);
	    height: 38px !important;
}


.tx-js-contact-form .message-top {
	left: 0;
	position: fixed;
	right: 0;
	text-align: center;
	top: 0px;
	z-index: 100000000000000;
}

.tx-js-contact-form .alert {
	border-radius:4px;
	border: 1px solid #cccccc;
	clear: both;
	display: inline-block;
	margin-bottom:20px;
	padding: 13px 40px 13px 18px;
	width: auto;
}

.tx-js-contact-form .alert span{
	display:block !important;
	font-size:14px;
	line-height:18px;
	margin-bottom: 10px;
	padding-left:20px;
	width:100%;
}

.tx-js-contact-form .alert span:last-child{
	margin-bottom: 0px;
}

.tx-js-contact-form .alert-danger {
	background-color: #ffe9e9;
	border: 1px solid #fbc4c4;
	width: 100%
}

.tx-js-contact-form .alert-danger span {
	color: #de5959;
	background:url(../Images/error.png) no-repeat left center;
}

.tx-js-contact-form .alert-info {
	background-color: #d9edf7;
	border: 1px solid #bce8f1;
}

.tx-js-contact-form .alert-info span {
	color: #31708f;
}

.tx-js-contact-form .alert-success {
	background-color: #ebf6e0;
	border: 1px solid #b3dc82;
}

.tx-js-contact-form .alert-success span {
	color: #5f9025;
	background:url(../Images/success.png) no-repeat left center;
}

.tx-js-contact-form .formLoading {
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	background: url(../Images/loading.gif) no-repeat scroll center center #000000 !important;
	opacity: 0.33;
	z-index: 111111;
	display: none;
}