@charset "UTF-8";
/* CSS Document */

/*@import url("root.css.php");*/

body, html {
	font-family: var(--font-base);
	color: var(--text-color);
	font-size:10pt;
	font-style:normal;
	font-weight: var(--font-regular);
	width: 100%;
	height: 100%;
	position: relative;
	background-color: var(--mabg-color);
	line-height: 1.2;
}

* {
	outline: none !important;
}

/* colori base */
.ivo-main-color { color: var(--main-color) !important; }
.ivo-font-color { color: var(--text-color) !important; }
.ivo-butt-color { color: var(--butt-color) !important; }
.ivo-opts-color { color: var(--opts-color) !important; }
.ivo-error-color { color: var(--error-color) !important; }
.ivo-optsg-color { background-color: var(--opts-color) !important; }
.ivo-back-color { background-color: var(--back-color) !important; }
.ivo-mabg-color { background-color: var(--mabg-color) !important; }
/* font base */
.ivo-font-base { font-family: var(--font-base) !important; }
.ivo-font-cond { font-family: var(--font-cond) !important; }
.ivo-font-thin { font-family: var(--font-base) !important; font-weight: var(--font-thin) !important; }
.ivo-font-light { font-family: var(--font-base) !important; font-weight: var(--font-light) !important; }
.ivo-font-regular { font-family: var(--font-base) !important; font-weight: var(--font-regular) !important; }
.ivo-font-medium { font-family: var(--font-base) !important; font-weight: var(--font-medium) !important; }
.ivo-font-bold { font-family: var(--font-base) !important; font-weight: var(--font-bold) !important; }
.ivo-font-black { font-family: var(--font-base) !important; font-weight: var(--font-black) !important; }
.ivo-font-cregular { font-family: var(--font-cond) !important; font-weight: var(--font-cregular) !important; }
.ivo-font-cbold { font-family: var(--font-cond) !important; font-weight: var(--font-cbold) !important; }

.font-thin {
	font-weight: var(--font-thin);
}
.font-light {
	font-weight: var(--font-light);
}
.font-regular {
	font-weight: var(--font-regular);
}
.font-medium {
	font-weight: var(--font-medium);
}
.font-bold {
	font-weight: var(--font-bold);
}
.font-black {
	font-weight: var(--font-black);
}
.font-alt-regular {
	font-weight: var(--font-cregular);
}
.font-alt-bold {
	font-weight: var(--font-cbold);
}
.txt-color {
	color: var(--text-color) !important;
}
section {
	position: relative;
	box-sizing: border-box;
	width: 100%;
}
input, textarea {
	font-family: var(--font-base);
}

.ui.dropdown.selection {
	background-color: #FAFAFA !important;
}

.ui.button {
	text-transform: uppercase;
}
div.ui.input.rounded {
	margin-top:10px;
}
div.ui.input.rounded input {
	border-radius: 20px;
	height: 30px !important;
    line-height: 30px;
    font-size: 12px;
}
.ui.input.small.readonly {
    padding-left: 0;
    padding-right: 0;
    border: 0;
}

a {
	color: var(--main-color);
	text-decoration: none;
}

img {
	max-width: 100%;
}

.ivo_no-events {
	pointer-events: none;
}
.ivo_dimmed {
	pointer-events: none;
    opacity: .7;
	transition: all 0.5s linear;
}
.ivo_dimmed.full {
    opacity: 0.05;
}
.ivo_dimmed.ivo_loading {
    opacity: 0.2 !important;
}
body.ivo_dimmed.paceloading::after {
    content: '';
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: calc(100% - 2px);
	background-color: var(--opts-color);
	z-index: 10001;
	opacity: .07;
}
.ivo_row {
	padding-right:5px;
}
#ivo_container {
	padding: 0;
	margin: 0;
	height: 100%;
}
#ivo_container.config {
	background: #eee url(../images/sky-clouds.jpg) center center no-repeat fixed;
	background-size: cover;
}
#ivo_container.config #ivo_main_content {
	background-color:transparent;
}
#ivo_container.config form {
	width:100%;
}

#ivo_header {
	position: fixed;
	width: calc(100vw - 266px);
	height: 54px;
	background-color: var(--main-color);
	box-shadow: 0 2px 4px rgba(0,0,0,.08);
	z-index: 10000;
    top: 0;
	transition: width .2s linear;
}
#ivo_header.no-menu {
	width: calc(100vw - 46px);
}
#ivo_sidebar {
	position: fixed;
	top: 0;
	left: calc(100vw - 266px);
	padding: 20px 25px 10px 20px;
	width: 266px;
	height: 100%;
	background-color: var(--mabg-color);
	z-index: 20;
	overflow: hidden;
	border-left: var(--opts-color) 1px solid;
	transition: all .3s linear;
}
#ivo_sidebar.no-menu {
	width: 46px;
	background-color: var(--opts-color);
}
#ivo_sidebar #ivo_menu {
	transition:opacity .2s linear;
}
#ivo_sidebar.no-menu #ivo_menu {
	opacity:0;
}
#ivo_sidebar h2.titolo {
	font-size: 2rem;
	text-transform: uppercase;
	font-family: var(--font-cond);
	font-weight: var(--font-thin);
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

#ivo_sidebar #nav-footer {
    display: block;
    position: absolute;
    width: 221px;
	bottom: 0;
	background-color: var(--mabg-color);
	padding-bottom: 20px;
	z-index: 1000;
}

#ivo_main_content {
	top: 54px;
	/*padding:40px 40px 80px;*/
	padding: 3%;
	width: calc(100vw - 266px);
	background-color: var(--back-color);
	min-height: calc(100vh - 54px);
	max-height: 100%;
	transition: width .2s linear;
}
#ivo_main_content.w100per {
    padding-left: 12.5%;
    padding-right: 12.5%;
}

