body{
	background: url(../img/background.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.align-radio {
	margin: -5px auto auto -10px;
}

.navbar-brand {
	padding-top: 0px;
	padding-left: 30px;
	padding-right: 50px;
}

.navbar-brand>img {
	height: 45px;
	padding: 10px;
	width: auto;
}

.navbar .navbar-brand{
	margin-bottom: 0px;
}

.panel-border {
	border: 1px solid black; 
	border-radius: 5px !important;
}

.login-container{
	position: relative;
	width: 300px;
	margin: 100px auto;
	padding: 20px 40px 40px;
	text-align: center;
	background: #fff;
	border: 1px solid #ccc;
}

#output{
	position: absolute;
	width: 300px;
	top: -75px;
	left: 0;
	color: #fff;
}

#output.alert-success{
	background: rgb(25, 204, 25);
}

#output.alert-danger{
	background: rgb(228, 105, 105);
}


.login-container::before,.login-container::after{
	content: "";
	position: absolute;
	width: 100%;height: 100%;
	top: 3.5px;left: 0;
	background: #fff;
	z-index: -1;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	border: 1px solid #ccc;

}

.login-container::after{
	top: 5px;
	z-index: -2;
	-webkit-transform: rotateZ(-2deg);
	-moz-transform: rotateZ(-2deg);
	-ms-transform: rotateZ(-2deg);

}

.avatar{
	width: 100px;height: 100px;
	margin: 10px auto 30px;
	border-radius: 100%;
	border: 2px solid #aaa;
	background-size: cover;
}

.form-box input{
	width: 100%;
	padding: 10px;
	text-align: center;
	height:40px;
	border: 1px solid #ccc;;
	background: #fafafa;
	transition:0.2s ease-in-out;

}

.form-box input:focus{
	outline: 0;
	background: #eee;
}

.form-box .form-head{
	border-radius: 5px 5px 0 0;
	border-bottom: 0;
}

.form-box .form-footer{
	border-radius: 0 0 5px 5px;
	border-top: 0;
}   


.form-box button.login{
	margin-top:15px;
	padding: 10px 20px;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.form-registration {
	border-radius: 15px;
	background: #fff;
}

div.panel:first-child {
	margin-top:20px;
}

.modal-danger {
	background-color: #db2e2e;
	color: #fff;
}
.modal-primary {
	background-color: #337ab7;
	color: #fff;
}

.link {
	cursor: pointer;
}

.text-unselected {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 25px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #2196f3;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.container-fluid {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.navbar {
	border-radius: 0;
}

.corpo-pagina{
	margin: 60px 15px 50px 15px;
}

.riga-selezionata{
	background-color: #BBDEFB !important;
}

.cursor-disabled {
	cursor: not-allowed;
}

.nav .open > a,.nav .open > a:hover, .nav .open > a:focus {
	background-color: transparent !important;
} 

.pick-class-label.filtro-stato {
	height: 12px;
	width: 12px;
	cursor: default;
	border-radius: 4px;
}

.floating-menu {
	font-family: sans-serif;
	width: 100%;
	z-index: 8000;
	position: fixed;
	top: 0;
	/*opacity: 0.9;*/
}

td.details-control {
	background: url('../img/details_open.png') no-repeat center center;
	cursor: pointer;
}
tr.shown td.details-control {
	background: url('../img/details_close.png') no-repeat center center;
}

.badge-notify{
	background:red;
	position:relative;
	top: -20px;
	left: -35px;
}

.dataTables_length {
	height: 60px;
	background-color: #ECEFF1;
}

#documenti_length.dataTables_length {
	height: 120px;
	background-color: #ECEFF1;
}


.dataTables_length label {
	margin: 20px 0px 15px 15px;
}

.dataTables_length select {
	position: relative;
	line-height: 20px;
	width: 55px;
	padding-right: 10px;
	border: 1px solid #757575;
	-moz-appearance: none;
	text-indent: 0.01px;
	overflow: '';
	border-radius: 2px;
}

.select-order {
	position: relative;
	line-height: 20px;
	width: 140px;
	height: 30px;
	margin: 15px 1px 15px 0px;
	padding-right: 10px;
	border: 1px solid #757575;
	-moz-appearance: none;
	text-indent: 0.01px;
	overflow: '';
	border-radius: 2px;
}

@-moz-document url-prefix() {
	.select-order {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAANCAYAAACpUE5eAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QsGCAcIf0aE0QAAADFJREFUOMtjYBgFgw4wQun/ZOghKPmfUsOwKfhPiWG4FP0n1zB8Cv+TYxgh8H94pkMAEc4GBW/dMm0AAAAASUVORK5CYII=);
		background-repeat: no-repeat;
		background-position: right 6px;    
	}

	.dataTables_length select {
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAANCAYAAACpUE5eAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QsGCAcIf0aE0QAAADFJREFUOMtjYBgFgw4wQun/ZOghKPmfUsOwKfhPiWG4FP0n1zB8Cv+TYxgh8H94pkMAEc4GBW/dMm0AAAAASUVORK5CYII=);
		background-repeat: no-repeat;
		background-position: right 1px;
	}
}

