@font-face {
    font-family: sawarabi;
    src: url(fonts/SawarabiGothic-Regular.ttf);
}

body
{
	margin: 0;
	padding: 0;
	color: #555;
	font: normal 10pt Arial,Helvetica,sans-serif;
	background: #EFEFEF;
}

#page
{
	margin-top: 55px;
	margin-bottom: 55px;
	background: white;
	width: 90%;
	/*border: 1px solid #C9E0ED;*/
}

#header
{
	margin: 0;
	padding: 0;
	border-top: 3px solid #C9E0ED;
}

#content
{
    padding: 20px;
}

#sidebar
{
	padding: 20px 20px 20px 0;
}

/*
#footer
{
	padding: 10px;
	margin: 10px 20px;
	font-size: 0.8em;
	text-align: center;
	border-top: 1px solid #C9E0ED;
}
*/

#footer {
	position: fixed;
	text-align: center;
	left: 0px;
	bottom: 0px;
	width: 100vw;
	margin: 0px;
	z-index: 1000;
	font-size: 10px;
	color: #fff;
	background-color: #101010;
	height: 50px;
}

#logo
{
	padding: 10px 20px;
	font-size: 200%;
}

#mainmenu
{
	background:white url(bg.gif) repeat-x left top;
}

#mainmenu ul
{
	padding:6px 20px 5px 20px;
	margin:0px;
}

#mainmenu ul li
{
	display: inline;
}

#mainmenu ul li a
{
	color:#ffffff;
	background-color:transparent;
	font-size:12px;
	font-weight:bold;
	text-decoration:none;
	padding:5px 8px;
}

#mainmenu ul li a:hover, #mainmenu ul li.active a
{
	color: #6399cd;
	background-color:#EFF4FA;
	text-decoration:none;
}

div.flash-error, div.flash-notice, div.flash-success
{
	padding:.8em;
	margin-bottom:1em;
	border:2px solid #ddd;
}

div.flash-error
{
	background:#FBE3E4;
	color:#8a1f11;
	border-color:#FBC2C4;
}

div.flash-notice
{
	background:#FFF6BF;
	color:#514721;
	border-color:#FFD324;
}

div.flash-success
{
	background:#E6EFC2;
	color:#264409;
	border-color:#C6D880;
}

div.flash-error a
{
	color:#8a1f11;
}

div.flash-notice a
{
	color:#514721;
}

div.flash-success a
{
	color:#264409;
}

div.form .rememberMe label
{
	display: inline;
}

div.view
{
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #C9E0ED;
}

div.breadcrumbs
{
	font-size: 0.9em;
	padding: 5px 20px;
}

div.breadcrumbs span
{
	font-weight: bold;
}

div.search-form
{
	padding: 10px;
	margin: 10px 0;
	background: #eee;
}

.portlet
{
	float: none;
}

.portlet-decoration
{
	padding: 3px 8px;
	background: #B7D6E7;
	border-left: 5px solid #6FACCF;
}

.portlet-title
{
	font-size: 12px;
	font-weight: bold;
	padding: 0;
	margin: 0;
	color: #298dcd;
}

.portlet-content
{
	font-size:0.9em;
	margin: 0 0 15px 0;
	padding: 5px 8px;
	background:#EFFDFF;
}

.portlet-content ul
{
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	margin: 0;
	padding: 0;
}

.portlet-content li
{
	padding: 2px 0 4px 0px;
}

