@charset "UTF-8";

/* VARIABILI */

:root {
  /* BS overrides */
  --primary: #3bade0;
  --secondary: #00559f;

  /* colori */
  --white: #ffffff;
  --light-grey: #e5e5e5;
  --dark-grey: #959595;
  --dark: #262626;

  /* box-shadow */
  --default-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);

  /* fonts */
  --main-font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

/* RESET CSS -- RESET CSS -- RESET CSS */
/* RESET CSS -- RESET CSS -- RESET CSS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

/* Remove focus-outline-shadow */
a,
a:focus,
a:active,
a:visited,
a:hover,
button,
button:focus,
button:active,
button:visited,
input,
input:focus,
input:active,
input:visited {
  box-shadow: none;
  outline: none;
  text-decoration: none;
}
/*container-boostrap*/
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1400px;
  }
}
/* Background Colors Reset */
.bg-primary {
  background-color: #0059a0 !important;
}

.bg-blue {
  background-color: #3bade0 !important;
}

.bg-lightblue {
  background-color: #a6caf2 !important;
}

/* Colors Reset */

.text-primary {
  color: var(--primary) !important;
}

.text-blue,
.text-secondary {
  color: #0059a0 !important;
}

.text-darkblue {
  color: #062e48 !important;
}
.text-white {
  color: #ffffff !important;
}

.text-grey {
  color: #6c6c6c !important;
}

.text-transparent {
  color: transparent;
}

/* FONTS */

@font-face {
  font-family: "Montserrat";
  src: url("Fonts/Montserrat-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("Fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Montserrat";
  src: url("Fonts/Montserrat-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Montserrat";
  src: url("Fonts/Montserrat-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat";
  src: url("Fonts/Montserrat-SemiBoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 500;
}

@font-face {
  font-family: "Montserrat";
  src: url("Fonts/Montserrat-BoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 700;
}

/* Icone: font-face "FontAwesome" definito in Css/font-awesome.min.css */

/* BASE */

html,
body {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--main-color);
  background: var(--main-bg-color);
}

@media (max-width: 992px) {
  html,
  body {
    font-size: 14px;
  }
}

/* TYPOGRAPHY */

A,
ABBR,
ACRONYM,
ADDRESS,
BDO,
BLOCKQUOTE,
BODY,
BUTTON,
CITE,
DD,
DEL,
DFN,
DIV,
DL,
DT,
EM,
FIELDSET,
FORM,
H1,
H2,
H3,
H4,
H5,
H6,
IMG,
INS,
KBD,
LABEL,
LI,
OBJECT,
OL,
P,
SAMP,
SPAN,
SUB,
SUP,
UL,
VAR,
APPLET,
BASEFONT,
BIG,
CENTER,
DIR,
FONT,
HR,
MENU,
PRE,
S,
STRIKE,
TT,
U {
  /*font-size: 1rem;*/
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif; /* BS override */
  color: var(--main-color); /* default.css override */
}

h1,
.h1 {
  font-size: 1.75rem;
}

h2,
.h2 {
  font-size: 1.5rem;
}

h3,
.h3 {
  font-size: 1.25rem;
}

h4,
.h4 {
  font-size: 1.15rem;
}

h5,
.h5 {
  font-size: 1.05rem;
}

small {
  font-size: 0.85rem;
}

a,
strong,
em {
  font-size: inherit;
}

/* DNN resets - sovrascrive Resources/Shared/stylesheets/dnndefault/7.0.0/default.css */
/* prima di creare classi o selettori ad hoc, controllare che lo stile non sia definito da default.css, come ad esempio blockquote */
.Normal,
.NormalDisabled,
.NormalDeleted,
blockquote,
blockquote p {
  color: inherit;
  line-height: inherit;
  font-size: inherit;
}
em strong,
strong em {
  font-weight: 500;
}

/* @media(max-width: 1024px){
    h1, .h1 { font-size: 2rem !important;}
 
    h2, .h2 { font-size: 1.5rem !important;} 
    
    h3, .h3, h3 > *, .h3 > * { font-size: 1.2rem !important;} 
    /* h4, .h4, h4 > *, .h4 > * { font-size: .75rem !important;} 
    p { font-size: .75rem !important;} */
/* .text-smaller{
        font-size:.7rem !important;
    }
} */

.Normal,
.NormalDisabled,
.NormalDeleted {
  color: inherit;
  line-height: inherit;
}

.bg-primary a,
.bg-primary a:visited {
  color: #fff !important;
}

.bg-primary a:focus,
.bg-primary a:hover {
  color: #3bade0 !important;
}

/* Spaziature */
.spacer-mt {
  margin-top: 65px;
}

.spacer-mb {
  margin-bottom: 65px;
}

.spacer-pt {
  padding-top: 35px;
}

.spacer-pb {
  padding-bottom: 25px;
}

/* misc */
.cursor-pointer {
  cursor: pointer;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-1 {
  opacity: 1 !important;
}

/* Link e Pulsanti */
a,
a:visited {
  color: #3bade0;
  transition: 0.3s;
}
a:hover,
a:focus {
  color: #00559f;
}

.btn {
  appearance: unset;
  -webkit-appearance: unset;
  border-radius: 0;
  transition: 0.3s;
}

.btn-primary {
  background-color: #3bade0;
  border-color: #3bade0;
  color: #fff !important;
}

.btn-primary:visited {
  background-color: #3bade0 !important;
  color: #fff;
}

.btn-primary:focus,
.btn-primary:hover {
  background-color: #00559f !important;
  outline: none !important;
  box-shadow: none !important;
}

.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary:disabled:focus,
.btn-primary:disabled:hover {
  background-color: #3bade0 !important;
}

/* Pulsante circolare */
.btn-primary.btn-primary-circle {
  width: 22px;
  height: 22px;
  min-width: 22px;
  max-width: 22px;
  padding: 0;
  border-radius: 50%;
}

.btn-primary.btn-primary-circle > i {
  color: #fff;
  font-size: 12px;
  padding-left: 2px;
}

.btn-sm {
  /* reset temporaneo delle dimensioni di btn-sm _vb_ */
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  min-width: auto;
  max-width: auto;
  height: auto;
}

/*MAIN MENU*/
/*MAIN MENU*/

.navbar-collapse {
  flex-grow: 0 !important;
}

@media (max-width: 991px) {
  .navbar-nav {
    text-align: end;
    align-items: flex-end;
    border-bottom: 2px solid #00559f;
  }
  .navbar-brand {
    max-width: 120px;
  }
}
@media (min-width: 992px) {
  #responsiveMenu > .navbar-nav {
    margin-left: -0.5rem !important;
  }

  #responsiveMenu .navbar-nav .nav-item {
    margin-right: 30px;
  }

  /* #responsiveMenu .navbar-nav .nav-item.dropdown.isDropdown{
        position: static;
    } */

  #responsiveMenu .navbar-nav .nav-item:last-child {
    margin-right: 0px;
  }

  #responsiveMenu
    .navbar-nav
    .nav-item
    .nav-link.contains-dropdown
    > a[contains-dropdown="true"],
  #responsiveMenu .navbar-nav .nav-item .nav-link a {
    position: relative;
  }

  #responsiveMenu
    .navbar-nav
    .nav-item
    .nav-link.contains-dropdown
    > a[contains-dropdown="true"],
  #responsiveMenu .navbar-nav .nav-item .nav-link:not(.contains-dropdown) a {
    padding: 0.5rem 0;
  }

  #responsiveMenu
    .navbar-nav
    .nav-item
    .nav-link.contains-dropdown
    > a[contains-dropdown="true"]
    + a[data-toggle="dropdown"] {
    cursor: pointer;
  }

  #responsiveMenu
    .navbar-nav
    .nav-item
    .nav-link.contains-dropdown
    > a[contains-dropdown="true"]
    + a[data-toggle="dropdown"]
    svg {
    margin-top: -3px;
  }

  #responsiveMenu
    .navbar-nav
    .nav-item
    .nav-link.contains-dropdown
    > a[contains-dropdown="true"]::before,
  #responsiveMenu
    .navbar-nav
    .nav-item
    .nav-link:not(.contains-dropdown)
    a::before {
    position: absolute;
    content: "";
    bottom: 0px;
    opacity: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #3bade0;
    width: 100%;
    margin: auto;
    border: none;
    transition: 0.2s;
  }

  #responsiveMenu
    .navbar-nav
    .nav-item
    .nav-link.contains-dropdown
    > a[contains-dropdown="true"]::before,
  #responsiveMenu
    .navbar-nav
    .nav-item
    .nav-link:not(.contains-dropdown)
    a::before {
    position: absolute;
    content: "";
    bottom: 0px;
    opacity: 0;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #3bade0;
    width: 100%;
    margin: auto;
    border: none;
    transition: 0.2s;
  }

  #responsiveMenu
    .navbar-nav
    .nav-item
    .nav-link.contains-dropdown
    > a[contains-dropdown="true"]:hover::before,
  #responsiveMenu
    .navbar-nav
    .nav-item
    .nav-link:not(.contains-dropdown)
    a:hover::before,
  #responsiveMenu
    .navbar-nav
    .nav-item
    .nav-link.contains-dropdown
    > a[contains-dropdown="true"].active::before,
  #responsiveMenu
    .navbar-nav
    .nav-item
    .nav-link:not(.contains-dropdown)
    a.active::before {
    /* bottom: -8px; */
    opacity: 1;
  }
}

