/* ==========================================================================
   STILI GENERICI
   ========================================================================== */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

textarea {
  resize: vertical;
}

/*questo sotto non somma il padding*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

/* ==========================================================================
     STILI SITO
     ========================================================================== */
* {
  margin: 0;
  padding: 0;
}

:root {
  --principale: #d9b006;
  --secondario: #0ba13b;
  --terziario: #c39e05;
  --error: #ff0000;
  --bianco: #ffffff;
  --nero: #000000;
  --grigio: #7d7d7d;
  --divisori: #d8d8d8;
  --sfondoFasce: #f2f2f2;
  --risultatoBox: #f7f7f7;
}
/*jacopo*/
.green {
  color: var(--secondario);
}
.giallo {
  color: #FF0;
}

.blu {
  color: #2C75B8;
}

.beige {
  color: #D4AF29;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #FFF;
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
}

.wrapper {
  width: 94%;
  margin: 0 3%;
}

.wrapperNO {
  width: 100%;
  margin: 0%;
}

a {
  color: var(--secondario);
}


a.pulsante,
.pulsante {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px 20px;
  background-color: var(--secondario);
  color: var(--bianco);
  text-decoration: none;
  display: inline-block;
  margin: 10px 0;
  width: auto;
  border: solid 1px var(--secondario);

}

a.pulsante-bordo,
.pulsante-bordo {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px 20px;
  color: var(--secondario);
  border: solid 1px var(--secondario);
  text-decoration: none;
  display: inline-block;
  margin: 10px 0;
  width: auto;

}

input.pulsantiModBlack,
a.pulsantiModBlack {
  background-color: var(--nero);
}

a.pulsanteDownload {
  background-color: #aaa;
  border: solid 1px #aaa;
}

a.pulsanteBlack,
.pulsanteBlack {
  background-color: var(--nero);
}

.back {
  display: inline-block;
  color: var(--secondario);
  background-image: url(/images/icon/back.png);
  background-repeat: no-repeat;
  background-position: left 5px;
  padding-left: 15px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
}

hr {
  border: dashed 0px;
  height: 1px;
  color: var(--divisori);
  background-color: var(--divisori);
  width: 100%;
  margin-bottom: 30px;
  margin-top: 30px;
}
figure {
  width: 100%;
}
figcaption {
  color: var(--grigio);
  font-style: italic;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}
img {
  width: auto;
  max-width: 100%;
  height: auto;
}

p {
  margin: 0.5em 0;
}

h1 {
  font-size: 27px;
  line-height: 31px;
  font-weight: 700;
}

h2 {
  font-size: 34px;
  line-height: 38px;
  font-weight: 400;
  margin-bottom: 20px;
}

h3 {
  font-size: 28px;
  line-height: 30px;
  font-weight: 400;
}
h4 {
  text-align: center;
  font-size: 24px;
  line-height: normal;
}

kbd {
  color: #fff;
  background: #000;
  font: 18px Courier;
  padding: 0 4px;
}

/*MOSTRA NASCONDI*/
.hide-mobile {
  display: none !important;
}

.show-mobile {
  display: inline-block;

}

/*STILI RIUTILIZZABILI*/
.main {
  padding: 50px 0;

}

.main ul, .main ol {
  padding-left: 22px;
}

.mini {
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  font-weight: 100;
  font-style: italic;
}

/*testo due colonne*/
.colonneDue,
.colonneTre {
  column-count: 1;
  column-gap: 40px;
}

.testo-centrale {
  text-align: center;
}

/*figure*/
figure.cinquanta-desk img {
  width: 100%;
}

figure.cinquanta-mobile {
  text-align: center;
  margin-bottom: 20px;
}

figure.cinquanta-mobile img {
  width: 50%;
}

.bordo {
  border: solid 1px var(--divisori);
}

/*padding*/
.p40 {
  padding: 40px;
}
.p40-0 {
  padding: 40px 0;
}

/*SCARICARE*/
.scaricaPDF {
  margin-top: 10px;
  background-image: url(/images/ico-download.png);
  background-repeat: no-repeat;
  background-position: left top;
  display: inline-block;
  padding: 0 20px 20px 40px;
  text-decoration: none;
  color: #000;
  text-align: left;
}

/*EVIDENZA*/
.evidence {
  padding: 10px 20px;
  border: solid 1px var(--principale);
  line-height: normal;
  font-size: 16px;
  margin: 20px 0px;
  color: var(--principale);
  font-weight: 700;
  text-align: center;
}

/*FILTRI SULLA DESTRA*/
.ordina {
  text-align: left;

}

.ordina select {
  width: auto;
}

/*FLEX per pagine interne*/
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-NOwrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.flex-align-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}


.flex20,
.flex30,
.flex40,
.flex50,
.flex60,
.flex70,
.flex80 {
  width: 100%;
}
.flex20{
  margin-bottom: 30px;}
.flex50:first-child {
    margin-bottom: 40px;
}
.noBox {
  display: none;
  background-color: transparent !important;
}

.data {
  font-weight: 300;
  font-size: 16px;
  font-style: italic;
  margin-top: 10px;
}

/*SFONDI o BOX*/
.sfondoFasce {
  background-color: var(--sfondoFasce);
}

.sfondoFasceBG {
  background: url(/images/sfondi/fasce-.png )no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}

.box-bordato {
  border: solid 1px var(--divisori);
  padding: 40px;
}

/* TO TOP */
#toTop {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 15px;
  right: 10px;
  background: url(/images/freccia-top.png)no-repeat;
  z-index: 100;
  display: none;
}

/*TITOLETTI*/
/*pagine pubbliche*/
.titoletto {
  background: url(/images/titoletti-bg.jpg) no-repeat;
  background-attachment: scroll;
  background-size: cover;
  min-height: 60px;
  position: relative;
  overflow: hidden;
}

.titoletto h1 {
  color: var(--bianco);
  position: absolute;
  bottom: -10px;
}

/*area riservata*/
.titolettoAR {
  background-color: var(--nero);
  overflow: hidden;
}

.titolettoAR .wrapper {
  position: relative;
  min-height: 100px;
}

.titolettoAR h1 {
  color: var(--bianco);
  position: absolute;
  bottom: -9px;
  line-height: 45px;
}

.titolettoAR h1 span {
  font-weight: 300;
  font-size: 25px;
  line-height: 45px;
}

.titolettoAR a {
  color: var(--secondario);
  position: absolute;
  bottom: 0px;
  right: 0;
}

/*ELENCO*/
ul.elenco li a {
  color: var(--nero);
}

ul.elenco li a:hover {
  text-decoration: underline;
  color: var(--secondario);
}

/* VIDEO YT */
.rwd-video {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.rwd-video iframe,
.rwd-video object,
.rwd-video embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.g-ytsubscribeCont {
  display: table;
  margin: auto;
  border: solid 1px #DDD;
  padding: 10px 10px 5px 10px;
  border-radius: 5px;
}

/* VIDEO RESPONSIVE */
.videoWrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 */
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videoWrapper43 {
  position: relative;
  padding-top: 25px;
  height: 0;
  padding-bottom: 75%;
  /* 4:3 */
}

.videoWrapper43 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* VIDEO MP4*/
video {
  width: 100% !important;
  height: auto !important;
  border: solid 1px #DDD;
  padding: 10px;
}

/*CONSENSO COOKIE VIDEO*/
.cookieVideo {
  text-align: center;
  color: #000;
  border: dashed 1px #CCC;
  padding: 10px;
}

/*FORM
----------------------------------------------------------------------------------eli*/
input,
select,
textarea {
  font-size: 18px;
  line-height: 20px;
  padding: 10px;
  width: 100%;
  background-color: var(--bianco);
  border: solid 1px var(--divisori);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}
button {
  font-size: 18px;
  line-height: 20px;
  padding: 10px;
  background-color: var(--bianco);
  border: solid 1px var(--divisori);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

form.modulo button {
  width: auto;
  margin-bottom: inherit;
  background-color: var(--secondario);
  color: var(--bianco);
  border: 0px;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

/*ASIDE AREA RISERVATA
----------------------------------------------------------------------------------eli*/
#AreaRiservata {
  width: 100%;
}
#AreaRiservata .scaricaPDF{
  width: 100%;
}

aside {
  width: 100%;
  margin-left: 0;
  padding: 40px;
}

aside button {
  border: none;
  background-color: transparent;
  text-align: left;
  padding: 0;
  margin: 40px 0 0 0;
  color: var(--secondario);
  text-decoration: underline;
}

aside div.ssm a {
  line-height: normal;
  text-decoration: none;
  display: block;
  padding: 5px;
  border-bottom: solid 1px #DDD;
  color: var(--nero);
  font-size: 17px;
}

aside div.ssm a:hover {
  color: var(--bianco);
  background-color: var(--secondario);
}

aside div.ssm a.ssm_on {
  color: var(--bianco);
  background-color: var(--secondario);
}

aside nav ul {
  list-style-type: circle;
  margin-left: 10px;
}

aside nav ul li a {
  line-height: 18px;
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 3px;
  border-bottom: solid 1px #DDD;
  color: var(--nero);

}

aside nav ul li:last-child {
  margin-bottom: 30px;
}

aside nav ul li a:hover {
  color: var(--secondario);
}

aside nav ul li a.ssmm_on {
  color: var(--secondario);
}

aside a.logout {
  margin-top: 30px;
  display: inline-block;
  font-size: 17px;
}

/*BANNER
----------------------------------------------------------------------------------eli*/
#banner {
  background: url(/images/banner-bg.jpg)no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 50px 0;

}

.banner {
  flex-direction: row;
  width: 100%;
  flex-wrap: nowrap;
}

.banner_big {
  flex: 0 1 100%;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}

.banner div:first-child {
  margin-bottom: 10px;
}

.banner_big div:first-child {
  margin-right: 5px;
}

.banner div:first-child {
  margin-right: 5px;
}


/*FOCUS delle pagine principali (FOTO + DESCRIZIONE: sono le fasce che troviamo in home e nelle pagine interne)
----------------------------------------------------------------------------------eli*/
.focus.flex {
  align-items: stretch;
  min-height: 400px;
}

