/*
 * Theme Name: Quform Light
 * Description: A light design.
 * Version: 1.0 (For Quform PHP)
 * Author: ThemeCatcher
 * Author URI: http://www.themecatcher.net
 */

/*****************************************************
1: Form heading and description
******************************************************/
/*Set global fonts*/
.quform-theme-light-light {
	color: #000;
}
/*Form Heading*/
.quform-theme-light-light h3.quform-title {
	color: #000;
}
/*Form description*/
.quform-theme-light-light p.quform-description {
	color: #666;
}

/*****************************************************
2: Elements and labels
******************************************************/

/*Required - this is the text that is used to indicate a required field*/
.quform-theme-light-light .quform-element label span.quform-required {
    color: #cc0101;
}
/*Element description*/
.quform-theme-light-light .quform-element p.quform-description {
	color: #000;
}
/*Default state input, selects and textareas*/
.quform-theme-light-light .quform-elements .quform-element-text input,
.quform-theme-light-light .quform-elements .quform-element-captcha input,
.quform-theme-light-light .quform-elements .quform-element-password input,
.quform-theme-light-light .quform-elements .quform-element select,
.quform-theme-light-light .quform-elements .quform-element textarea {
	color: #999;
	border: solid 1px #b9b9b9;
	padding: 4px;
	background: #fff url(images/input-bg-rep.png) repeat-x bottom left;
	-webkit-box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.08);
	width: 356px;
}


.quform-element-text2 input {
    color: #999;
    border: 1px solid #B9B9B9;
    padding: 4px;
    background: #FFF url("images/input-bg-rep.png") repeat-x scroll left bottom;
    box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.08);
    width: 727px;
}



.quform-theme-light-light .quform-elements .quform-element select {//*padding: 3px;*/}
/*Fix Chrome select (no background image sorry!)*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.quform-theme-light-light .quform-elements .quform-element select {background: #fff;}
}
/*Hover element*/
.quform-theme-light-light .quform-elements .quform-element-text input:hover,
.quform-theme-light-light .quform-elements .quform-element-captcha input:hover,
.quform-theme-light-light .quform-elements .quform-element-password input:hover,
.quform-theme-light-light .quform-elements .quform-element select:hover,
.quform-theme-light-light .quform-elements .quform-element textarea:hover {
	color: #000;
	border: solid 1px #CACACA;
}
/*Active element*/
.quform-theme-light-light .quform-elements .quform-element-text input:active,
.quform-theme-light-light .quform-elements .quform-element-captcha input:active,
.quform-theme-light-light .quform-elements .quform-element-password input:active,
.quform-theme-light-light .quform-elements .quform-element select:active,
.quform-theme-light-light .quform-elements .quform-element textarea:active {
	color: #000;
}
/*Focused element*/
.quform-theme-light-light .quform-elements .quform-element-text input:focus,
.quform-theme-light-light .quform-elements .quform-element-captcha input:focus,
.quform-theme-light-light .quform-elements .quform-element-password input:focus,
.quform-theme-light-light .quform-elements .quform-element select:focus,
.quform-theme-light-light .quform-elements .quform-element textarea:focus {
	color: #000;
	background: #fff url(images/input-active-bg-rep.png) repeat-x top left;
	border: solid 1px #CACACA;
	-webkit-box-shadow: 1px 1px 0 0 rgba(255, 255, 255, 0.4);
	-moz-box-shadow: 1px 1px 0 0 rgba(255, 255, 255, 0.4);
	box-shadow: 1px 1px 0 0 rgba(255, 255, 255, 0.4);
}
/*Fix Chrome select (no background image sorry!)*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	.quform-theme-light-light .quform-elements .quform-element select {background: #fff;}
	
}

/* Default Label*/
.quform-theme-light-light .quform-element > .quform-spacer > label {
    font-weight: bold;
	color: #000;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
}
/*Tooltip icon*/
.quform-theme-light-light .quform-tooltip-icon {
    background: url(images/help-icon.png) no-repeat right bottom;
}
/*Select options*/
.quform-theme-light-light select option {
    padding-right: 10px;
}
.quform-theme-light-light select[multiple="multiple"] option {
    padding: 0 5px;
}
/*****************************************************
4: Captcha
******************************************************/

/*Refresh captcha icon background*/
.quform-theme-light-light .quform-captcha-inner {
	margin-top: 3px;
	border: 1px solid #ccc;
}
/*****************************************************
5: Element groups
******************************************************/

/*Group title & description wrap plain*/
.quform-theme-light-light .quform-group-style-plain > .quform-group-elements .quform-group-title-description-wrap {
	margin-bottom: 15px;
	padding-bottom: 5px;
	border-bottom: solid 1px #eee;
	border-top: solid 1px #eee;
}
/*Group title plain*/
.quform-theme-light-light .quform-group-style-plain > .quform-group-elements .quform-group-title {
	color: #363636;
	padding: 5px 0 0;
	font-weight: normal;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4)
}
/*Group description plain*/
.quform-theme-light-light .quform-group-style-plain > .quform-group-elements p.quform-group-description {
	color: #666;
	padding: 0;
	font-size: 11px;
}
/*IE fix for negative margins used below*/
.quform-theme-light-light .quform-group-style-bordered > .quform-group-elements {min-width: 1px;}
/*Group title & description wrap bordered*/
.quform-theme-light-light .quform-group-style-bordered > .quform-group-elements .quform-group-title-description-wrap {
	margin: -10px -10px 10px -10px;
	border-bottom: solid 1px #eee;
	background: #fff url(images/boxed-group-title-bg.png) repeat-x left top;
	padding-bottom: 5px;
}
/*Group title bordered*/
.quform-theme-light-light .quform-group-style-bordered > .quform-group-elements .quform-group-title {
	color: #363636;
	padding: 5px 10px 0;
	font-weight: normal;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
	margin: 0;
}
/*Group description bordered*/
.quform-theme-light-light .quform-group-style-bordered > .quform-group-elements p.quform-group-description {
	color: #666;
	font-size: 11px;
	padding: 2px 10px 0;
	margin: 0;
}
/*Bordered style group*/
.quform-theme-light-light .quform-group-style-bordered > .quform-group-elements {
	border: solid 1px #CCC;
	background: #fefefe url(images/boxed-group-bg.png) repeat-x bottom left;
	-webkit-box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.08);
}
.quform-theme-light-light .quform-group-style-bordered > .quform-group-row {
}
/*One row inside a group*/
.quform-theme-light-light .quform-group-style-bordered > .quform-group-elements .quform-group-row {
	background: url(images/boxed-group-break-line.png) repeat-x bottom left;
	margin-bottom: 10px;
}
.quform-theme-light-light .quform-group-style-plain > .quform-group-elements .quform-group-row {
	background: none;
	margin-bottom: 0;
}
.quform-theme-light-light .quform-group-style-bordered .quform-group-row:last-child {
	background: none;
	margin-bottom: 0;
}