@media only screen and (max-width: 768px) {
	#ivo_main_content.w100per {
		padding-left: 6%;
		padding-right: 6%;
	}
}

#ivo_main_content.no-menu {
	width: calc(100vw - 46px);
}
#ivo_prev_wrapper,
#ivo_list_wrapper {
	padding: 24px;
	background: #fff;
	border: var(--main-color) 1px solid;
}
#ivo_list_wrapper {
	padding: 0;
}
#search {
    border: var(--mabg-color) 1px solid;
    margin-top: 2px;
}
.ocs-footer {
	margin-top: 100px;
	/*border-top: var(--opts-color) 1px solid;*/
	vertical-align: middle;
	font-family: var(--font-base);
	font-weight: var(--font-regular);
	font-size: .7em;
	text-align: center;
	text-transform: uppercase;
	opacity: .8;
}

#list-container {
}

.logo {
	max-width: 100%;
	max-height: 150px;
}
.list_row {
    height: 47px;
    font-size: 1em;
    background-color: var(--mabg-color);
    border-top: var(--opts-color) 1px solid;
    transition: all .33s linear;
}
.list_row .fl-block.num.is_order {
	color: var(--error-color);
	/*font-weight: var(--font-cbold);*/
}
/*
.list_row.is_order .fl-block.act .ivo_icn_modifica-neg-1a,
.list_row.is_order .fl-block.act .ivo_icn_ordine-neg,
.list_row.is_order .fl-block.act .ivo_icn_elimina-neg {
	visibility: hidden !important;
}
*/
.list_row.active {
	background-color: var(--text-color5);
}
.list_header.ui.sticky {
	height:40px;
	background-color: var(--mabg-color);
}
.list_header.ui.sticky.fixed.top {
	top:54px !important;
	border-bottom: var(--opts-color) 1px solid;
}

.list_footer {
	display:none;
}
#ivo_prev_comp, #ivo_prev_comp_form section {
	margin-bottom:0;	
}

div.ivo_sortable.ivo_droppable {
	min-height: 16px;
	/*background-color: var(--mabg-color);*/
}
#ptop.ivo-droppable-hover,
textarea.ivo-droppable-hover,
div.ivo_ck.ivo-droppable-hover .cke_editable {
	background-color: var(--main-color10) !important;
}
.ivo_img.ivo_droppable > img {
	min-width: 100%;
}
.ivo_img.ivo-droppable-hover {
	webkit-filter: blur(3px);
	filter: blur(3px);
}
.ivo-droppable-active {
	/*background: rgba(127,127,127,.05);*/
}
.ivo-state-highlight {
	/*background-color: #CCF4FB !important;*/
}
span.no-image::after {
	content: '\45';
	font-family: ivo-icons;
	position: absolute;
	left: 1.75rem;
	top: 0.7rem;
	width: 16px;
	height: 16px;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0px 0px 0px 3px rgba(255,255,255,0.5);
	line-height: 1;
	border-radius: 50%;
	background-color: var(--mabg-color)
}
label {
	display: block;
	font-size: .7em;
	font-weight: var(--font-clight);
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

label.dx {
	text-align: right;
}

label.mini {
	font-size: .66em !important;
	font-weight: var(--font-cregular);
	text-align: left;
	line-height: 18px;
	position: relative;
	top: 5px;
	margin-bottom: 6px;
}
label.mini.dx {
	text-align: right;
}
.ui.checkbox label.mini {
	font-size:.75em !important;
	line-height: 1.1;
	overflow: visible;
	white-space: normal;
	text-overflow: inherit;
	margin-top: 3px;
}
label.ivo_error, 
label.ivo_error_min {
    color: var(--error-color) !important;
    font-weight: var(--font-medium);
    text-transform: none;
    padding: 5px 0 3px;
	font-size:9pt;
	line-height: 1.1;
}
label.ivo_error_min {
	font-size: 8.25pt;
    padding: 4px 0;
}
.error-color {
	color: var(--error-color) !important;
}
.ui.checkbox.toggle label.mini::before,
.ui.checkbox.toggle label.mini::after{
	margin-top:3px;
}
input.dx {
	text-align: right !important;
}
input.flat {
	padding-top:2px;
	font-family: var(--font-cond) !important;
	font-weight: var(--font-light);
	font-size: 11pt !important;
}
input.flat.qnt,
input.flat.costo,
input.flat.ricavo,
input.flat.c_totale,
input.flat.r_totale,
input.flat.margine {
	padding-top:0;
	font-size: 12.5pt !important;
}
input.flat.qnt {
	font-weight: 600;
}
.costo {
	color: #BB0000 !important;
}
.ricavo {
	color: #009933 !important;
}
.margine {
	color: var(--hilight-color) !important;
}
input.flat.misure {
	font-size: 10pt !important;
	margin-left: 5px !important;
}
.flat.title {
    font-weight: var(--font-bold);
    font-family: var(--font-base) !important;
	font-size: 1.1em !important;
	text-overflow: ellipsis;
}
.ui.label.misure {
	width:25px;
	text-align: center;
	padding: 5px;
}
.ui.label.misure:not(.add) {
	background-color: var(--main-color40);
}

.ui.labeled.input > .label:not(.corner) {
    padding-top: 0.5em;
    padding-bottom: .55em;
}

.ui.labeled.input > .label {
    font-size: 1.1em;
}

textarea {
	font-family: var(--font-base);
	font-weight: var(--font-regular);
	color: var(--text-color);
}
textarea#ptop {
	padding: 0;
	border: none;
	font-size: 1.4em;
	font-weight: var(--font-bold);
}
input#ptop {
	font-weight: var(--font-medium);
}
.transparent.input textarea,
#ivo_prev_cont div:not(.ivo_sez_descr) > .cke_editable_inline {
	padding: 0;
	border: none;
	font-size: .95em;
	height: auto !important;
	margin-bottom: 12px;
	margin-top: 4px;
}