/* NAVBAR */
/* NAVBAR */

.mainNavbarWrapper .navbar {
  z-index: 999;
}

#responsiveMenu .nav-link {
  font-size: 14px;
  line-height: 18px;
  color: #00559f !important;
}

/* #responsiveMenu .dropdown-menu {
    margin-top: .5rem !important;
    border-radius: 0;
    background-color: #00559f;
    box-shadow: 0 4px 6px rgba(0,0,0,0.16);
    left: 7px !important;
}

#responsiveMenu .dropdown-menu .dropdown-menu{
    position: relative;
    border: none;
    right: 0;
    box-shadow: none;
    left: 0 !important;
    padding: 0;
}
#responsiveMenu .dropdown-menu .dropdown-menu > .dropdown-item {
    padding: .4rem 2.25rem;
} 
#responsiveMenu .dropdown-menu .secondCaret {
    position: absolute !important;
    right: 20px;
    bottom: 15px;
}
#responsiveMenu .dropdown-menu .secondCaret[aria-expanded="true"] {
    bottom: 54px;
}
#responsiveMenu .dropdown-menu > .dropdown-item {
    background: transparent;
    padding: .5rem 1.5rem;
    transition: .3s;
}
#responsiveMenu .dropdown-menu > .dropdown-item.active,
#responsiveMenu .dropdown-menu > .dropdown-item:focus,
#responsiveMenu .dropdown-menu > .dropdown-item:hover {
    background-color: #3BADE0;
}

@media (max-width: 991px){
    #responsiveMenu .dropdown-menu .secondCaret {
        bottom: 25px;
    }
    #responsiveMenu .dropdown-menu .secondCaret[aria-expanded="true"] {
        bottom: 69px;
    }
}


/* TOP BAR -- TOP BAR -- TOP BAR */
/* TOP BAR -- TOP BAR -- TOP BAR */

.header-wrapper {
  min-height: 2.8rem;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media screen and (max-width: 567px) {
  .header-wrapper {
    min-height: 1.8rem;
  }
}

.header-wrapper .services-list div:not(.dropdown-menu) {
  display: inline-block;
}

.header-wrapper .services-list div span,
.header-wrapper .services-list div a {
  font-size: 12px;
}

.header-wrapper .social-list > .social-link {
  text-align: center;
  height: 20px;
  width: 20px;
  /* font-size: 20px; */
}

.header-wrapper .services-list .service-link,
.header-wrapper .social-list .social-link {
  margin-right: 30px;
}

.header-wrapper .services-list .service-link:last-child,
.header-wrapper .social-list .social-link:last-child {
  margin-right: 0px;
}

#login > .loginGroup > a[title="Logout"] {
  margin-left: 30px;
}

@media (max-width: 991px) {
  .header-wrapper .services-list .service-link,
  .header-wrapper .social-list .social-link {
    margin-right: 10px;
  }
  #login > .loginGroup > a[title="Logout"] {
    margin-left: 10px;
  }
}

/* HEADER -- HEADER -- HEADER */
/* HEADER -- HEADER -- HEADER */

/* Logho Portale */
header .portal-logo-wrapper img {
  max-height: 120px;
  max-width: 300px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* responsive */

@media (max-width: 1199px) and (min-width: 992px) {
  #responsiveMenu .navbar-nav .nav-item {
    margin-right: 0px;
  }
  #responsiveMenu .searchInputContainer > input {
    width: 220px;
  }
  #responsiveMenu .navbar-nav .nav-item .nav-link a {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .mainNavbarWrapper .navbar-toggler,
  .mainNavbarWrapper .navbar-toggler .navbar-toggler-icon > i {
    font-size: 1.7rem;
  }
  .mainNavbarWrapper .navbar-toggler .navbar-toggler-icon {
    width: 1.7rem;
    height: 1.7rem;
  }

  #responsiveMenu > .navbar-nav .nav-item a.active {
    font-size: 14px;
  }

  #responsiveMenu > .navbar-nav .contains-dropdown > a[data-toggle="dropdown"] {
    float: right;
    padding-right: 15px;
  }
}

/* FOOTER -- FOOTER -- FOOTER */
/* FOOTER -- FOOTER -- FOOTER */

.footer .footer-conf-logo > img {
  max-height: 100px;
  margin-bottom: 10px;
}

.footer .footer-info-wrapper {
  font-size: 19px;
  line-height: 23px;
}

/* .footer a {
    text-decoration: underline;
} */

.footer ul.menu-sitemap li {
  list-style: none;
}

.footer .FooterMenu li {
  list-style: none;
}

