﻿/*-------------------------------*/
/*           VARIABLES           */
/*-------------------------------*/
body {
  position: relative;
}
body,
html {
  height: 100%;
}
.nav .open > a {
  background-color: transparent;
}
.nav .open > a:hover {
  background-color: transparent;
}
.nav .open > a:focus {
  background-color: transparent;
}
/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/
#wrapper {
  /*queste direttive CSS servono per far ridimensionare in transazione i font del sito*/
  /*-moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;*/
  padding-left: 0;
}
#wrapper.toggled #sidebar-wrapper {
  width: 85%;
}
#wrapper.toggled #page-content-wrapper {
  margin-right: -220px;
  position: absolute;
}
#sidebar-wrapper {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: white;
  height: 100%;
  left: 220px;
  margin-left: -220px;
  overflow-x: hidden;
  overflow-y: auto;
  width: 0;
  z-index: 1000;
}
#sidebar-wrapper::-webkit-scrollbar {
  display: none;
}
#page-content-wrapper {
  padding-top: 70px;
  width: 100%;
}
/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/
.sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  /*li.open {
        &:hover {
            :before {
                transition: width .2s ease-in;
                width: @full-width;
            }
        }
    }*/
}
.sidebar-nav li {
  display: inline-block;
  line-height: 20px;
  position: relative;
  width: 100%;
  text-transform: uppercase;
}
.sidebar-nav li:before {
  background-color: #e3001b;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 5px;
  z-index: -1;
}
.sidebar-nav li.type2:before {
  background-color: #000;
}
.sidebar-nav li.type2.open .mn {
  background-color: #000 !important;
}
.sidebar-nav li:first-child a.dropdown-header {
  background-color: #f5f5f5;
  color: #ffffff;
}
.sidebar-nav li:hover:before {
  width: 100%;
}
.sidebar-nav li a {
  color: #000000;
  display: block;
  padding: 10px 15px 10px 30px;
  text-decoration: none;
}
.sidebar-nav li i {
  margin-right: 5px;
}
.sidebar-nav .dropdown-menu {
  background-color: #eaeaea;
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  /*li {
            margin-left: 9px;
        }*/
}
.sidebar-nav .dropdown-menu.type2 li {
  background-color: #e7e8ea;
}
.sidebar-nav .dropdown-menu.type2 li:before {
  background-color: #000;
}
.sidebar-nav .dropdown-menu.type2 li a:hover {
  background-color: #000;
}
.sidebar-nav .dropdown-menu li a {
  white-space: normal !important;
}
.sidebar-nav .dropdown.open > a {
  background-color: #fc001e;
  color: #ffffff;
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:active {
  background-color: transparent;
  text-decoration: none;
  color: black;
}
.sidebar-nav li.open a:focus {
  text-decoration: none;
  color: #ffffff;
  background-color: #fc001e;
}
.sidebar-nav li a:hover,
.sidebar-nav li.open a:hover {
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
  background-color: #f5f5f5;
  font-size: 20px;
  height: 80px;
  line-height: 44px;
}
.sidebar-nav > .sidebar-brand img {
  width: 125px;
  /*@media screen and (max-width: 355px) {
            display: none;
        }*/
}
/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/
.hamburger-animated {
  background: transparent;
  border: none;
  display: block;
  height: 32px;
  position: fixed;
  width: 32px;
  z-index: 1001;
}
@media screen and (max-width: 320px) {
  .hamburger-animated {
    top: 10px;
  }
}
@media screen and (min-width: 321px) and (max-width: 480px) {
  .hamburger-animated {
    top: 15px;
  }
}
@media screen and (min-width: 481px) {
  .hamburger-animated {
    top: 20px;
  }
}
.hamburger-animated:hover {
  outline: none;
}
.hamburger-animated:focus {
  outline: none;
}
.hamburger-animated:active {
  outline: none;
}
.hamburger-animated.is-closed {
  /*codice per animazione al passaggio spra il menù hamburger*/
  /*&:hover {
        before {
            -webkit-transform: translate3d(-100px,0,0);
            -webkit-transition: all .35s ease-in-out;
            display: block;
            opacity: 1;
        }

        .hamb-top {
            -webkit-transition: all .35s ease-in-out;
            top: 0;
        }

        .hamb-bottom {
            -webkit-transition: all .35s ease-in-out;
            bottom: 0;
        }
    }*/
}
.hamburger-animated.is-closed:before {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
  color: #ffffff;
  content: '';
  display: block;
  font-size: 14px;
  line-height: 32px;
  opacity: 0;
  text-align: center;
  width: 100px;
}
.hamburger-animated.is-closed .hamb-top {
  -webkit-transition: all 0.35s ease-in-out;
  background-color: black;
  top: 5px;
}
.hamburger-animated.is-closed .hamb-middle {
  background-color: black;
  margin-top: -2px;
  top: 50%;
}
.hamburger-animated.is-closed .hamb-bottom {
  -webkit-transition: all 0.35s ease-in-out;
  background-color: black;
  bottom: 5px;
}
.hamburger-animated.is-closed .hamb-top,
.hamburger-animated.is-closed .hamb-middle,
.hamburger-animated.is-closed .hamb-bottom,
.hamburger-animated.is-open .hamb-top,
.hamburger-animated.is-open .hamb-middle,
.hamburger-animated.is-open .hamb-bottom {
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}
.hamburger-animated.is-open .hamb-top {
  -webkit-transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
  background-color: black;
  margin-top: -2px;
  top: 50%;
}
.hamburger-animated.is-open .hamb-middle {
  background-color: black;
  display: none;
}
.hamburger-animated.is-open .hamb-bottom {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
  background-color: #1a1a1a;
  background-color: black;
  margin-top: -2px;
  top: 50%;
}
.hamburger-animated.is-open:before {
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
  color: #ffffff;
  content: '';
  display: block;
  font-size: 14px;
  line-height: 32px;
  opacity: 0;
  text-align: center;
  width: 100px;
}
.hamburger-animated.is-open:hover before {
  -webkit-transform: translate3d(-100px, 0, 0);
  -webkit-transition: all 0.35s ease-in-out;
  display: block;
  opacity: 1;
}
#hamburgerIcon > div {
  z-index: 999;
  width: 32px;
  height: 32px;
  top: 12px;
  right: 3%;
}
/*-------------------------------*/
/*          Dark Overlay         */
/*-------------------------------*/
.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
header .header {
  width: 100%;
}
@media screen and (max-width: 767px) {
  header .header {
    position: fixed;
    top: 0;
    z-index: 10;
  }
}
header .header > .row {
  border-top: 0.3em solid #e3001b;
}
header .header .topMenuIcon {
  margin: 0 auto;
  padding: 7px 10px 0 0;
  font-size: 12px;
  text-align: right;
  font-weight: bold;
  /* ricerca Google menu in alto  */
  /*.gsearch {
                width: 230px;
                display: inline-block;
                min-height: 23px;
                padding-top: 8px;

                .gsc-search-button, .gsc-clear-button {
                    display: none;
                }
            }*/
}
header .header .topMenuIcon .menuTopWithSubs ul {
  margin: 0;
  padding: 0;
}
header .header .topMenuIcon .menuTopWithSubs ul li {
  padding: 0 9px;
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
}
header .header .topMenuIcon .menuTopWithSubs ul li:not(:last-child) {
  border-right: 1px solid black;
}
header .header .topMenuIcon .menuTopWithSubs ul li a {
  text-decoration: none;
}
header .header .topMenuIcon .menuTopWithSubs ul li a img {
  width: 20px;
}
header .header .topMenuIcon .menuTopWithSubs ul li a,
header .header .topMenuIcon .menuTopWithSubs ul li span {
  cursor: pointer;
}
#smallTopMenu {
  width: 100%;
  font-size: 2em;
  background-color: white;
  padding: 12px 0;
  border-bottom: 1px solid #000;
}
#smallTopMenu #otherFunctions {
  text-align: right;
  padding-right: 10px;
}
#smallTopMenu #otherFunctions > div {
  display: inline-block;
  margin: 0 5px;
}
/*-------------------------------*/
/*          Expanded menù        */
/*-------------------------------*/
#menuRowContainer {
  margin-bottom: 6px;
  box-shadow: 0px 6px 0px black;
}
#menuExpanded > div:first-child {
  box-shadow: 15px 6px 0px black;
}
#menuExpanded .row-ss {
  /*display: flex;
        flex-flow: row nowrap;
        -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        align-items: center;
        justify-content: space-around;*/
}
#menuExpanded .row-ss .coll {
  /*padding: 5px 0;

            &:last-of-type {
                padding: 5px 0 11px 5px;
            }

            &:first-of-type {
                padding: 5px 5px 20px 0;
            }*/
}
#menuExpanded .row-ss.logoHeader {
  display: none;
}
#menuExpanded .row-ss.logoHeader .coll {
  padding: 5px 0;
}
#menuExpanded .row-ss.logoHeader .coll:last-of-type {
  padding: 10px 25px 0px 5px;
}
#menuExpanded .row-ss.logoHeader .coll:first-of-type {
  padding: 5px 5px 5px 25px;
}
.menuTop {
  font-size: 0.97em;
  text-transform: uppercase;
  font-weight: bold;
}
.menuTop .glyphicon-triangle-right {
  color: #e3001b;
}
.menuTop .hamburger-menu {
  max-height: 0.5em;
}
.menuTop .inline-list {
  padding: 0;
  margin: 0;
}
.menuTop .inline-list li {
  white-space: nowrap;
  display: inline-block;
  cursor: pointer;
  font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
}
.menuTop .inline-list li span {
  margin-right: 0.5em;
  font-size: 0.7em;
}
.menuTop .inline-list li:hover {
  background-color: #D2D2D4;
}
.menuTop .inline-list li a {
  text-decoration: none;
  color: inherit;
}
.subMenuTop {
  position: absolute;
  z-index: 20;
  /*background-color: #FFF; background-image: url(/Img/Menu/BgSubmenu.png); background-repeat: repeat-x; background-position: bottom;*/
  border: 1px solid #d3d3d3;
  /*padding: 25px 0;*/
  padding: 10px 0;
  background: #d1d2d4;
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(#d1d2d4, white);
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#d1d2d4, white);
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#d1d2d4, white);
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(#d1d2d4, white);
  /* Standard syntax (must be last) */
  text-transform: uppercase;
}
.subMenuTop button {
  background-color: #FFF;
  border: 0;
}
.subMenuTop ul {
  margin: 0;
  padding: 0 15px;
  list-style-image: url(/Img/Menu/Minus.png);
}
.subMenuTop ul > li {
  margin: 3px 0;
  font-size: 1.2em;
}
.subMenuTop a {
  text-decoration: none;
}
.subMenuTop a:hover {
  text-decoration: underline;
}
.subMenuTop .colonna {
  /*float:left;*/
  border-right: 1px solid #CCC;
  padding: 0 24px 17px 24px;
  font-size: 11px;
  display: table-cell;
  vertical-align: top;
  text-align: left;
}
.subMenuTop .colonna:last-child {
  border: 0;
}
.subMenuTop .colonna a {
  color: #666;
}
.subMenuTop .colonna .titoloColonna {
  line-height: 17px;
  font-family: RobotoCondensed;
  display: block;
  color: #00519c;
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 17px;
}
.subMenuTop .colonna .titoloColonna a {
  color: #00519c;
}
.subMenuTop .colonna > a:before {
  content: "- ";
}
.subMenuTop .colonna .subMenuSectionHeader {
  display: flex;
  width: 100%;
}
.subMenuTop .colonna .subMenuSectionHeader:first-child {
  margin-top: 0;
}
.subMenuTop .colonna .subMenuSectionHeader:not(:first-child) {
  margin-top: 10px;
}
.subMenuTop .colonna .subMenuSectionHeader span {
  flex: 1;
  align-self: center;
}
.subMenuTop .colonna .subMenuSectionHeader a:hover {
  text-decoration: none;
}
.subMenuTop .colonna .subMenuSectionHeader img {
  max-height: 60px;
}
.subMenuTop .colonna table {
  width: 100%;
}
.subMenuTop .colonna table.twoColomns td {
  width: 50%;
}
.subMenuTop .colonna table.twoColomns td a {
  display: block;
  width: 100%;
}
.colonna .tc {
  text-align: center;
}
#subMenu0 {
  min-width: 250px;
}
#subMenu0 .colonna {
  min-height: 180px;
}
#subMenu0 input[type="text"],
#subMenu0 #subMenu0 input[type="password"] {
  font-size: 11px;
  color: #666;
  width: 185px;
}
#subMenu0 #formLogin .titoloColonna {
  margin-top: 0;
  margin-bottom: 5px;
}
#subMenu0 #formLogin img {
  vertical-align: bottom;
  cursor: pointer;
}
#subMenu0 #submitLogin {
  display: none;
}
#subMenu0 hr {
  margin: 20px 0;
}
#subMenu1 .colonna {
  width: 270px;
}
/*200*/
#subMenu2 {
  /*190*/
}
#subMenu2 .colonna {
  width: 275px;
}
#subMenu2 .colonna table {
  width: 100%;
}
#subMenu2 .colonna table img {
  max-height: 80px;
  max-width: 100px;
}
#subMenu2 .colonna.elencoMandati ul {
  list-style: none;
  padding: 4px 0;
}
#subMenu2 .colonna.elencoMandati .imgContainer {
  display: block;
  float: left;
}
#subMenu2 .colonna.elencoMandati .imgContainer img {
  width: 10px;
  height: 10px;
}
#subMenu2 .colonna.elencoMandati .testoContainer {
  width: 170px;
  float: left;
  margin-left: 6px;
  margin-bottom: 5px;
}
#subMenu2 .MenuProdotti_Nazione_Container {
  clear: both;
  margin-top: 0;
}
#subMenu2 .MenuProdotti_Nazione_Container label {
  display: block;
  font-size: 12px;
  color: #00519c;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}