/*****************************************************
6: Submit button and related
******************************************************/
/*Note: Submit button is designed so you can use rounded cornered image backgrounds that can be fluid size*/
.quform-theme-light-light .quform-submit button {border: 1px outset #ccc;} /* optional - IE7 fix */
/*Submit button wrap*//*You might want to use float:right here. Change loading icon wrap below too*/
.quform-theme-light-light .quform-submit-inner {}
/*Submit button hide*/
.quform-theme-light-light .quform-submit button {
	border: none;
	background: none;
	text-align: center;
	width: 728px;
	overflow: visible;
	white-space: nowrap;
	padding: 0;
	margin: 0;
	height: auto;
	line-height: auto;
	cursor: pointer;
	max-width: 100%;
}
/*Submit button default state*/
.quform-theme-light-light .quform-submit button span {
	color: #363636;
	text-shadow: 1px 1px 0 rgba(255,255,255, 0.8);
	height: 30px;
	line-height: 30px;
}
/*Default*/
.quform-theme-light-light .quform-submit button span {
	/*background: #fdfdfd url(images/button-bg-rep.png) repeat-x bottom left;*/ /*Left image*/
	color: #FFF;
	font-size: 16px;
	height:40px;
	text-shadow: 1px 1px 0px #0C95AE;
	/*border: 1px solid #5bc0c7;*/
	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	
	background: #6ccbd6;
	background-image: linear-gradient(bottom, #0C95AE 0%, #2DB6CF 100%);
	background-image: -o-linear-gradient(bottom, #0C95AE 0%, #2DB6CF 100%);
	background-image: -moz-linear-gradient(bottom, #0C95AE 0%, #2DB6CF 100%);
	background-image: -webkit-linear-gradient(bottom, #0C95AE 0%, #2DB6CF 100%);
	background-image: -ms-linear-gradient(bottom, #0C95AE 0%, #2DB6CF 100%);
	
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, #0C95AE),
		color-stop(1, #2DB6CF)
	);
	
}
/*Hover*/
.quform-theme-light-light .quform-submit button:hover span { /*border: 1px solid #469499; */color: #fff; -moz-box-shadow: 0px 1px 0px #cccccc; -webkit-box-shadow: 0px 1p 0px #cccccc; box-shadow: 0px 1px 0px #cccccc; }
/*Active*/
.quform-theme-light-light .quform-submit button:active span {}
/*Default*/
.quform-theme-light-light .quform-submit button em {
	background: transparent; /*right image*/
	height: 40px;
	line-height: 40px;
}
/*Hover*/
.quform-theme-light-light .quform-submit button:hover em {}
/*Active*/
.quform-theme-light-light .quform-submit button:active em {}
/*Loading the submit*//*You will want this float:right if the button is right*/
.quform-theme-light-light .quform-loading-wrap {margin-top: 9px;}
.quform-theme-light-light .quform-button-fat .quform-loading-wrap {margin-top: 18px;}
/*Loading gif image*/
.quform-theme-light-light .quform-loading-wrap .quform-loading {}
/*Preset button sizes - fat*/
.quform-theme-light-light .quform-button-fat.quform-submit .quform-submit-inner button span {padding: 0 40px; line-height: 45px; height: 45px;}
/*Preset button sizes - full width*/
.quform-theme-light-light .quform-button-full-width.quform-submit .quform-submit-inner button {height: auto;}
.quform-theme-light-light .quform-button-full-width.quform-submit .quform-submit-inner button span {line-height: 38px; height: 38px;}
/*****************************************************
7: Messages for user
******************************************************/

/*Errors*/
.quform-theme-light-light .quform-errors > .quform-error {
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
	text-shadow: 1px 1px 0 #f3d6d4;
}
/*File upload errors*/
.quform-theme-light-light .quform-queue-errors-list > .quform-queue-error {
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	text-shadow: 1px 1px 0 #f3d6d4;
}

/*Success message*/
.quform-theme-light-light .quform-success-message {
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	text-shadow: 1px 1px 0 #e0fdc3;
}
/*quform referal link*/
.quform-theme-light-light .quform-referral-link a {
	color: #0F83CA;
}
.quform-theme-light-light .quform-referral-link a:hover {
	color: #292929;
}
/*****************************************************
8: Quform PHP specific
******************************************************/
/*Light close button*/
.quform-theme-light-light.quform-outer a.quform-cancel-button {
    background-image: url(images/close.png);
}

/*****************************************************
9: Responsive
******************************************************/
/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 1220px), only screen and (min-device-width: 768px) and (max-device-width: 1220px) {
	.quform-theme-light-light .quform-submit button {
	border: none;
	background: none;
	text-align: center;
	width: 420px;
	overflow: visible;
	white-space: nowrap;
	padding: 0;
	margin: 0;
	height: auto;
	line-height: auto;
	cursor: pointer;
	max-width: 100%;
}

.quform-theme-light-light .quform-elements .quform-element-text input, .quform-theme-light-light .quform-elements .quform-element-captcha input, .quform-theme-light-light .quform-elements .quform-element-password input, .quform-theme-light-light .quform-elements .quform-element select, .quform-theme-light-light .quform-elements .quform-element textarea {
    color: #999;
    border: 1px solid #B9B9B9;
    padding: 4px;
    background: #FFF url("images/input-bg-rep.png") repeat-x scroll left bottom;
    box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.08);
    width: 202px;
}

.quform-element-text2 input {
    color: #999;
    border: 1px solid #B9B9B9;
    padding: 4px;
    background: #FFF url("images/input-bg-rep.png") repeat-x scroll left bottom;
    box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.08);
    width: 418px;
}

.quform-theme-light-light .quform-element > .quform-spacer > label {
    font-weight: bold;
    color: #000;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4);
    font-size: 11px;
}
}

@media only screen and (max-width: 959px) {

}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-device-width: 1220px) {
.two_thirdContact { width: 640px; }

.quform-theme-light-light .quform-submit button {
	border: none;
	background: none;
	text-align: center;
	width: 245px;
	overflow: visible;
	white-space: nowrap;
	padding: 0;
	margin: 0;
	height: auto;
	line-height: auto;
	cursor: pointer;
	max-width: 100%;
}
}



/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 1024px) {
	/* Make radio and checkboxes a bit easier to select on touch devices */
	/*.quform-theme-light-light .quform-options .quform-option {
		border: solid 1px #b9b9b9;
		background: #fff url(images/input-bg-rep.png) repeat-x bottom left;
		-webkit-box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.08);
		-moz-box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.08);
		box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.08);
	}
	.quform-theme-light-light .quform-submit button span {
		line-height: 35px;
		height: 35px;
	}
	.quform-theme-light-light .quform-submit.quform-button-fat button {height: auto;}
	.quform-theme-light-light .quform-submit.quform-button-fat button span {
		height: 45px;
		line-height: 45px;
	}*/
	.quform-theme-light-light .quform-submit button {
	border: none;
	background: none;
	text-align: center;
	width: 420px;
	overflow: visible;
	white-space: nowrap;
	padding: 0;
	margin: 0;
	height: auto;
	line-height: auto;
	cursor: pointer;
	max-width: 100%;
}
	
	
	.quform-theme-light-light .quform-elements .quform-element-text input, .quform-theme-light-light .quform-elements .quform-element-captcha input, .quform-theme-light-light .quform-elements .quform-element-password input, .quform-theme-light-light .quform-elements .quform-element select, .quform-theme-light-light .quform-elements .quform-element textarea {
    color: #999;
    border: 1px solid #B9B9B9;
    padding: 4px;
    background: #FFF url("images/input-bg-rep.png") repeat-x scroll left bottom;
    box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.08);
    width: 202px;
}

.quform-element-text2 input {
    color: #999;
    border: 1px solid #B9B9B9;
    padding: 4px;
    background: #FFF url("images/input-bg-rep.png") repeat-x scroll left bottom;
    box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.08);
    width: 418px;
}

}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
.quform-theme-light-light .quform-submit button {
	border: none;
	background: none;
	text-align: center;
	width: 320px;
	overflow: visible;
	white-space: nowrap;
	padding: 0;
	margin: 0;
	height: auto;
	line-height: auto;
	cursor: pointer;
	max-width: 100%;
}