/* LISTING - GRID 2 COLONNE */
.h2_basic_gridDueColonne
  .eds_template_List_Article_gridDueColonne
  > div
  > .container-fluid {
  display: flex;
}

.h2_basic_gridDueColonne .eds_template_List_Article_gridDueColonne,
.h2_basic_gridDueColonne
  .eds_template_List_Article_gridDueColonne
  > div[id*="_pnlListArticles"],
.section-daiTerritoriHome > div {
  height: 100%;
}

.grid-due-colonne {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1.5em;
  grid-auto-rows: minmax(100px, auto);
}

.grid-due-colonne .singolo-articolo {
  display: grid;
}

.grid-due-colonne .immagine-articolo {
  height: 230px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.grid-due-colonne .wrapper-contenuto-articolo .edn_publishDate span {
  font-size: 11px;
}

/* responsiveness */
@media (max-width: 768px) {
  .grid-due-colonne {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}

/* COMPATIBILITA IE 11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .h2_basic_gridDueColonne
    .eds_template_List_Article_gridDueColonne
    > div
    > .container-fluid {
    display: block;
  }
  .grid-due-colonne {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .grid-due-colonne .singolo-articolo {
    flex: 1 1 47.5%;
    -ms-flex: 1 1 47.5%;
    margin-bottom: 30px;
  }
  .grid-due-colonne .singolo-articolo:nth-child(odd) {
    margin-right: 5%;
  }
  .grid-due-colonne .singolo-articolo > .wrapper-articolo {
    height: 100%;
  }
}

/* CALENDARIO */
/* CALENDARIO */

.calendario-agenda .day.has_events,
.calendario-agenda .week_days,
.calendario-agenda .day {
  height: 48px;
  border: solid 1px #e8e9ec;
  background-color: #fff;
  text-transform: uppercase;
  color: #262626;
}

.calendario-agenda .week_days {
  background-color: #e5e5e5;
}

.calendario-agenda .day.has_events {
  position: relative;
}

.calendario-agenda .day.has_events::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background-color: #3bade0;
  left: 0;
  bottom: 0;
}

.calendario-agenda .day.has_events > a {
  color: #262626;

  height: 48px;
  display: inline-block;
  line-height: 48px;
}

.calendario-agenda .day.today {
  background-color: #00559f;
  color: #fff; /*_vb_*/
}

.calendario-agenda .day.today.has_events > a {
  color: #fff;
}

.calendario-agenda .day.other_month {
  background-color: #fff;
  color: transparent;
}

.calendario-prossimiEventi .edn_module_title > span {
  line-height: 16px;
}

.calendario-prossimiEventi > .fullHeightList > ul {
  border-left: solid 1px #e5e5e5;
  margin: 0;
  padding: 30px 20px;
  flex-grow: 1;
}

.calendario-prossimiEventi > .fullHeightList > ul > li {
  margin-bottom: 15px;
}

.calendario-prossimiEventi > .fullHeightList > ul > li > a {
  font-family: "Montserrat Bold";
  display: inline-block;
}

.calendario-prossimiEventi > .fullHeightList > ul > li span {
  display: block;
  color: #262626;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
  padding-top: 3px;
}

.calendario-prossimiEventi > .fullHeightList > ul > li span::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 0;
  color: #959595;
  font-size: 17px;
}

.calendario-prossimiEventi > .fullHeightList > ul li {
  list-style: none;
}

.fullWrapperNextEvents .noEventsWrapper {
  border-left: solid 1px #e8e9ec;
}

.fullWrapperNextEvents .noEventsWrapper .titleNoEventsWrapper {
  height: 48px;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
}

.fullWidthCal .noNextEvents.text-grey.text-bold {
  margin-top: 70px;
}

/* CALENDARIO INNER APPUNTAMENTI */
.fullWidthCal .fullWrapperNextEvents {
  flex-grow: 1 !important;
  max-width: 100% !important;
}

/* body#Body:not(.personabar-visible) > form[action*="/Appuntamenti/"] .fullWidthCal { */
body#Body > form[action*="/Appuntamenti/"] .fullWidthCal {
  display: none !important;
}

/* COMPATIBILITA IE 11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .calendario-agenda .day.has_events::before {
    top: 38px;
    bottom: auto;
  }
}

/* ROTATOR PARTNERS */
/* .rotatorPartnersHome .slider > ul > li {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.rotatorPartnersHome .navigation.arrows {
    background: none !important;
    background-color: #3BADE0 !important;
    height: 75% !important;
    width: 20px !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: auto !important;
    text-indent: 0 !important;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */

/* ROTATOR PARTNERS */
/* ROTATOR PARTNERS */

