/* html */
html {
	margin: 0px;
	padding: 0px;
}

/* body */
body {
	margin: 0px;
	padding: 0px;
	color: #333333;
	background: #ffffff;
}

/* intestazioni */
h1 { font-size: 2.4em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.4em; }
h4 { font-size: 1.2em; }
h5 { font-size: 1em; }
h6 { font-size: 0.85em; }

/* line-height */
p, blockquote, pre, ol, dl, ul, form {
	line-height: 1.2em;
}

/* tag generici */
del {
	text-decoration: line-through;
}
ins {
	text-decoration: none;
	font-weight: bold;
	color: red;
}
.left {
   text-align: left;
}
.right {
   text-align: right;
}
.center {
   text-align: center;
}
img.middle {
   vertical-align: middle;
}

/* formattazione, placeholders, ecc. */
.bold {
	font-weight: bold;
}
.italic {
	font-style: italic;
}
.underline {
   text-decoration: underline;
}
.important {
	font-weight: bold;
}
.positive {
	color: green;
}
.negative {
	color: red;
}
input.default, .hasPlaceholder {
	color: #777777 !important;
}
.fm-submit p {
	padding-bottom: 20px;
}

/* show/hide */
.hidden {
	position: absolute;
	visibility: hidden;
	display: none;
}

/* tag_cloud */
ul.tagcloud {
	list-style-type: none;
	padding: 0;
	line-height: 2em;
	margin: 2px;
}
ul.tagcloud li {
	display: inline;
	line-height: 1.1em;
	white-space: nowrap;
}
ul.tagcloud .count {
	font-size: 0.875em;
	line-height: 1.714em;
	color: #888;
}

/* split */
.split, .split2, .split3, .split4 {
	float: none;
	width: 100%;
	margin: 0px 0px 0px 0px;
	display: block;
	overflow: auto;
}
.split2_div {
	float: left;
	width: 50%;
	margin: 0px 0px 0px 0px;
	display: block;
}
.split3_div {
	float: left;
	width: 33.33%;
	margin: 0px 0px 0px 0px;
	display: block;
}
.split4_div {
	float: left;
	width: 25%;
	margin: 0px 0px 0px 0px;
	display: block;
}

/* panel */
.panel {
	margin: 10px 15px 0px 0px;
	border: 1px solid #dddddd;
	border-radius: 4px;
	background-color: #ffffff;
}
.panel-heading {
	margin: 0px 0px 0px 0px;
	border-bottom: 1px solid #dddddd;
}
.panel-heading h3 {
	margin: 0px 0px 0px 0px;
	padding: 10px 10px 10px 10px;
	color: #000000;
	font-size: 1.2em;
	font-weight: normal;
	text-align: left;
	text-transform: none;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
	background-color: #eeeeee;
}
.list-group {
	margin: 0px 0px 0px 0px;
}
.list-group-item:first-child {
	border-top: 0px;
}
.list-group-item, #content a.list-group-item, #content a.list-group-item:hover {
	font-size: 1.1em;
	margin: 0px 0px 0px 0px;
	padding: 5px 10px 5px 10px;
	color: #333333;
	border-top: 1px solid #dddddd;
	display: block;
}

/* contenteditable */
[contenteditable="true"]:active, [contenteditable="true"]:focus, .mainTable td[contenteditable="true"]:hover {
	border: none;
	outline: none;
	background-color: #ffff99;
}

/* steps */
.steps {
	clear: both;
	margin: 10px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
#mod_buy .steps {
	margin: 10px 0px 0px 0px;
	padding: 0px 0px 10px 0px;
}
.step, .step_selected {
	display: inline-block;
	line-height: 18px;
	margin: 0px 15px 0px 0px;
	color: #cccccc;
}
.step_selected .step_text {
	color: #669966;
}
.step_number {
	display: inline-block;
	line-height: 18px;
	margin: 0px 5px 4px 0px;
	padding: 4px 10px 4px 10px;
	text-align: center;
	vertical-align: middle;
	background-color: #dddddd;
}
.step_selected .step_number {
	color: #ffffff;
	background-color: #669966;
}
.step_text {
	display: inline-block;
   padding-bottom: 0;
}

/* wide: dovrebbe essere inserito sotto lo split2 per evitare che subisca il float */
.wide {
	clear: left;
}

/* nowrap */
.nowrap {
	white-space: nowrap;
}

/* autocomplete */
.ui-autocomplete-loading {
	background: url("loading.svg") no-repeat right center;
	background-size: contain;
}
.ui-autocomplete {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
}
.ui-autocomplete li {
	list-style-type: none;
   font-size: 1.1em;
   line-height: 1.2em;
}
.ui-autocomplete li a {
	display: block;
}

