/***** RESET *****/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

  ul, li {
    list-style: none;
    padding: 0;
    margin: 0; }

  body {
    margin: 0;
    padding: 0;

    /* SC Fix*/
    padding-bottom: 38px;
    min-height: 100vh;
}


/****** POSIZIONAMENTO LOGO *******/

  #idMenuHeader img{
    position: absolute;
    top: 24px;
    left: 88px;
    height: 32px;
    width: auto;
  }

  @media (max-width: 490px){
    #idMenuHeader img{
      height: auto;
      max-width: 180px;
      top: 28px;
      left: 0;
      right: 0;
      margin: 0 auto;
    }
  }

  /****** POSIZIONAMENTO WIDGETS__SPC&SPC__AGGIUSTAMENTI ******/

  .menu__item{
    cursor: pointer;
    height: 100%;
    /* width: 82px; */
       width: 92px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
  }

  .menu__item img{
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    padding: 0 0 6px 0;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }

  .menu__item:hover{
      background-color: #f9f9f9;
  }
  .stats-popover .content-outer{
      background-color : transparent;
  }

  .menu__item img,
  .user-popover .activator img,
  .stats-popover .activator img{
      padding : 0 0 3px 0 !important;
  }



  /***** PRIMA RIGA IN ALTO *****/
  #idMenuLine{
      display: none;
  }



  /****** TOP BAR ******/
  .top-bar{
    position: absolute;
    top: 0;
    left: 0;
    height: 78px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.25);
            box-shadow: 0px 2px 5px rgba(0,0,0,0.25);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }



  /****** MENU ******/
  .menu-icon{
    position: absolute;
    top: 0px;
    left: 0px;
    z-index : 2;
  }
  .menu__item .title,
  .menu-icon .title{
      display: block;
      font-family: 'Roboto', 'Helvetica Neue', 'Helvetica', sans-serif;
      text-align: center;
      font-size: 10px;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: .05em;
  }

  .menu__settings-icon{
      height: 26px !important;
      width: 26px !important;
      margin-bottom: 4px !important;
      margin-top: 2px !important;
  }

  #sidemenu {

    z-index: 2;
    font-family: 'Roboto', 'Helvetica Neue', 'Helvetica', sans-serif;
    position: fixed;
    top: 54px;
    left: 0;
    background: transparent;
    bottom: 56px;
    padding : 28px 0;
   -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  -o-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
      -webkit-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
              transform: translateX(-100%);
  }

  #sidemenu.active{
    -webkit-transform: translateX(0);
          -ms-transform: translateX(0);
              transform: translateX(0);
  }
    #sidemenu .sidemenu__inner-wrapper {
      overflow : hidden;
      background: white;
      height: 100%;
      -webkit-box-shadow: 0px 2px 5px #d2d2d2;
      box-shadow: 0px 2px 5px #d2d2d2;
  }

  .sidemenu__top-level-item {
      width: 83px;
    text-align: center;
    border-bottom: 1px solid #efefef;
    border-right: 1px solid #efefef;
    opacity: 1; }


    sidemenu__top-level-item a {
      width: 80px;
    }

    .sidemenu__top-level-item > a {
      height: 80px;
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-decoration: none;
      padding: 8px;
      -webkit-transition: -webkit-transform .2s ease;
      transition: -webkit-transform .2s ease;
      -o-transition: transform .2s ease;
      transition: transform .2s ease;
      transition: transform .2s ease, -webkit-transform .2s ease; }
      .sidemenu__top-level-item > a:before {
        position: absolute;
        top: 0;
        left: -3px;
        height: 100%;
        width: 3px;
        z-index: 1;
        content: '';
        display: block; }
      .sidemenu__top-level-item > a:hover {
        -webkit-transform: translateX(3px);
        -ms-transform: translateX(3px);
        transform: translateX(3px); }
    .sidemenu__top-level-item .sidemenu__top-level-item__text {
      opacity: .7; }
    .sidemenu__top-level-item .sidemenu__top-level-item__icon {
      display: block;
      margin-bottom: 4px;
      width: 30px; }
    .sidemenu__top-level-item:hover {
      background-color: #f9f9f9; }
      .sidemenu__top-level-item:hover .sidemenu__top-level-item__icon {
        -webkit-filter: none;
        filter: none; }
      .sidemenu__top-level-item:hover .sidemenu__top-level-item__text {
        opacity: 1; }

  .sidemenu__sub-items-container {
    z-index: -1;
    position: absolute;
    background: white;
    overflow-y: auto;
    top: 28px;
    left: 100%;
   /*  width: 333px; */
    width: 359px;
    bottom: 28px;
    -webkit-transition: all 0.15s cubic-bezier(0.07, 0.77, 0.69, 0.97);
    transition: all 0.15s cubic-bezier(0.07, 0.77, 0.69, 0.97);
    -o-transition: all 0.15s cubic-bezier(0.07, 0.77, 0.69, 0.97);
    transition: all 0.15s cubic-bezier(0.07, 0.77, 0.69, 0.97);
    -webkit-transition: all 0.15s cubic-bezier(0.07, 0.77, 0.69, 0.97), all 0.15s cubic-bezier(0.07, 0.77, 0.69, 0.97);
    -o-transition: all 0.15s cubic-bezier(0.07, 0.77, 0.69, 0.97), all 0.15s cubic-bezier(0.07, 0.77, 0.69, 0.97);
    transition: all 0.15s cubic-bezier(0.07, 0.77, 0.69, 0.97), all 0.15s cubic-bezier(0.07, 0.77, 0.69, 0.97);
    -webkit-box-shadow: 0px 2px 5px #d2d2d2;
    box-shadow: 0px 2px 5px #d2d2d2;
    border: 1px solid #efefef;

    text-align: left /* left */;

  }
    .sidemenu__sub-items-container .group__items {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-left: -1px;
      position: relative; }
      .sidemenu__sub-items-container .group__items .sidemenu__subitem,
      .sidemenu__top-level-item > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        padding: 8px;
        width: 84px/* 84px */;
        height: 80px;
        position: relative;
        margin-right: -1px;
        margin-bottom: -1px;
        cursor: pointer; }

        .sidemenu__subitem{
          width: 120px!important;
        }
        .sidemenu__sub-items-container .group__items .sidemenu__subitem{
            border: 1px solid #efefef;
        }
        .sidemenu__sub-items-container .group__items .sidemenu__subitem:hover {
          background: #f9f9f9; }
        .sidemenu__sub-items-container .group__items .sidemenu__subitem img,
        .sidemenu__top-level-item .sidemenu__top-level-item__icon {
          width: 28px;
          margin-bottom: 20px; }

        .sidemenu__top-level-item .sidemenu__top-level-item__icon{
          margin-bottom: 20px;
        }
        .sidemenu__sub-items-container .group__items .sidemenu__subitem .subitem__text,
        .sidemenu__top-level-item .sidemenu__top-level-item__text {
          position: absolute;
          top: 48px;
          max-width: 80px;
          font-size: 9.5px;
          line-height: 1.05em;
          font-weight: 500;
          color: #404040; }


  .sidemenu__top-level-item .sidemenu__top-level-item__text{
      top: 50px;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      line-height: 1.1em;
      font-weight: 600;
      font-size: 9px;
  }
    .sidemenu__sub-items-container .group__text {
      background-color: #f9f9f9;
      font-weight: 700;
      padding: 20px 16px 6px 16px;
      padding: 1px;

      font-size: 12px;
      color: rgba(0, 0, 0, 0.78);
      letter-spacing: 0px;
      border-bottom: 2px solid #f3f3f3; }
    .sidemenu__sub-items-container.hidden {
      opacity: 0;
      -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      transform: translateX(-100%); }



  /****** HAMBURGERS ******/
  .hamburger {

    height: 35px;
    outline: 0;
    padding: 8px 8px;
    display: inline-block;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    -o-transition-property: opacity, filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: 0.15s;
         -o-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible; }
    .hamburger:hover {
      opacity: 0.7; }

  .hamburger-box {
    width: 32px;
    height: 19px;
    display: inline-block;
    position: relative;
    }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px; }
    .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
      width: 32px;
      height: 2px;
      background-color: #000;
      border-radius: 3px;
      position: absolute;
      -webkit-transition-property: -webkit-transform;
      transition-property: -webkit-transform;
      -o-transition-property: transform;
      transition-property: transform;
      transition-property: transform, -webkit-transform;
      -webkit-transition-duration: 0.15s;
           -o-transition-duration: 0.15s;
              transition-duration: 0.15s;
      -webkit-transition-timing-function: ease;
           -o-transition-timing-function: ease;
              transition-timing-function: ease; }
    .hamburger-inner::before, .hamburger-inner::after {
      content: "";
      display: block; }
    .hamburger-inner::before {
      top: -8px; }
    .hamburger-inner::after {
      bottom: -8px; }

  .hamburger--arrowturn.is-active .hamburger-inner {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg); }
    .hamburger--arrowturn.is-active .hamburger-inner::before {
      -webkit-transform: translate3d(9px, 2px, 0) rotate(45deg) scale(0.6, 1);
              transform: translate3d(9px, 2px, 0) rotate(45deg) scale(0.6, 1); }
    .hamburger--arrowturn.is-active .hamburger-inner::after {
      -webkit-transform: translate3d(9px, -2px, 0) rotate(-45deg) scale(0.6, 1);
              transform: translate3d(9px, -2px, 0) rotate(-45deg) scale(0.6, 1); }

  .scroll-button{
      cursor: pointer;
      position: absolute;
      left: 0;
      width: 100%;
      height: 24px;
      text-align: center;
      z-index: 2;
      display : none;
  }

  .scroll-button img{
      width: 26px;
      position: absolute;
      left: 0;
      right: 0;
      margin: 0 auto;
      opacity: 0.5;
      top: -3px;
  }

  .scroll-button:hover img{
      opacity: 1;
  }

  .scroll-button.up{
      top: 5px;
  }

  .scroll-button.down{
      bottom : -1px;
  }