.plr2per {
	padding-left: 2% !important;
	padding-right: 2% !important;
}
input.hideable {
}
#data_prev {
    font-weight: lighter;
    font-size: 22pt;
    text-align: right;
    width: 74%;
    margin-left: 26%;
}
#titolo_prev, #titolo_prev_page {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow-x: hidden;
	font-weight: lighter;
	font-size: 22pt;
	line-height: 1.8;
	color: var(--mabg-color);
	font-family: var(--font-cond);
}
.logo_ivo {
    margin-right: 15px;
    vertical-align: middle;
    margin-top: -7px;
}
.numdoc {
    color: var(--text-color);
    font-weight: var(--font-medium);
}
#ivo_header .wrapper .container-fluid {
    padding: 0 30px 0 16px;
}
#head_summary, #head_correction {
    background-color: var(--text-color);
	color: var(--mabg-color);
	padding-top: 8px;
	height: 54px;
	transition: all 0.3s ease;
}
#head_summary label, #head_correction label {
    color: var(--mabg-color);
}
#head_summary.small, #head_correction.small {
	padding-top: 12px;
}
.totali-compl {
	padding-left:1em;
	padding-right:1em;
}
.totali-compl input.flat {
    font-size: 1.7em !important;
	font-weight: var(--font-cregular) !important;
}
.totali-compl input.flat:not(.ricavo) {
    color: var(--mabg-color);
}
#head_summary.small .totali-compl input.flat, #head_correction.small .totali-compl input.flat {
	font-size: 50%;
}
#head_correction {
	background-color:transparent;
}
#head_correction .col-4 {
	border-right:2px solid #FFF;
}
#head_correction .col-4:last-child {
	border-right:0;
}

#header_actions {
    font-size: 2.2em;
    color: var(--mabg-color);
    line-height: 2.15em;
}
#header_actions span {
    margin: 0 0 0 9px;
    cursor: pointer;
}
.ivo_hidden {
	visibility: hidden;
}
input.ivo_error,
textarea.ivo_error {
	background-color: var(--error-color10) !important;
}
section.ivo_sez .ivo_container {
    padding: 5px 10px 10px;
    background-color: var(--back-color);
    border-style: solid;
    border-width: 0 1px 1px 1px;
    border-color: var(--main-color);
	/*transition: all .3s linear;*/
}
section.ivo_sez>.ivo_container.iva_mista::after,
section.ivo_art>.ivo_container.iva_mista::after,
section.ivo_acc>.ivo_container.iva_mista::after,
section.ivo_sez>.ivo_container.iva_mista section.ivo_art>.ivo_container::after,
section.ivo_sez>.ivo_container.iva_mista section.ivo_acc>.ivo_container::after {
	content: "IVA MISTA";
	background-color: var(--main-color70);
	font-size: 11px;
	color: var(--text-color);
	padding: 2px 6px;
	position: absolute;
	right: 0;
	top: 111px;
	pointer-events: none;
	z-index: 0;
}
section.ivo_sez > .ivo_container.iva_mista::after {
	top: 24px;
	padding: 3px 11px;
}
section.ivo_sez>.ivo_container.iva_mista section.ivo_art>.ivo_container::after,
section.ivo_sez>.ivo_container.iva_mista section.ivo_acc>.ivo_container::after {
	background-color: var(--main-color40);
}