.quform-theme-light-light .quform-elements .quform-element-text input, .quform-theme-light-light .quform-elements .quform-element-captcha input, .quform-theme-light-light .quform-elements .quform-element-password input, .quform-theme-light-light .quform-elements .quform-element select, .quform-theme-light-light .quform-elements .quform-element textarea {
    color: #999;
    border: 1px solid #B9B9B9;
    padding: 4px;
    background: #FFF url("images/input-bg-rep.png") repeat-x scroll left bottom;
    box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.08);
    width: 318px;
}

.quform-theme-light-light .quform-element > .quform-spacer > label {
    font-weight: bold;
    color: #000;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4);
    font-size: 13px;
}



.quform-element-text2 input {
    color: #999;
    border: 1px solid #B9B9B9;
    padding: 4px;
    background: #FFF url("images/input-bg-rep.png") repeat-x scroll left bottom;
    box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.08);
    width: 318px;
}


}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
	
	.quform-theme-light-light .quform-submit button {
	border: none;
	background: none;
	text-align: center;
	width: 320px;
	overflow: visible;
	white-space: nowrap;
	padding: 0;
	margin: 0;
	height: auto;
	line-height: auto;
	cursor: pointer;
	max-width: 100%;
}

.quform-element-text2 input {
    color: #999;
    border: 1px solid #B9B9B9;
    padding: 4px;
    background: #FFF url("images/input-bg-rep.png") repeat-x scroll left bottom;
    box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.08);
    width: 318px;
}
	
	
.quform-theme-light-light .quform-elements .quform-element-text input, .quform-theme-light-light .quform-elements .quform-element-captcha input, .quform-theme-light-light .quform-elements .quform-element-password input, .quform-theme-light-light .quform-elements .quform-element select, .quform-theme-light-light .quform-elements .quform-element textarea {
    color: #999;
    border: 1px solid #B9B9B9;
    padding: 4px;
    background: #FFF url("images/input-bg-rep.png") repeat-x scroll left bottom;
    box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.08);
    width: 318px;
}
.quform-theme-light-light .quform-element > .quform-spacer > label {
    font-weight: bold;
    color: #000;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4);
    font-size: 13px;
}
}