.NewsOne .slider > ul > li {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.NewsOne .navigation.arrows {
  background: none !important;
  /* background-color: #3BADE0 !important; */
  /* height: 75% !important; */
  width: 20px !important;
  top: 0 !important;
  bottom: 0 !important;
  margin: auto !important;
  /* text-indent: 0 !important;
    color: #fff; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: block !important;
  opacity: 1 !important;
}

/* DDR SIDEBAR MENU OLD */
/* .SidebarMenu > .SidebarMenuItem {
    line-height: 36px;
}

.SidebarMenu > .SidebarMenuItem a {
    transition: .3s;
}

.SidebarMenu > .SidebarMenuItem a:hover {
    color: #00559F !important;
}

.SidebarMenu > .SidebarMenuItem.active a {
    color: #00559F !important;
    font-family: "Montserrat Bold" !important;
} */

/* DDR SIDEBAR MENU OLD */

.SidebarMenu > .SidebarMenuItem .subLevel a {
  line-height: 36px;
}

.SidebarMenu > .SidebarMenuItem a,
.SidebarMenu > .SidebarMenuItem .subLevel a {
  transition: 0.3s;
}

.SidebarMenu > .SidebarMenuItem .subLevel a:hover {
  color: #00559f !important;
}

.SidebarMenu > .SidebarMenuItem .subLevel.active a {
  color: #00559f !important;
  font-family: "Montserrat Bold" !important;
}

/* CATEGORY MENU */
.category-menu-container .category-menu-list .single-category a span {
  line-height: 36px;
  transition: 0.3s;
}

.category-menu-container .category-menu-list .single-category a:hover span {
  color: #00559f;
}

.category-menu-container
  .category-menu-list
  > li.active
  .single-category
  a
  span {
  font-family: "Montserrat Bold";
  color: #00559f;
}

/* LISTING - GRID 2 COLONNE */
.listing-sidebar-news {
  display: block;
}

.listing-sidebar-news .immagine-articolo {
  height: 230px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.listing-sidebar-news .wrapper-contenuto-articolo .edn_publishDate span {
  font-size: 11px;
}

/* LISTING TEAM */
.eds_template_List_Article_Team
  .grid-due-colonne.listing-team
  .immagine-articolo {
  background-position: center top;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .eds_template_List_Article_Team
    .listing-team
    .singolo-articolo:not(.EDN_featured)
    .wrapper-articolo,
  .eds_template_List_Article_Team
    .listing-team
    .singolo-articolo:not(.EDN_featured)
    .wrapper-articolo
    .wrapper-contenuto-articolo {
    display: block !important;
  }
}

/* LISTING NEWS */

/* COMPATIBILITA IE 11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .listing-news .single-articolo-listing > .row > div.col-md-5 {
    min-height: 260px;
  }
}

/* LISTING RASSEGNA STAMPA */
.listing-rassegnaStampa .wrapper-tags > a {
  /* modificato da _vb_ */
  border: solid 1px #3bade0;
  color: #3bade0;
  /*padding: .25rem .5rem;*/
  padding: 0.1rem 0.5rem;
  /*text-transform: uppercase;*/
  transition: 0.3s;
  display: inline-block;
  margin-right: 5px;
  /*margin-bottom: 5px;*/
  /*font-size: 13px;*/
  font-size: 11px;
}
.listing-rassegnaStampa .wrapper-tags > a:hover {
  border: solid 1px #00559f;
  color: #00559f;
}

/* DETTAGLIO ARTICOLO */
/* immagine principale */
/*.dettaglio-articolo .dettaglio-articolo-immagine {
    min-height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #fff;
}*/

/* evento */
.dettaglio-articolo .dettaglio-articolo-evento {
  border: solid 1px #3bade0;
}
.dettaglio-articolo .dettaglio-articolo-evento .dettaglio-articolo-esporta {
  font-size: 1rem;
}

/* formattazione contenuto */
.dettaglio-articolo .dettaglio-articolo-content h1,
.dettaglio-articolo .dettaglio-articolo-content .h1,
.dettaglio-articolo .dettaglio-articolo-content h2,
.dettaglio-articolo .dettaglio-articolo-content .h2,
.dettaglio-articolo .dettaglio-articolo-content h3,
.dettaglio-articolo .dettaglio-articolo-content .h3,
.dettaglio-articolo .dettaglio-articolo-content h4,
.dettaglio-articolo .dettaglio-articolo-content .h4,
.dettaglio-articolo .dettaglio-articolo-content h5,
.dettaglio-articolo .dettaglio-articolo-content .h5,
.dettaglio-articolo .dettaglio-articolo-content h6,
.dettaglio-articolo .dettaglio-articolo-content .h6 {
  font-weight: 600;
}
.dettaglio-articolo .dettaglio-articolo-content p {
  margin-bottom: 0;
}
.dettaglio-articolo address {
  font-family: "Montserrat Italic";
}

/* btn registrazione evento articolo */
.dettaglio-articolo .dettaglio-articolo-registrati > span {
  /*  Iacio  attenzione, così non si possono più usare le classi btn-sm e btn-lg che sono sempre utili! _vb_  */
  background-color: #3bade0;
  color: #fff !important;
  border-radius: 0;
  border: none !important;
  outline: none !important;
  transition: 0.3s;
  padding: 0.25rem 0.5rem;
  min-width: auto;
  vertical-align: middle;
  display: inline-block;
}

.dettaglio-articolo .dettaglio-articolo-registrati > span:visited {
  background-color: #3bade0 !important;
  color: #fff;
}

.dettaglio-articolo .dettaglio-articolo-registrati > span:focus,
.dettaglio-articolo .dettaglio-articolo-registrati > span:hover {
  background-color: #00559f !important;
  outline: none !important;
  box-shadow: none !important;
}

.dettaglio-articolo .edn_eventInfoMessage {
  text-align: center;
}

/* categorie articolo */
.dettaglio-articolo .dettaglio-articolo-categorie a {
  color: #3bade0 !important;
  display: block;
}

/* mappa articolo */
.dettaglio-articolo .dettaglio-articolo-mappa > .edn_article_map {
  max-width: 100% !important;
}

/* tags dettaglio */
.dettaglio-articolo .dettaglio-articolo-tags a:visited,
.dettaglio-articolo .dettaglio-articolo-tags a {
  /* modificato da _vb_ */
  display: inline-block;
  margin-right: 5px;
  margin-top: 5px;
  color: #3bade0;
  /*text-transform: uppercase;*/
  border: solid 1px #3bade0;
  padding: 3px 8px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  outline: none !important;
  box-shadow: none !important;
  transition: 0.3s;
  font-size: 12px;
}
.dettaglio-articolo .dettaglio-articolo-tags a:hover,
.dettaglio-articolo .dettaglio-articolo-tags a:focus {
  border: solid 1px #00559f;
  color: #00559f;
}

.dettaglio-articolo .article_gallery {
  margin-bottom: 15px;
}

/* galleria articolo */
.dettaglio-articolo #ChameleonGallery .thumb_container ul {
  text-align: center;
}

.dettaglio-articolo #ChameleonGallery .thumb_container ul > li {
  display: inline-block;
  float: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.dettaglio-articolo #ChameleonGallery .thumb_container ul > li.on {
  border: solid 1px #123456;
}

.dettaglio-articolo #ChameleonGallery .chameleon_slider.NewsOne .thumb_wrapper {
  box-shadow: none;
  background: none;
}

.social_buttons_toggle,
.standalone_button {
  display: none !important;
}

.dettaglio-articolo #ChameleonGallery > .chameleon_slider {
  border: none;
  border-radius: 0;
  background-color: #fff !important;
}

.dettaglio-articolo
  #ChameleonGallery
  .chameleon_slider
  .main_panel
  .items_wrapper
  .item_container {
  text-align: center;
  right: 0;
  bottom: 0;
  max-height: 400px;
  height: auto !important;
}

.dettaglio-articolo
  #ChameleonGallery
  .chameleon_slider.NewsOne
  a.navigation_button {
  text-indent: 0;
  color: transparent;
}

.dettaglio-articolo
  #ChameleonGallery
  .chameleon_slider.NewsOne
  a.navigation_button.prev,
.dettaglio-articolo
  #ChameleonGallery
  .chameleon_slider.NewsOne
  a.navigation_button.next {
  left: 0px;
  opacity: 1 !important;
  height: 400px;
  top: 0px !important;
  width: 20px;
  background: rgb(59, 173, 224) !important;
}

.dettaglio-articolo
  #ChameleonGallery
  .chameleon_slider.NewsOne
  a.navigation_button.prev::before,
.dettaglio-articolo
  #ChameleonGallery
  .chameleon_slider.NewsOne
  a.navigation_button.next::before {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  z-index: 1;
  width: 15px;
  height: 30px;
  font-size: 20px;
}

.dettaglio-articolo
  #ChameleonGallery
  .chameleon_slider.NewsOne
  a.navigation_button.next::before {
  content: "\f054";
}

.dettaglio-articolo .chameleon_slider.NewsOne .main_panel .media_link:hover {
  background: none !important;
}

/* disable share button gallery */
.smbLightOverlayWrapper .actions.socialButtonsTrigger {
  display: none !important;
}

.chameleon_slider .main_panel .items_wrapper .item_container > img {
  height: 100% !important;
  left: 0 !important;
  top: 0 !important;
  width: auto !important;
  max-width: 100% !important;
}

