/*-----------------------------------------------------------------------------------------------------
                                     CLASSES FOR COMMON STYLES
-----------------------------------------------------------------------------------------------------*/
input[type="checkbox"]{
	margin-left:0;
}
input, select, textarea{
  outline:none;
}
.inputFileGray{
  padding-left: 2px;
  width:180px;
  color: #000000;
  font-weight: normal;
  font-size:12px;
  font-family: 'texgyreadventor';
  text-decoration: none;
  text-transform: none;
  background-color: #EDEDED;
}
.inputFileWhite{
  padding-left: 2px;
  width:180px;
  color: #000000;
  font-weight: normal;
  font-size:12px;
  font-family: 'texgyreadventor';
  text-decoration: none;
  text-transform: none;
  background-color: #FFF;
}
td.topToolbar{
  width:30px;
  height:30px;
}
td.topToolbar a{
  display:block;
  padding:5px;
  background-color:transparent;
  border:1px solid;
  border-color:transparent;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease
}
td.topToolbar a:hover{
  background-color:#333;
  border:1px solid #CCC;
}
.highlighted{
  background-color:#FFFF00;
}
table.hoverTable tr:hover td{
  background-color:#D0D0D0;
}
.corner-all{
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius: 6px;
}
.corner-top-left{
	-moz-border-top-left-radius:6px;
	-webkit-border-top-left-radius:6px;
	border-top-left-radius: 6px;
}
.corner-top-right{
	-moz-border-top-right-radius:6px;
	-webkit-border-top-right-radius:6px;
	border-top-right-radius: 6px;
}
.corner-bottom-left{
	-moz-border-bottom-left-radius:6px;
	-webkit-border-bottom-left-radius:6px;
	border-bottom-left-radius: 6px;
}
.corner-bottom-right{
	-moz-border-bottom-right-radius:6px;
	-webkit-border-bottom-right-radius:6px;
	border-bottom-right-radius: 6px;
}
.disabledInput{
  background-color:#CCC;
  opacity:0.5;
}
.admin-icon{
	-webkit-filter: grayscale(100%); 
	filter: grayscale(100%);
}

.ui-icon-attachment {
	background-image: url(../images/system/attachment_red.png) !important;
	background-size: 7px !important;
	background-position-x: center !important;
	background-position-y: 1px !important;
}

/*-----------------------------------------------------------------------------------------------------
                                     CLASSES FOR EXTENDED MENU
-----------------------------------------------------------------------------------------------------*/
.extendedMenu{
	/*background-color:#EDEDED;*/
	background-color:#fff;
  min-width: 300px;
	position:absolute;
	display:none;
	z-index:2;
	border-left:1px solid #FFF;
	border-right:1px solid #FFF;
	border-bottom:1px solid #FFF;
	border-top:1px solid #FFF;
	-moz-border-bottom-left-radius:6px;
	-moz-border-bottom-right-radius:6px;
	-webkit-border-bottom-left-radius:6px;
	-webkit-border-bottom-right-radius:6px;
	border-bottom-left-radius:6px;
	border-bottom-right-radius:6px;
	-moz-box-shadow:  5px  5px 20px #000;
  -webkit-box-shadow:  5px  5px 20px #000;
	box-shadow: 5px 5px 20px #000;
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#000', Direction=135, Strength=10);
}
.extendedMenuTitle{
	background-color:#E10512;
	color:#FFF;
	font-size:12px;
	display:block;
	padding-top:5px;
	padding-bottom:5px;
	padding-left:5px;
	height:19px;
}
.extendedMenuContent{
	width:100%;
	height:100%;
	padding:2px 10px 35px 10px;
}
.ui-state-filter-selected,
.ui-widget-content .ui-state-filter-selected,
.ui-widget-header .ui-state-filter-selected {
	border: 1px solid #d8dcdf;
	background:#FF6;
	color: #484848;
	font-size: 12px;
}
.ui-state-filter-printactive,
.ui-widget-content .ui-state-filter-printactive,
.ui-widget-header .ui-state-filter-printactive {
	border: 1px solid #fff;
	background:#5B9BD5;
	color: #fff;
	font-size: 12px;
}
.ui-state-filter-switchactive,
.ui-widget-content .ui-state-filter-switchactive,
.ui-widget-header .ui-state-filter-switchactive {
	border: 1px solid #aaaaaa;
	background: #aaaaaa;
	color: #fff;
	font-size: 12px;
}
.ui-state-filter-messageactive,
.ui-widget-content .ui-state-filter-messageactive,
.ui-widget-header .ui-state-filter-messageactive {
	border: 1px solid #e24141;
	background: #e24141;
	color: #fff;
	font-size: 12px;
}