#subMenu2 .MenuProdotti_Nazione_Container select {
  font-size: 11px;
}
#subMenu2 #formRicProd {
  margin: 0;
  height: 110px;
}
#subMenu2 #cercaProd {
  font-size: 11px;
  color: #666;
  width: 185px;
}
#subMenu2 #formRicProd img {
  vertical-align: bottom;
  cursor: pointer;
}
#subMenu2 #submitRicProd {
  display: none;
}
#subMenu2 .imgProdotti {
  height: 82px;
}
#subMenu3 {
  /*185px*/
  /*185px*/
}
#subMenu3 .colonna {
  width: 275px;
}
#subMenu3 .colonna img {
  height: 60px;
}
#subMenu5 .colonna {
  width: 300px;
}
#subMenu5 .colonna img {
  max-width: 185px;
}
#subMenu5 .applicazioni li {
  margin: 0;
}
#subMenu5 #formRicProj {
  margin: 0;
  margin-bottom: 10px;
}
#subMenu5 #cercaProj {
  font-size: 11px;
  color: #666;
  margin-top: 9px;
  width: 100%;
  border: none;
  height: 14px;
  text-align: center;
}
#subMenu5 #submitRicProj {
  display: none;
}
#subMenu5 .cercaProj {
  margin-top: 15px;
}
#subMenu5 .cercaProj form {
  display: flex;
  width: 100%;
  padding: 8px 0;
}
#subMenu5 .cercaProj img {
  width: 30px !important;
  height: 30px;
  cursor: pointer;
  padding-left: 0;
  padding-right: 0;
  margin-left: 19px;
}
#subMenu5 .cercaProjCont {
  flex: 1;
}
#subMenu6 {
  /*.colonna ul > li {
        margin: 3px 0;
        display: inline-table;
    }*/
}
#subMenu6 .colonna {
  width: 250px;
}
#subMenu6 .noMarginBottom {
  margin-bottom: 0;
}
#subMenu6 img {
  width: 116px;
}
#subMenu6 .MenuCountry {
  /*ul {
            list-style: none;
            padding: 0;
            margin: 0;
            padding-left: 5px;
        }*/
}
#subMenu6 .MenuCountry h3 {
  font-family: "Arial Narrow", Arial !important;
  font-stretch: condensed !important;
  font-size: 22px;
  color: #00519c;
  font-weight: lighter;
  margin: 15px 0;
  height: 50px;
}
#subMenu6 .MenuCountry h3 strong {
  font-size: 26px;
  color: #00519c;
  font-weight: lighter;
  margin: 15px 0;
}
#subMenu6 .MenuCountry li {
  padding: 16px 0;
  font-size: 14px;
  height: 42px;
}
#subMenu6 .MenuCountry li:first-child {
  border-bottom: 1px solid #CCC;
}
#subMenu6 .MenuCountry li span {
  height: 42px;
  display: table-cell;
  vertical-align: middle;
  font-size: 12px;
  padding-left: 5px;
}
#subMenu6 .MenuCountry a {
  text-decoration: none;
  color: #666;
}
#subMenu6 .MenuCountry img {
  margin-right: 12px;
  float: left;
  height: 40px;
  width: 40px;
}
#subMenu6 .SelezioneNazione_WW_Container {
  clear: both;
  margin-top: 0;
}
#subMenu6 .SelezioneNazione_WW_Container label {
  display: block;
  font-size: 12px;
  color: #00519c;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}