/* social sharing */
.dettaglio-articolo .dropdown-social-menu .dettaglio-drop-container {
  display: none;
  position: absolute;
  width: 250px;
  right: 10px;
  margin-top: 10px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
  padding: 8px;
  text-align: center;
}
.dettaglio-articolo .dropdown-social-menu .dettaglio-drop-container.show {
  display: block;
}

@media (max-width: 992px) {
  .dettaglio-articolo .dettaglio-articolo-copyright {
    flex-direction: column !important;
  }
  .dettaglio-articolo
    .dettaglio-articolo-copyright
    .dettaglio-articolo-copytext {
    margin-bottom: 10px;
  }
  .dettaglio-articolo .dettaglio-articolo-categorie {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* RIMUOVO TITOLO INNER ARTICOLO */
/* #Body:not(.personabar-visible) #Form[action*="/ArticleID/"] .container #dnn_S1_col_8 .h2_basic > h2 { */
#Body #Form[action*="/ArticleID/"] .container #dnn_S1_col_8 .h2_basic > h2 {
  display: none;
}

/* NASCONDO LISTING SIDEBAR PRIMO PIANO IN LISTING NEWS */
/* #Body.personabar-visible #Form[action*="/News/"] .container .h2_basic_sidebarPrimoPiano, */
#Body #Form[action*="/ArticleID/"] .container .h2_basic_sidebarPrimoPiano {
  display: block !important;
}

/* GRAVITY GALLERY */
.accordion-listing-gallery .edsgg__itemsListContainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
  height: auto !important;
  width: 100% !important;
  margin-top: 30px;
}

.accordion-listing-gallery .edsgg__itemsListContainer > .edsgg__itemContainer {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  width: 100%;
  max-width: 33.333333%;
  position: static !important;
  left: auto !important;
  transition-duration: 0.000001s !important;
  margin-bottom: 50px;
}

.accordion-listing-gallery .GravityGalleryElement .edsgg_image_thumbnail {
  margin-bottom: 20px;
}

.accordion-listing-gallery .GravityGalleryElement .edsgg_title,
.accordion-listing-gallery .GravityGalleryElement ~ .edsgg_description {
  width: 100%;
}

.accordion-listing-gallery
  .GravityGalleryElement
  .edsgg__itemDetailsAndLightboxTrigger {
  pointer-events: none;
}