/*-----------------------------------------------------------------------------------------------------
                                        CLASSES FOR NOTIFICATION PANEL
-----------------------------------------------------------------------------------------------------*/
.notificationContainer{
	position:relative;
	display:none;
	top:53px;
	min-height:100px;
	z-index:2;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.notificationPanel{
	background-color:#fff;
	border-left:2px solid #FFF;
	border-right:2px solid #FFF;
	border-bottom:2px solid #FFF;
	border-top:1px solid #FFF;
	-moz-box-shadow:  5px  5px 20px #000;
  -webkit-box-shadow:  5px  5px 20px #000;
	box-shadow: 5px 5px 20px #000;
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#000', Direction=135, Strength=10);
}
.notificationPanelTriangle{
	height:9px;
	width:13px;
	left:287px;
	top:2px;
	position:relative;
}
.notificationPanelTitle{
	background-color:#E10512;
	color:#FFF;
	font-size:12px;
	display:block;
	padding-top:5px;
	padding-bottom:5px;
	padding-left:5px;
	height:19px;
}
.notificationDeleteAll{
	position:absolute;
	right:10px;
	height:15px;
}
.notificationDeleteAll span{
	margin-left:3px !important;
}
.notificationPanelContent{
	width:100%;
	height:300px;
	padding-top:5px;
	padding-bottom:5px;
	overflow: auto;
}
.notificationPanelContent center{
	margin-top:10px;
}
.notificationBubble{
	display:none;
	position:fixed;
	-moz-border-top-left-radius:10px;
	-moz-border-top-right-radius:10px;
	-moz-border-bottom-left-radius:10px;
	-moz-border-bottom-right-radius:10px;
	-webkit-border-top-left-radius:10px;
	-webkit-border-top-right-radius:10px;
	-webkit-border-bottom-left-radius:10px;
	-webkit-border-bottom-right-radius:10px;
	border-top-left-radius:10px;
	border-top-right-radius:10px;
	border-bottom-right-radius:10px;
	border-bottom-left-radius:10px;
	width:18px;
	height:18px;
	notop: 20px;
	noleft: 905px;
	position: absolute;
	bottom: 2px;
	left:-2px;
}
.bubbleText{
	font-size: 10px;
	margin-top: 1px;
	font-weight: bold;
	text-align: center;
	width: 18px;
}
.bubbleText span{
	font: 100% Arial;
	font-family:'texgyreadventor' !important;
	
}
.bubbleRed{
	background-color:#E10512;
	color:#FFF;
}
.stdNotificationTable{
	width:100%;
}
.stdNotificationText{
	font-size: 11px;
	color:#000;
}
.stdNotificationTimestamp{
	font-size: 10px;
	padding-bottom:5px;
	color: #808080;
}

/*-----------------------------------------------------------------------------------------------------
                                   CLASSES FOR DIALOG WINDOW - jQUeryUI customization
-----------------------------------------------------------------------------------------------------*/
#myDialog{
	display:none;
  min-width:200px;
  min-height:200px;
}
.no-close .ui-dialog-titlebar-close {
    display: none;
}
.partImage{
	margin-top: 5px;
}
.partDescription{
	font-weight: normal;
	font-size: 11px;
	margin-top: 3px;
	margin-bottom: -4px;
}
.ui-dialog{
	position: fixed !important;
	top: 50% !important;
	left: 50% !important;
	-webkit-transform: translate(-50%, -50%) !important;
	transform: translate(-50%, -50%) !important;
}
.ui-dialog .ui-dialog-content {
  padding:0.5em 0.3em;
}
.customButtonContainer{
	text-align:right;
	margin-top:10px;
	border-top:1px solid #eeeeee;
	border-bottom:0;
	border-left:0;
	border-right:0;
	position: fixed;
	bottom: 4px;
	width: 100%;
}
.customButtonSet{
	margin-top:10px;
}
.no-border{
	border:0;
}