.focus.flex figure {
  background-size: cover;
  background-position: center right;
  width: 30%;
  border-bottom: solid 1px var(--bianco);

}

.focus.flex div.descrizione {
  width: 70%;
  background-color: var(--sfondoFasce);
  padding: 80px 2.5%;
  border-bottom: solid 1px var(--bianco);
}

.focus h2 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  color: var(--nero);
}

.focus p {
  margin-bottom: 30px;
}

/*FASCIA PAGINE INTERNE TOP VERDE 
----------------------------------------------------------------------------------eli*/
.fasciaTop {
  background-color: var(--secondario);
  padding: 5px 0;
  text-align: right;
  color: var(--bianco);
}

.fasciaTop a {
  color: var(--bianco);
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  margin-left: 15px;
}

/*SALONI TEMATICI FASCIA
----------------------------------------------------------------------------------eli*/
#saloni a {
  width: 20%;
  border-right: solid 1px var(--bianco);
}
#saloni h2{
  text-transform: uppercase;
}

#saloni .EIMAgreen {
  background: url(/images/saloni/salone-giardinaggio.jpg)no-repeat;
  background-size: cover;
  background-position: top center;
}

#saloni .EIMAcomponenti {
  background: url(/images/saloni/salone-componenstistica.jpg)no-repeat;
  background-size: cover;
  background-position: top center;
}

#saloni .EIMAenergy {
  background: url(/images/saloni/salone-fonti-agroforestali.jpg)no-repeat;
  background-size: cover;
  background-position: top center;
}

#saloni .EIMAidrotech {
  background: url(/images/saloni/salone-irrigazione.jpg)no-repeat;
  background-size: cover;
  background-position: top center;
}

#saloni .EIMAdigital {
  background: url(/images/saloni/salone-tecnologie-elettroniche.jpg)no-repeat;
  background-size: cover;
  background-position: top center;
}

#saloni figure {
  width: 80%;
  margin: 40px 10%;
}

#saloni a {
  text-decoration: none;
  text-align: center;
}

#saloni a h2 {
  color: var(--bianco);
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  width: 100%;
  padding: 15px;
}

#saloni img {
  border-radius: 100px;
}

#saloni .EIMAgreen h2 {
  background-color: #0ba13b;
}

#saloni .EIMAcomponenti h2 {
  background-color: #f4962b;
}

#saloni .EIMAenergy h2 {
  background-color: #bb940c;
}

#saloni .EIMAidrotech h2 {
  background-color: #15a2dd;
}

#saloni .EIMAdigital h2 {
  background-color: #1b6e6e;
}

/* ===============================PAGINE INTERNE==================================== */
/*SALONI TEMATICI PAGINA
----------------------------------------------------------------------------------eli*/

.saloni-tematici {
  border-top: solid 1px var(--divisori);
  padding: 20px 0;
  margin-top: 10px;
  text-align: center;
}
.saloni-tematici:nth-child(2) {
  border-top: none;
  padding-top: 0;
}

.saloni-tematici h3 {
  text-align: center;
}

.saloni-tematici figure {
  width: 100%;
  display: none;
}

.saloni-tematici img {
  max-width: 165px;
}
.saloni-tematici figure img {
  max-width: 100%;
}

.saloni-tematici div {
  width: 100%;
}


/*MAPPA PADIGLIONI
----------------------------------------------------------------------------------eli*/
#mappa-padiglioni .flex-align-center {
  margin-bottom: 50px;
}

/*ORARI
----------------------------------------------------------------------------------eli*/
#orari .flex50:nth-child(1) {
  margin-bottom: 40px;
}

/*DATI STATISTICI
----------------------------------------------------------------------------------eli*/
.dati-statistici ul {
  list-style-type: none;
  padding-left: 0;
}
/*AREE FOCUS
----------------------------------------------------------------------------------eli*/
#aree-focus .flex50 {
  padding: 40px 0;
}

#aree-focus .flex50:nth-child(1) {
  border-bottom: solid 1px var(--divisori);
}

#aree-focus figure,
#aree-focus div {
  text-align: center;
}

#aree-focus figure img {
  max-width: 150px;
}


/*EIMA DESK EVENTO SPECIFICO
----------------------------------------------------------------------------------eli*/
#eima-desck-evento figure img {
 max-width: 300px;
  margin-bottom: 10px;
}

#eima-desck-evento .box-bordato {
  margin-top: 40px;
}

#eima-desck-evento .flex20 {
  width: 100%;
}

#eima-desck-evento .flex50 {
  width: 100%;
}
/*PHOTOGALLERY
----------------------------------------------------------------------------------eli*/
#photogallery .flex80 {
  margin-bottom:30px;
}
#photogallery .flex20 {
  margin-bottom:0;
}
/*VIRTUAL TOUR
----------------------------------------------------------------------------------eli*/
a.linkMeet,
a.linkMeet strong {
  color: #000;
  text-decoration: none;
}
/*PRIMO PIANO
----------------------------------------------------------------------------------eli*/
.primopianoBox {
  width: 100%;
  margin-bottom: 50px;
}

.primopianoBox:hover figure {
  border-top: solid 10px var(--secondario);
}

.primopianoBox h2 {
  font-size: 25px;
  line-height: 27px;
  margin-bottom: 0;
}

a.primopianoBox {
  text-decoration: none;
  color: var(--nero);
}

.primopianoBox figure {
  overflow: hidden;
  border-radius: 10px;
  height: 200px;
}

/*DETTAGLIO*/
#primopianoDet .foto {
  flex: 1 0 100%;
  margin-right: 0;

}

#primopianoDet .testo {
  flex: 1 0 100%;

}
/*LA MIA LISTA ESPOSITORI
----------------------------------------------------------------------------------eli*/

#lamiaLista .flex:nth-child(odd) {
  margin-top: 40px;
}

#lamiaLista .lista {
  margin-bottom: 10px;
  flex: 0 1 100%;
  padding: 20px 0;
  border-bottom: solid 1px var(--divisori);
}

#lamiaLista .lista h2 {
  font-size: 25px;
  line-height: 27px;
  margin-bottom: 0;

}


/*CATALOGO ESPOSITORI
----------------------------------------------------------------------------------eli*/
form.ricercaLibera .pulsante {
  margin: 0;
}

form.ricercaAvanzata span.select2 {
  margin-bottom: 20px;
}

.select2-container .select2-selection--single {
  padding: 5px;
  height: auto;
  min-height: 35px;
}

.select2-selection__choice__remove,
.select2-selection__clear {
  width: auto;
  padding: 4px 0 0 0;
}

/*risultato*/

.risultato-criteri .trovati {
  font-size: 18px;
  font-weight: 700;
}

.risultato-criteri {
  font-size: 16px;
  font-weight: 100;
}

.risultato-criteri em {
  font-weight: 300;
  font-style: normal;
  margin-left: 15px;
}

.risultato-criteri strong {
  font-weight: 500;
  padding-right: 15px;
  border-right: solid 1px var(--divisori);
}

.risultato-Box {
  margin: 20px 0;
  padding: 18px;
  text-align: left;
  position: relative;
  background-color: var(--risultatoBox);
  width: 100%;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.risultato-Box .flex {
  flex-wrap: nowrap;
}

.pref-ico {
  background: url(/images/icon/scheda-preferitiOff.png) no-repeat;
}

.pref-ico:hover {
  background: url(/images/icon/scheda-preferitiHover.png) no-repeat;
}

.pref-ico-on {
  background: url(/images/icon/scheda-preferitiON.png) no-repeat;
}

.risPreferiti {
  display: block;
  width: 100%;
  margin-top: -30px;
}

.risPreferiti a {
  float: right;
  width: 24px;
  height: 22px;
}

.ListaPreferiti {
  border: solid 1px var(--principale);
  padding: 5px 10px 5px 10px;
}

.ListaPreferiti a {
  color: var(--nero);
  text-decoration: none;
  padding-left: 30px;
}


.risultato-Box h2 {
  margin: 0 0 5px 0;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;

}

.risultato-Box h2 a {
  color: var(--nero);
  text-decoration: none;
}

.risultato-Box .flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.ricAzienda {
  flex: 0 1 auto;
  margin-right: 10px;
  min-width: 80%;
  flex-direction: column;

}

.ricLogo {
  border: solid 1px var(--divisori);
  border-radius: 8px;
  width: 62px;
  height: 62px;
  float: right;
  margin-top: 5px;
  margin-right: -30px;
  background-color: var(--bianco);
  position: relative;
}

.ricLogo img {
  padding: 3px;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.ricStand {
  line-height: normal;
  font-size: 16px;
  font-weight: 300;
  color: var(--grigio);
}

.ricStand strong {
  font-weight: 500;
}

.ricServizi {
  border-top: solid 1px var(--divisori);
  padding-top: 10px;
  margin-top: 10px;

}

.ricServizi a {
  margin-right: 10px;

}

/*SCHEDA ESPOSITORI
----------------------------------------------------------------------------------eli*/
.SEh2 {
  font-weight: 100;
}

#SEespositore {
  padding: 40px 0;
}

#SEespositore h1 {
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
  margin: 15px 0;
}
#SEespositore figure img{
  width: 100%;
}

.SElogo {
	text-align: center;
  margin-top: -10px;
  }

.SElogo a {
  display: inline-block;
  background-color: var(--bianco);
  padding: 10px;
  text-align: center;
  border-radius: 5px;
}
.SElogo a img{
  max-width: 110px;
  max-height: 110px;
}

.SEposizione {
  font-size: 18px;
  font-weight: 400;
  border-left: solid 10px var(--secondario);
  padding: 5px 0 5px 10px;
  width: 100%;

}

.SEposizione a {
  color: var(--nero);
  display: block;
}

.SEposizione .pad-str {
  font-weight: 700;
}

.SEsocial {
  flex: 0 1 60%;
  text-align: left;
}

.SEsocial a {
  margin-left: 20px;
}

#SEespositore .risPreferiti {
  width: auto;
  margin-top: 10px;
  display: table;
}

#SEespositore .risPreferiti a {
  border: solid 1px var(--principale);
  color: var(--nero);
  text-decoration: none;
  padding: 5px 10px 5px 40px;
  margin-left: 0px;
  margin-top: 10px;
  float: none;
  width: auto;
  height: auto;
  background-position: 8px center;
}