section.ivo_art .ivo_container,
section.ivo_acc .ivo_container{
    background-color: var(--mabg-color);
	padding-top: 9px;
}
section.ivo_acc .ivo_container {
    padding-left: 0;
    padding-right: 0;
	padding-bottom:0 !important;
    border: none;
}
section header {
    display: block;
	height: 24px;
    background: var(--main-color);
    font-size: 12pt;
	font-weight: 300;
	font-family: var(--font-cond);
	text-transform: uppercase;
    line-height: 16px;
    color: white;
    padding: 4px 10px 3px;
    margin: 10px 0 0;
    -moz-border-radius-topleft: 4px;
    -webkit-border-top-left-radius: 4px;
     border-top-left-radius: 4px;
    -moz-border-radius-topright: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
	transition: all .3s linear;
	cursor:ns-resize;
}
section.ivo_acc header {
    background: var(--main-color70);
}
section header span.titolo {
	font-weight: bold;
}
section:not(.ivo_sez_form) > header > span.titolo:before {
	content: " > ";
	font-weight: 300;
}
section header span.sorting {
	font-weight: bold;
}
section.ivo_sez_form {
	margin-top:10px;
	margin-bottom: 0;
}
#ivo_main_content section.alt header,
#ivo_main_content section.opz header {
    background: var(--black-color50);
}
#ivo_main_content section.alt section.alt header,
#ivo_main_content section.ivo_acc.alt header,
#ivo_main_content section.alt section.opz header,
#ivo_main_content section.ivo_acc.opz header {
    background: var(--black-color30);
}
div.alt .ivo_container {
    border-color: var(--black-color50);
}
body.vex-open #ivo_main_content {
	webkit-filter: blur(3px);
	filter: blur(3px);
	transition: all 0.5s linear;
}
.ivo_art_wrap,
.ivo_acc_wrap,
.ivo_alt_wrap {
    display: block;
    clear: both;
    padding-left: 40px;
	background-color: transparent;
	min-height: 16px;
}
.ivo_alt_wrap {
	padding-left: 50px;
}
.ivo_sortable-placeholder {
	max-height: 150px;
	margin-top:10px;
	background-color:var(--mabg-color);
	border: var(--main-color) 2px dotted;
}
.sezempty-ivo_sez,
.sezempty-ivo_art,
.sezempty-ivo_acc,
.sezempty-ivo_alternat {
	text-align: center;
	font-size:.9em;
	text-transform: uppercase;
	font-weight: var(--font-medium);
	color: var(--main-color);
	border-radius: 25px;
	line-height: 40px;
	margin: 10px 5px 2px;
	background-color: var(--mabg-color);
}
.sezempty-ivo_alternat {
	background-color: var(--text-color10);
}
.ivo-droppable-hover .ivo_sortable-placeholder {
	border: var(--black-color50) 2px dotted !important;
	color: var(--text-color);
	background-color: var(--mabg-color);
}
.ivo_actions {
	position: absolute;
	right: 2px;
	font-size: 14pt;
	overflow: hidden;
	top: 3px;
	height: 19px;
}
.ivo_actions span {
	cursor: pointer;
	line-height: 1;
}
.ivo_sez > header > .ivo_actions {
    top: 2px;
}
.list_actions {
	font-size: 1.8rem;
	color: var(--main-color);
}
.list_actions span::before {
	margin-right: 0 !important;
}
.row section header .ivo_actions {
	line-height: 1.61;
}
.fl-block {
    float: left;
    height: 100%;
    padding: 8px;
    width: 10%;
    font-family: var(--font-cond);
    font-weight: var(--font-clight);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.fl-block .icon {
	color: var(--main-color);
}
.fl-block.num {
    font-size: 1.6em;
    text-align: right;
    color: var(--main-color);
    line-height: 1.3;
}
.fl-block.dat,
.fl-block.cit {
    font-size: 11pt;
    font-weight: var(--fontc-bold);
    line-height: 2;
}
.fl-block.cit {
    width: 12%;
}
.fl-block.rif,
.fl-block.pro {
    line-height: 2;
}
.fl-block.pro {
    line-height: 2.2;
}
.fl-block.cli,
.fl-block.nome {
	color: var(--main-color);
	font-size: 1.1em;
	font-weight: var(--font-medium);
	line-height: 1.95;
}
.fl-block.nome {
	font-size: 1.2em;
	line-height: 1.9;
	padding-left: 1rem !important;
}
.fl-block.nome.is_contact {
	color: var(--butt-color);
}

.fl-block.ope {
	font-size: 9pt;
	line-height: 2.3;
}
.fl-block.imp {
	width: 11%;
	font-size:12.5pt;
	line-height: 1.7;
	font-weight: var(--fontc-bold);
	text-align: right;
}
.fl-block.ctp {
	width: 25%;
}
.fl-block.ema {
	width: 15%;
	font-size: 1.05em;
	line-height: 1.95;
}
.fl-block.tel,
.fl-block.mob {
	width: 12%;
	font-weight: var(--fontc-bold);
	font-size: 1.1em;
	line-height: 2;
}
.fl-block.act {
	padding-right: 12px;
	/*width: 21%;*/
	text-align: right;
	line-height: 38px;
}
.fl-block.act.act2 {
	width: 12%;
}
.fl-block.act.w13per {
	width: 13%;
}
.fl-block.act .list_actions span {
	cursor: pointer;
}
.fl-block.act .list_actions span:hover {
	color: var(--text-color);
}
.list_header .fl-block label.mini {
	font-size: 0.75em !important;
}
.list_header .fl-block label.mini.sortable {
	cursor: pointer;
}
.fr-block {
	float:right;
	height:100%;
	padding: 10px;
}
.prev-dett,
.contact-dett,
.ivo_container.log {
	display: none;
}
.prev-dett div.container,
.contact-dett div.container {
	background-color: var(--text-color5);
}
.ivo_icn_toggle.sort {
	font-size:14pt;
	position: absolute;
	color: var(--opts-color)
}
.ivo_icn_toggle.sort.active {
	color: var(--main-color)
}
label.dx .ivo_icn_toggle.sort {
	margin-left:-25px;
}
.ivo_summary {
	background-color: #fff;
	padding: 4px 0;
	margin-bottom: 10px;
	position: relative;
	border-bottom: var(--main-color) 1px solid;
}
.ivo_summary .hvert {
    position: relative;
    height: 100%;
    top: 0px;
    left: 0;
    text-align: center;
}

.ivo_summary .hvert::before {
    content: 'RIEPILOGO SEZIONE';
    text-transform: uppercase;
    font-family: var(--font-cond);
    font-size: 10px;
    color: rgba(0, 0, 0, .333);
    transform: rotate(-90deg);
    display: block;
    position: absolute;
	left: 29px;
	height: 142px;
}

.ivo_summary .ivo_container.ivo_row {
    border-width: 0;
	border-color: transparent;
	border-style: none;
	background-color: white;
	padding-bottom: 5px;
}

table.d-table {
	margin-left:5%;
	font-size: .9em;
}
table.d-table th {
	font-weight: var(--font-regular);
	padding-right:10px;
}
table.d-table td {
	text-align: right;
	font-weight: var(--font-medium);
	padding-left:10px;
	color: #009933;
}
table.d-table tr > td:last-child {
	color: var(--text-color);
}
table.d-table td.hideable {
	color: var(--error-color) !important;
}

/* ivo_component(s) */
.ivo_components {
	height:calc(100vh - 277px);
	/*overflow:hidden;*/
	display:none;
	outline: none;
}
.ivo_components_label {
	cursor: pointer;
	margin-bottom: 2px;
	height: 30px;
	line-height: 30px;
	text-transform: uppercase;
	font-weight: var(--font-cregular);
	background: var(--back-color);
	font-family: var(--font-cond);
	font-size: 18px;
	padding-left: 10px;
}
.ivo_components_label::after {
	content: '';
	border-bottom: var(--text-color50) 1px solid;
	height: 30px;
	width: 100%;
	position: absolute;
	left: 0;
}
.ivo_components_label::before {
	content: '';
	padding-bottom: 28px;
	width: 220px;
	position: absolute;
	margin-left: 20px;
	margin-right: 0;
	left: 0;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	cursor: pointer;
	border-color: var(--text-color50);
	border-width: 1px 1px 0;
	border-style: solid;
}
.wrapperscroll {
    height: calc(100vh - 250px);
	overflow: hidden;
}
#wrapperscroll {
    height: calc(100vh - 250px);
	/*overflow: hidden;*/
	overflow: auto;
}
#wrapperscroll-txt {
    height: calc(100vh - 384px);
	overflow: hidden;
}
#wrapperscroll-sez {
    height: calc(100vh - 320px);
	overflow: hidden;
}
#wrapperscroll-art {
    height: calc(100vh - 320px);
	overflow: hidden;
}
#wrapperscroll-acc {
    height: calc(100vh - 320px);
	overflow: hidden;
}
#wrapperscroll-img {
    height: calc(100vh - 320px);
	overflow: hidden;
}
#wrapperscroll-all {
    height: calc(100vh - 320px);
	overflow: hidden;
}
.ivo_icn_toggle.right {
	position: absolute;
	right: 30px;
	font-size: 18px;
	line-height: 36px;
	color: var(--main-color);
}
.ivo_component {
	position:relative;
	width:220px;
	height:55px;
	padding:5px;
	margin-bottom:4px;
	color: var(--black-color);
	background-color: var(--main-color30);
	opacity:.75;
	border-radius: 2px;
	z-index:10;
}
.ivo_component .titolo {
	height: 15px;
	font-weight:600;
	font-size: 11.5px;
	line-height: 1.1;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.ivo_component .testo {
	font-weight: 300;
	font-size: 10.5px;
	line-height: 1.2;
	height: 24px;
	overflow: hidden;
}
.ivo_component .titletxt {
	position: absolute;
	top: 5px;
	left: 55px;
	width: 160px;
	height: 45px;
}
.ivo_component.ivo_art .image,
.ivo_component.ivo_acc .image {
	width: 45px;
	height: 45px;
	background-position: center;
	background-size: cover;
	display: inline-block;
}
.ivo_component.ivo_img {
	width: 102px;
	border: var(--main-color) 1px solid;
	background: #fff;
	height: 100px;
	display: inline-block;
	margin: 3px 3px 7px;
}
.ivo_component.ivo_img .image {
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	display: inline-block;
}
.allegato .tit {
	display: inline-block;
	width: 80%;
	vertical-align: middle;
	margin-top: -4px;
	font-size: 0.9em;
	font-weight: var(--font-cond);
}

.allegato .tipodoc {
	display: inline-block;
	font-size: 2.7em;
	width: 20%;
	text-align: left;
	color: var(--text-color);
	vertical-align: middle;
	padding-top: 2px;
}
.tipodoc::before {
	margin: 0;
}

.dropdown.normal.remove.icon {
    position: absolute;
    bottom: 14px;
    font-size: .7em;
    right: 38px;
    visibility: hidden;
    color: var(--text-color50);
	cursor: pointer;
}
.container-full .dropdown.normal.remove.icon {
    right: 22px;
}
.dropdown.remove.icon.active {
    visibility: visible;
}
.cke_editable {
	font-family: var(--font-base);
	font-weight: var(--font-light);
    cursor: text;
    width: 100%;
    padding: 10px;
    border: #ddd 1px solid;
    border-radius: 4px;
    outline: none;
	height: 37px;
	overflow: hidden;
	background-color: #fff;
}
.cke_editable strong {
	font-weight: 700;
}
.cke_editable b {
	font-weight: 500;
}
#ivo_prev_comp .tip .cke_editable {
    padding: 0 0 10px 0;
    border-radius: 0 !important;
	height:auto !important;
    border-width: 0 0 1px;
	border-bottom-color: var(--main-color);
	border-bottom-style: solid;
}
#ivo_prev_comp textarea:not(#ptop) {
	min-height:40px;
}
#contact-summary {
	margin-top:21px;
	height:calc(100% - 21px);
	background-color:#f5f5f5;
	border:#ccc 1px solid;
	border-radius:4px;
	animate: height .5s ease;
	outline:none !important;
}
#intest-summary,
#destin-summary {
	height:210px;
	background-color:#f5f5f5;
	border:#ccc 1px solid;
	border-radius:4px;
	outline:none !important;
	overflow: hidden;
}
#destin-summary {
	opacity: 0.75;
}
#contact-summary > .summary-wrapper,
#intest-summary > .summary-wrapper,
#destin-summary > .summary-wrapper {
	padding: 12px;
}
#img-firma {
	max-height: 80px;
	margin-top: -13px;
	max-width: 165px;
}
.cke_editable.cke_focus {
	height: auto !important;
}
.cke_dialog_ui_labeled_label {
	text-transform: none !important;
}
a.cke_dialog_ui_button_ok {
    color: #fff;
    background: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
}
.fs-7 {
	font-size:7pt !important;
}
.fs-8 {
	font-size:8pt !important;
}
.fs-9 {
	font-size:9pt !important;
}
.fs-10 {
	font-size:10pt !important;
}
.fs-11 {
	font-size:11pt !important;
}
.fs-12 {
	font-size:12pt !important;
}
.fs-13 {
	font-size:13pt !important;
}
.fs-14 {
	font-size:14pt !important;
}
.fs-16 {
	font-size:16pt !important;
}
.fs-18 {
	font-size:18pt !important;
}
.fs-20 {
	font-size:20pt !important;
}
.m-0, .mt-0{
	margin-top: 0 !important;
}
.mt-01{
	margin-top: 1px !important;
}
.mt-02{
	margin-top: 2px !important;
}
.m-0, .mb-0{
	margin-bottom: 0 !important;
}
.m-5, .mt-5 {
	margin-top: 5px !important;
}
.m-10, .mt-10 {
	margin-top: 10px !important;
}
.m-12, .mt-12 {
	margin-top: 12px !important;
}
.m15, .mt-15 {
	margin-top: 15px !important;
}
.m-20, .mt-20 {
	margin-top: 20px !important;
}
.m-30, .mt-30 {
	margin-top: 30px !important;
}
.m-40, .mt-30 {
	margin-top: 40px !important;
}
.m-50, .mt-50 {
	margin-top: 50px !important;
}
.m-100, .mt-100 {
	margin-top: 100px !important;
}
.m-200, .mt-200 {
	margin-top: 200px !important;
}
.m-5, .mb-5 {
	margin-bottom: 5px !important;
}
.m-10, .mb-10 {
	margin-bottom: 10px !important;
}
.m-12, .mb-12 {
	margin-bottom: 12px !important;
}
.m15, .mb-15 {
	margin-bottom: 15px !important;
}
.m-20, .mb-20 {
	margin-bottom: 20px !important;
}
.m-30, .mb-30 {
	margin-bottom: 30px !important;
}
.m-40, .mb-40 {
	margin-bottom: 40px !important;
}
.m-50, .mb-50 {
	margin-bottom: 50px !important;
}
.m-100, .mb-100 {
	margin-bottom: 100px !important;
}
.m-200, .mb-200 {
	margin-bottom: 200px !important;
}
.w5per {
	width:5%;
}
.w10per {
	width:10%;
}
.w11per {
	width:11%;
}
.w12per {
	width:12%;
}
.w13per {
	width:13%;
}
.w15per {
	width:15%;
}
.w17per {
	width:17%;
}
.w18per {
	width:18%;
}
.w20per {
	width:20%;
}
.w21per {
	width:21%;
}
.w23per {
	width:23%;
}
.w24per {
	width:24%;
}
.w25per {
	width:25%;
}
.w27per {
	width:27%;
}
.w30per {
	width:30%;
}
.w33per {
	width:33%;
}
.w35per {
	width:35%;
}
.w37per {
	width:37%;
}
.w40per {
	width:40%;
}
.w45per {
	width:45%;
}
.w50per {
	width:50%;
}
.w60per {
	width:60%;
}
.w70per {
	width:70%;
}
.w80per {
	width:80%;
}
.w90per {
	width:90%;
}
.w100per {
	width:100% !important;
}
.pt-35 {
	padding-top: 1.2rem !important;
}
.logo-azienda {
	max-width:300px;
	max-height:150px;
}
.user-ava {
    width: 60px;
    height: 60px;
    background-position: center center;
    background-size: cover;
    border-radius: 50%;
    border: var(--main-color) 1px solid;
	margin: 0 auto 10px;
}
.user-ava.min {
	width: 20px;
	height: 20px;
	border: none;
	margin: 0;
    display: none;
}
.user-info {
	display: inline-block;
}
.user-dett {
    font-size: 10px;
    text-transform: uppercase;
}
.op_ref {
	font-size: 0.8rem;
	text-transform: uppercase;
	font-family: var(--font-cond);
	font-weight: var(--font-clight);
	text-align: right;
	position: absolute;
	top: 18px;
	width: calc(100% - 96px);
}
.op_name {
    padding-left: 4px;
}
.um_reset.ui.sync.icon {
	display: none;
	position: absolute;
	top: 1px;
	left: auto;
	font-size: 2em;
	color: var(--main-color);
	cursor: pointer;
	line-height: 1;
	z-index: 10;
	right: -21px;
}
.lh-1 {
	line-height: 1 !important;
}
.lh-auto {
	line-height: 1.1 !important;
}
.lh-normal {
	line-height: normal !important;
}
.cur-def {
	cursor:default !important;
}
div.modified {
    position: absolute;
    bottom: 0;
    font-size: .7em;
    color: var(--text-color50);
    margin-top: 3px;
    padding-top: 3px;
    border-top: var(--error-color) 1px solid;
    width: 100%;
}
.alt-action {
    width: 40px;
    position: absolute;
    left: -40px;
    height: calc(100% - 50px);
    top: calc((100% - 50px) / 2 - 12px);
    overflow: hidden;
}
svg.alt-arrow {
	cursor:pointer;
}
svg.alt-arrow.ivo_art {
	fill:var(--black-color50);
}
svg.alt-arrow.ivo_acc {
	fill:var(--black-color30);
}
svg.alt-arrow:hover {
	fill:var(--black-color70);
}
.ui.button.calcola {
    padding: 5px 10px 6px;
	font-size: 9pt;
	border: none;
	background-color: var(--main-color);
	color: var(--mabg-color);
}
.ui.button.calcola:hover {
	background-color: var(--opts-color);
}
.pt3 {
	padding-top: 3px;	
}
.pt5 {
	padding-top: 5px;	
}
.art_details .row > div:not(:first-child) {
	padding: 0.7em 0 0;
	margin-top: 1.5em;
	border-top: var(--main-color) 1px solid;
}
.pl-0 {
	padding-left: 0 !important;
}
.proddettable table {
   font-size: .9em;
    margin-left: 2rem;
    width: 87%;
    text-transform: uppercase;
    /*box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.07);
    border-right: var(--mabg-color) 6px solid;
    border-bottom: var(--mabg-color) 6px solid;
	*/
	border: #f8f8f8 6px solid;
	background-color: #f8f8f8;

}
.proddettable table th,
.proddettable table td {
	vertical-align: middle;
	padding:0;
}
.proddettable table th {
    font-family: var(--font-cond);
    font-weight: var(--font-regular);
	font-size: .85em;
	white-space: nowrap;
}
.proddettable table td {
    text-align: right;
    width: 33%;
    padding-right: 2px;
}
/* da sistemare */
div:not(.small):not(.tip) > .cke_textarea_inline.cke_editable::after {
   position: absolute;
   content: '';
   width: 100%;
   height: 29px;
   bottom: 0;
   left: 0;
   border-radius: 3px;
   background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 96%);
   background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 96%);
   background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 96%);
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
div.ivo-droppable-hover > .cke_textarea_inline.cke_editable::after,
div:not(.small):not(.tip) > .cke_textarea_inline.cke_editable:focus::after {
   height: 0 !important;
}