#subMenu6 select {
  font-size: 11px;
  width: 80%;
  margin: 10px 0;
}
#subMenu7 .tx-wLogo {
  height: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
}
#subMenu100 {
  font-size: 11px;
  padding: 0 0 0 1px !important;
  background-image: none;
  border: 0;
  background-color: #eeeef0;
}
#subMenu100 img {
  vertical-align: middle;
  margin-right: 4px;
}
#subMenu100 a {
  display: block;
  font-weight: bold;
  margin: 5px 0;
  color: #000;
}
/*-------------------------------*/
/*          drop down menù       */
/*-------------------------------*/
body #secondaryMenuDropdown {
  margin-bottom: 1.5em;
}
body #cssmenu {
  background-color: #eeeef0;
}
body #cssmenu,
body #cssmenu ul,
body #cssmenu ul li,
body #cssmenu ul li a,
body #cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body #cssmenu:after,
body #cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
body #cssmenu #menu-button {
  display: none;
  background-color: #0c4a7b;
}
body #cssmenu > ul > li {
  float: left;
}
body #cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}
body #cssmenu.align-center ul ul {
  text-align: left;
}
body #cssmenu > ul > li > a {
  padding: 17px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  color: black;
  text-transform: uppercase;
}
body #cssmenu > ul > li:hover > a {
  color: #808080;
}
body #cssmenu > ul > li.has-sub > a {
  padding-right: 30px;
}
body #cssmenu > ul > li.has-sub > a:after {
  position: absolute;
  top: 22px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #dddddd;
  content: '';
}
body #cssmenu > ul > li.has-sub > a:before {
  position: absolute;
  top: 19px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #dddddd;
  content: '';
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
body #cssmenu > ul > li.has-sub:hover > a:before {
  top: 23px;
  height: 0;
}
body #cssmenu ul ul {
  position: absolute;
  left: -9999px;
}
body #cssmenu li:hover > ul {
  left: auto;
}
body #cssmenu #cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}
body #cssmenu.align-right > ul > li {
  float: right;
}
body #cssmenu.align-right ul ul {
  text-align: right;
}
body #cssmenu ul ul li {
  height: 0;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