/****** USER POPOVER ******/
.user-popover{
    position: relative;
    display: inline-block;
	font-family : Roboto, Helvetica, 'Helvetica Neue', sans-serif;
}

.user-popover ul{
	padding-left: 0;
}

.user-popover ul,
.user-popover li{
	list-style: none;
}

.user-popover img{
	display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    padding: 0 0 6px 0;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;

            border-radius: 50%;


}

.user-popover .title{
	display: block;
    font-family: 'Roboto', 'Helvetica Neue', 'Helvetica', sans-serif;
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .05em;
}

.user-popover .activator{
	cursor: pointer;
}

.user-popover .content-outer{
	position : absolute;
	max-width: 300px;
	width: 300px;
    height: 0;
    top : 100%;
	overflow: hidden;
	right: 4px;
	opacity: 0;
	-webkit-transition: opacity .2s ease , -webkit-transform .2s cubic-bezier(.07,.77,.69,.97);
	transition: opacity .2s ease , -webkit-transform .2s cubic-bezier(.07,.77,.69,.97);
	-o-transition: opacity .2s ease , transform .2s cubic-bezier(.07,.77,.69,.97);
	transition: opacity .2s ease , transform .2s cubic-bezier(.07,.77,.69,.97);
	transition: opacity .2s ease , transform .2s cubic-bezier(.07,.77,.69,.97) , -webkit-transform .2s cubic-bezier(.07,.77,.69,.97);
	-webkit-transform : translateY(50px);
	    -ms-transform : translateY(50px);
	        transform : translateY(50px);
}