.x-prezzi {
	width: 26px;
	height: 26px;
	position: absolute;
	top: 8px;
	right: 36px;
	transition: all .5s linear;
	cursor: pointer !important;
	color: var(--main-color);
	z-index: 999;
	font-size: 1.5em;
}
.x-prezzi::before {
	cursor: pointer !important;
}

.collapsexpand {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 5px;
	right: 5px;
	cursor: pointer !important;
	color: var(--mabg-color);
	z-index: 999;
	font-size: 1.5em;
}
.ivo_icn_expand.collapsexpand {
    top: 28px;
}
#data_preventivo, #rif_interno, #ns_rif, #vs_rif {
	font-family: var(--font-base)! important;
	font-weight: var(--font-medium) !important;
}
#data_preventivo {
	font-size: 15pt !important;
}
#prev_summary.ivo_summary {
    background-color: var(--main-color10);
    margin-top: 20px;
    border-top: var(--main-color) 1px solid;
    padding-bottom: 13px;
}
#prev_summary .header {
    text-align: center;
    padding-top: 6px;
    font-family: var(--font-cond);
    font-size: 1.2em;
    font-weight: lighter;
	color: var(--text-color70);
}
#prev_summary .ivo_container {
	background: unset;
}
#prev_summary textarea {
	/*display: none;*/
}
.umcalc {
    line-height: 1 !important;
}
.umcalc small span:not(:last-child)::after {
	content : " - ";
}