/*-----------------------------------------------------------------------------------------------------
                                       CLASSES FOR EMAIL VERIFICATION PAGE LAYOUT
-----------------------------------------------------------------------------------------------------*/
#emailVerificationDiv{
	position: absolute;
  top: 37%;
  left: 37%;
  margin-top: -50px;
  margin-left: -50px;
	background-color:#E10512;
	width:450px;
	color: #FFF;
	font-weight: normal;
	font-size: 12px;
	text-align:center;
	padding-bottom:20px;
	padding-top:10px;
	-moz-border-top-left-radius:10px;
	-moz-border-top-right-radius:10px;
	-moz-border-bottom-left-radius:10px;
	-moz-border-bottom-right-radius:10px;
	-webkit-border-top-left-radius:10px;
	-webkit-border-top-right-radius:10px;
	-webkit-border-bottom-left-radius:10px;
	-webkit-border-bottom-right-radius:10px;
	border-top-left-radius:10px;
	border-top-right-radius:10px;
	border-bottom-right-radius:10px;
	border-bottom-left-radius:10px;
	-moz-box-shadow:  10px  10px 5px #dedede;
  -webkit-box-shadow:  10px  10px 5px #dedede;
	box-shadow: 10px 10px 5px #dedede;
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#dedede', Direction=135, Strength=10);
}

/*-----------------------------------------------------------------------------------------------------
                       CLASSES FOR CUSTOM AUTOMPLETE - Customers ans suppliers retriving
-----------------------------------------------------------------------------------------------------*/
.autocompleteCustom{
	background-color:#FFF;
	width:262px;
	max-height:250px;
	height:auto;
	position:absolute;
	z-index:10;
	border-bottom:1px solid #000;
	border-left:1px solid #000;
	border-right:1px solid #000;
	padding-left:5px;
	padding-right:5px;
	padding-top:5px;
	padding-bottom:5px;
	display:none;
	overflow:auto;
}

/*-----------------------------------------------------------------------------------------------------
                                         CLASSES FOR MAPS DIV
-----------------------------------------------------------------------------------------------------*/
#map-canvas{
	border:10px solid #FFF;
	height:500px;
}

/*-----------------------------------------------------------------------------------------------------
                                        CLASSES FOR IMAGE CROP DIV
-----------------------------------------------------------------------------------------------------*/
/* The Javascript code will set the aspect ratio of the crop
   area based on the size of the thumbnail preview,
   specified here */
#preview-pane .preview-container {
  width: 200px;
  height: 300px;
  overflow: hidden;
}
.jcrop-holder #preview-pane {
  display: block;
  position: absolute;
  z-index: 2000;
  top: 25px;
  right: -310px;
  padding: 6px;
  border: 1px rgba(0,0,0,.4) solid;
  background-color: white;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.4);
  filter: progid:DXImageTransform.Microsoft.Shadow(color='#000', Direction=135, Strength=10);
}
#target_container{
	margin-top:20px;
	margin-left:10px;
	width:400px;
	-webkit-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.4);
	box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.4);
	filter: progid:DXImageTransform.Microsoft.Shadow(color='#000', Direction=135, Strength=10);
}
.crop_title{
	margin-left:10px;
}