.SEmappa {
  flex: 1 0 40%;
  display: none;
  margin-top: -6px;
}


#SEinfo {
  padding: 40px 0;
}

#SEinfo em {
  font-size: 12px;
  color: var(--grigio);
  padding-top: 10px;
}

#SEinfo a {
  font-weight: 400;
  text-decoration: none;
}

#SEinfo strong {
  font-weight: 500;
}

.SEinfoCont {
  flex: 0 1 60%;
}

#SEinfo .SEinfo {
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-bottom: 30px;
}

#SEinfo .SEinfo figure {
  width: auto;
  margin-right: 20px;
}

#SEmappa {
  text-align: center;
  padding: 10px;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.30);
  right: 0;
  margin-right: 10px;
  background-color: var(--bianco);
  margin-top: -113px;


}
.SEmappa img{
  max-height: 150px;
  max-width: 150px;
}

#SEmappa figure {
  text-align: center;
  margin-top: 15px;
}

#SEmappa figure img {
  max-width: 200px;
  max-height: none;
}

#SEmappa a {
  display: block;
}

.SEazienda {
  border-left: solid 10px var(--secondario);
  border-right: solid 1px var(--divisori);
  border-top: solid 1px var(--divisori);
  border-bottom: solid 1px var(--divisori);
  padding: 40px;
  margin: 40px 0;
}

.SEazienda .flex {
  flex-wrap: wrap;
}

.SEazienda .flex h2 {
  flex: 1 0 auto;
  margin-right: 20px;
}

#SEinfo .SEtipologia a {
  font-size: 15px;
  font-weight: 100;
  color: var(--nero);
  text-decoration: underline;
  margin-right: 15px;
}

#SEprodotti .sfondoFasceBG {
  padding: 40px 0;
}

#SEprodotti h2 {
  text-align: center;
}

.SEprodottiBox {
  flex: 0 1 100%;
  background-color: var(--bianco);
  margin-bottom: 25px;
}

a.SEprodottiBox {
  text-decoration: none;
  flex-direction: column;
  border-bottom-left-radius: 20px
}

.SEprodottiBox div {
  width: 100%;

}
#SEprodotti a.SEprodottiBox:hover figure{
  border-left: 15px solid var(--secondario);
}
.SEprodottiBox figure {
  margin: 0;
  overflow: hidden;
  padding-bottom: 0;
  position: relative;
  width: 100%;
}

.SEprodottiBox figure img {
  position: relative;
  width: 100%;
}

.SEprodottiBox h3 {
  font-size: 19px;
  line-height: 22px;
  font-weight: 400;
  padding: 10px 15px;
  color: var(--nero);

}

.SEprodottiBox .dettaglio {
  border-top: solid 1px var(--divisori);
  padding: 10px 0;
  margin: 0 15px;
  width: auto;
}

.SEprodottiBox .dettaglio img {
  float: right;
}

#SEvideo {
  padding: 40px 0;
}

#SEsocialwall {
  padding: 40px 0;
}

#SEsocialwall h2 {
  text-align: center;
}

#SE360 {
  padding: 40px 0;
  text-align: center;
}

/*PRODOTTI ESPOSITORI
----------------------------------------------------------------------------------eli*/
#prodotti-espositori .risultato-Box {
  width: 100%;
  padding: 0;
}

#prodotti-espositori a.risultato-Box {
  color: var(--nero);
  text-decoration: none;
}

#prodotti-espositori a.risultato-Box:hover figure {
  border-left: solid 15px var(--secondario);
}

#prodotti-espositori .risultato-Box .flex {
  padding: 10px 12px;
  /*margin-top: 10px;*/
  border-top: solid 1px var(--divisori);
  align-items: center;

}

#prodotti-espositori .risultato-Box h2 {
  padding: 12px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  margin: 0;
  min-height: 70px;

}

#prodotti-espositori .ricLogo {
  max-width: 50px;
  max-height: 50px;
}

#prodotti-espositori .ricStand {
  min-width: 80%;
  flex: 0 1 auto;
}

#prodotti-espositori .risultato-Box figure {
  margin: 0;
  overflow: hidden;
  padding-bottom: 65%;
  position: relative;
  width: 100%;
  max-height: 150px;
}

#prodotti-espositori .risultato-Box figure img {
  height: auto;
  left: 50%;
  max-width: inherit;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 120%;
}

#prodotti-espositori .risultato-Box .ricLogo {
  margin-top: 0;
}

.risultato-pager {
  width: 100%;
  text-align: center;
}

/*AGENDA ESPOSITORI
----------------------------------------------------------------------------------eli*/
.trash img {
  float: right;
  border-radius: 40px;
  margin-top: -5px;
  width: 31px;
  border: solid 1px var(--secondario);
}

/*SCHEDA PRODOTTI ESPOSITORI
----------------------------------------------------------------------------------eli*/
#SPespositore {
  padding: 20px 0;
}

#SPespositore .flex {
  align-items: flex-end;
}

#SP figure {
  margin-bottom: 20px;
}

#SP a {
  margin-top: 10px;
  display: inline-block;
}

#SPaltri {
  background-color: var(--divisori);

}

#SPaltri h3 {
  font-size: 18px;
  text-align: center;
  font-weight: 300;
}
#SPaltri .flex{
  justify-content: flex-start;
}
#SPaltri .flex a {
  flex: 0 1 48%;
  margin: 0 0.8% 25px 0.8%;

}

#SPaltri .flex a.SPon figure {
  border-left: solid 15px var(--secondario);

}

#SPaltri a.SEprodottiBox {
  color: var(--nero);
  text-decoration: none;
}

#SPaltri .SEprodottiBox {
  padding: 0;
}

#SPaltri .SEprodottiBox h2 {
  padding: 12px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin: 0;

}
#SPaltri .SEprodottiBox .dettaglio{
  color: var(--secondario);
}


#SPaltri figure {
  margin: 0;
  overflow: hidden;
  padding-bottom: 80%;
  position: relative;
  width: 100%;
}

#SPaltri figure img {
  height: auto;
  left: 50%;
  max-width: inherit;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 120%;
}





/*PRECATALOGO
----------------------------------------------------------------------------------eli*/
#precatalogo figure {
  text-align: center;
}

#precatalogo figure img {
  width: 50%;
  margin-bottom: 15px;
}

/*MONDO MACCHINA
----------------------------------------------------------------------------------eli*/
#mondo-macchina figure {
  max-width: 280px;
}

/*ROAD SHOW
----------------------------------------------------------------------------------eli*/
#road .flex20{
  margin-bottom: 0;
}
.road-foto {
  justify-content: flex-start;
}

.road-foto a {
  margin-right: 1%;
  margin-bottom: 8px;
}

.road-foto a img {
  height: auto;
  max-height: 80px;
}

.road-box {
  padding: 0 0 30px 0;
  margin-bottom: 30px;
}

.road-box h2 {
  border-bottom: solid 1px var(--divisori);
  border-left: solid 15px var(--principale);
  padding-left: 20px;

}

.road-box p {
  margin-bottom: 10px;
}

.road-box p {
  font-style: italic;
}

/*COMUNICATI STAMPA
----------------------------------------------------------------------------------eli*/
#comunicati-stampa .comunicati-box {
  width: 100%;
  margin-bottom: 50px;
}

#comunicati-stampa .comunicati-box .data {
  font-weight: 300;
  border-left: solid 18px var(--principale);
  padding-left: 10px;
  font-size: 16px;
  font-style: italic;
}

#comunicati-stampa .comunicati-box h2 {
  font-size: 25px;
  line-height: 27px;
  margin-bottom: 0;
}

/*ARCHIVIO*/
.archivioAnni {
  padding: 0 0 0 10px;
  background-color: var(--sfondoFasce);
  margin-bottom: 30px;
}

.archivioAnni a {
  color: #FFF;
  background-color: var(--secondario);
  text-decoration: none;
  padding: 4px 5px;
}

.archivioAnni .pulsante-bordo {
  float: right;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 5px 10px;
  color: var(--secondario);
  border: solid 1px var(--secondario);
  text-decoration: none;
  display: inline-block;
  margin: -5px 0 0 0;
  background-color: var(--bianco);
}

/*NOVITA TECNICHE
----------------------------------------------------------------------------------eli*/
#novita-tecniche-partecipazione img {
  margin-bottom: 15px;
  max-height: 200px;
}

#novita-tecniche-partecipazione .flex70 {
  margin-bottom: 20px;
}

#novita-tecniche-partecipazione .flex30 {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#novita-tecniche-premiazione {
  text-align: center;
}

#novita-tecniche-premiazione figure img {
  max-width: 50%;
  margin-bottom: 15px;
}

#novita-tecniche-premiazione .flex70 {
  margin-bottom: 40px;
}



/*PER ESPORRE
----------------------------------------------------------------------------------eli*/
#esporre .flex50:nth-child(1) {
  margin-bottom: 50px;
}

/*BIGLIETTERIA
----------------------------------------------------------------------------------eli*/
#biglietteria .flex30 {
  margin-bottom: 40px;
}



/*TABELLA DATI
----------------------------------------------------------------------------------eli*/
table.dati {
  border-collapse: separate;
  overflow-x: auto;
  display: block;
  text-align: left;
}

table.dati th {
  padding: 5px 10px;
  background-color: #bfbfbf;
  color: #FFF;
  vertical-align: top;
  white-space: nowrap;
  border-bottom: 2px solid #FFF;
}

table.dati td {
  padding: 5px 10px;
  border-bottom: 1px solid #FFF;
  vertical-align: top;
  white-space: nowrap;
}

table.dati tr:nth-child(even) {
  background-color: #EEE;
}

table.dati tr:nth-child(odd) {
  background-color: #e1e1e1;
}

table.dati td.tdGiallo {
  text-align: right;
  font-weight: bold;
}

table.dati td.giallo {
  background-color: #f4e7b4;
  border-bottom: solid 1px #333;
  color: #000;
}

table.dati td.giallo a {
  color: #000;
}

table.dati td.sector {
  font-weight: bold;
  white-space: nowrap;
}

table.dati td.sector img {
  width: 25px;
  border-radius: 2px;
  margin-right: 5px;
  border-radius: 25px;
}