.umcalc button {
    height: 100%;
    margin-top: 1px !important;
}
.ui.toggle.checkbox [type="checkbox"]{
	/*padding-left: .25rem !important;*/
	height:100%;
}
.col-md-6.p-0 > .row.no-gutters > [class*="col-"] {
    padding-left: .2rem !important;
    padding-right: 0.5rem !important;
}
header .titolo {
	/*display: inline-block;*/
}
header .titolo > span.font-light {
    display: inline-block;
    width: calc(100% - 260px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
	vertical-align: bottom;
	font-weight: 300;
}
span.font-light.dup {
	position: absolute;
	top: 4px;
}
div.posposa {
	margin-top:5px;
}
.ui.input.posposa input {
    font-size: 110% !important;
    padding: 8px !important;
}
.tcg_vars {
	font-size:90%;
	display: none;
}
.emailed {
	color:var(--butt-color);
}
.btoptc-1 {
	border-top: var(--opts-color) 1px solid;
}
.list_header.ui.sticky.bound.bottom {
    bottom: -41px;
}
/**
 * Nested numbered list with correct indentation.
 *
 * Tested on Firefox 32, Chromium 37, IE 9 and Android Browser. Doesn't work on IE 7 and previous.
 * Source: https://gist.github.com/jirutka/32049196ab75547b7f47
 */

ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}

ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;    
}