/*-----------------------------------------------------------------------------------------------------
                                        CLASSES FOR SORTABLE FAVORITES
-----------------------------------------------------------------------------------------------------*/
#sortList{
  list-style:none;
  padding-left:0;
  margin:0;
}
.customSortIcon{
  display:inline-block !important;
  display:-webkit-inline-box;
  display: -moz-inline-box;
  background-image: url(/system/ajax/jquery/css/atwork-theme/images/ui-icons_000000_256x240.png);
  background-position: -128px -48px;
  width:16px;
  height:14px;
  background-repeat:no-repeat;
}
#sortList > li > a:hover span.customSortIcon {
  background-image: url(/system/ajax/jquery/css/atwork-theme/images/ui-icons_ffffff_256x240.png);
}

/*-----------------------------------------------------------------------------------------------------
                                        CLASSES FOR BI REPORT CARD
-----------------------------------------------------------------------------------------------------*/
#tabsBI {
    background: transparent;
    border: none;
}
#tabsBI .ui-widget-header {
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
	width:100%;
	height:25px;
}
#tabsBI .ui-tabs-nav .ui-state-default {
    background: transparent;
    border: none;
}
#tabsBI .ui-tabs-nav .ui-state-active {
   border: none;
}
#tabsBI .ui-tabs-anchor{
	height:9px;
	line-height:9px;
}
#tabsBI .ui-tabs-nav .ui-state-default a {
  color: #FFFFFF;
	font-size:14px;
	font-weight:normal;
	background-color:#777;
	border-left: 1px solid #000;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
}
#tabsBI .ui-tabs-nav .ui-state-active a {
  background-color:#EDEDED;
	color: #000;
	font-size:14px;
	font-weight:normal;
	border-left: 1px solid #000;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	height:10px;
}
#tabsBI .ui-tabs-nav .ui-state-default a, .ui-state-active a, .ui-state-hover a{
	-moz-border-top-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
	-moz-border-top-right-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}
#tabsBI .ui-tabs-nav .ui-state-hover a{
	color:#FFF;
	background-color:#E10512;
	border-left: 1px solid #E10512;
	border-top: 1px solid #E10512;
	border-right: 1px solid #E10512;
}
#tabsBI .ui-tabs-nav .ui-state-active a, .ui-state-hover a{
	border-left: 1px solid #000;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
}
#tabsBI .ui-state-active a, .ui-state-hover a  {
    outline: none;
}
#tabsBI .ui-tabs-panel{
  border:1px solid #000;
  border-top: none;
}

/*-----------------------------------------------------------------------------------------------------
                                   CLASSES FOR PRODUCTS REGISTRATION COUNTER SPLASH SCREEN
-----------------------------------------------------------------------------------------------------*/
#leftProducts{
  width:500px; 
  min-height:210px; 
  border:2px dashed #808080; 
  margin-left:auto; 
  margin-right:auto;
	-moz-border-radius:50px;
	-webkit-border-radius:50px;
	border-radius:50px;
  padding-bottom:5px;
}
.counter{
  font-size:80px;
  font-weight:bold;
  color:#E10512;
  width:100%;
  text-align:center;
  margin-top:-20px;
  margin-bottom:-20px;
  margin-left:auto;
  margin-right:auto;
}
.testo{
  font-size:12px;
  width:100%;
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  font-weight:bold;
  margin-top:10px;
}
a.txtHref{
  color:#000;
  background-color:transparent;
}
a.txtHref:hover{
  color:#e10512;
}