/* PRESENTAZIONE
----------------------------------------------------------------------*/
.videoHome {
	border: solid 1px #333;
}
.streamlangHomeCont {
	display: flex;
	justify-content: center;
	align-items: center;
}
.streamlangHomeBox img {
	width: 50px;
	border-radius: 10px;
	margin: 20px 10px 0px 10px;
}
 /* TV 
 -----------------------------------------------------------------------eli*/
.tvCont {
	background-color: var(--bianco);
	padding: 50px 0px;
  text-align: center;
}
.tvCont .flex{
  align-items: center;
}

.tvCont h1 {
	line-height: 36px;
	margin-bottom: 30px;
	font-size: 44px;
}

.tvCont h3 {
	font-size: 22px;
  padding-bottom: 15px;
}


.tvBoxHome {
	position: relative;
	width: 100%;
	display: inline-block;
}

/*PROGRAMMA INCONTRI
----------------------------------------------------------------------------------eli*/
#programma .programma-incontri {
  margin-top: 30px;
}

#programma .programma-incontri h2 span {
  font-size: 20px;
  display: block;
  font-style: italic;
  color: var(--divisori);
}

#programma .programma-incontri .flex70 {
  margin-bottom: 50px;

}
.proBox {
  background-color: #EEE;
  border-left: solid 20px var(--secondario);
  padding: 20px;
  margin-bottom: 10px;
}

.proBox h3 {
  margin-bottom: 0px;
  font-size: 24px;
}

.proBox p {
  margin-bottom: 0px;
  color: var(--grigio);
  font-size: 14px;
  line-height: normal;
}
.proOre {
  background-color: var(--bianco);
  color: var(--secondario);
  padding: 3px 10px;
  border-radius: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  text-align: left;
  display: table;
}

.proDove {
  background-color: #fff9d8;
  color: var(--grigio);
  padding: 3px 10px;
  border-radius: 5px;
  margin-bottom: 5px;
  text-align: left;
  display: table;
}
a.miniBotBlack {
  font-size: 14px;
  line-height: normal;
  text-decoration: none;
  color: var(--bianco);
  background-color: var(--nero);
  padding: 2px 7px;
  border-radius: 3px;
  display: inline-block;
  margin-top: 5px;
}

a.miniBotRed {
  font-size: 14px;
  line-height: normal;
  text-decoration: none;
  color: var(--bianco);
  background-color: #CF0F12;
  padding: 2px 7px;
  border-radius: 3px;
  display: inline-block;
  margin-top: 5px;
}

a.miniBotYellow {
  font-size: 14px;
  line-height: normal;
  text-decoration: none;
  color: var(--nero);
  background-color: #EEF400;
  padding: 2px 7px;
  border-radius: 3px;
  display: inline-block;
  margin-top: 5px;
}

.miniBotTrasp {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  line-height: normal;
  text-decoration: none;
  color: var(--nero);
  background-color: var(--bianco);
  padding: 1px 6px;
  border-radius: 3px;
  display: inline-block;
  border: solid 1px var(--nero);
}
/* HEADER
----------------------------------------------------------------------------------eli*/
header .header-top {
  background-color: var(--principale);
  color: var(--bianco);
  display: none;
}
.fascia-gialla{
  justify-content: flex-end;
}
header .social.flex {
  align-items: center;
  display: none;

}

header .social a {
  margin-right: 15px;

}

.lingue-pulsanti {
  align-items: stretch;
  min-height: 50px;

}

.lingue-straniere {
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  margin-right: 15px;
  align-items: center;

}

.lingue-straniere a {
  color: var(--bianco);
  text-decoration: none;
  font-weight: 300;
  margin: 0 4px;

}

.lingue {
  border-left: solid 1px #e1c038;
  align-items: center;
  padding: 0 8px;
}

.lingue a {
  font-size: 20px;
  font-weight: 500;
  color: #eddaa5;
  text-decoration: none;
  padding: 0 8px;

}

.lingue .lingue-on {
  color: var(--bianco);
}

.pulsanti-top {
  background-color: var(--terziario);
  color: var(--bianco);
  font-size: 18px;
  padding: 5px 10px;
  text-decoration: none;
  border-left: solid 1px #e1c038;
  align-items: center;
  font-weight: 500;
  display: none;
}

.pulsanti-top img {
  padding-right: 10px;
}

/*NAVIGAZIONE*/
.navigazione {
  padding: 20px 0 0 0;
  width: 100%;
  margin: 0;
}

.navigazione .logo-flex {
  align-items: center;
  margin-bottom: 30px;
}

.logo figure {
  max-width: 120px;
  margin-left: 20px;
}

.payoff {
  font-size: 12px;
  line-height: 16px;
  font-weight: 100;
  margin-left: 10px;
}

.payoff strong {
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
}

.payoff strong span {
  font-size: 20px;
  font-weight: 700;
}

/*FOOTER
----------------------------------------------------------------------------------eli*/
footer {
  background-color: var(--nero);
  color: var(--bianco);
}

.orgaCont {
  padding: 50px 0;
  font-size: 16px;
  font-weight: 100;
  color: #c1c1c1;
}

.orgaCont div:nth-child(1) img, .orgaCont div:nth-child(2) img {
  margin-top: 15px;
  height: 44px;
}
.orgaContCompleto div:nth-child(1) img {
  width: 232px;
  height: auto;
}

.orgaCont div {
  width: 100%;
  margin-bottom: 20px;
}

.orgaCont strong {
  font-size: 20px;
  font-weight: 400;
  color: var(--bianco);
}

.orgaCont img {
  margin-bottom: 15px;
}

.orgaCont img.itaCompleto {
  max-width: 300px;
  margin-top: 15px;
}

.orgaCont img.bofiere {
  max-width: 140px;
  margin-top: 15px;
  margin-left: 15px;
}

.footer-nav {
  background: url(/images/footer.jpg) no-repeat;
  background-size: cover;
  padding: 40px 0;
  display: none;
}

.footer-nav .flex div .f30 {
  width: 100%;
}

.footer-nav .flex div {
  width: 18.5%;
}

.footer-nav h2 {
  font-size: 20px;
  font-weight: 400;
  border-bottom: solid 1px var(--bianco);
  color: var(--bianco);
  margin-bottom: 0 0 5px 0;
  /*stili da mettere altrimenti nell'admin cambia lo stile*/
  border-top: 0;
  padding-top: 0;


}

.footer-nav .flex div ul li {
  width: 100%;
}

.footer-nav .flex div ul li a {
  text-decoration: none;
  color: var(--bianco);
  font-size: 15px;
  line-height: 16px;
  font-weight: 300;
}

.footer-nav .flex div ul li {
  list-style-type: "-";
  padding-left: 5px;
}

#footer-social{
  background-color: var(--principale);
  padding: 10px 0;
  display: block;
}
#footer-social .flex{
  justify-content: center;
}
#footer-social .flex a{
margin: 0 10px;
}
.credits {
  font-size: 15px;
  font-weight: 100;
  background-color: #737373;
  padding: 20px 0;
  color: #c1c1c1;
  text-align: center;
}

.credits a {
  color: #FFF;
  text-decoration: none;
  margin: 0px 10px;
  text-transform: uppercase;
}

.credits .flex div:nth-child(1) a {
  text-transform: none;
  color: #c1c1c1;
}

.credits .flex div:nth-child(1) {
  width: 100%;
}

/*STILI PRECEDENTI--------------------------------------------------------------------*/

/*OLD*/
.proFiles {
  margin-top: 15px;
}

.aFile a {
  background-color: #95d28d;
  color: #FFF;
  text-decoration: none;
  padding: 2px 5px;
  border-radius: 5px;
  margin-top: 2px;
  text-align: left;
  display: table;
  font-size: 12px;
  line-height: normal;
}



/* HEADER ------------------da controllare*/
aside.sfondoFasce h2 span.wel {
  color: var(--secondario);
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  display: block;
}

ul.ticketAR {
  margin: 0px;
  padding: 0px;
}
ul.ticketAR li {
  margin: 0px;
  list-style-type: none;
  box-shadow: 0px 0px 5px 0px rgba(204, 204, 204, 1);
  position: relative;
}

ul.ticketAR li:hover {
  background-color: #B3DBBB;
}

ul.ticketAR li a {
  display: block;
  border: solid 1px #CCC;
  padding: 5px;
  margin-bottom: 10px;
  text-decoration: none;
  color: #000;
}

ul.ticketAR li a div {
  display: inline-table;
  font-size: 13px;
  line-height: 22px;
}

ul.ticketAR li a div strong {
  font-size: 18px;
}