li ol > li {
  margin: 0;
}

li ol > li:before {
  content: counters(item, ".") " ";
}

/* upload widget in comp-prev */
#uploads {
	padding: 0 0 2px 6px;
	border: var(--main-color) 1px solid;
	min-height: 100px;
	border-radius: 3px;
}
#uploaded {
	width: 80%;
	height: 100%;
	min-height: 98px;
	display: inline-block;
	overflow-x: hidden;
	font-size: 0;
    margin-top: 6px;
}
#upload-area.ivo-upload {
	background: var(--back-color);
	width: 20%;
	font-size: .8em;
	text-align: center;
	position: absolute;
	right: 2px;
	top: 2px;
	bottom: 2px;
}
#uploaded.ivo-droppable-hover {
    background-color: var(--main-color5);
}
.fs-upload-target {
	height: 100%;
	width: 100%;
	padding: 15px 15px 0;
}
#uploaded .file-wrapper {
    height: 100px;
    display: inline-block;
    margin-right: 6px;
    border: var(--main-color) 1px dotted;
    position: relative;
	vertical-align: middle;
}
#uploaded .file-wrapper img {
    height: 98px;
}
#uploaded .file-wrapper .ivo_icn_elimina-neg {
	position: absolute;
	top: 5px;
	right: 2px;
	font-size: 15px;
	color: var(--error-color);
}
h5.upload-title {
    font-weight: var(--font-base);
    margin-bottom: 6px;
    font-size: 0.9em;
    text-transform: uppercase;
    color: var(--text-color50);
    text-align: center;
}
#uploaded .file-wrapper .handler.icon {
    width: 80px;
    background-color: var(--black-color5);
    height: 100%;
    text-align: center;
    padding-top: 30%;
}
#uploaded .file-wrapper .handler.icon span {
    font-size: 50px;
    color: var(--main-color);
}