body #cssmenu.align-right li:hover > ul {
  left: auto;
  right: 0;
}
body #cssmenu li:hover > ul > li {
  height: 35px;
}
body #cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
body #cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
body #cssmenu ul ul li a {
  border-bottom: 1px solid rgba(150, 150, 150, 0.15);
  padding: 11px 15px;
  width: 170px;
  font-size: 12px;
  text-decoration: none;
  color: #dddddd;
  font-weight: 400;
  background: #333333;
}
body #cssmenu ul ul li:last-child > a,
body #cssmenu ul ul li.last-item > a {
  border-bottom: 0;
}
body #cssmenu ul ul li:hover > a,
body #cssmenu ul ul li a:hover {
  color: #ffffff;
}
body #cssmenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #dddddd;
  content: '';
}
body #cssmenu.align-right ul ul li.has-sub > a:after {
  right: auto;
  left: 11px;
}
body #cssmenu ul ul li.has-sub > a:before {
  position: absolute;
  top: 13px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #dddddd;
  content: '';
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
body #cssmenu.align-right ul ul li.has-sub > a:before {
  right: auto;
  left: 14px;
}
body #cssmenu ul ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}
body #cssmenu.small-screen {
  width: 100%;
}
body #cssmenu.small-screen ul {
  width: 100%;
  display: none;
}
body #cssmenu.small-screen.align-center > ul {
  text-align: left;
}
body #cssmenu.small-screen ul li {
  width: 100%;
  border-top: 1px solid rgba(120, 120, 120, 0.2);
}
body #cssmenu.small-screen ul ul li,
body #cssmenu.small-screen li:hover > ul > li {
  height: auto;
}
body #cssmenu.small-screen ul li a,
body #cssmenu.small-screen ul ul li a {
  width: 100%;
  border-bottom: 0;
}
body #cssmenu.small-screen > ul > li {
  float: none;
}
body #cssmenu.small-screen ul ul li a {
  padding-left: 25px;
  color: black;
  background: none;
}
body #cssmenu.small-screen ul ul ul li a {
  padding-left: 35px;
}
body #cssmenu.small-screen ul ul li:hover > a,
body #cssmenu.small-screen ul ul li.active > a {
  color: #808080;
}
body #cssmenu.small-screen ul ul,
body #cssmenu.small-screen ul ul ul,
body #cssmenu.small-screen.align-right ul ul {
  position: relative;
  left: 0;
  width: 100%;
  margin: 0;
  text-align: left;
}
body #cssmenu.small-screen > ul > li.has-sub > a:after,
body #cssmenu.small-screen > ul > li.has-sub > a:before,
body #cssmenu.small-screen ul ul > li.has-sub > a:after,
body #cssmenu.small-screen ul ul > li.has-sub > a:before {
  display: none;
}
body #cssmenu.small-screen #menu-button {
  display: block;
  padding: 17px;
  color: #dddddd;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
}
body #cssmenu.small-screen #menu-button:after {
  position: absolute;
  top: 21px;
  right: 17px;
  display: block;
  height: 7px;
  width: 20px;
  border-top: 2px solid #dddddd;
  border-bottom: 2px solid #dddddd;
  content: '';
}
body #cssmenu.small-screen #menu-button:before {
  position: absolute;
  top: 16px;
  right: 17px;
  display: block;
  height: 2px;
  width: 20px;
  background: #dddddd;
  content: '';
}
body #cssmenu.small-screen #menu-button.menu-opened:after {
  top: 23px;
  border: 0;
  height: 2px;
  width: 15px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