/*-----------------------------------------------------------------------------------------------------
                                          CLASSES FOR SECTIONS
-----------------------------------------------------------------------------------------------------*/
.section{
  width:100%;
  height:auto;
  margin-top:10px;
}
.sectionTitle{
  position:relative;
  width:100%;
  height:20px;
  background-color:#AAA;
  border-bottom:1px dashed #AAA;
  cursor:pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.sectionTitle span{
  text-align:left;
  color:#FFF;
  padding-left:5px;
  font-weight:bold;
}
.sectionTitle .ref{
  position:absolute;
  width:10px;
  height:10px;
  right:5px;
  top:4px;
}
.sectionContent{
  width:100%;
  height:auto;
  margin-left:0 !important;
}

/*-----------------------------------------------------------------------------------------------------
                                          CLASSES FOR NEW LAYOUT 4.5
-----------------------------------------------------------------------------------------------------*/
.layoutTable.wGridFontGray {
	background-color: #fff !important;
}
.wGridFontGray.whiteBackground {
	background-color: #fff !important;
}
.layoutTable.wGridFontGray td.wGridFontGray {
	background-color: #fff !important;
}
div.wGridFontGray, span.wGridFontGray {
	background-color: #fff !important;
}
.ui-corner-all {
	border-radius: 0;
}
/* bottone quando non onhover */
.ui-state-default {
	background: #e8e8e8;
	border: 1px solid #e8e8e8;
}
/* bottone quando onhover */
.ui-state-hover {
	background: #aaa;
	border: 1px solid #aaa;
	color: #fff;
}
/* iscritto al report via email */
.ui-state-filter-printactive {
	border: 1px solid #5b9bd5;
}
.ui-state-filter-switchactive {
	border: 1px solid #aaaaaa;
}
.ui-state-filter-messageactive {
	border: 1px solid #e24141;
}
.dataTable {
	background-color: #e0e0e0;
}
/* sorted column */
.wGridRow01 {
	background-color: #f5f5f5;
}
/* normal row */
.wGridRow02 {
	background-color: #fff; 
	border-bottom: 1px solid #ededed;
}
.wGridRow11 {
	background-color: #fff; 
}
.wGridRow12 {
	background-color: #fff;
}
.wBottonGray {
	border-radius:0;
	-webkit-border-radius:0;
	-moz-border-radius:0;
}
div#header {
	background-color: #fff !important;
	border-bottom: 1px solid #e10512;
	height: max-content;
	padding-bottom: 10px;
}
div#title {
	background-color: #fff !important;
	text-align: left !important;
	color: #000;
	font-weight: bold;
	float: none !important;
	padding-left: 7px !important;
}
.wTitle {
	background-color: #fff !important;
}
#logo-top-left {
	width: auto;
	height: auto;
	max-height: 30px;
}
td.topToolbar a {
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border-radius:0px;
}
td.topToolbar a:hover {
  background-color:#aaa;
  border:1px solid transparent;
}
.wLineColorRed, .wLineColorRedExpanded, .wLineColor  {
	background-image: none; 
	background-repeat: no-repeat; 
	margin-left: 0px;
	border-bottom: 1px dashed #e10512;
}
td.menuLabel {
	min-height: 54px;
	height: 54px;
	vertical-align: middle;
}
.menuLabel > a, .menuLabel > a:link, .menuLabel > a:hover, .menuLabel > a:visited, .menuLabel > a:active {
	text-decoration: none;
	color: #fff !important;
	display: block;
	height: 100%;
	padding: 0 5px;
}
.menuLabel.admin-label {
	-webkit-filter: grayscale(100%) !important; 
	filter: grayscale(100%) !important;
}
div#tabs ul {
	top: 2px !important;
}
div#tabs ul li:not(.selected) {
	border-bottom: 0 !important;
}
.sep-point {
	color: #aaa !important;
	background: #aaa;
	box-shadow: 0 0 0 1px #aaa;
}
.watermark {
	width: 100%;
    height: 93%;
	background: linear-gradient(-45deg, #efefef 25%, transparent 25%, transparent 50%, #efefef 50%, #efefef 75%, transparent 75%, transparent) !important;
    background-size: 4px 4px !important;
    z-index: 2;
    position: absolute;
}
.partImage {
	z-index: 1
}
.blockedCustomer {
	color:red;
}
.select2-highlighted .blockedCustomer {
	color:lightgray;
}