.dataTables_filter input[type="search"] {
	background: #FFFFFF url(../img/icon-search.png) no-repeat right 3px;
	padding-right: 30px;
	padding-left: 5px;
	margin: 15px 30px 15px 0px;
	height: 30px;
	border: 1px solid #757575;
	border-radius: 2px;
	color: #757575;
	font-weight: normal;
	width: 190px;
}

.dataTables_filter .select2-container .select2-selection {
	height: 50px;
	overflow: scroll;
	margin-left: 0.5em;
}

.dataTables_filter {
	height: 60px;
	background-color: #ECEFF1;
}

#documenti_filter.dataTables_filter {
	height: 120px;
	background-color: #ECEFF1;
}

.align-table {
	margin: auto auto 0px -9px;
}

.align-checkbox {
	margin: auto auto 0px -16px;
}

.importoTabella {
	padding-right: 17px !important;
}

.leggiNotifica:focus,
.leggiNotifica:active:focus,
.leggiNotifica.active:focus,
.leggiNotifica.focus,
.leggiNotifica:active.focus,
.leggiNotifica.active.focus {
	background: transparent;
	border: 0px solid transparent;
}

.file {
	position: relative;
}
.file label {
	background: #FF9500;
	padding: 5px 20px;
	color: #fff;
	font-weight: bold;
	font-size: .9em;
	transition: all .4s;
}
.file input {
	position: absolute;
	display: inline-block;
	left: 0;
	top: 0;
	opacity: 0.01;
	cursor: pointer;
}

.normalFont{
	font-weight: normal;
}

table.dataTable tbody td{
	padding: 12px 10px 8px 10px !important;
}

.checkbox{
	margin-top: 8px !important;
}

label.radio{
	padding-top: 0 !important;
	margin-top: 8px !important;
}

/* Wizard */
.stepwizard-step p {
	margin-top: 5px;
}

.stepwizard-row {
	display: table-row;
}

.stepwizard {
	display: table;
	width: 100%;
	position: relative;
	margin-bottom: 20px;
}

.stepwizard-step button[disabled] {
	opacity: 1 !important;
	filter: alpha(opacity=100) !important;
}

.stepwizard-row:before {
	top: 14px;
	bottom: 0;
	position: absolute;
	content: " ";
	width: 100%;
	height: 1px;
	background-color: #ccc;
	z-order: 0;
}

.stepwizard-step {
	display: table-cell;
	text-align: center;
	position: relative;
	left: 0;
}

/* Wizard step button */
.btn-circle {
	width: 30px;
	height: 30px;
	text-align: center;
	padding: 6px 0;
	font-size: 12px;
	line-height: 1.428571429;
	border-radius: 15px;
}
.btn-circle.btn-lg {
	width: 50px;
	height: 50px;
	padding: 10px 10px;
	font-size: 18px;
	line-height: 1.33;
	border-radius: 25px;
}
.btn-circle.btn-xl {
	width: 70px;
	height: 70px;
	padding: 10px 16px;
	font-size: 24px;
	line-height: 1.33;
	border-radius: 35px;
}

.btn-circle.glyphicon{
	top: -10;
}

#col-file {
	margin: 6px 0 0 10px;
	float: left;
}

/* Modal Minimize */
.min {
	width: 250px;
	height: 35px;
	overflow: hidden !important;
	padding: 0px !important;
	margin: 0px;
	float: left;
	position: static !important;
}

.min .modal-dialog, .min .modal-content {
	height: 100%;
	width: 100%;
	margin: 0px !important;
	padding: 0px !important;
}

.min .modal-header {
	height: 100%;
	width: 100%;
	margin: 0px !important;
	padding: 3px 5px !important;
}

.display-none { display: none; }

button .fa {
	font-size: 16px;
	margin-left: 10px;
}

.min .fa { font-size: 14px; }

.min .menuTab { display: none; }

button:focus { outline: none; }

.minmaxCon {
	height: 35px;
	width: 10%;
	bottom: 1px;
	left: 1px;
	position: fixed;
	right: 1px;
	z-index: 9999;
}

.scrollbar {
	width: 100%;
	height: 100%;
	overflow: auto;
}

.table-fixed { 
	table-layout:fixed; 
}

.table-fixed td { 
	overflow: hidden; 
}

/* Tabella scroll */
.table-wrapper {
	position:relative;
}

.table-scroll {
	height:150px;
	overflow:auto;  
	margin-top:20px;
}

.table-wrapper table {
	width:100%;

}

.table-wrapper table thead th .text {
	position:absolute;   
	top:-20px;
	z-index:2;
	height:20px;
	width:35%;
	border:1px solid red;
}

.table-responsive {
	border: 0px !important;
}

