/**
* GENERAL
*/

.client-form .col {
	margin-bottom: 15px;
}


.client-form .error {
	color: red;
}

.client-form .error input[type=text], 
.client-form .error textarea, 
.client-form .error select {
	border: solid 1px red !important;
}

.client-form h3 {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 400;
	border-bottom: solid 1px #ccc;
	padding-bottom: 10px;
}

.client-form .confirm label {
	margin: 5px 0px -4px 0px !important;
}

/**
* LOGIN PAGE
*/


/**
* CLIENT ACCOUNT
*/
#client-account .toggle-section {
	position: relative;
	border: solid 1px #ddd;
	padding: 12px;
	font-size: 15px;
	color: #666;
	margin: 0px 0px 8px 0px;
	text-transform: uppercase;
	font-weight: bold;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 4px;
	cursor: pointer;
	background: #f5f5f5;

}

#client-account .toggle-section .fa {
	cursor: pointer;
	font-size: 2em;
	vertical-align: middle;
	position: relative;
	top: -2px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #B2C5D3;
	color: #fff;
	text-align: center;
	line-height: 25px;
	margin-right: 5px;
}

#client-account .toggle-section .fa.expand {
	line-height: 30px;
}

#client-account .toggle-section .collapse {
	display: none;
}
#client-account .toggle-section.expanded .collapse {
	display: inline-block;
}
#client-account .toggle-section.expanded .expand {
	display: none;
}

#client-account .toggle-section label {
	cursor: inherit;
}

#client-account .section {
	position: relative;
	margin: 10px 10px 20px 10px;
}

#client-account label.required::after {
	content: '*';
	color: red;
	padding-left: 4px;
}


/**
* ORDERS
*/

#client-account #section-orders .row {
	border-bottom: solid 1px #eee;
	margin: 0px;
	padding: 4px 0px;
}

#client-account #section-orders .row:hover {
	background: #f8f8f8;
}

#client-account #section-orders label {
	display: none;
}

#client-account #section-orders .labels {
	font-weight: bold;
}

#client-account #section-orders .invoice a {
	text-decoration: underline;
}
#client-account #section-orders .invoice a:hover {
	text-decoration: none;
}
#client-account #section-orders .invoice a::before {
	content: "\f1c1";
	display: inline-block;
	font-family: fontAwesome;
	padding-right: 5px;	
	color: red;
}

#client-account #section-orders .sum,
#client-account #section-orders .payed {
	text-align: right;
}

#client-account #section-orders .payed-status {
	font-size: 1.5em;
	text-align: center;
	width: 30px;
}

#client-account #section-orders .payed-1 {
	color: #09AA21;
}

#client-account #section-orders .payed-0 {
	color: red;
}



/**
* RESPONSIVE
*/
@media (max-width: 767px) {
	#client-account #section-orders .row {
		background: #f9f9f9;
		margin: 0px 0px 5px 0px;
		border: solid 1px #eee;
		padding: 10px 0px;
	}
	#client-account #section-orders label {
		display: inline-block;
	}
	#client-account #section-orders .sum,
	#client-account #section-orders .payed {
		text-align: left;
	}
}