ul.ticketAR li a img {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

ul.ticketAR li div div.catTicket {
  position: absolute;
  right: 5px;
  top: 5px;
  border: solid 1px #CCC;
  padding: 0px 5px;
  background-color: #FFF;
  line-height: normal;
  margin-top: -8px;
  box-shadow: 0px 0px 5px 0px rgba(204, 204, 204, 1);
}



/* SECTION */
.page {
  display: block;
}


.testo {
  text-align: left;
  padding: 30px 0px;
}

.testo a {
  color: #0baf4d;
}

.testo li {
  margin-left: 40px;
  list-style-type: square;
  text-align: left;
}

.testo ol li {
  list-style-type: inherit;
}

.tasto a {
  font-weight: bold;
  padding: 10px 12px;
  display: inline-block;
  color: #0baf4d;
  background-color: #FFF;
  font-size: 20px;
  border: solid 1px #0baf4d;
  margin-top: 10px;
  text-decoration: none;
  text-align: left;
  border-radius: 5px;
}

.tasto a:hover {
  color: #000;
  border: solid 1px #000;
}

.tastoDx {
  margin-top: -13px;
  margin-bottom: 15px;
}

.pulsante a,
.pulsante button {
  font-weight: bold;
  padding: 10px 12px;
  display: inline-block;
  color: #FFF;
  background-color: #0baf4d;
  font-family: 'continuum_lightregular';
  font-size: 20px;
  margin-top: 10px;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
}


.pulsanteMarron a {
  background-color: #D9B006;
}

.pulsanteRed {
  display: table;
  margin: auto;
  font-weight: bold;
  padding: 10px 12px;
  color: #FFF;
  background-color: #F00;
  font-size: 20px;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
}



.iscriviti a {
  font-weight: bold;
  padding: 3px 8px;
  color: #FFF;
  background-color: #0baf4d;
  font-family: 'continuum_lightregular';
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  border-radius: 2px;
  text-transform: uppercase;
}

.iscriviti a:hover {
  background-color: #FFF;
  color: #000;
}

.iscriBox p {
  color: #999;
  font-size: 14px;
  line-height: normal;
  margin-top: -15px;
}

.iscriBox {
  padding: 15px;
  border: dotted 4px #CCC;
  margin-bottom: 20px;
}

.iscriBox h3 {
  margin-top: 0px;
  font-size: 26px;
  text-decoration: underline;
}

.iscriData {
  padding: 5px 10px;
  border-top: solid 1px #FFF;
  background-color: #EEE;
}

/*.iscriBox h3 {margin-top: 0px;font-size:24px;padding: 10px 15px;background-color: #333;color: #FFF;}*/
.red, .warning {
  color: #F00;
}

a.scaricaP {
  font-weight: bold;
  padding: 6px 8px;
  display: inline;
  color: #FFF;
  background-color: #000;
  font-family: 'continuum_lightregular';
  font-size: 18px;
  margin: 5px 5px 0px 0px;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
}

a.scaricaPStream {
  background-color: #F00;
}

.livestream {
  float: right;
  display: block;
}
.livestream img {
  width: 25px;
  margin-left: 2px;
  border: solid 1px #FFF;
  border-radius: 35px;
  padding: 0px;
}

.alert {
  padding: 15px 20px;
  background-color: #EEE;
  border: dashed 1px #CCC;
  line-height: normal;
  font-size: 16px;
  border-radius: 5px;
  margin: 20px 0px;
  color: #000;
}
.alert strong {
  color: #F00;
}

.eviWhite {
  background-color: #FFF;
}

.evidence h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.bigTit {
  font-family: 'continuum_lightregular';
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}

.tvBoxInterno {
  position: relative;
  width: 100%;
  display: inline-block;
}






/* RICERCA */


.ricTitle {
  font-weight: bold;
  padding: 5px 12px;
  display: table;
  color: #FFF;
  background-color: #0baf4d;
  font-family: 'continuum_lightregular';
  font-size: 20px;
  margin: auto;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}

.ricTitle a {
  color: #FFF;
  text-decoration: none;
}

.loading-w {
  margin-left: 10px;
}

.grigioMini {
  color: #BBB;
  font-size: 12px;
}

.badge {
  border-radius: 10px;
  padding: 1px 7px;
  color: var(--bianco);
  border: solid 1px var(--bianco);
  margin-left: 10px;
}

.badge-right {
  display: inline-block;
  /*float: right;*/
  font-size: 14px;
  line-height: 20px;
}


.black {
  background-color: #000;
}





/* DETTAGLIO CAT */


.copertinaDett img {
  width: 100%;
  height: auto;
}


.ricLogoDett img {
  width: 100%;
  max-width: 250px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 15px 0px rgba(204, 204, 204, 1);
  margin: 0px auto 20px auto;
  display: table;
}

.ricDett {
  border: solid 1px #DDD;
  padding: 20px;
  margin-top: 0px;
}

.ricDett h3 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 35px;
  line-height: 42px;
}

.rigo {
  padding: 5px 0px 5px 0px;
  border-bottom: dotted 2px #CCC;
}

.rigoAgenda a {
  text-decoration: none;
  color: #000;
  padding-left: 30px;
  background-image: url(/images/ico-star.png);
  background-repeat: no-repeat;
}

.mapDett {
  text-align: center;
  margin-bottom: 20px;
}

.mapDett img {
  width: 40%;
  max-width: 250px;
}

.padStandDett {
  margin: 10px auto 0px auto;
}

.padStandDett a {
  background-color: #000;
  color: #FFF;
  padding: 5px 10px 5px 40px;
  border-radius: 3px;
  display: table;
  text-decoration: none;
  margin: 5px auto;
  background-image: url(/images/ico-place.png);
  background-repeat: no-repeat;
  background-position: 10px 5px;
}

.padStandDett a:hover {
  background-color: #000;
  color: #ffda44;
}

.ricDettGrigio {
  border: solid 1px #DDD;
  padding: 15px 20px 20px 20px;
  background-color: #EEE;
  text-align: left;
}

.ricDettGrigio h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  text-align: center;
}

.ricDettGrigio a {
  background-color: #CCC;
  color: #000;
  text-decoration: none;
  padding: 2px 10px;
  margin-top: 5px;
  margin-right: 2px;
  display: inline-block;
  border-radius: 3px;
}

.ricDettGrigio a:hover {
  background-color: #0baf4d;
  color: #FFF;
}

.ricDettGrigio a.disablehover:hover {
  background-color: #CCC;
  color: #000;
}

.ricDettNero {
  padding: 20px;
  background-color: #000;
}

.ricDettNero h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  text-align: center;
  color: #FFF;
}


/*.ricDettMeetCont {
  padding: 20px;
  background-color: #FFF;
  border: solid 1px #CCC;
}

.ricDettMeetCont h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  text-align: center;
}

.ricDettMeet p {
  text-align: center;
  color: #000;
}

.ricDettMeet {
  padding: 20px;
  border: dashed 1px #000;
  background-color: #FFF;
}

.ricDettMeet h2 {
  text-align: center;
  background-color: red;
  border-radius: 5px;
  color: #FFF;
  margin: 0px auto;
  display: table;
  padding: 8px 13px;
}*/

.ricDettPdf {
  padding: 20px;
  background-color: #FFF;
  border: solid 1px #DDD;
}

.ricDettPdf h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  text-align: center;
}

.ricDettBianco {
  border: solid 1px #DDD;
  padding: 15px 20px 0px 20px;
  background-color: #FFF;
  text-align: left;
}

.ricDettBianco h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  text-align: center;
}

/*.ricDettSocial {
  border: solid 1px #DDD;
  padding: 15px 20px 0px 20px;
  background-color: #FFF;
  text-align: left;
}

.ricDettSocial h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  text-align: center;
}*/

.ricServ {
  font-size: 14px;
  text-align: center;
}

.ricServ a {
  border: solid 1px #0baf4d;
  color: #0baf4d;
  text-decoration: none;
  padding: 2px 10px;
  margin: 5px;
  display: inline-block;
  border-radius: 2px;
}

.ricServ a:hover {
  border: solid 1px #000;
  color: #000;
}

.imgSchedaProd img {
  width: 100%;
}
/*EIMA LIVE - sale stream
----------------------------------------------------------------------------eli*/
.eimalive .flex{
align-items: center;
}

a.saleBox {
  position: relative;
  text-align: left;
  text-decoration: none;
  width: 100%;
  padding: 15px 0 15px 55px;
  border: solid 1px #b2b2b2;
  border-radius: 25px;
  font-weight: 500;
  margin: 15px;
}
a.saleBox:hover {
  background-color: var(--secondario);
  color: var(--bianco);
}

.saleBox img{
position: absolute;
top: 10px;
left: 10px;
}

/*SOCIAL WALL - scheda espositore
----------------------------------------------------------------------eli*/
.boxYT {
  background-color: var(--bianco);
  /*border-bottom: solid 5px #CCC;*/
  font-size: 12px;
  line-height: normal;
  height: 360px;
  overflow: hidden;
  position: relative;
}
.boxYTData {
  color: var(--grigio);
  padding: 1px 8px;
  margin: 5px 0;
  font-size: 15px;
  font-weight: 100;
  display: table;
  line-height: 17px;
  width: 100%;
  background-color: var(--bianco);
  text-align: center;
}
div.read-more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 20px 0px;
  background-image: linear-gradient(to bottom, transparent, #ffffff);
  /*border-bottom: solid 1px #CCC;*/
}
.boxYT p {
  font-size: 12px;
  line-height: 14px;
  text-align: left;
margin: 0.5em 0.5em;
}

/*eli*/

.boxYTImage img {
  width: 100%;
}

.boxYT h2 {
  font-size: 16px;
  line-height: normal;
  text-align: left;
}



.boxYTGuarda a {
  background-color: #0baf4d;
  color: #FFF;
  font-family: 'continuum_lightregular';
  padding: 2px 8px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 10px;
  float: left;
}



.boxYTIcon img {
  width: 26px;
  margin-left: 1px;
}

.testo ul.lSPager li {
  margin-left: 0px;
}

.testo .lSSlideOuter .lSPager.lSpg>li.active a,
.testo .lSSlideOuter .lSPager.lSpg>li:hover a {
  background-color: #0baf4d;
}



.testo .lSSlideOuter {
  margin-bottom: 20px;
}

.novideoBlank {
  text-align: center;
  color: #FFF;
}

.novideoBlank a {
  color: #FFF;
}





.autoWidth {
  width: auto;
}

input.aziendellaPul {
  width: auto;
  margin-bottom: inherit;
  background-color: #F00;
  color: #FFF;
  border: 0px;
  padding: 5px 10px;
  font-family: 'continuum_lightregular';
  font-size: 20px;
  line-height: normal;
  font-weight: bold;
  border-radius: 5px;
  float: right;
}

/* TABLE ELENCO PROMO */
table.elencoPromo {
  width: 100%;
  border-collapse: separate;
  text-align: left;
}

table.elencoPromo th {
  padding: 5px 10px;
  background-color: #333;
  color: #FFF;
  vertical-align: top;
  white-space: nowrap;
  border-bottom: 5px solid #FFF;
}

table.elencoPromo th.errorRisp {
  background-color: #FFF;
  color: #F00;
}

table.elencoPromo td {
  padding: 5px 10px;
  border-bottom: 1px solid #FFF;
  vertical-align: top;
  white-space: nowrap;
  border-bottom: 5px solid #FFF;
}

table.elencoPromo tr:nth-child(even) {
  background-color: #EEE;
}

table.elencoPromo tr:nth-child(odd) {
  background-color: #DDD;
}

td.aziendella h3 strong {
  margin-right: 10px;
  color: #000;
}

td.aziendella h3 {
  margin: 0px;
  color: #AAA;
}