@media (max-width: 767px) {
  .accordion-listing-gallery
    .edsgg__itemsListContainer
    > .edsgg__itemContainer {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/* marker mappa */
.edMaps_map .edMaps_infoWindow {
  height: auto !important;
}
.edMaps_map .marker-popup {
  padding-right: 20px;
}
.edMaps_map .edMaps_infoWindow .edMaps_contentOverflow {
  height: auto !important;
  position: static !important;
  margin: 10px !important;
}
.edMaps_map .edMaps_infoWindow .descrizione-marker {
  line-height: 20px;
}
.edMaps_map .edMaps_infoWindow .descrizione-marker b,
.edMaps_map .edMaps_infoWindow .descrizione-marker strong {
  color: #00559f !important;
}
.edMaps_map .edMaps_infoWindow .edMaps_closeTrigger {
  top: 10px !important;
}

/* PAGINA RISULTATI RICERCA */
/* PAGINA RISULTATI RICERCA */

.dnnSearchBoxPanel,
.dnnSearchResultPanel {
  max-width: 100%;
}
.dnnSearchBoxPanel .dnnSearchBox {
  margin: 0;
  padding: 5px;
  height: 40px;
  box-shadow: none;
  border-radius: 0;
}
.dnnSearchBoxPanel .dnnSearchBox > .dnnSearchBoxClearText {
  right: 8px !important;
}
.dnnSearchBoxPanel .dnnSearchBox > .dnnSearchButton {
  right: 140px !important;
  top: 5px !important;
}
.dnnSearchBoxPanel .dnnSearchBox > .dnnSearchBox_advanced {
  right: 30px;
  width: 100px;
}
.dnnSearchBoxPanel
  .dnnSearchBox
  > .dnnSearchBox_advanced
  .dnnSearchBox_advanced_label {
  height: 30px;
  padding-right: 10px;
  font-size: 14px;
  line-height: 25px;
}
.dnnSearchResultPanel .dnnSearchResultSortOptions {
  border: solid 1px #3bade0;
  border-radius: 0;
}
.dnnSearchResultPanel .dnnSearchResultSortOptions li {
  border: none !important;
  border-radius: 0;
}
.dnnSearchResultPanel .dnnSearchResultSortOptions li a {
  background: #fff !important;
  color: #3bade0;
  border: none;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}
.dnnSearchResultPanel .dnnSearchResultSortOptions > .active a {
  background: #3bade0 !important;
  color: #fff !important;
  border-radius: 0 !important;
}
.dnnSearchResultPanel .plugin-dnn-combo-box > .selectize-input {
  border-radius: 0;
  border: solid 1px #3bade0 !important;
  background: none !important;
  background-color: #fff !important;
  box-shadow: none !important;
  color: #3bade0;
}

/* CONTATTI */
.contacts-info-wrapper {
  font-size: 19px;
  line-height: 23px;
}

@media (min-width: 992px) {
  .contacts-info-wrapper {
    height: 450px;
  }
}

/* MODULO LIVE FORMS */
.LFModuloContatti .LiveForm .page-break-section {
  box-shadow: none !important;
}

.LFModuloContatti .LiveForm .page-break-section > .Field.Textarea > div {
  display: block;
}

.LFModuloContatti
  .LiveForm
  .page-break-section
  > .Field.Textarea
  > div
  > textarea {
  width: 100%;
  min-height: 120px;
}

.LFModuloContatti
  .LiveForm
  .page-break-section
  > .Field.Textarea
  > div
  > textarea,
.LFModuloContatti .LiveForm .page-break-section > .Field input {
  border-radius: 0;
  border: none;
  border: solid 1px #ddd !important;
  font-family: "Montserrat Regular", "Helvetica", Arial, sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  padding: 10px !important;
  transition: 0.3s;
}

.LFModuloContatti
  .LiveForm
  .page-break-section
  > .Field.Textarea
  > div
  > textarea:hover,
.LFModuloContatti
  .LiveForm
  .page-break-section
  > .Field.Textarea
  > div
  > textarea:focus,
.LFModuloContatti .LiveForm .page-break-section > .Field input:hover,
.LFModuloContatti .LiveForm .page-break-section > .Field input:focus {
  border: solid 1px #00559f !important;
  outline: none !important;
}

.LFModuloContatti .LiveForm .page-break-section > .Field > label:not(.error) {
  color: #00559f;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1rem;
  font-weight: 600 !important;
}

.LFModuloContatti
  .LiveForm
  .page-break-section
  > .Field.Phone
  .intl-tel-input
  .flag-container {
  display: none;
}

.LFModuloContatti .LiveForm .page-break-section > .formcontatti-informativa {
  margin-top: 30px !important;
}

.LFModuloContatti
  .LiveForm
  .page-break-section
  > .formcontatti-informativa
  table
  label,
.LFModuloContatti
  .LiveForm
  .page-break-section
  > .formcontatti-informativa
  table
  label
  a
  u {
  font-size: 14px !important;
}

.LFModuloContatti
  .LiveForm
  .page-break-section
  > .formcontatti-captcha
  > label {
  text-align: center;
}

.LFModuloContatti .LiveForm .page-break-section > .formcontatti-captcha > div {
  margin: auto;
}

.LFModuloContatti
  .LiveForm
  .page-break-section
  > .formcontatti-btnSend
  input.bSubmit,
.LFModuloContatti
  .LiveForm
  .page-break-section
  > .formcontatti-btnSend
  input.bSubmit:visited {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  min-width: 220px;
  max-width: 100%;
  height: 40px;
  background-color: #3bade0;
  color: #fff !important;
  border-radius: 0;
  font-size: 18px;
  border: none !important;
  outline: none !important;
  transition: 0.3s;
  font-family: "Montserrat Regular", "Helvetica", Arial, sans-serif !important;
}

.LFModuloContatti
  .LiveForm
  .page-break-section
  > .formcontatti-btnSend
  input.bSubmit:hover,
.LFModuloContatti
  .LiveForm
  .page-break-section
  > .formcontatti-btnSend
  input.bSubmit:focus {
  background-color: #00559f !important;
  outline: none !important;
  box-shadow: none !important;
}

.LFModuloContatti
  .LiveForm
  .page-break-section
  .Field.Required
  label:first-child:not(.error) {
  position: relative;
}

.LFModuloContatti
  .LiveForm
  .page-break-section
  .Field.Required
  label:first-child:not(.error)::before {
  position: absolute;
  content: "*";
  color: red;
  font-size: 14px;
  left: -9px;
  line-height: 23px;
}
.LiveForm.Default .Field.Required.Checkbox table {
  border: none !important;
}

/* THANKYOU MESSAGE */
.LFModuloContatti .LiveForm .thank-you {
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .LFModuloContatti .LiveForm .page-break-section {
    padding: 0 !important;
  }
  .LFModuloContatti
    .LiveForm
    .page-break-section
    > .formcontatti-informativa
    table
    td {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .LFModuloContatti
    .LiveForm
    .page-break-section
    > .formcontatti-informativa
    table
    label,
  .LFModuloContatti
    .LiveForm
    .page-break-section
    > .formcontatti-informativa
    table
    label
    a
    u {
    font-size: 11px !important;
  }
  .LFModuloContatti .LiveForm .Field input[type="radio"],
  .LFModuloContatti .LiveForm .Field input[type="checkbox"] {
    margin-right: 5px !important;
    border: none !important;
    background: #ccc;
    border: solid 1px #ccc !important;
  }
}

/* MODULO LOGIN */
/* contenitore */
.DnnModule .dnnLogin {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.DnnModule .dnnLogin .LoginPanel {
  padding-right: 0;
  margin: auto;
  width: auto;
}

/* input e label */
.DnnModule .dnnLogin .LoginPanel .dnnFormItem .dnnLabel {
  display: block;
  float: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  text-align: left;
  font-weight: bold;
  color: #00559f;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 14px;
  width: 100%;
}

.DnnModule .dnnLogin .LoginPanel .dnnFormItem .dnnLabel + input {
  display: block;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  min-width: 240px;
  border-color: #ddd;
  font-family: "Montserrat Regular", "Helvetica", Arial, sans-serif !important;
  font-size: 1rem;
  transition: 0.3s;
}

.DnnModule .dnnLogin .LoginPanel .dnnFormItem .dnnLabel + input:hover,
.DnnModule .dnnLogin .LoginPanel .dnnFormItem .dnnLabel + input:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #00559f;
}

/* checkbox remember me */
.DnnModule
  .dnnLogin
  .LoginPanel
  .dnnFormItem
  > [id*="_lblLoginRememberMe"].dnnFormLabel {
  width: 0;
  margin: 0;
  margin-bottom: 30px;
}
.DnnModule .dnnLogin .LoginPanel .dnnFormItem > .dnnLoginRememberMe {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.DnnModule
  .dnnLogin
  .LoginPanel
  .dnnFormItem
  > .dnnLoginRememberMe
  > .dnnCheckbox {
  margin: 0;
  margin-right: 10px;
}
.DnnModule
  .dnnLogin
  .LoginPanel
  .dnnFormItem
  > .dnnLoginRememberMe
  > .dnnCheckbox
  > .mark {
  background: transparent;
  padding: 0;
}
.DnnModule
  .dnnLogin
  .LoginPanel
  .dnnFormItem
  > .dnnLoginRememberMe
  > .dnnCheckbox
  + .dnnBoxLabel {
  margin: 0;
  color: #959595;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
}

/* pulsanti accedi-cancella */
.DnnModule .dnnLogin .LoginPanel .dnnFormItem > [id*="_lblLogin"].dnnFormLabel {
  width: 0;
  margin: 0;
}

.DnnModule .dnnLogin .LoginPanel .dnnFormItem > .dnnPrimaryAction,
.DnnModule .dnnLogin .LoginPanel .dnnFormItem > .dnnSecondaryAction {
  display: block;
  font-weight: 400;
  text-align: center;
  /* vertical-align: middle; */
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  min-width: 220px;
  max-width: 100%;
  height: 40px;
  background: #3bade0;
  text-shadow: none;
  box-shadow: none;
  color: #fff !important;
  border-radius: 0;
  font-size: 18px;
  border: none !important;
  outline: none !important;
  transition: 0.3s;
  font-family: "Montserrat Regular", "Helvetica", Arial, sans-serif !important;
}

.DnnModule .dnnLogin .LoginPanel .dnnFormItem > .dnnPrimaryAction {
  margin-top: 30px;
}

.DnnModule .dnnLogin .LoginPanel .dnnFormItem > .dnnPrimaryAction:focus,
.DnnModule .dnnLogin .LoginPanel .dnnFormItem > .dnnPrimaryAction:hover {
  background: #00559f;
}

.DnnModule .dnnLogin .LoginPanel .dnnFormItem > .dnnSecondaryAction {
  margin-top: 10px;
  background-color: #cdcdcd;
}
.DnnModule .dnnLogin .LoginPanel .dnnFormItem > .dnnSecondaryAction:focus,
.DnnModule .dnnLogin .LoginPanel .dnnFormItem > .dnnSecondaryAction:hover {
  background-color: #bcbcbc;
}

/* tasto reimposta password */
.DnnModule .dnnLogin .LoginPanel .dnnFormItem > .dnnLoginActions {
  width: 100%;
}

.DnnModule
  .dnnLogin
  .LoginPanel
  .dnnFormItem
  > .dnnLoginActions
  > .dnnActions
  > li[id*="_liPassword"] {
  float: none;
  margin: 0;
}

.DnnModule
  .dnnLogin
  .LoginPanel
  .dnnFormItem
  > .dnnLoginActions
  > .dnnActions
  > li[id*="_liPassword"]
  > a,
.DnnModule
  .dnnLogin
  .LoginPanel
  .dnnFormItem
  > .dnnLoginActions
  > .dnnActions
  > li[id*="_liPassword"]
  > a:visited {
  display: block;
  font-weight: 400;
  text-align: center;
  /* vertical-align: middle; */
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  min-width: 220px;
  max-width: 100%;
  height: 40px;
  background: rgb(101, 202, 248);
  text-shadow: none;
  box-shadow: none;
  color: #fff !important;
  border-radius: 0;
  font-size: 18px;
  border: none !important;
  outline: none !important;
  transition: 0.3s;
  font-family: "Montserrat Regular", "Helvetica", Arial, sans-serif !important;
}

.DnnModule
  .dnnLogin
  .LoginPanel
  .dnnFormItem
  > .dnnLoginActions
  > .dnnActions
  > li[id*="_liPassword"]
  > a:hover,
.DnnModule
  .dnnLogin
  .LoginPanel
  .dnnFormItem
  > .dnnLoginActions
  > .dnnActions
  > li[id*="_liPassword"]
  > a:focus {
  background: #00559f;
}

/* PAGINA RESET PASSWORD */
.DnnModule .dnnForm.dnnPasswordReset {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.DnnModule .dnnForm.dnnPasswordReset .dnnPasswordResetContent {
  width: 300px;
}
.DnnModule .dnnForm.dnnPasswordReset > .dnnPasswordResetContent > .dnnFormItem {
  margin-bottom: 20px;
}
.DnnModule
  .dnnForm.dnnPasswordReset
  > .dnnPasswordResetContent
  > .dnnFormItem:first-child {
  margin-bottom: 35px;
}
.DnnModule .dnnForm.dnnPasswordReset > .dnnPasswordResetContent input {
  display: block;
  width: 310px;
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  min-width: 240px;
  border-color: #ddd;
  font-family: "Montserrat Regular", "Helvetica", Arial, sans-serif !important;
  font-size: 1rem;
  transition: 0.3s;
}
.DnnModule
  .dnnForm.dnnPasswordReset
  > .dnnPasswordResetContent
  .password-strength-container {
  width: 100%;
}
.DnnModule
  .dnnForm.dnnPasswordReset
  > .dnnPasswordResetContent
  .password-strength-tooltip {
  padding: 5px !important;
}

.DnnModule
  .dnnForm.dnnPasswordReset
  > .dnnPasswordResetContent
  .password-strength-tooltip-content {
  width: 100% !important;
}
.DnnModule
  .dnnForm.dnnPasswordReset
  > .dnnPasswordResetContent
  .password-strength-tooltip-content
  > ul {
  margin: 0 !important;
}
.DnnModule
  .dnnForm.dnnPasswordReset
  > .dnnPasswordResetContent
  .password-strength-tooltip-content
  > ul
  label {
  font-size: 12px !important;
}

.DnnModule .dnnForm.dnnPasswordReset .dnnPrimaryAction,
.DnnModule .dnnForm.dnnPasswordReset .dnnSecondaryAction {
  display: block;
  font-weight: 400;
  text-align: center;
  /* vertical-align: middle; */
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  min-width: 220px;
  max-width: 100%;
  height: 40px;
  background: #3bade0;
  text-shadow: none;
  box-shadow: none;
  color: #fff !important;
  border-radius: 0;
  font-size: 18px;
  border: none !important;
  outline: none !important;
  transition: 0.3s;
  font-family: "Montserrat Regular", "Helvetica", Arial, sans-serif !important;
}

.DnnModule .dnnForm.dnnPasswordReset .dnnActions > li {
  float: none !important;
}
.DnnModule .dnnForm.dnnPasswordReset .dnnPrimaryAction {
  margin-top: 50px;
}

.DnnModule .dnnForm.dnnPasswordReset .dnnPrimaryAction:focus,
.DnnModule .dnnForm.dnnPasswordReset .dnnPrimaryAction:hover {
  background: #00559f;
}

.DnnModule .dnnForm.dnnPasswordReset .dnnSecondaryAction {
  margin-top: 10px;
  background-color: #cdcdcd;
}
.DnnModule .dnnForm.dnnPasswordReset .dnnSecondaryAction:focus,
.DnnModule .dnnForm.dnnPasswordReset .dnnSecondaryAction:hover {
  background-color: #bcbcbc;
}

/* MAPPA DEL SITO */
/* MAPPA DEL SITO */

.menu-sitemap,
.menu-sitemap ul {
  margin-left: 0;
  padding-left: 0;
  text-align: center;
  list-style: none;
}

.menu-sitemap > li {
  margin-bottom: 5px;
  text-align: center;
}

.menu-sitemap .top {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.menu-sitemap .top {
  font-size: 16px;
  text-transform: uppercase;
}

/* EDITS GENERALI MOBILE */
@media (max-width: 991px) {
  .section-daiTerritoriHome .h2_basic_gridDueColonne {
    padding-bottom: 0px !important;
  }
  #Pane_tiConsigliamo .DnnModule-EasyDNNnewsCalendar {
    margin-bottom: 50px;
  }
}

/* CSS PER EDIT STATE */
.personabar-visible .wrapper-ticonsigliamo .dnnSortable > .DnnModule {
  height: 100%;
}
.personabar-visible
  .wrapper-ticonsigliamo
  #carouselTiConsigliamo
  .edn_adminActions {
  text-align: center;
}

/*ARROW ROTATOR */
.edr_carousel .navigation.arrows {
  text-indent: -10000px;
  background: url(/Portals/_default/Skins/UnionCoopMi/img/arrow.svg) no-repeat !important;
  /* top:80px !important; */
}
.edr_carousel.horizontal .navigation.arrows {
  width: 26px;
  height: 27px;
}
.edr_carousel.horizontal .navigation.arrows.previous {
  background-position: center 0;
  transform: rotateY(180deg) !important;
}
.edr_carousel.horizontal .navigation.arrows.previous:hover {
  background-position: center -32px;
}
.edr_carousel.horizontal .navigation.arrows.next {
  background-position: center -64px;
}
.edr_carousel.horizontal .navigation.arrows.next:hover {
  background-position: center -95px;
}
.edr_carousel.vertical .navigation.arrows {
  width: 26px;
  height: 22px;
}
.edr_carousel.vertical .navigation.arrows.previous {
  background-position: center -128px;
}
.edr_carousel.vertical .navigation.arrows.previous:hover {
  background-position: center -156px;
}
.edr_carousel.vertical .navigation.arrows.next {
  background-position: center -185px;
}
.edr_carousel.vertical .navigation.arrows.next:hover {
  background-position: center -213px;
}

.dnnEditState .background-unioncoop {
  display: contents;
}

/* todo Check! */
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #ffffff !important;
}

.altri-servizi {
  display: flex;
  flex: row;
  border: solid;
  border-color: #00559f;
  border-width: 1px;
  margin: 5px;
}

.altri-servizi h2 {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.servizi {
  height: auto;
  justify-content: space-around;
}

/* **********************************
 * SIA - a.gonnella
 * **********************************/

/*
 * BASE
 */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.btn-default {
  font-weight: bold;
}

p {
  color: #062e48;
}

/*
 * CLASSI UTILITY/HELPER
 */

.text-small {
  font-size: 0.8rem;
}

.text-bold {
  font-weight: 700;
}

.btn-default {
  height: unset;
  padding-inline: 2rem;
  padding-block: 1rem;
  color: #fff;
}

a.btn-default:hover,
a.btn-default:focus {
  color: #fff !important;
}

.has-potitionedImage {
  position: relative;
}

.has-potitionedImage img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  position: absolute;
  object-fit: cover;
}

.has-potitionedImage.topRight img {
  right: -4.5rem;
  top: -5rem;
}

.has-potitionedImage.topLeft img {
  left: -4.5rem;
  top: -5rem;
}

@media screen and (max-width: 576px) {
  .btn-default {
    padding-inline: 1.5rem;
    padding-block: 0.75rem;
  }
}

/*
 * BODY > BACKGROUND IMG
 */

.background-siaFVG {
  background-image: url("./Img/bg_SIA_FVG.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  position: fixed;
  top: 180px;
  right: 0;
  overflow-x: hidden;
  z-index: -1;
}

/* FIX LOGO PORTALE */
header .portal-logo-wrapper img {
  max-width: 300px;
  height: auto;
}

@media screen and (min-width: 1200px) {
  header .portal-logo-wrapper img {
    max-width: 400px;
  }
}
@media screen and (max-width: 991px) {
  header .portal-logo-mobile img {
    max-width: 300px !important;
    height: auto !important;
  }
}
@media screen and (max-width: 576px) {
  header .portal-logo-mobile img {
    max-width: 240px !important;
  }
}

/*
 * HOME > SEZIONE HERO
 */

.hero-home,
.hero-home img {
  height: 600px;
}

.hero-home::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  background-image: linear-gradient(
    90deg,
    rgba(0, 85, 159, 0.5) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
}

.hero-home img {
  object-fit: cover;
}

.hero-home .hero-payoff {
  z-index: 10;
}

.hero-home .hero-payoff h1 {
  font-size: 2.5rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 576px) {
  .hero-home,
  .hero-home img {
    height: 80vh;
  }
}

/*
 * FOOTER
 */

/* .logo-avatar img {
  box-shadow: 5px 5px 5px #0000002c;
  width: 100%;
  max-width: 150px;
  max-height: 150px;
}
.logo_footer img {
  width: 100%;
  max-width: 300px;
} */

.footer-logo img,
.footer-main-logo img {
  /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1); */
  width: 100%;
}
.footer-logo img {
  max-width: 200px;
}

.footer-main-logo img {
  max-width: 300px;
}

/* FIX */
.DnnModule .dnnLogin .LoginPanel .dnnActions {
  padding-left: 0;
}

.mainNavbarWrapper {
  transition: 0.2s ease-in-out;
}

.mainNavbarWrapper.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999999;
  box-shadow: 0 1px 1rem rgba(0, 0, 0, 0.085);
  padding-block: 0 !important;
}

/*
 * Rimuovere i marker di default delle liste <li>
 * custom list img
 * Moduli HTML e Moduli EDN
*/

.DnnModule.DnnModule-DNN_HTML ul,
.DnnModule .dettaglio-articolo .dettaglio-articolo-content ul,
.DnnModule .list-serviziSIA .list-serviziSIA_contentBottom ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.DnnModule .dettaglio-articolo .dettaglio-articolo-content ul {
  padding-inline: 2rem;
}

.DnnModule.DnnModule-DNN_HTML ul li,
.DnnModule .dettaglio-articolo .dettaglio-articolo-content ul li,
.DnnModule .list-serviziSIA .list-serviziSIA_contentBottom ul li {
  list-style-type: none;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 576px) {
  .DnnModule.DnnModule-DNN_HTML ul li,
  .DnnModule .dettaglio-articolo .dettaglio-articolo-content ul li,
  .DnnModule .list-serviziSIA .list-serviziSIA_contentBottom ul li {
    padding-left: 2.4rem;
  }
}

.DnnModule.DnnModule-DNN_HTML ul li::before,
.DnnModule .dettaglio-articolo .dettaglio-articolo-content ul li::before,
.DnnModule .list-serviziSIA .list-serviziSIA_contentBottom ul li::before {
  content: "";
  background: url("./Img/ic_point_list.svg") center/contain no-repeat;
  position: absolute;
  left: 0;
  top: -0.25rem;
  width: 2rem;
  height: 2rem;
}

/*  
 * TRANSIZIONI > PULSANTI
 */

.btn-default:hover,
.btn-default:focus,
.btn:hover:not(.btn-primary-circle, .btn-accordion),
.btn:focus:not(.btn-primary-circle, .btn-accordion),
.LFModuloContatti
  .LiveForm
  .page-break-section
  > .formcontatti-btnSend
  input.bSubmit:hover,
.LFModuloContatti
  .LiveForm
  .page-break-section
  > .formcontatti-btnSend
  input.bSubmit:focus {
  box-shadow:
    rgba(0, 0, 0, 0.28) 0px 19px 38px,
    rgba(0, 0, 0, 0.2) 0px 15px 12px !important;
}

.btn-primary.btn-primary-circle:hover,
.btn-primary.btn-primary-circle:focus {
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.DnnModule-EasyDNNnewsTagCloud .tag_cloud .btn-primary:hover,
.DnnModule-EasyDNNnewsTagCloud .tag_cloud .btn-primary:focus,
.dnnForm .dnnPrimaryAction:hover,
.dnnForm .dnnSecondaryAction:hover,
.dnnForm .dnnPrimaryAction:focus,
.dnnForm .dnnSecondaryAction:focus {
  box-shadow:
    rgba(0, 0, 0, 0.19) 0px 10px 20px,
    rgba(0, 0, 0, 0.23) 0px 6px 6px !important;
}

/*
 * ANIMATIONS
 */

.anim-fadeInRight,
.anim-fadeInLeft,
.anim-fadeInUp,
.anim-fadeInAndScale {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-delay: 0.5s;
}

.anim-fadeInRight {
  animation-name: fadeInRight;
}
.anim-fadeInLeft {
  animation-name: fadeInLeft;
}
.anim-fadeInUp {
  animation-name: fadeInUp;
}
.anim-fadeInAndScale {
  animation-name: fadeInAndScale;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 40px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInAndScale {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Disattiva le animazioni */
@media (prefers-reduced-motion: reduce) {
  .anim-fadeInRight,
  .anim-fadeInLeft,
  .anim-fadeInUp,
  .anim-fadeInAndScale {
    animation: none;
  }
}

/*
 * Placeholder per contenuti bloccati causa cookies
 */
.DnnModule .edMaps_container,
.DnnModule .google-map-iframe,
.DnnModule .edn_article_map,
iframe[data-suppressedsrc] {
  background-color: #efefef;
  background-image: url("/Portals/_default/Skins/SiaFVG/Img/cookie_info_blocked_content.svg");
  background-size: 260px 130px;
  background-repeat: no-repeat;
  background-position: center;
}