@keyframes pulse_animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}
.pulse {
    animation-name: pulse_animation;
    animation-duration: 1000ms;
    transform-origin:50% 50%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.status {
	display: inline-block;
	position: relative;
	width: 1.8rem;
	height: 1.8rem;
	margin-right: 7%;
	font-size: 1rem;
	color: var(--mabg-color);
	border-radius: 0.4rem;
	cursor: pointer;
}
.status.big {
	width: 2.8rem;
	height: 2.8rem;
	margin-right: 1rem;
	font-size: 1.1rem;
	color: var(--mabg-color);
	border-radius: 0.4rem;
	vertical-align: middle;
}
.status span {
    position: absolute;
	display: inline-block;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    height: 100%;
    margin-top: -0.5rem;
}
.status.big span {
	line-height: 2.8rem;
	margin-top: 0;
}

.status-pending {
	background-color:var(--main-color50) !important;
}
.status-approved {
	background-color:#3FCE8B !important;;
}
.status-alert {
	background-color:#F69938 !important;
}
.status-rejected {
	background-color:#7953B2 !important;;
}
.status-expired {
	background-color:#DE4F39 !important;
}
.status-canceled {
	background-color:#555555 !important;
}
.status-order {
    background-color: var(--mabg-color);
    border: var(--main-color) 1px solid;
    color: var(--black-color);
    line-height: 2.8;
	font-weight: var(--font-medium);
}
.ui.toggle.checkbox.cp-exclude {
	vertical-align: middle !important;
	margin-top: -1.8rem;
}
#docs_count {
	font-size: 0.85rem;
}
#docs_count span {
	font-weight: lighter;
	font-size: 3rem;
	line-height: 1;
	color: var(--text-color70);
}
.vex-dialog-message {
	/*text-transform: uppercase;*/
}
.fl-block.act .ui.toggle.checkbox label.mini {
	padding-left: 3.7rem !important;
}
/* dashboard statistiche */
#ivo-dashboard-stats {
	font-weight: var(--font-clight);
	font-size: 9pt;
	padding: 2vw 2vw 2.8vw;
}
#ivo-dashboard-stats .titolo {
	font-size: 2.6em;
	margin: 0 0 1em;
	text-align: center;
}
#ivo-dashboard-stats div.col-stat {
	height: 27vh;
	min-height: 100px;
}
#ivo-dashboard-stats div.col-stat-2 {
	height: 50vh;
	min-height: 200px;
}
.ivo_chart {
	height:90%;
}
.open-stats {
	color: var(--main-color);
	cursor: pointer;
	text-align: center;
}
.br-0, .br-0>* {
	border-radius: 0 !important;
}

.ivo-stats-table {
	width: 100%;
	text-align: right;
}
.ivo-stats-table td {
	vertical-align: middle;
}

#contact_form input[readonly],
#contact_form input[disabled]{
	pointer-events: none !important;
	background-color: var(--error-color5) !important;
}


#titolo_prev a {
	display: inline-block;
    float: right;
	width: 30px;
	height: 30px;
	font-size:1em;
	background-color:#FFF;
	border-radius:50%;
	margin:12px 20px 0 0;
	color: var(--main-color);
	text-decoration:none;
}
#titolo_prev a:hover, #titolo_prev a::before:hover {
	text-decoration:none;
}
#titolo_prev a:before {
	line-height: 30px;
	font-size: 20px;
	text-align: center;
	display: block;
	padding: 0;
	margin: 0 auto;
}
#titolo_prev a.home {
	float: left;
}
#titolo_prev a.add:before {
	content:'+';
	font-size:1em;
	font-family: var(--font-base);
}
.cams-state label {
	overflow:visible;
	margin-top:5px;
}
.cams-state .ui.toggle.checkbox .box:before, .cams-state .ui.toggle.checkbox label:before {
    background: rgba(0, 0, 0, .5);
    content: 'Off';
    width:4.0rem;
    color: #FFF;
    text-align: right;
    font-size: 0.85rem;
    line-height: 1.5rem;
    padding-right: 10px;
}
.cams-state .ui.checkbox {
    vertical-align: text-top;
    font-weight: var(--font-clight);
    text-transform: uppercase;
    font-size:0.7rem;
    line-height:0.7rem;
}
.cams-state .ui.toggle.checkbox input:checked~.box:before, .cams-state .ui.toggle.checkbox input:checked~label:before {
    background-color: var(--hilight-color)!important;
    content: 'On';
    text-align: left;
    padding-left: 10px;
}
.cams-state .ui.toggle.checkbox input:checked~.box:after, .cams-state .ui.toggle.checkbox input:checked~label:after {
    left: 2.7rem;
}

.box {
	margin:15px 0;
}
.box .title {
	display:block;
	color:#FFF;
	font-size: 1em !important;
	font-weight: var(--font-bold);
	text-align: left;
	line-height: 1.5em;
	position: relative;
	background-color: var(--main-color);
	padding:0 .5em;
	text-transform: uppercase;
}
.box .title .ivo_icn_toggle.sort.active {
	color: #FFF;
	right: 0;
}
.box .head {
	background-color: var(--text-color);
	color:#FFF;
	padding:.5em;
	line-height: 20px;
	position: relative;
}
.box .head i {
	display:block;
	font-style: normal;
	color: var(--hilight-color);
	float:right;
	margin:0 10px;
	line-height: 20px;
}
.box .head i.media-corr {
	color: #FFF;
	border-right:2px solid #FFF;
	margin:0;
	padding-right:1em;
}
.box .head a {
	display:block;
	float:right;
	width:20px;
	height:20px;
	background-color:#FFF;
	color: var(--text-color);
	border-radius:50%;
	text-align:center;
	line-height:20px;
	font-size:20px;
}

.box table {
	width:100%;
	background-color:#edeff1;
}
.box table tr.r {
	cursor:pointer;
}
.box table tr.r:hover {
	background-color: #E0E0E0;
}
.box table td, .box table th {
	text-align:center;
	border-right:1px solid var(--text-color);
	padding:2px;
	width:33.33333333333%;
}
.box table td:last-child, .box table th:last-child {
	border:0;
}
.box table th {
	background-color: var(--main-color);
	color:#fff;
	font-weight:bold;
}
.box table .totali td {
	font-weight:bold;
}
.box table .esterno {
	background-color:#deb6bf;
}
.box table .esterno-2 {
	background-color:#88BADE;
}
.box table .esterno-3 {
	background-color:#DEAC54;
}
.box table .correttivo {
	background-color:#cbd2d7;
	display:none;
}
.box input {
	display: block;
	width: 40px;
	height: 20px;
	position: absolute;
	top: 7px;
	border: 1px solid rgba(34, 36, 38, .15);
	left: 50%;
	transform: translateX(-50%);
}

.box .head a.riforn-accise {
	background-color:#88BADE;
}

.chart {
	position:relative;
	width:100%;
	box-sizing: border-box;
	padding-bottom:40%;
}
.grafici h5 {
	font-weight:normal;
}

.hidden {
	display:none;
}

.header-accise #titolo_prev a {
	margin-right:0;
}