.aziendellaUser {
  font-size: 12px;
}

.pulsantino,
.pulsantinoRed {
  display: inline-block;
}

.pulsantino a {
  text-decoration: none;
  background-color: #FFF;
  padding: 2px 10px;
  font-size: 14px;
  border-radius: 3px;
}

.pulsantinoRed a {
  text-decoration: none;
  background-color: #F00;
  color: #FFF;
  padding: 2px 10px;
  font-size: 14px;
  border-radius: 3px;
}

input.pulsantinoRed {
  text-decoration: none;
  background-color: #F00;
  color: #FFF;
  padding: 2px 10px;
  font-size: 14px;
  border-radius: 3px;
  display: inline-block;
  width: auto;
}

#menuAR-incontri,
#menuAR-terminal,
#menuAR-documenti,
#menuAR-allestimenti,
#menuAR-segreteria,
#menuAR-amministrazione,
#menuAR-catalogo,
#menuAR-tessere,
#menuAR-biglietti,
#menuAR-varie,
#menuAR-richiesta,
#menuAR-moduli,
#menuAR-posteggi {
  display: none;
}

span.obbligatorio {
  font-size: 14px;
  line-height: normal;
  color: #F00;
  font-weight: bold;
}

/* GALLERY */
.imgGal {
  float: left;
  position: relative;
}

.imgGal img {
  border-radius: 100px;
  margin-right: 20px;
  margin-top: 20px;
}

.imgGal img:hover {
  opacity: 0.8;
}

.hd {
  position: absolute;
  top: 10px;
  z-index: 10;
}

.hd a {
  padding: 5px;
  font-weight: bold;
  border-radius: 30px;
  background-color: #EEE;
  display: block;
  text-decoration: none;
}

.hd a:hover {
  background-color: #0baf4d;
  color: #FFF;
}

/* BOLOGNA */
.bolognaFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bologna {
  width: 46%;
  margin: 10px 0px;
  text-align: center;
}

.bologna figure img {
  width: 100%;
  border-radius: 10px;
}

.bologna figcaption {
  margin-top: 5px;
  font-size: 12px;
}

/* EIMA WORLD */
.eimaworld {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
} 

/* AREA RISERVATA */
.benvenuto {
  background-color: #fffbd0;
  margin-bottom: 5px;
  padding: 10px;
  line-height: normal;
  text-align: left;
  font-size: 14px;
  border: solid 1px #DDD;
}

.boxMENURISFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.boxMENURIS {
  width: 100%;
  border: solid 1px #CCC;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 10px;
  background-color: #EEE;
}

.boxMENURIS h2 {
  box-shadow: 0px 0px 15px 0px rgba(204, 204, 204, 1);
  text-align: center;
  font-size: 24px;
  line-height: normal;
  background-color: #FFF;
  padding: 10px;
  border-radius: 2px;
  margin-top: 0px;
  margin-bottom: 5px;
}

.boxMENURIS p {
  text-align: center;
  font-size: 14px;
}

.boxMENURIS h2 a {
  text-decoration: none;
}

.boxMENURIS figure {
  margin: auto;
  max-width: 80px;
}

.boxMENURIS figure img {
  margin-top: 20px;
  background-color: #FFF;
  border-radius: 80px;
}

.boxAREAsm a {
  text-align: center;
  background-color: #666;
  margin-top: 2px;
  font-size: 16px;
  color: #FFF;
  text-decoration: none;
  padding: 5px;
  border-radius: 2px;
  display: block;
  line-height: 18px;
}

.boxAREAsm a:hover {
  background-color: #0baf4d;
}

/*.boxAREAsmNEW a{text-align:center;background-color:#EEE;margin-top:2px;font-size:16px;color:#000;text-decoration:none;padding:5px;border-radius:2px;display:block;line-height:18px;box-shadow: 0px 0px 15px 0px rgb(204 204 204); border: solid 1px #CCC;}
.boxAREAsmNEW a:hover{background-color:#FFF;}*/
.boxContattiCont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.boxContatti {
  border: solid 1px var(--secondario);
  padding: 0px 18px;
  display: table;
  margin: 25px auto;
  text-align: center;
}

.boxContatti h3 {
  color: #0baf4d;
  text-align: center;
}

/* FAQ */
.faqD {}

a.faqD {
  display: block;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  background-color: #FFF;
  border: dashed 1px #CCC;
  margin-bottom: 10px;
}

a.faqD:hover {
  border: solid 1px #CCC;
}

span.faqArrow {
  color: #0baf4d;
  float: right;
  margin-left: 10px;
}

.faqR {
  padding: 10px 15px;
  background-color: #EEE;
  border: dashed 1px #CCC;
  margin-bottom: 10px;
}

.comSeg {
  font-size: 13px;
  line-height: 16px;
}

.incontriRip {
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
  background-color: #FFF;
  border: dashed 1px #CCC;
  margin-bottom: 10px;
  position: relative;
}

.incontriDisabled {
  background-color: #f0f0f0;
  color: #ddd;
}

.slot-incontri {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.IncontriOrari {
  color: #000;
  text-decoration: none;
  padding: 10px 10px;
  background-color: #FFF;
  border: solid 1px #CCC;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}

.incontro-ok {
  border: solid 1px #000;
}

.incontriMessage {
  font-size: 12px;
  line-height: 10px;
  text-align: left;
  color: red;
  border: dashed 1px red;
  margin-top: 10px;
  padding: 5px;
}

.IONO {
  padding: 0px 0px;
  border: none;
  margin-bottom: 0px;
}

/* FORM */
.formFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.moduloDue {
  padding: 20px;
  border: solid 1px #CCC;
  background-color: #FFF;
}

.modulo {
  padding: 20px;
  /* border: solid 1px #CCC;
  background-color: #EEE;*/
  background-color: #f4f4f4;

}

.modulo h3 {
  margin-top: 0px;
  margin-left: -20px;
  padding-bottom: 10px;
  border-bottom: solid 1px #CCC;
  padding-left: 20px;
  display: table;
}

.moduloLogin {
  background-color: #FFF;
  border: solid 1px var(--divisori);
}

.cella {
  margin-bottom: 2px;
  font-weight: bold;
  text-align: left;
  margin-top: 10px;
}

.cella span {
  font-weight: normal;
}

.cellaBis {
  margin-bottom: 2px;
}

.dayPresence {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.dayPresence span {
  padding: 5px 10px;
  border-radius: 5px;
}

.dayPresence label {
  margin-bottom: 5px;
  border: solid 1px #CCC;
  padding: 5px 10px;
  background-color: #FFF;
  text-align: left;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.dayPresence label:hover,
.dayPresence span {
  background-color: #0baf4d;
  color: #FFF;
}

.dayPresence input[type='checkbox'] {
  display: none;
}

.dayPresence input[type='checkbox']:checked+label {
  background-color: #0baf4d;
  color: #FFF;
}

div.infoLine {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

div.infoLine div {
  margin: 0px 0px 15px 0px;
  padding: 3px;
  flex: 0 0 32%;
  text-align: center;
  border-radius: 2px;
  border: solid 1px #CCC;
}

.modulo form input.pulsantiMod,
input.pulsantiMod {
  width: auto;
  margin-bottom: inherit;
  background-color: #0baf4d;
  color: #FFF;
  border: 0px;
  padding: 10px 12px;
  font-family: 'continuum_lightregular';
  font-size: 20px;
  line-height: normal;
  font-weight: bold;
  margin-top: 5px;
  border-radius: 5px;
}

.modulo form input.radioMod {
  width: auto;
  margin-bottom: auto;
}

button.pulsantiMod {
  width: auto;
  margin-bottom: inherit;
  background-color: #0baf4d;
  color: #FFF;
  border: 0px;
  padding: 10px 12px;
  font-family: 'continuum_lightregular';
  font-size: 20px;
  line-height: normal;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 5px;
}

a.pulsantiMod {
  text-decoration: none;
  width: auto;
  margin-bottom: inherit;
  background-color: #0baf4d;
  color: #FFF;
  border: 0px;
  padding: 10px 12px;
  font-family: 'continuum_lightregular';
  font-size: 20px;
  line-height: normal;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 5px;
  display: inline-block;
}



.modulo form input.radioMod {
  width: auto;
  margin-bottom: auto;
}

form.modulo label {
  float: left;
  font-weight: bold;
  text-align: left;
}

form.modulo .badField label {
  color: #F00;
}

form.modulo .badField label .fieldObMsg {
  color: #000;
}

form.modulo select,
form.modulo input,
form.modulo textarea {
  margin-bottom: 10px;
}

form.modulo #div2_PRIVACY {
  padding-bottom: 10px;
}

form.modulo #div2_PRIVACY input[type="checkbox"] {
  width: auto;
}

form.modulo #div_PRIVACY label {
  float: inherit;
  font-size: 12px;
  line-height: normal;
}

form.modulo #div2_PRIVACY label {
  font-size: 14px;
  line-height: normal;
  text-align: left;
  font-weight: normal;
  display: block;
  margin-left: 25px;
  margin-top: -26px;
}

form.modulo #div_INTERESSE label {
  float: inherit;
}

form.modulo #div2_INTERESSE {
  margin-bottom: 10px;
}

form.modulo #div2_INTERESSE input[type="checkbox"] {
  width: auto;
}

form.modulo #div2_INTERESSE label {
  font-size: 16px;
  line-height: normal;
  text-align: left;
  float: inherit;
  font-weight: normal;
  display: block;
  margin-left: 25px;
  margin-top: -27px;
}

form.modulo #div_MARKETING_INDIRETTO label,
form.modulo #div_CONSENSO label,
form.modulo #div_CESSIONE_CONSENSO label,
form.modulo #div_CONSENSO_PROFILAZIONE label {
  font-size: 12px;
  line-height: normal;
  float: inherit !important;
  text-align: left;
}

form.modulo #div2_MARKETING_INDIRETTO label,
form.modulo #div2_CONSENSO label,
form.modulo #div2_CESSIONE_CONSENSO label,
form.modulo #div2_CONSENSO_PROFILAZIONE label {
  font-size: 14px;
  line-height: normal;
  font-weight: normal;
  display: block;
  margin-left: 25px;
  margin-top: -26px;
}