body #cssmenu.small-screen #menu-button.menu-opened:before {
  top: 23px;
  background: #ffffff;
  width: 15px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body #cssmenu.small-screen .submenu-button {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  display: block;
  border-left: 1px solid rgba(120, 120, 120, 0.2);
  height: 46px;
  width: 46px;
  cursor: pointer;
  text-align: center;
  line-height: 44px;
}
body #cssmenu.small-screen ul ul .submenu-button {
  height: 34px;
  width: 34px;
}
body #cssmenu.small-screen .submenu-button:after {
  /*position: absolute;
        top: 22px;
        right: 19px;
        width: 8px;
        height: 2px;
        display: block;
        background: #000000;
        content: '';*/
}
body #cssmenu.small-screen ul ul .submenu-button:after {
  top: 15px;
  right: 13px;
}
body #cssmenu.small-screen .submenu-button.submenu-opened:after {
  background: #ffffff;
}
body #cssmenu.small-screen .submenu-button:before {
  /*position: absolute;
        top: 19px;
        right: 22px;
        display: block;
        width: 2px;
        height: 8px;
        background: #000000;
        content: '';*/
}
body #cssmenu.small-screen ul ul .submenu-button:before {
  top: 12px;
  right: 16px;
}
body #cssmenu.small-screen.select-list {
  padding: 5px;
}
.hamburger {
  z-index: 1001;
  cursor: pointer;
}
.hamburger.is-closed {
  color: black;
}
.hamburger.is-open {
  color: black;
}
/* MEDIA QUERY */
/*@media screen and (min-width: 301px) {
    body {
        #smallTopMenu {

            #otherFunctions {
                > div {
                    margin: 5px 0;
                }
            }
        }
    }
}*/
@media screen and (max-width: 382px) {
  #smallTopMenu #otherFunctions > div {
    margin: 0;
  }
  #smallTopMenu #otherFunctions #userAreaButton {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 767px) {
  header {
    margin-bottom: 110px;
  }
}
@media screen and (max-width: 330px) {
  .hamburger-animated {
    top: 10px;
  }
  #smallTopMenu #otherFunctions {
    padding-top: 15px;
  }
  #smallTopMenu #logoCV img {
    width: 160px;
  }
  header {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 331px) and (max-width: 480px) {
  .hamburger-animated {
    top: 15px;
  }
  #smallTopMenu #otherFunctions {
    padding-top: 20px;
  }
  #smallTopMenu #logoCV img {
    width: 150px;
  }
  header {
    margin-bottom: 90px;
  }
}
@media screen and (min-width: 481px) {
  .hamburger-animated {
    top: 20px;
  }
  #smallTopMenu #otherFunctions {
    padding-top: 30px;
  }
  #smallTopMenu #logoCV img {
    width: 180px;
  }
}
/*AGGIUNTE*/
#menuRowContainer .gsearch {
  width: 100%;
  display: inline-block;
  min-height: 23px;
  padding-top: 0;
  transform: skew(30deg);
}
#menuRowContainer .gsc-search-button {
  display: none;
}
#menuRowContainer .gsc-clear-button {
  display: none;
}
#menuRowContainer td.gsc-input {
  border: 0 !important;
}
#menuRowContainer td.gsc-input .gsc-input-box {
  border: 0 !important;
}
#menuRowContainer input.gsc-input {
  border: 0 !important;
}
#menuRowContainer .gsc-control-searchbox-only {
  padding-top: 2px;
  margin-left: 10px;
}
#menuRowContainer #searchAndLang {
  width: 19%;
  position: absolute;
  top: 11.5em;
  right: 14px;
}
#menuRowContainer #googleSearch_box {
  float: left;
  width: 70%;
}
#menuRowContainer .currentLang {
  font-weight: bold;
}
#menuRowContainer .otherLang {
  color: #bbb;
}
#menuRowContainer .otherLang .glyphicon-triangle-right {
  color: #fff !important;
}
#menuRowContainer #changeLanguage_box {
  float: right;
}
#menuRowContainer #changeLanguage_box .ul-menu li {
  font-size: 0.8em;
  margin-bottom: 0em !important;
}
.loghiDim {
  padding-left: 0;
  padding-right: 0;
  display: flex;
  width: 53%;
  float: left;
  margin-left: 13%;
}
.paralMenu {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: 60px;
  padding-right: 10% !important;
  padding-left: 1% !important;
}
.subsTop {
  position: absolute;
  border: 1px solid #d3d3d3;
  padding: 10px 0;
  text-transform: uppercase;
  z-index: 20;
  background: #fff;
  display: none;
}
.subsTop button {
  background-color: #FFF;
  border: 0;
}
.subsTop ul {
  margin: 0;
  padding: 0 15px;
}
.subsTop ul > li {
  margin: 3px 0;
  font-size: 1em;
  display: block !important;
  border-right: 0 !important;
  border-bottom: #d3d3d3;
}
.subsTop ul > li:before {
  content: "- ";
}
.subsTop .colonna a {
  color: #666;
}
.subsTop .colonna .titoloColonna {
  line-height: 17px;
  font-family: RobotoCondensed;
  display: block;
  color: #00519c;
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 17px;
}
#subTop2 {
  right: 17em;
  width: 165px;
  text-align: left;
}
#subTop3 {
  right: 2.7em;
  width: 175px;
  text-align: left;
}
.logoText {
  padding-top: 3%;
  display: flex;
  padding-left: 1em;
  float: left;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
  width: 55%;
}