.operations
{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.operations li
{
	padding-bottom: 2px;
}

.operations li a
{
	font: bold 12px Arial;
	color: #0066A4;
	display: block;
	padding: 2px 0 2px 8px;
	line-height: 15px;
	text-decoration: none;
}

.operations li a:visited
{
	color: #0066A4;
}

.operations li a:hover
{
	background: #80CFFF;
}

button.navbar-toggle.btn.btn-default{
	display: none;
}

ul.breadcrumb{
	margin-top: 80px;
}

/* Per la sidebar */

.brand {
	display: inline;
	margin-left: 15px;
	cursor: pointer;
}

/* /Per la sidebar */

.arrow-toggle .icon-arrow-down,
.arrow-toggle.collapsed .icon-arrow-up {
    display: inline-block;
}
.arrow-toggle.collapsed .icon-arrow-down,
.arrow-toggle .icon-arrow-up {
    display: none;
}

/* Glyphicon spinner */
.glyphicon.fast-right-spinner {
    -webkit-animation: glyphicon-spin-r 1s infinite linear;
    animation: glyphicon-spin-r 1s infinite linear;
}

.glyphicon.normal-right-spinner {
    -webkit-animation: glyphicon-spin-r 2s infinite linear;
    animation: glyphicon-spin-r 2s infinite linear;
}

.glyphicon.slow-right-spinner {
    -webkit-animation: glyphicon-spin-r 3s infinite linear;
    animation: glyphicon-spin-r 3s infinite linear;
}

.glyphicon.fast-left-spinner {
    -webkit-animation: glyphicon-spin-l 1s infinite linear;
    animation: glyphicon-spin-l 1s infinite linear;
}

.glyphicon.normal-left-spinner {
    -webkit-animation: glyphicon-spin-l 2s infinite linear;
    animation: glyphicon-spin-l 2s infinite linear;
}

.glyphicon.slow-left-spinner {
    -webkit-animation: glyphicon-spin-l 3s infinite linear;
    animation: glyphicon-spin-l 3s infinite linear;
}

@-webkit-keyframes glyphicon-spin-r {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes glyphicon-spin-r {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-webkit-keyframes glyphicon-spin-l {
    0% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes glyphicon-spin-l {
    0% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
/* Glyphicon spinner */

/* Avis Breadcrumbs */

ul.avisbreadcrumbs {
    margin-top: 8px;
    margin-left: 5px;
    margin-right: 5px;
}

.avisbreadcrumbs {
	/* width: 100%; */
	float: none;
}
.avisbreadcrumbs {
    /* padding: 8px 15px; */
    padding: 8px 5px;
    /* margin-bottom: 20px; */
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
    float: right;
}

.avisbreadcrumbs > .active {
    color: #999;
}

.avisbreadcrumbs > li {
    display: inline-block;
}

.avisbreadcrumbs > li + li::before {
    content: " \000BB ";
    padding: 0 5px;
    color: #ccc;
}

#breadcrumbs-location {
	display: inline-block;
	position: absolute;
	overflow: hidden;
	height: 45px;
	padding-left: 0px;
	white-space: nowrap;
	/* background-color: red; /* temp */
}
/* */

/* Multilevel dropmenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}
/* Multilevel dropmenu */

/*Per le form*/
div.wide.form .row {
    clear: left;
}
div.form .row {
    margin: 5px 0;
}
/*Per le form*/

div.bootstrap-switch-id-dellAnnoDiRiferimento {
	
	width: 210px !important;
	margin-top: 5px;
	margin-bottom: 5px;
	
}
html body div#page.container div nav.navbar.navbar-fixed-top.navbar-default div.container-fluid div#yii_booster_collapse_yw0.collapse.navbar-collapse ul#userMenu.pull-right.nav.navbar-nav li {
	background-color: #f8f8f8;
}

.dow {
	background-color: #B7D6E7;
}

.next, .prev {
	background-color: #6464f9;
}

.hide-element {
	opacity: 0;
	cursor: pointer;

	-webkit-transition: opacity 1s;
	transition: opacity 1s;
}

.show-element {
	opacity: 1;

	-webkit-transition: opacity 1s;
  	transition: opacity 1s;
}

span.required {
	opacity: 0;
}

body {
	padding-right: 0px !important
}

.modal-open {
	overflow-y: auto !important;
}

.badge-notify {

	background-color: #e83755 !important;

}

.absolute {
	position: absolute;
	left: 23px;
	top: 8px;
	z-index: 0;
	opacity: 0;
}

.dropdown-menu li, .dropdown-menu li a.notif {
    white-space: normal !important;
    float: left;
    width: 100%;
    height: auto;
    word-wrap: break-word;
}

.first-notifications-element {

	text-align: center;
	font-weight: bold;
	border-bottom: 1px solid blue;

}

.first-notifications-element a {

	font-weight: bold !important;

}

#notifications ul {
	width: 350px;
}

.notification-unreaded {
	background-color: #c0b7ff;
	border-bottom: 1px dotted;
	font-size: 12px;
}

/*
.notification-unreaded:before {
	font-family: "Font Awesome 5 Free";
	content: "\f111";
	display: inline-block;
	padding-right: 3px;
	vertical-align: middle;
	font-weight: 900;
}/* <i class="fas fa-circle"></i> */

.notification-readed {
	font-size: 12px;
}

.dashed {
	background-image: linear-gradient(to right, blue 75%, transparent 75%);
	background-position: 0 1.04em;
	background-repeat: repeat-x;
	background-size: 8px 3px;
}

.dotted {
	background-image: linear-gradient(to right, #d534e9 50%, transparent 50%);
	background-position: 0 1.04em;
	background-repeat: repeat-x;
	background-size: 6px 3px;
}

.disappear {
	display: none;
}

.collapse-button {

	border-radius: .25em .25em 0px 0px !important;
	border-bottom: none !important;

}

.collapse-content {

	background-color: #428bca;
	border-left: 1px solid #357ebd;
	border-right: 1px solid #357ebd;
	border-bottom: 1px solid #357ebd;
	border-radius: 0px .25em .25em .25em;

}

.collapse-content .even a{
	color: white;
}


.collapse-content tr:hover a {
	color: #428bca !important;
}

.collapse-to-right {
	border-radius: .25em 0px .25em .25em;
}

[data-toggle='tooltip']:not(a) {
	cursor: help !important;
}