form.modulo #div2_MARKETING_INDIRETTO,
form.modulo #div2_CONSENSO,
form.modulo #div2_CESSIONE_CONSENSO,
form.modulo #div2_CONSENSO_PROFILAZIONE {
  margin-bottom: 10px;
}

form.modulo #div2_MARKETING_INDIRETTO input[type="radio"],
form.modulo #div2_CONSENSO input[type="radio"],
form.modulo #div2_CESSIONE_CONSENSO input[type="radio"],
form.modulo #div2_CONSENSO_PROFILAZIONE input[type="radio"] {
  width: auto;
}

form.modulo input.pulsantiMod {
  margin-bottom: inherit;
}

.miniConsenso {
  font-size: 12px;
  line-height: normal;
  text-align: left;
}

.miniNFix {
  font-size: 12px;
  line-height: normal;
  font-weight: bold;
  background-color: #FFF;
  padding: 1px 4px;
  border-radius: 2px;
  display: inline-block
}

.mininumber {
  font-size: 12px;
  line-height: normal;
  font-weight: bold;
}

.mininumber a {
  color: #000;
  background-color: #FFF;
  padding: 1px 4px;
  border-radius: 2px;
  text-decoration: none;
}

.mininumber a:hover {
  color: #FFF;
  background-color: #000;
}

.miniS {
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  margin-bottom: 10px;
}

.miniOrari {
  font-size: 13px;
  line-height: 14px;
  text-align: left;
  margin-bottom: 4px;
  margin-top: 10px;
  padding: 8px 0px;
  border-bottom: dashed 1px #CCC;
  border-top: dashed 1px #CCC;
}

/*.miniOrari {font-size:13px;line-height:14px;text-align:left; margin-bottom: 8px; margin-top: 10px; padding: 8px 10px; box-shadow: 0px 0px 15px 0px rgb(204 204 204);}*/
.miniP {
  font-size: 14px;
  line-height: normal;
  text-align: left;
}

.miniP input {
  width: auto;
  margin-right: 5px;
}

.miniP strong {
  font-size: 12px;
}

.point {
  border-radius: 20px;
}

.errore {
  font-weight: normal;
  color: #F00;
}

.warn {
  font-weight: bold;
  color: #c00;
  padding: 10px;
  border: 1px solid #900
}

.warn span {
  color: #000;
}

.incontro th,
.incontro td {
  border-bottom: 2px solid #a8ccaa;
}

.incontro td {
  background: #a8ccaa;
  color: #fff;
}

.incontro-ok th,
.incontro-ok td {
  border-bottom: 2px solid #008D39;
}

.incontro-ok td {
  background: #008D39;
  color: #fff;
}

.incontro-old {
  color: #aaa;
}

.choice-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.choice-cont figure img {
  width: 100%;
  max-width: 200px;
}

.choice-box {
  width: 100%;
  padding: 20px;
  border: solid 1px #CCC;
  text-align: center;
  margin-top: 25px;
}

.choice-box h2 {
  color: #000;
  text-align: center;
  margin-bottom: 0px;
}



/* AREA RISERVATA */
.bcfile {
  padding: 5px 10px;
  border: solid 1px #DDD;
  border-radius: 5px;
  margin-top: 10px;
}

.bcfile:hover {
  background-color: #EEE;
}

h3.ris {
  color: #FFF;
  background-color: #333;
  padding: 5px 10px;
  margin-bottom: 20px;
  border-radius: 5px;
}

@media only screen and (min-width: 480px) {


  /*STILI VECCHI da verificare
  ----------------------------------------------------------------------*/

  .tastoDx {
    float: right;
  }

  .tastoCx {
    margin: auto;
    display: table;
  }

  h1.h1float,
  h2.h2float {
    float: left;
  }

  figure.miniImg img {
    width: auto;
  }

  /* CATALOGO */
  .cat50 {
    padding-right: 2%;
    height: 76px;
    width: 50%;
    float: left;
  }

  .cat50:nth-child(odd) {
    padding-right: 0%;
  }

  .imgSchedaProd img {
    width: auto;
    margin: auto;
    display: block;
  }

  .testo {
    text-align: justify;
  }

  .iscriviti {
    display: inline-block;
    margin-left: 5px;
  }
}

@media only screen and (min-width: 640px) {
    /*STILI VECCHI da verificare
  ----------------------------------------------------------------------*/

  span.newDate {
    /*padding: 4px 6px;
    font-size: 16px;*/
  }

  /* FIGURE */
  /*figure.trenta {
    width: 30%;
    margin: 30px auto;
  }

  figure.lato {
    margin: 30px 0px;
  }

  figure.cento {
    margin: 30px auto;
  }

  figure.trenta img {
    padding: 10px;
    border: solid 1px #DDD;
  }

  figure.cento img {
    padding: 10px;
    border: solid 1px #DDD;
  }

  figure.mappone {
    border: solid 1px #DDD;
    padding: 10px;
  }*/
}

@media only screen and (min-width: 778px) {

  /*ELI
----------------------------------------------------------------------*/
  .noBox {
    display: block;
  }

  /*FASCIA PAGINE INTERNE TOP VERDE 
----------------------------------------------------------------------------------eli*/
  .fasciaTop a {
    margin-left: 20px;
  }
  /*FOCUS delle pagine principali (FOTO + DESCRIZIONE: sono le fasce che troviamo in home e nelle pagine interne)
----------------------------------------------------------------------------------eli*/
.focus.flex figure {
  width: 50%;
}

.focus.flex div.descrizione {
  width: 50%;
}

.focus h2 {
  font-size: 32px;
  line-height: 38px;
}

  /*PRIMO PIANO
----------------------------------------------------------------------------------eli*/
  .primopianoBox {
    width: 45%;
  }

  /*DETTAGLIO*/
  #primopianoDet .foto {
    flex: 1 0 35%;
    margin-right: 5%;

  }

  #primopianoDet .testo {
    flex: 1 0 60%;

  }
  /*SCHEDA PRODOTTI ESPOSITORE
----------------------------------------------------------------------------------eli*/
  #SPaltri .flex a {
    flex: 0 1 23%;
    margin: 0 0.8% 25px 0.8%;
  
  }
  /*ROAD FOTO
----------------------------------------------------------------------------------eli*/

  .road-foto a img {
    max-height: 160px;
  }

  /*ASIDE AREA RISERVATA
----------------------------------------------------------------------------------eli*/
  #AreaRiservata {
    width: 65%;
  }

  aside {
    width: 30%;
    margin-left: 5%;
  }

  /*EIMA DESK EVENTO SPECIFICO
----------------------------------------------------------------------------------eli*/
#eima-desck-evento figure img {
  max-width: 100%;
 }

  #eima-desck-evento .flex20 {
    width: 30%;
  }

  #eima-desck-evento .flex50 {
    width: 65%;
  }

  /* HEADER
----------------------------------------------------------------------------------eli*/
  .mobile-header {
    display: none;
  }

  nav#menu-container {
    display: block;
  }

  header .header-top {
    display: block;
  }
  .pulsanti-top {
    display: flex;
  }

  /*NAVIGAZIONE*/
  .navigazione {
    width: 92%;
    margin: 0 4%;
  }

  .navigazione .flex {
    align-items: flex-end;
  }

  .logo figure {
    max-width: 120px;
    margin-left: 0;
  }

  /*EIMA LIVE - sale stream
----------------------------------------------------------------------------eli*/
  a.saleBox {
    width: 44%;
  }
 /* TV 
 -----------------------------------------------------------------------eli*/

 .tvCont {
  text-align: left;
  }

  /*FOCUS
  ----------------------------------------------------------------------------------eli*/
  .focus.flex figure {
    background-size: cover;
    background-position: center right;
    width: 20%;
  }

  .focus.flex div.descrizione {
    width: 30%;
    background-color: var(--sfondoFasce);
    padding: 80px 2.5%;
  }

  /*PRODOTTI ESPOSITORI
----------------------------------------------------------------------------------eli*/
  #prodotti-espositori .risultato-Box {
    width: 30%;
  }

  /*CATALOGO ESPOSITORI
----------------------------------------------------------------------------------eli*/
  .risultato-Box {
    width: 45%;
  }

  .ricLogo {
    width: 110px;
    height: 90px;
  }

  /*SCHEDA ESPOSITORI
----------------------------------------------------------------------------------eli*/
#SEespositore h1 {
  font-size: 48px;
  line-height: 48px;
}

  .SElogo {
    display: none;
  }

  .SEmappa {
    display: inline-block;
  }

  .SEazienda .flex {
    flex-wrap: nowrap;
  }

  .SEprodottiBox {
    flex: 0 1 31%;
  }
  .SEprodottiBox figure {
    padding-bottom: 65%;
  }
  
  .SEprodottiBox figure img {
    height: auto;
    left: 50%;
    max-width: inherit;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 120%;
  }

  /*SALONI TEMATICI
----------------------------------------------------------------------------------eli*/
  /*SALONI TEMATICI PAGINA*/
  .saloni-tematici {
    padding: 40px 0;
    margin-top: 30px;
    text-align: left;
  }

  .saloni-tematici h3 {
    text-align: left;
  }

  .saloni-tematici figure {
    width: 25%;
    display: inline-block;
  }

  .saloni-tematici div {
    width: 70%;
  }

  /*PROGRAMMA
----------------------------------------------------------------------------------eli*/
  .proSelect select {
    width: auto;
  }

  /*AREE FOCUS
----------------------------------------------------------------------------------eli*/
  #aree-focus .flex50 {
    padding: 0;
    width: 50%;
  }

  #aree-focus .flex50:nth-child(1) {
    border-bottom: 0;
    border-right: solid 1px var(--divisori);
    padding-right: 50px;
  }

  #aree-focus .flex50:nth-child(2) {
    padding-left: 50px;
  }

  /*FINE ELI
----------------------------------------------------------------------*/



  /* TABLE DATI */
  table.dati {
    display: table;
    width: 100%;
  }

  table.dati td.nowrap {
    white-space: inherit;
  }

  table.dati td,
  table.dati th {
    white-space: inherit;
  }


  /* CATALOGO */
  .mapDett img {
    width: 100%;
  }

  .mapDett {
    float: right;
    margin-bottom: 0px;
  }
  .ricLogoDett img {
    margin: 0px 0px 20px 0px;
    display: block;
  }

  .rigoCont {
    display: table;
  }

  .rigo {
    padding: 5px 20px 5px 0px;
  }

}