/* filtri */
.filter .filter_group select {
	float: left;
	width: 30%;
	background-color: #efefef;
}
.filter .filter_group .text {
	width: 60%;
}
.filter .range_group span {
	float: left;
	width: 10%;
	padding: 2px 2px 0px 2px;
	text-align: center;
	box-sizing: border-box;
}
.filter .range_group .text {
	float: left;
	width: 35%;
}

/* admin update cms */
.adm-smallform input {
	width: 80px;
	margin: 3px 3px 0px 0px;
	padding: 1px 1px 1px 1px;
}
.adm-smallform .text {
	width: 120px;
}

/* hacks */
.clearfix:before, .clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	*zoom: 1;
}

/* altro */
.sorting {
	float: right;
}

/* label */
.label-inline {
	float: none;
	width: auto;
	margin: 0px 5px 0px 0px;
	padding: 0px 0px 0px;
	text-align: left;
}
fieldset div.fm-req label.label-inline:before {
	content: "";
}

/* command i, .h1_action_buttons i, action_buttons i */
.mainTable .status_button ,.mainTable .select_button, .mainTable .action_buttons {
	width: 1%;
	white-space: nowrap;
	text-align: right;
	vertical-align: middle;
}
#content .command a, #content .action_buttons a, #content .command a:hover, #content .action_buttons a:hover {
	text-decoration: none;
	border: 0px;
}
.command i, .h1_action_buttons i, .action_buttons i {
	padding: 2px 2px 2px 2px;
	color: #000000;
	border: 1px solid #999999;
	border-radius: 4px;
	background-color: #ffffff;
}
.command i, .h1_action_buttons i {
	margin: 0px 3px 0px 0px;
}
.action_buttons i {
	margin: 0px 0px 0px 3px;
}
.command .fa-plus-circle, .h1_action_buttons .fa-plus-circle, .action_buttons .fa-plus-circle {
	color: #009933;
}
.command .fa-search, .action_buttons .fa-search, .command .fa-list-ul, .action_buttons .fa-list-ul {
	color: #5F9EA0;
}
.command .fa-pencil, .action_buttons .fa-pencil {
	color: #8B4513;
}
.command .fa-close, .action_buttons .fa-close {
	color: #cc3333;
}
.command a .fa-file-pdf-o, .action_buttons a .fa-file-pdf-o {
	color: #cc3333;
}
.command a .fa-file-excel-o, .action_buttons a .fa-file-excel-o {
	color: #009933;
}
.command a .fa-file-code-o, .action_buttons a .fa-file-code-o {
	color: #cc9933;
}
.command a .fa-envelope-o, .action_buttons a .fa-envelope-o {
	color: #03dd00;
}
.action_buttons i.button-off {
	color: #999999;
}

/* h1_action_buttons */
.h1_action_buttons {
	float: right;
}
.h1_action_buttons a {
	margin: 0px 0px 0px 10px;
}
/* h2_action_buttons */
.h2_action_buttons {
	float: right;
}
.h2_action_buttons a {
	margin: 0px 0px 0px 10px;
	color: #000000;
}
@media print {
	.h2_action_buttons {
		display: none;
	}
}

/* details */
.div_details {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	line-height: 1.2em;
}
.div_details fieldset p {
	margin: 2px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-color: #f7f7f7;
	overflow: hidden;
}
.div_details .details_title {
	float: left;
	width: 30%;
	margin: 0px 0px 0px 0px;
	padding: 3px 3px 3px 3px;
	color: #666666;
	font-weight: normal;
	text-align: left;
	border: 0px;
	box-sizing: border-box;
}
.div_details .details_content {
	float: left;
	width: 70%;
	margin: 0px 0px 0px 0px;
	padding: 3px 3px 3px 3px;
	text-align: left;
	border: 1px solid #cccccc;
	border-radius: 2px;
	background-color: #e5e5e5;
	box-sizing: border-box;
}

/* customer */
#mod_customer .split2 .div_1 {
	width: 100%;
}
#mod_customer .split2 .div_2 {
	width: 100%;
}
#mod_customer .div_details .details_title {
	width: 30%;
}
#mod_customer .div_details .details_content {
	width: 70%;
}
.customer_form {
	margin: 10px 0px 0px 0px;
	padding: 5px 5px 5px 5px;
	border: 1px solid #cccccc;
	border-radius: 2px;
	background-color: #e5e5e5;
}
.customer_form .smallform {
	background-color: transparent;
}
.customer_form .smallform .submit {
	width: 80px;
}
.customer_form .smallform .text, .customer_form .smallform select {
	width: 120px;
}
@media print {
	.customer_form .smallform .submit {
		display: none;
	}
}