.my-group .form-control{
	width: 50%;
}

.select-input-addon {
	position: relative;
	line-height: 20px;
	width: 55px;
	padding-right: 10px;
	border: 1px solid rgba(0, 0, 0, .1);
	-moz-appearance: none;
	text-indent: 0.01px;
	overflow: '';
	border-radius: 2px;
}

@-moz-document url-prefix() {
	select.minimal {
		background-image:
			linear-gradient(45deg, transparent 50%, gray 50%),
			linear-gradient(135deg, gray 50%, transparent 50%),
			linear-gradient(to right, #ccc, #ccc);
		background-position:
			calc(100% - 20px) calc(1em + 2px),
			calc(100% - 15px) calc(1em + 2px),
			calc(100% - 2.5em) 0.5em;
		background-size:
			5px 5px,
			5px 5px,
			1px 1.5em;
		background-repeat: no-repeat;
	}
}

small.help-block {
	color: red !important;
}

/*	Step Form	*/
/*
Step Bar which indicates progress when the user arrives at the step, and 
indicates the end of the progress with a different shape and color.
*/
.bs-wizard {margin-top: 40px;}

.bs-wizard {padding: 0 0 10px 0;}
.bs-wizard > .bs-wizard-step {padding: 0; position: relative;}
.bs-wizard > .bs-wizard-step + .bs-wizard-step {}
.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {color: #595959; font-size: 16px; margin-bottom: 5px;}
.bs-wizard > .bs-wizard-step .bs-wizard-info {color: #999; font-size: 14px;}
.bs-wizard > .bs-wizard-step > .bs-wizard-dot {position: absolute; width: 30px; height: 30px; display: block; background: #FF9800; top: 45px; margin-top: -15px; margin-left: -15px; border-radius: 50%;} 
.bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {content: ' '; width: 14px; height: 14px; background: #ECEFF1; border-radius: 50px; position: absolute; top: 8px; left: 8px; } 
.bs-wizard > .bs-wizard-step > .progress {position: relative; border-radius: 0px; height: 8px; box-shadow: none; margin: 20px 0;}
.bs-wizard > .bs-wizard-step > .progress > .progress-bar {width:0px; box-shadow: none; background: #FF9800;}
.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {width:0%;}
.bs-wizard > .bs-wizard-step:first-child  > .progress {}
.bs-wizard > .bs-wizard-step:last-child  > .bs-wizard-dot:last-child {background-color: #f5f5f5;left:100%;border-radius:0%}
.bs-wizard > .bs-wizard-step:last-child  > .bs-wizard-dot:last-child:after {opacity: 0;}
/*Definitions only for active status*/
.bs-wizard > .bs-wizard-step.active .bs-wizard-stepnum {font-weight:bold}
/*Definitions for disabled status*/
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {background-color: #f5f5f5;}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {opacity: 0;}
.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot{ pointer-events: none; }
.bs-wizard > .bs-wizard-step.disabled .bs-wizard-stepnum {color: #d5d5d5;}
/*Definitions for complete status*/
.bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {width:100%;}
.bs-wizard > .bs-wizard-step.complete:last-child  > .bs-wizard-dot:last-child {background-color: #FF9800;}
.bs-wizard > .bs-wizard-step.complete:last-child  > .bs-wizard-dot:last-child:after {opacity: 1;}
.bs-wizard > .bs-wizard-step.complete .bs-wizard-stepnum {color: #005A96;opacity: 0.5;}


.table-responsive{
	position: static;
	clear: both;
	zoom: 1;
}

/*
    Modal full screen
*/

.modal-dialog-fullscreen {
	width: 95%;
	height: 80%;
	margin: 50px auto 50px auto;
	padding: 0;
}

/*	Caricamento Pagina	*/
/* Paste this css to your style sheet file or under head tag */
/* This only works with JavaScript, 
if it's not present, don't show loader */
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.loading-page {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url(../img/loader.svg) center no-repeat;
	background-color: rgba(0, 0, 0, 0.6);
}


#sideNavi {
  position: fixed;
  right: 50px;
  top: 25%;
}

.side-navi-item {
  position: absolute;
  display: inline-block;
  width: 150px;
  height: 50px;
  transform: rotate(-90deg);
  transform-origin: left top 0;
  color: #fff;
  background-color: #384047;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
}

.side-navi-item.item1 {
  top: 180px;
  left: 0;
}

.side-navi-item.item2 {
  top: 355px;
  left: 0;
}

.side-navi-item.active {
  background-color: #e5e5e5;
  color: #000;
}

.side-navi-item > div {
  padding-top: 15px;
  text-align: center;
}

.side-navi-data {
  position: absolute;
  top: 0;
  left: 50px;
  width: 650px;
  height: 450px;
  background-color: #e5e5e5;
}

.side-navi-tab { display: none; }

.side-navi-tab.active {
  display: inline-block;
  color: #000;
}

.side-navi-tab > div { padding: 30px; }