.user-popover .content-inner{
	background-color : white;
	font-size: 14px;
	margin-top: 24px;
	color: #313131;
	border-radius: 4px;
	padding: 0;
	-webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.3);
	        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.3);
}

.user-popover:hover .content-outer{
	height: auto;
	overflow: visible;
	-webkit-transform : translateY(0);
	    -ms-transform : translateY(0);
	        transform : translateY(0);
	opacity: 1;
}

.user-popover .content-inner:before{
	content: '';
    position: absolute;
    border: 16px solid transparent;
    border-bottom: 16px solid #f9f9f9;
    display: block;
    top: -8px;
    z-index: 2;
    right: 20px;
}

.user-popover #logged-username{
	padding: 24px 12px 12px 12px;
	font-weight: 700;
	background-color : #f9f9f9;
}

.notifiche__empty{
    display: none;
	padding: 12px;
	color: grey;
}

.notifiche__empty.show{
    display: block;
}

.notifiche__list li{
	margin-top: -1px;
	font-size: 12px;
	padding : 12px 12px;
	border-bottom: 1px solid rgba(0,0,0,0.15);
	cursor: pointer;
	-webkit-transition: background-color .2s ease;
	-o-transition: background-color .2s ease;
	transition: background-color .2s ease;
}

.notifiche__list li:hover{
	background-color : #f9f9f9;
}