@media only screen and (min-width: 900px) {


  /* BOLOGNA */
  .bologna {
    width: 31%;
  }

  /* PROGRAMMA */

  .miniConsenso {
    font-size: 14px;
  }

  .cellaMulti {
    width: 49%;
    display: inline-block;
  }

  .incontriRipDX {
    position: absolute;
    right: 12px;
    bottom: 10px;
  }

  .slotDX {
    position: absolute;
    right: 12px;
    bottom: 10px;
    font-size: 30px;
    line-height: normal;
  }

  .slotOccupati {
    display: none;
  }

  .IncontriOrari {
    width: 32%;
  }

  .incontriOrariDX {
    text-align: right;
  }
}

@media only screen and (min-width: 1024px) {
    /*ELI
----------------------------------------------------------------------------------eli*/
  h1 {
    font-size: 45px;
    line-height: 50px;
  }
  .titoletto {
    min-height: 100px;
  }
  .livestream img {
    width: 30px;
    margin-left: 5px;
    border: solid 1px #FFF;
    border-radius: 35px;
    padding: 0px;
  }
    /*FLEX per pagine interne*/
    .flex20 {
      width: 20%;
      margin-bottom:0;
    }
  
    .flex30 {
      width: 30%;
    }
  
    .flex40 {
      width: 40%;
    }
  
    .flex50 {
      width: 47%;
    }
  
    .flex60 {
      width: 55%;
    }
  
    .flex70 {
      width: 65%;
    }
  
    .flex80 {
      width: 75%;
    }
  .flex50:first-child {
    margin-bottom: 0px;
}
    /*figure*/
    figure.cinquanta-desk img {
      width: 50%;
      margin: auto;
      display: table;
    }
  
    figure.cinquanta-mobile {
      text-align: left;
      margin-bottom: 0px;
    }
  
    figure.cinquanta-mobile img {
      width: 100%;
    }
  
    /*testo due colonne*/
    .colonneDue {
      column-count: 2;
      column-gap: 40px;
    }
  
    .colonneTre {
      column-count: 3;
      column-gap: 40px;
    }

    /*MOSTRA NASCONDI*/
    .hide-mobile {
      display: inline-block !important;
    }
  
    .show-mobile {
      display: none;
  
    }
  /*TITOLETTI*/
  /*pagine pubbliche*/
  .titoletto {
    background-attachment: fixed;
  }

  /*FILTRI SULLA DESTRA*/
  .ordina {
    text-align: right;

  }

  /*PRODOTTI ESPOSITORI
----------------------------------------------------------------------------------eli*/
  #prodotti-espositori .risultato-Box {
    width: 22%;
  }

  /*LA MIA LISTA ESPOSITORI
----------------------------------------------------------------------------------eli*/

  #lamiaLista .lista {
    flex: 0 1 45%;
  }

  #lamiaLista .ordina {
    text-align: right;

  }

  /*PRIMO PIANO
----------------------------------------------------------------------------------eli*/
  .primopianoBox {
    width: 30%;
  }



  /*BANNER
----------------------------------------------------------------------------------eli*/
  .banner_big {
    flex: 0 1 60%;
    margin-bottom: 0;
  }

  .banner {
    flex-direction: column;
    width: auto;
    flex-wrap: wrap;
  }

  .banner div:first-child {
    margin-right: 0px;
  }

  /*CATALOGO ESPOSITORI
----------------------------------------------------------------------------------eli*/
  .risultato-Box {
    width: 31%;
  }

  /*EIMA DESK EVENTO SPECIFICO
----------------------------------------------------------------------------------eli*/
  #eima-desck-evento .box-bordato {
    margin-top: 0px;
  }

  #eima-desck-evento .flex20 {
    width: 20%;
  }

  #eima-desck-evento .flex50 {
    width: 45%;
  }

  /*SCHEDA ESPOSITORI
----------------------------------------------------------------------------------eli*/
  .SEposizione {
    width: 30%;

  }

  .SEsocial {
    flex: 0 1 40%;
    text-align: right;
    margin-right: 20px;
  }

  .SEmappa {
    flex: 1 0 25%;
  }

  .SEinfoCont {
    flex: 0 1 75%;
  }


  #SEespositore .risPreferiti {
    display: inline-block;
    margin-top: 0;
  }

  #SEespositore .risPreferiti a {
    margin-left: 20px;
    margin-top: 0px;
  }

  .SEprodottiBox {
    flex: 0 1 22%;
  }

  /*SCHEDA PRODOTTI ESPOSITORI

----------------------------------------------------------------------------------eli*/
  #SP figure {
    margin-bottom: 0px;
  }
  #SPaltri .flex a {
    flex: 0 1 15%;
    margin: 0 0.8% 30px 0.8%;
  }

  /*PROGRAMMA
----------------------------------------------------------------------------------eli*/
  .proOre {
    float: left;
  }

  /*PRECATALOGO
----------------------------------------------------------------------------------eli*/
  #precatalogo figure {
    text-align: left;
  }

  #precatalogo figure img {
    width: 100%;
    margin-bottom: 0;
  }

  /*COMUNICATI STAMPA
----------------------------------------------------------------------------------eli*/
  #comunicati-stampa .comunicati-box {
    width: 30%;
    margin-bottom: 50px;

  }

  /*NOVITA TECNICHE
----------------------------------------------------------------------------------eli*/
  #novita-tecniche-partecipazione img {
    margin-bottom: 15px;
  }

  #novita-tecniche-partecipazione .flex70 {
    margin-bottom: 0px;
  }

  #novita-tecniche-premiazione {
    text-align: left;
  }

  #novita-tecniche-premiazione figure img {
    max-width: 100%;
    margin-bottom: 15px;
  }

  #novita-tecniche-premiazione .flex70 {
    margin-bottom: 0px;
  }

  /*PER ESPORRE
----------------------------------------------------------------------------------eli*/
  #esporre .flex50:nth-child(1) {
    margin-bottom: 0px;
  }

  /*BIGLIETTERIA
----------------------------------------------------------------------------------eli*/
  #biglietteria .flex30 {
    margin-bottom: 0px;
  }

  /*ORARI
----------------------------------------------------------------------------------eli*/
  #orari .flex50:nth-child(1) {
    margin-bottom: 0px;
  }

  /*FOCUS
----------------------------------------------------------------------------------eli*/
  .focus.flex figure {
    background-size: cover;
    background-position: center right;
    width: 20%;
  }

  .focus.flex div.descrizione {
    width: 30%;
    background-color: var(--sfondoFasce);
    padding: 80px 2.5%;
  }
/* PRESENTAZIONE
----------------------------------------------------------------------*/
.videoHome {
	width: 80%;
	margin: auto;
	display: table;
	border: solid 1px #333;
	padding: 20px;
}

  /*HEADER
----------------------------------------------------------------------------------eli*/
  header .social.flex {
    display: flex;
  }
  .fascia-gialla{
    justify-content: space-between;
  }

  /*NAVIGAZIONE*/
  .logo figure {
    max-width: 204px;
    margin-left: 0;
  }

  .payoff {
    font-size: 16px;
    line-height: 18px;
    margin-left: 30px;
  }

  .payoff strong {
    font-size: 30px;
    line-height: 33px;
  }

  .payoff strong span {
    font-size: 30px;
  }

  /*FOOTER
----------------------------------------------------------------------------------eli*/
  .footer-nav {
    display: block;
  }

  .orgaCont div {
    width: auto;
    margin-bottom: 0;
  }

  .credits .flex div:nth-child(1) {
    width: auto;
  }
  #footer-social{
    display: none;
  }

  /*SALONI TEMATICI
----------------------------------------------------------------------------------eli*/
  #saloni figure {
    width: 40%;
    margin: 40px 30%;
  }




  /*FINE ELI
----------------------------------------------------------------------*/

  /* BOLOGNA */
  .bologna {
    width: 23%;
  }

  /* AREA RISERVATA */
  .boxMENURIS {
    width: 48%;
  }

  /* CATALOGO */
  .ricLogoDett {
    float: left;
    height: 320px;
    margin-bottom: 20px;
  }

  .ricLogoDett img {
    margin-right: 20px;
    width: 250px;
  }

  .ricDettNeroMeno {
    padding: 0px 20%;
  }


  /* ESPORRE */


  .choice-box {
    width: 48%;
  }

  .dayPresence label {
    padding: 20px;
    text-align: center;
    width: 18%;
    border-radius: 10px;
  }

  .dayPresence span {
    width: 18%;
    text-align: center;
  }

  .cellaMulti {
    width: 32%;
    display: inline-block;
  }

}

@media only screen and (min-width: 1400px) {

  /*ELI
  -------------------------------------------------------------*/
  .wrapper {
    width: 1280px;
    /* 1140px - 10% for margins */
    margin: 0px auto;
  }

  .navigazione {
    padding: 30px 0 0 0;
    width: 1280px;
    margin: 0 auto;
  }


  /*SCHEDA ESPOSITORI
----------------------------------------------------------------------------------eli*/

  #SEinfo .SEinfo {
    flex: 1 0 33%;
    margin-bottom: 0px;
  }
  #SEmappa figure img {
    max-width: 260px;
  }

  /*FOCUS
----------------------------------------------------------------------------------eli*/
  .focus.flex figure {
    background-size: cover;
    background-position: center right;
    width: 30%;
  }

  .focus.flex div.descrizione {
    width: 20%;
    background-color: var(--sfondoFasce);
    padding: 80px 2.5%;
  }

  /*FINE ELI
  -----------------------------------------------------------*/


  .ricStand {
    line-height: normal;
    font-size: 16px;
  }


   .livestream img {
    width: 35px;
    margin-left: 5px;
    padding: 1px;
  }

  .IncontriOrari {
    width: 24.2%;
  }
}

/* Helper classes */
.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* Colorbox */
#cboxNext,
#cboxPrevious,
#cboxClose,
#cboxCurrent {
  line-height: normal;
  font-size: 14px;
}