.notifiche__header{
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: 12px;
	border-top: 2px solid #fdd212;
}

.user-popover .popover-main-item{
	cursor : pointer;
	border-top: 1px solid rgba(0,0,0,0.15);
	font-weight: 700;
	font-size: 12px;
	-webkit-transition: background-color .2s ease;
	-o-transition: background-color .2s ease;
	transition: background-color .2s ease;
}

.user-popover .popover-main-item:hover{
	background-color : #f9f9f9;
}

.user-popover .popover-main-item a {
	display: block;
	padding: 12px;
}

.user-popover .popover-main-item img{
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	height: 24px;
	margin-right: 12px;
	padding: 0;
}



/****** EMT BADGE ******/
.emt__badge{
	display : none;
	position: absolute;
    background: #fdd212;
    width: 24px;
    height: 24px;
    text-align: center;
    right: 17px;
    font-size: 14px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 24px;
    top: 0px;
}

.emt__badge.show{
	display: block;
}

/****** STATS POPOVER ******/
.stats-popover{
    position: relative;
    display: inline-block;
	font-family : Roboto, Helvetica, 'Helvetica Neue', sans-serif;
}

.stats-popover ul{
	padding-left: 0;
}

.stats-popover ul,
.stats-popover li{
	list-style: none;
}

.stats-popover img{
	display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    padding: 0 0 6px 0;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}

.stats-popover .title{
	display: block;
    font-family: 'Roboto', 'Helvetica Neue', 'Helvetica', sans-serif;
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .05em;
}

.stats-popover .activator{
	cursor: pointer;
}

.stats-popover .content-outer{
	position : absolute;
	max-width: 300px;
	width: 300px;
	height: 0;
    overflow: hidden;
	right: 4px;
    opacity: 0;
    top: 100%;
	-webkit-transition: opacity .2s ease , -webkit-transform .2s cubic-bezier(.07,.77,.69,.97);
	transition: opacity .2s ease , -webkit-transform .2s cubic-bezier(.07,.77,.69,.97);
	-o-transition: opacity .2s ease , transform .2s cubic-bezier(.07,.77,.69,.97);
	transition: opacity .2s ease , transform .2s cubic-bezier(.07,.77,.69,.97);
	transition: opacity .2s ease , transform .2s cubic-bezier(.07,.77,.69,.97) , -webkit-transform .2s cubic-bezier(.07,.77,.69,.97);
	-webkit-transform : translateY(50px);
	    -ms-transform : translateY(50px);
	        transform : translateY(50px);
}

.stats-popover .content-inner{
	font-size: 14px;
	margin-top: 24px;
	color: #313131;
	border-radius: 4px;
	background-color: white;
	padding: 0;
	-webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.3);
	        box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.3);
}

.stats-popover:hover .content-outer{
	height: auto;
	overflow: visible;
	-webkit-transform : translateY(0);
	    -ms-transform : translateY(0);
	        transform : translateY(0);
	opacity: 1;
}

.stats-popover .content-inner:before{
	content: '';
    position: absolute;
    border: 16px solid transparent;
    border-bottom: 16px solid #f9f9f9;
    display: block;
    top: -8px;
    z-index: 2;
    right: 20px;
}

.stats-popover .widget-header{
	padding: 24px 12px 12px 12px;
	font-weight: 700;
    background-color : #f9f9f9;
    border-bottom: 2px solid #fdd212;
}

.stats-popover__main-item{
	cursor : pointer;
	padding : 12px 12px;
	border-top: 1px solid rgba(0,0,0,0.15);
	font-weight: 300;
	font-size: 12px;
	-webkit-transition: background-color .2s ease;
	-o-transition: background-color .2s ease;
	transition: background-color .2s ease;
}

.stats-popover__main-item:hover{
	background-color : #f9f9f9;
}

@media (max-width: 490px){
  .stats-popover{
    display: none !important;
  }
}

.activator img {
  width: 26px;
  height: 26px;
  padding: 7px!important;
  margin-top: -4px;

}

.user-popover .activator img{
  padding: 7px!important;
}
