@charset "UTF-8";

/* 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;
}

/* New .container media queries for bigger screens */

@media (min-width: 1300px) {
 .container, .container-xl {
    max-width: 1300px;
  }
}
@media (min-width: 1500px) {
 .container, .container-xl {    
    max-width: 1440px;
  }
}
@media (min-width: 1760px) {
 .container, .container-xl {
    max-width: 1600px;
  }
}
    

/* Background Colors Reset */
.bg-primary {
    background-color: #00559F !important;
}

.bg-blue {
    background-color: #3BADE0 !important;
}

.bg-light {
    background-color: #E5E5E5 !important;
}

.bg-grey {
    background-color: #959595 !important;
}

.bg-dark {
    background-color: #262626 !important;
}

.shadow-default {
    box-shadow: 0 4px 6px rgba(0,0,0,0.16);
}


/* Background Colors Reset */
.color-primary {
    color: #00559F !important;
}


.text-blue {
    color: #3BADE0 !important;
}

.text-light {
    color: #E5E5E5 !important;
}

.text-grey {
    color: #959595 !important;
}

.text-dark {
    color: #262626 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-transparent {
    color: transparent;
}


/* Fonts */
@font-face {
    font-family: 'Montserrat';
    src: url("Fonts/Montserrat-Extralight.ttf") format("truetype");
    font-style:normal;
    font-weight: 200;
}

@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-Medium.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: 700;
}

@font-face {
    font-family: "Museo";
    src: url("Fonts/MuseoRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
  } 

  
/* Text Reset */
.text-primary {
    font-weight: 400;
}

.text-bold {
    font-weight: 700;
}

.text-light {
   font-weight: 300;
}

.text-italic {
   font-weight:400;
   font-style: italic;
}

.text-italic-bold {
    font-weight:700;
    font-style: italic;
}

/* Font size for Text */
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, SMALL, SPAN, SUB,
SUP, UL, VAR, APPLET, BASEFONT, BIG, CENTER, DIR, FONT, HR, MENU, PRE, S, STRIKE, TT, U {
    font-size: 1rem;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

h1, .h1 {
    font-size: 1.75rem;
}

h2, .h2 {
    /*font-size: 1.5rem;*/
    font-size: 1.25rem; /*_vb_ 09-02-22*/
}

h3, .h3 {
    /*font-size: 1.25rem;*/
    font-size: 1.2rem; /*_vb_ 09-02-22*/
}

h4, .h4 {
    font-size: 1.15rem;
}

h5, .h5 {
    font-size: 1.05rem;
}

strong, b {
    font-weight: 700;
}

em {
   font-style: italic;
}

em b,
em strong,
b em,
strong em {
    font-weight: 700;
}

.text-bigger {
    font-size: 1.15rem;
}

.text-smaller {
    font-size: .85rem;
}
.text-smallest{
    font-size: .75rem;
}
.text-email{
    font-size: .8rem;
}
.text-spacing {
    letter-spacing: 0.1em;
}
.text-spacing-2 {
    letter-spacing: 0.05em;
}

.Normal, 
.NormalDisabled, 
.NormalDeleted { 
    color: inherit;
    line-height: inherit; 
    font-size: inherit;
}

.bg-primary a,
.bg-primary a:visited {
    color: #fff !important;
}

/*COMMENTATO DA CLAUDIA PER IL MENU*/
/* .bg-primary a:focus,
.bg-primary a:hover {
    color: #3BADE0 !important;
} */

/* .dropdown-menu .dropdown-menu {
display: block;
} */
/* Spaziature */
.spacer-mt {
    margin-top: 40px;
}

.spacer-mb {
    margin-bottom: 40px;
}

.spacer-pt {
    padding-top: 40px;
}

.spacer-pb {
    padding-bottom: 40px;
}


/* misc */
.cursor-pointer {
    cursor: pointer;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-1 {
    opacity: 1 !important;
}


/* Link e Pulsanti */
a,
a:visited {
    color: #3BADE0;
    transition: .3s;
}
a:hover,
a:focus {
    color: #00559F;
}

.m {
    -webkit-appearance: unset;
}
.btn-primary {  /*  Iacio  attenzione, così non si possono più usare le classi btn-sm e btn-lg che sono sempre utili! _vb_  */
    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: .3s;
}

.btn-primary:visited, 
.btn-primary-height:visited {
    background-color: #3BADE0 !important;
    color: #fff;
}

.btn-primary:focus,
.btn-primary:hover,
.btn-primary-height:focus,
.btn-primary-height: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%;
    line-height: 22px;
}

.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: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    min-width: auto;
    max-width: auto;
    height: auto;
}

.btn-primary-height{
    min-width: 220px;
    max-width: 400px;
    height: 100px;
    background-color: #3BADE0;
    color: #fff !important;
    border-radius: 0;
    font-size: 18px;
    border: none !important;
    outline: none !important;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center
}
/* TOP BAR -- TOP BAR -- TOP BAR */
/* TOP BAR -- TOP BAR -- TOP BAR */
.header-wrapper {
    padding-top: 5px;
    padding-bottom: 5px;
    background: rgb(255 255 255);
    box-shadow: 0 0 10px #00000030;
}

.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: 25px;
}


.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;
}
.header-wrapper .translate-list .translate-link a{ 
    font-size:12px;
}
.header-wrapper .translate-list .translate-link a{ 
    font-size:12px;
   }
   .header-wrapper .translate-list .translate-ita a{
    font-weight: bold;
   }

@media(max-width: 991px){
    .header-wrapper .services-list{
        display:flex;
        justify-content: space-between;
    }

    .header-wrapper .services-list .service-link,
    .header-wrapper .social-list .social-link {
        margin-right: 8px;
    }
    #login > .loginGroup > a[title="Logout"] {
        margin-left: 10px;
    }
    .social-list{
        text-align: end;
    }
}



/* HEADER -- HEADER -- HEADER */
/* HEADER -- HEADER -- HEADER */

/* Loghi */
.portal-logo-wrapper img {
    max-height: 80px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.header-banner .header-banner-logo {
    /*max-height: 70px;*/ /*per logo alleanza _vb_*/
    max-height: 100px; /*per banner assemblea _vb_*/
}

/* COMPATIBILITA IE 11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .banner-logos-wrapper .header-banner > div.DnnModule > a[name] {
        display: block;
    }
}

/* NAVBAR MENU */
/* NAVBAR MENU */
/* NAVBAR MENU */
.underline{
    position:relative;
    display: inline-block;
}
.topLevel{
    margin-left: 0;
}
a.underline span::before {
    position: absolute;
    content: "";
    /*bottom: -15px;*/
    bottom: 0; 
    opacity: 0;
    left: 0;
    right: 0;
    height: 6px;
    background-color: #3BADE0;
    width: 100%;
    margin: auto;
    border: none;
    transition: .2s;

}
@media (max-width:1199px){
    a.underline span::before {
    display:none;
    
    }
}
a.underline:hover span::before, .active a.underline span::before {
    opacity:1;
}

ul.dropdown-menu.subLevel li:hover{
background-color: #3BADE0!important;
}
.menuItem .subLevel li a.underline{
    padding: .5rem 1.5rem;
}
.mainNavbarWrapper {
    border-bottom: solid 2px #3BADE0;
}

.mainNavbarWrapper .navbar {
    z-index: 999;
}

#responsiveMenu .nav-link a{
    font-size: 14px;
    line-height: 18px;
}
.nav-link{
    display:flex;
    flex-direction:row;
    align-items:center;
    white-space: nowrap;
}
#responsiveMenu .dropdown-menu {
    width: auto;
    min-width: 10em;
    max-width: 30em;
    /* left: 0px; */
    margin-left: 0px;
    margin-top: 0px;
    background-color:#00559f;
    top: 36px;
    border-radius: 0;
}

ul.dropdown-menu.submenu{
    position: absolute;
    left: 100%;
    top: 0!important;
    white-space: nowrap;
}
@media(max-width:1199px){
    ul.dropdown-menu.submenu{
        position:initial;
        left: 0;
        top: 0;
    }

    a.underline:hover span::before{
        opacity:0;
    }
}


#responsiveMenu .dropdown-menu .dropdown-menu > .dropdown-item {
    padding: .4rem 2.25rem;
}
.navbar-nav .dropdown-menu>li>a {
    white-space: pre!important;
}
.navbar-nav.sm-collapsible a.has-submenu {
    padding-right: 0rem!important;
}
.dropdown-toggle{
    /* padding-left: .25rem!important; */
    padding: 0 3px 0 3px; /*_vb_ 02-02-2022*/
}
.dropdown-menu .dropdown-toggle{
    /* padding-left: .25rem!important; */
    padding: 0 10px 0 10px;
}

/*ALLINEAMENTO FRECCE */
/*ALLINEAMENTO FRECCE */
/*ALLINEAMENTO FRECCE */
/* Casella ricerca */

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    /* vertical-align: .255em; */
    vertical-align: middle;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
#resposiveMenu 
#responsiveMenu span[id*="_ClassicSearch"] {
    transform: translateX(20px);
}

#responsiveMenu .dropdown-menu li {
    background: transparent;
    padding: .5rem 1.5rem;
    transition: .3s;
}
/* #responsiveMenu .dropdown-menu li > a {
    background: transparent;
    padding: .5rem 0rem;
    transition: .3s;
} */
#responsiveMenu .searchInputContainer + .SearchButton {
    width: 18px;
    height: 20px;
    display: inline-block;
    overflow: hidden;
    text-indent: 25px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    background-image: url("/Portals/_default/Skins/CCI_Nazionale/Img/search-icon.png");
    transform: translate(-25px, 5px);
    position:absolute;
}

#responsiveMenu .searchInputContainer > input {
    padding-left: 5px;
    padding-right: 30px;
    height: 30px;
    border: none;
    border-radius: 0;
}

#responsiveMenu .searchInputContainer > .dnnSearchBoxClearText {
    display: none;
}

#responsiveMenu .searchInputContainer > ul.searchSkinObjectPreview {
    max-width: 100%;
    border: solid 1px #eee;
    border-top: none;
}

#responsiveMenu .searchInputContainer > ul.searchSkinObjectPreview > .searchSkinObjectPreview_group {
    display: none;
}

#responsiveMenu .searchInputContainer > ul.searchSkinObjectPreview > li {
    padding: 10px;
}

#responsiveMenu .searchInputContainer > ul.searchSkinObjectPreview > li > span {
    text-transform: uppercase;
    font-size: 13px;
    line-height: 16px;
    color: #3bade0 !important;
    display: block;
    margin-bottom: 5px;
}

#responsiveMenu .searchInputContainer > ul.searchSkinObjectPreview > li > p ~ p {
    display: none;
}

/* responsive */
@media(min-width: 992px){
    
    #responsiveMenu > .navbar-nav {
        margin-left: -.5rem !important;
    }

    #responsiveMenu .navbar-nav .nav-item {
        /* margin-right: 30px; */
        margin-right: 15px;
    }

    /* #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: .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: -10px;
        opacity: 0;
        left: 0;
        right: 0;
        height: 10px;
        background-color: #3BADE0;
        width: 100%;
        margin: auto;
        border:none;
        transition: .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;
    }

}

@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: 1199px){
    li.menuItem.dropdown, li.menuItem {
        background: transparent;
        padding: 0.5rem 1.5rem;
        transition: .3s;
    }
    .mainNavbarWrapper .navbar-toggler, 
    .mainNavbarWrapper .navbar-toggler .navbar-toggler-icon > i{
        font-size: 1.7rem;
        padding-right: 0;
    }
    .mainNavbarWrapper .navbar-toggler .navbar-toggler-icon{
        width: 1.7rem;
        height: 1.7rem;
    }

    #responsiveMenu > .navbar-nav .nav-item a.active {
        border-bottom: solid 5px #00559f;
    }
    #responsiveMenu > .navbar-nav .contains-dropdown > a[data-toggle="dropdown"]{
        float: right;
        padding-right: 15px;
    }

    /* ricerca */
    #responsiveMenu > span[id*="_ClassicSearch"] {
        transform: translate(0,0);
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 15px;
    }

    #responsiveMenu > .form-inline > span[id*="_ClassicSearch"] {
        display: inline-block;
        margin: auto;
        width: 95%;
        transform: translateX(10px);
    }

    #responsiveMenu > .form-inline > span[id*="_ClassicSearch"] > .searchInputContainer {
        width: 90%;
        margin-left: 3%;
    }

    #responsiveMenu > .form-inline > span[id*="_ClassicSearch"] > .searchInputContainer > input {
        width: 100%;
    }

    #responsiveMenu .searchInputContainer > ul.searchSkinObjectPreview {
        max-height: 230px;
        overflow-y: scroll;
        width: 100%;
    }
    
}

/* FORM RICERCA AVANZATO */
.dnnSearchBox_advanced_dropdown[style="display: block;"] {
    border-radius: 0 !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.16) !important;
    top: 40px !important;
}
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnFormItem {
    margin-bottom: 15px;
}
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnFormItem label{
    /*margin-right: 18px;*/
}
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnFormItem label span{
    font-size: .8rem;
}
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnFormItem .dnnTagsInput {
    border-radius: 0;
    box-shadow: none;
}
/* .dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnFormItem .dnnTagsInput input {
    font-family: "Montserrat Regular", "Helvetica", Arial, sans-serif !important;
} */
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnFormItem .dnnTagsInput#advancedTagsCtrl_tagsinput {
    width: 235px !important;
    height: 35px;
}
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnFormItem .selectize-control .selectize-input {
    border-radius: 0;
    border-color: #d0d0d0;
    box-shadow: none;
    background: #fff;
}
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnFormItem .selectize-control .selectize-input > .item {
    font-size: 12px;
}
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnFormItem .dnnCheckbox .mark {
    background: none;
}
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnActions {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 0 !important;
}
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnActions .dnnPrimaryAction,
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnActions .dnnSecondaryAction {
    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: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    min-width: 150px;
    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: .3s;
    /* font-family: "Montserrat Regular", "Helvetica", Arial, sans-serif !important; */
    margin-top: 0 !important;
    margin-bottom: 0;
}

.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnActions .dnnPrimaryAction {
    margin-top: 30px;
}

.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnActions .dnnPrimaryAction:focus,
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnActions .dnnPrimaryAction:hover {
    background: #00559f;
}

.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnActions .dnnSecondaryAction {
    margin-top: 10px;
    background-color: #cdcdcd;
}
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnActions .dnnSecondaryAction:focus,
.dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnActions .dnnSecondaryAction:hover {
    background-color: #bcbcbc;
}

@media(max-width: 991px){
    .dnnSearchBox_advanced_dropdown[style="display: block;"]{
        display: block;
        /*top: 40px !important;
        right: -25px !important;
        width: 300px;*/
        left: auto !important;
    }
    .dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnFormItem {
        display: block !important;
    }
    .dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm {
        /* width: 100% !important; */
        margin: auto !important;
    }
    .dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnFormItem .dnnCheckbox{
        left: auto !important;
        right: 0 !important;
    }
    .dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnActions .dnnPrimaryAction,
    .dnnSearchBox_advanced_dropdown #dnnSearchResultAdvancedForm .dnnActions .dnnSecondaryAction {
        display: block;
        margin-bottom: 10px !important;
    }
}


/*fix 21-02-22 _vb_ */
@media only screen and (max-width: 780px) {
.dnnSearchBox_advanced_dropdown {
width: 440px;
}
}
@media only screen and (max-width: 580px) {
.dnnSearchBox_advanced_dropdown {
width: 320px;
}
}@media only screen and (max-width: 475px) {
.dnnSearchBox_advanced_dropdown {
width: 300px;
}
}@media only screen and (max-width: 390px) {
.dnnSearchBox_advanced_dropdown {
right: -14px !important;
width: 280px;
}
}/* suggerimenti avanzati */
.dnnSearchResultAdvancedTip {
width: auto;
float: none;
font-size: 0.6rem;
position: relative;
top: -10px;
}#dnnSearchResult-advancedTipContainer {
width: 100%;
font-size: 0.7rem;
margin: auto;
}#dnnSearchResult-advancedTipContainer span {
font-size: 0.7rem;
}

/*nascondo autore*/
.dnnSearchResultItem-Others {display: none;}
/*nascondo filtri avanzati "filtra per tag" e "filtra"*/
#dnnSearchResultAdvancedForm .dnnFormItem:first-child,
#dnnSearchResultAdvancedForm .dnnFormItem:nth-child(3) {
    display: none;
}


/* FOOTER -- FOOTER -- FOOTER */
/* FOOTER -- FOOTER -- FOOTER */
/*_vb_ 17-02-22*/
.footer {
    /*padding-bottom: 30px;*/
    margin-top: 75px;
}

.footer .sectionFooter {
    transform: translateY(-40px);
}

.footer .footer-conf-logo > img {
    max-height: 80px;
    margin-bottom: 10px;
}

.footer .footer-info-wrapper {
    font-size: 19px;
    line-height: 23px;
}

.footer a {
    text-decoration: underline;
}

.footer .spacer-pb {
    padding-bottom: 5px;
}
.footer .spacer-pt {
    padding-top: 5px;
}

/* INNER -- INNER -- INNER */
/* INNER -- INNER -- INNER */

@media (max-width: 991px) {
    .menu-last-mobile {
        display:flex;
        flex-direction: column;
    }
    .menu-last-mobile .DnnModule-DDRMenu {
        order: 10;
    }
}



/* NAV PULSANTIERA */
.nav-pulsantiera {
    z-index: 1;
}

.nav-pulsantiera .img-conf-square {
    max-height: 115px;
    margin-bottom: 5px;
    position: absolute;
    /*top: -58px;*/
    bottom: 0; /*_vb_ 09-02-22*/
    left: 0;
    right: 0;
    margin: auto;
    /* z-index: 20; COMMENTATO DA FRANCESCO */
    z-index: -1;
}

@media (max-width:1379px){
    .nav-pulsantiera .img-conf-square {
        /*max-height: 115px;*/
        max-height: 95px; /*_vb_ 09-02-22*/
        margin-bottom: 5px;
        position: absolute;
        /*top: -68px;*/
        left: 0;
        right: 0;
        margin: auto;
        /* z-index: 20; COMMENTATO DA FRANCESCO */
        z-index: -1;
    }
    
}


@media (max-width: 767px){
    .nav-pulsantiera .img-conf-square{
        max-height: 95px;
        margin-bottom: 5px;
        position: absolute;
        top: 0px;
        left: 0;
        right: 0;
        margin: auto;
        /* z-index: 20; COMMENTATO DA FRANCESCO */
        z-index: -1;
    }

    .nav-pulsantiera .btn-pulsantiera { /*_vb_ 02-02-2022*/
        font-size: .85rem;
    }
}
@media screen and (min-width: 1380px){
    .nav-pulsantiera {
        padding: 0.3125em 12em;
    }
}

@media screen and (min-width: 992px){
    .btn-pulsantiera {
        max-width: 180px;
    }
}


/* LISTING GRID UNA COLONNA */
.h2_basic_gridUnaColonna .grid-una-colonna {
    display: block;
}
.h2_basic_gridUnaColonna .grid-una-colonna .immagine-articolo {
    height: 245px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 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 {
        -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%;
    }
}

/* LISTING - GRID 3 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-tre-colonne{
    display: grid;
    grid-template-columns: 1fr 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-tre-colonne .immagine-articolo {
    height: 230px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.grid-tre-colonne .wrapper-contenuto-articolo .edn_publishDate span {
    font-size: 11px;
}

.grid-tre-colonne .singolo-articolo .wrapper-articolo{
    height: 100%;
}

@media(max-width:767px){
    .grid-tre-colonne{
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1.5em;
        
    }
}

/*IMG L'ITALIA COOPERATIVA*/
#dnn_ctr508_HtmlModule_lblContent p img{
    width:100%;
    max-width: 450px;
}
/* WIDGET SOCIAL */

.socialWidget .nav.nav-tabs .nav-item .nav-link {
    transition:.3s;
    border-radius: 0;
}

.socialWidget .nav.nav-tabs .nav-item .nav-link.active {
    background-color: #00559F !important;
}

#widget-tabs {
    border: solid 1px #00559F !important;
}

#widget-tabs #youtube > iframe {
    border: solid 1px #00559F !important;
}

.socialWidget .twitter-timeline .unableToLoad {
    opacity: 0;
    transition: .3s;
}

@media(max-width: 991px){
    #youtube > iframe,
    #twitter > iframe,
    #facebook > iframe {
        height: 450px !important;
    }
}

@media(max-width: 767px){
    #facebook{
        text-align: center !important;
    }
    #twitter > iframe,
    #facebook,
    #facebook > .fb-page.fb_iframe_widget > span > iframe {
        height: 350px !important;
    }
}


/* 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;
    font-weight: 700;
}

.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;
    }
}



/* CAROUSEL - TI CONSIGLIAMO */
.wrapper-ticonsigliamo > div {
    width: 100%;
}

.wrapper-ticonsigliamo .h2_basic_box_ticonsigliamo .content-box > div > .DNNModuleContent.ModEasyDNNnewsC,
.wrapper-ticonsigliamo .h2_basic_box_ticonsigliamo .content-box > div > .DNNModuleContent.ModEasyDNNnewsC > .eds_news_CCI_Nazionale,
.wrapper-ticonsigliamo .h2_basic_box_ticonsigliamo .content-box > div > .DNNModuleContent.ModEasyDNNnewsC > .eds_news_CCI_Nazionale > div[id*="_pnlListArticles"],
.wrapper-ticonsigliamo .h2_basic_box_ticonsigliamo .content-box .ticonsigliamo-fullwrapper,
.wrapper-ticonsigliamo #carouselTiConsigliamo,
.wrapper-ticonsigliamo #carouselTiConsigliamo > .carousel-inner,
.wrapper-ticonsigliamo #carouselTiConsigliamo > .carousel-inner > .carousel-item,
.wrapper-ticonsigliamo #carouselTiConsigliamo > .carousel-inner > .carousel-item > .edn_mediaContainer {
    height: 100%;
}

.wrapper-ticonsigliamo #carouselTiConsigliamo .carousel-item .img-articolo {
    background-size: cover;
    background-position: top center; /* agganciato in alto pewr via della grafica _vb_ */
    background-repeat: no-repeat;
    background-color: #fff;
    width: 100%;
    height: 100%;
    min-height: 387px;
}

.wrapper-ticonsigliamo #carouselTiConsigliamo .carousel-control-arrow {
    width: 20px;
    opacity: 1;
    cursor: pointer;
    font-size: 18px;
}

.wrapper-ticonsigliamo #carouselTiConsigliamo .carousel-indicators {
    bottom: -25px;
}

.wrapper-ticonsigliamo #carouselTiConsigliamo .carousel-indicators > li {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    opacity: 1;
    border: none;
    background-color:#3BADE0;
    border: solid 1px transparent;
}

.wrapper-ticonsigliamo #carouselTiConsigliamo .carousel-indicators > li.active {
    border: solid 1px #3BADE0;
    background-color: #fff;
}

@media(max-width: 991px){ /* aumentata leggermente altezza _vb_ */
    /* .wrapper-ticonsigliamo {
        height: 450px;
    } */
    .wrapper-ticonsigliamo #carouselTiConsigliamo .carousel-item  > .edn_mediaContainer > a {
        display: block;
        height: 400px;
        width: 100%;
    }
}

/* remove space video home */
.PrimoPiano .container_PrimoPiano .DNNModuleContent > div.Normal {
    font-size: 0px;
}


/* 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;
}





/* ACCORDION FEDERAZIONI */
#accordion-federazioni .singola-federazione {
    border-top: solid 1px #E5E5E5;
}

#accordion-federazioni .singola-federazione .content-federazione {
    padding: 1.5rem;
    padding-left: 2.5rem;
}


#accordion-federazioni .singola-federazione .titolo-federazione > .btn-accordion {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 24px;
    height: 26px;
    min-width: 24px;
    max-width: 24px;
    padding: .25rem;
}

#accordion-federazioni .singola-federazione .titolo-federazione > .btn-accordion > i {
    color: #fff;
    font-size: 12px;
}

#accordion-federazioni .singola-federazione .titolo-federazione > .btn-accordion,
#accordion-federazioni .singola-federazione .titolo-federazione > .btn-accordion > i,
#accordion-federazioni .singola-federazione .titolo-federazione > p {
    transition: .3s;
}

#accordion-federazioni .singola-federazione .titolo-federazione > .btn-accordion[aria-expanded="false"]:focus {
    background-color: #3BADE0 !important;
}

#accordion-federazioni .singola-federazione .titolo-federazione > .btn-accordion[aria-expanded="true"]:focus,
#accordion-federazioni .singola-federazione .titolo-federazione > .btn-accordion[aria-expanded="true"],
#accordion-federazioni .singola-federazione .titolo-federazione > p[aria-expanded="true"] {
    background-color: #E5E5E5 !important;
}

#accordion-federazioni .singola-federazione .titolo-federazione > p[aria-expanded="true"] {
   font-weight: 700;
}

#accordion-federazioni .singola-federazione .titolo-federazione > .btn-accordion[aria-expanded="false"] > i.fa-plus {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#accordion-federazioni .singola-federazione .titolo-federazione > .btn-accordion[aria-expanded="true"] > i.fa-plus {
    opacity: 0;
    display: none;

}

#accordion-federazioni .singola-federazione .titolo-federazione > .btn-accordion > i.fa-minus {
    opacity: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
}

#accordion-federazioni .singola-federazione .titolo-federazione > .btn-accordion[aria-expanded="true"] > i.fa-minus {
    opacity: 1;
    display: flex;
}





/* 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 */
.SidebarMenu > .SidebarMenuItem .subLevel a {
    /*line-height: 36px;*/
}

.SidebarMenu > .SidebarMenuItem a,
.SidebarMenu > .SidebarMenuItem .subLevel a {
    transition: .3s;
}

.SidebarMenu > .SidebarMenuItem .subLevel a:hover {
    color: #00559F !important;
    /*font-weight: 700;*/
}

.SidebarMenu > .SidebarMenuItem .subLevel.active > a {
    color: #00559F !important;
    font-weight: 700!important;
}

.SidebarMenu > .SidebarMenuItem .subLevel.active .subLevel a {
    color: #3BADE0!important;
    /* font-family: "Montserrat Regular" !important; */
    font-weight: 400;
}

.SidebarMenu > .SidebarMenuItem .subLevel.active .subLevel a:hover {
    color: #00559F !important;
 
}
/* CATEGORY MENU */
.category-menu-container .category-menu-list .single-category a span {
    line-height: 36px;
    transition: .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"; */
    font-weight: 700;
    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 */
.listing-news .single-articolo-listing > .row {
    min-height:260px;
}

.listing-news .immagine-articolo-listing {
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.listing-news .pre-titolo-listing {
    line-height: 31px;
}

.listing-news .titolo-listing {
    line-height: 20px;
    transition: .3s;
}

.listing-news .link-autore-listing > a {
    /* font-family: "Montserrat Bold"; */
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 14px;
    color: #3BADE0;
    transition: .3s;
}

.listing-news .titolo-listing:hover,
.listing-news .link-autore-listing > a:hover {
    color: #00559F;
}

.listing-news ~ .article_pager {
    display: flex;
    flex-direction: row;
}

.listing-news ~ .article_pager > .page {
    color: #3BADE0;
    border: solid 1px #e5e5e5;
    border-right: navajowhite;
    height: 32px;
    width: 32px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: .3s;
    font-weight: 700;
}

.listing-news ~ .article_pager > .page.active {
    color: #00559f;
}

.listing-news ~ .article_pager > .page:last-child {
    border-right: solid 1px #e5e5e5;
}

.listing-news ~ .article_pager > .page:hover {
    color: #00559F;
}

.listing-news .listing-categorie > a {
    color: #3BADE0 !important;
}

.listing-news .btn-registrati {
    border: solid 1px #3BADE0;
    transition: .3s;
}

.listing-news .btn-registrati:hover {
    border: solid 1px #00559F;
}

@media(max-width: 991px){
    .listing-news .immagine-articolo-listing {
        min-height: 250px;
    }
}

/* 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: .1rem .5rem;
    /*text-transform: uppercase;*/
    transition: .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;*/ /*_vb_ 09-02-22 - non usiamo più il bkg così l'immagine viene visualizzata per intero nel dettaglio*/
    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"; */
    font-style: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: .3s;
    padding: .25rem .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: .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;
    /*top: 450px !important;*/ /*why? _vb_*/
}

.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 {
    /*padding-top: 40px;*/ /*_vb_16-11-22*/
    /* margin-top: 20px; */
    margin-bottom: 20px;
    text-align: center;
    right: 0;
    bottom: 0;
    max-height: 400px;
    height: auto !important;
}

.dettaglio-articolo #ChameleonGallery .chameleon_slider .main_panel .items_wrapper .item_container > div[id*="chameleon_video_container"]{
    transform: translateY(-40px);
    width: calc(100% - 40px) !important;
    margin: auto !important;
}

.dettaglio-articolo #ChameleonGallery .chameleon_slider .main_panel .items_wrapper .item_container > div[id*="chameleon_video_container"] > iframe{
    height: calc(100% - 100px) !important;
    width: 100% !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; */
    /*height: auto !important;
    left: 0 !important;
    top: 0 !important;
    width: auto !important;
    max-width: 100% !important;*/ /*_vb_16-11-22*/
}

/* 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;
    }
}



/* LISTING TERRITORI */
.terr-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.terr-wrap .terr-element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.terr-wrap .terr-img {
    height: 230px;
    margin-bottom: 15px;
}

.terr-wrap .terr-img + p {
    margin-bottom: 0;
}


/* 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;
}
.personabar-visible .ui-dialog .ui-dialog-content {
    overflow-x: hidden !important;
}

/* BANNER COOKIES */
/* COOKIE BAR */
.acceptCookieBar {
    color: #262626;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    margin-top: -1px;
    min-height: 20px;
    padding: 20px 10%;
    position: fixed;
    text-transform: unset;
    top: 0;
    width: 100%;
    z-index: 999999;
    margin: 0 auto;
    text-align: center;
    background: #fff url(/Portals/0/Logo_CCI_Nazionale_web.png) no-repeat center 20px /150px;
    padding-top: 70px;
    box-shadow: 0 0 5px #555;
}

.acceptCookieBar a {
    color: #00559F !important;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    border: 1px solid #00559f;
    border-radius: 0;
    padding: 0 5px;
    font-size: 14px;
    cursor: pointer;
}

.mainNavbarWrapper.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}







/* PAGINA RISULTATI RICERCA */
.dnnSearchBoxPanel,
.dnnSearchResultPanel {
    max-width: 100%;
}
.dnnSearchBoxPanel {
    padding: 10px !important;
}
.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,
.LFModuloContatti .LiveForm .page-break-section > .Field select {
    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: .3s;
    width:100%;
}

/* Chrome/Opera/Safari */
.LFModuloContatti .LiveForm .page-break-section > .Field.Textarea > div > textarea::-webkit-input-placeholder,
.LFModuloContatti .LiveForm .page-break-section > .Field input::-webkit-input-placeholder,
.LFModuloContatti .LiveForm .page-break-section > .Field select::-webkit-input-placeholder{
    color: transparent;
}

/* Firefox 19+ */
.LFModuloContatti .LiveForm .page-break-section > .Field.Textarea > div > textarea::-moz-placeholder,
.LFModuloContatti .LiveForm .page-break-section > .Field input::-moz-placeholder,
.LFModuloContatti .LiveForm .page-break-section > .Field select::-moz-placeholder{
    color: transparent;
}

/* IE 10+ */
.LFModuloContatti .LiveForm .page-break-section > .Field.Textarea > div > textarea:-ms-input-placeholder,
.LFModuloContatti .LiveForm .page-break-section > .Field input:-ms-input-placeholder,
.LFModuloContatti .LiveForm .page-break-section > .Field select:-ms-input-placeholder{
    color: transparent;
}

/* Firefox 18- */
.LFModuloContatti .LiveForm .page-break-section > .Field.Textarea > div > textarea:-moz-placeholder,
.LFModuloContatti .LiveForm .page-break-section > .Field input:-moz-placeholder,
.LFModuloContatti .LiveForm .page-break-section > .Field select:-moz-placeholder{
    color: transparent;
}

.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: .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: .375rem .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: .3s;
    font-weight: 400;
    /* 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, 
.LiveForm.Default .Field.Required.Radiobutton table
 {
    border: none !important;
}

.LiveForm.Default .Field.form.unioneterritoriale input{
    width: 100%!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-weight: 400;
    /* font-family: "Montserrat Regular", "Helvetica", Arial, sans-serif !important; */
    font-size: 1rem;
    transition: .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: 700;
    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: .375rem .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: .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: .375rem .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: .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: .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: .375rem .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: .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;
}




/* STILE DROPDOWN WEBMAIL */
/* #dropdownWebmail + .dropdownWebContainer {
    display: none;
} */
#dropdownWebmail + .dropdownWebContainer {
    position: absolute;
    display: block;
    width: 250px;
    top: 100%;
    z-index: 999999;
    left: 0;
    padding: 10px 0;
}

#dropdownWebmail + .dropdownWebContainer > a {
    padding: .4rem 1.5rem;
    transition: .3s;
}
#dropdownWebmail + .dropdownWebContainer > a:focus,
#dropdownWebmail + .dropdownWebContainer > a:hover {
    background: #3BADE0 !important;
    color: #fff !important;
}



/* MAPPA DEL SITO */
.menu-sitemap > li {
    margin-bottom: 15px;
}
.menu-sitemap .top {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}
.menu-sitemap .top {
    font-size: 18px;
    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;
    }
}


/* LISTING GESTIONE BANNER */
.listing-gestione-banner .immagine-articolo-listing {
    background-size: contain;
    width: 80%;
    margin: auto;
}





/* CSS PER EDIT STATE */
.personabar-visible .wrapper-ticonsigliamo .dnnSortable > .DnnModule {
    height: 100%;
}
.personabar-visible .wrapper-ticonsigliamo #carouselTiConsigliamo .edn_adminActions {
    text-align: center;
}



/* CONSERVAZIONE DEI DATI PRIVACY - TABELLA */
table.tabCookies {
 margin-bottom: 20px;
}

.tabCookies td,
.tabCookies th {
    padding: 8px 20px;
    border: solid 1px #999;
}


/* COMPATIBILITA FIREFOX */
@-moz-document url-prefix() {
    #responsiveMenu .navbar-nav .nav-item {
        margin-right: 12px;
    }
}

@supports (-ms-ime-align:auto) {
    #responsiveMenu .navbar-nav .nav-item {
        margin-right: 10px;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    #responsiveMenu .navbar-nav .nav-item {
        margin-right: 10px;
    }
}


/* EDIT FRANCESCO -25092020 */
/* Allungare verticamente video youtube pari alla news a destra */
.container.home-page ~ .container .socialWidget {
    height: 100%;
}
/* .container.home-page ~ .container .socialWidget > div[id*="ContentPane"],
.container.home-page ~ .container .socialWidget > div[id*="ContentPane"] > div[id*="ModuleContent"],
.container.home-page ~ .container .socialWidget > div[id*="ContentPane"] > div > .Normal,
.container.home-page ~ .container .socialWidget #widget-tabs,
.container.home-page ~ .container .socialWidget #widget-tabs .embed-responsive{
    height: 260px;
} */

@media(max-width: 991px){
    /* .container.home-page ~ .container.section1 .section-daiTerritoriHome + div .h2_basic.h2_basic_gridDueColonne {
        margin-top: 2rem;
    }    */
    .spacer-pt {
        padding-top: 1.3rem !important;
    }
    .spacer-pb {
        padding-bottom: 1.3rem !important;
    }
    .edr_carousel.horizontal .navigation.arrows {
        display: flex !important;
        opacity: 1 !important;
    }
}


/* dropdwon mnu claudia */
.dropdown-toggle::after{
    /* vertical-align: inherit !important; */
    vertical-align: middle;
}
@-moz-document url-prefix(){
    .second-level::after {
        position: absolute;
        top: 17px;
    }
}

@media (min-width: 992px){
    /* .dropdown-menu .dropdown-toggle:after{
        border-top: .3em solid transparent;
        border-right: 0;
        border-bottom: .3em solid transparent;
        border-left: .3em solid;
    } */
    /* @-moz-document url-prefix(){
        .second-level::after {
            position: absolute;
            bottom: 90px;
        }
    } */
    
    .dropdown-menu .dropdown-menu {
        margin-left:0; margin-right: 0;
    }

    .dropdown-menu li{
        position: relative;
    }
    .nav-item .submenu{ 
        display: none;
        position: absolute;
        left:100%; top:-7px;
    }
    .nav-item .submenu-left{ 
        right:100%; left:auto;
    }

    .dropdown-menu > li:hover{ 
        background-color: #3BADE0;
    }

    .dropdown-menu > li:hover > .submenu{
        display: block !important;
    }
}





/*COMMENTATO DA CLAUDIA 14-10-2021*/
/* .nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px;
    } */

    .mainNavbarWrapper .navbar #responsiveMenu #ddnMenu .topLevel .ccimenu a::before{
        position: absolute;
        content: "";
        bottom: -10px;
        opacity: 1;
        left: 0;
        right: 0;
        height: 10px;
        background-color: #3a9f00;
        width: 100%;
        margin: auto;
        border: none;
        transition: .2s;
    }
    
    /*LASSOCIAZIONE*/
    .table_associazione{
        width:100%;
        
    }

    .table_associazione tbody tr>td{
        padding-bottom: .7rem;
    }

    /*SOSTENIBILITà - DONNE - GIOVANI - STORIE COOPERATIVE */
    .gallery_labe{
        position:relative;
    }
    .gallery_label div{
        position:absolute;
        color:white; 
        text-align: end;
        font-weight: 700;
        background-color: #3BADE0;
        bottom:0px;
        right: 0px;
        
        clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
        width: 70%;
        padding: 20px 10px;
   }
   .gallery_label .storie_cooperative{
    position:absolute;
    color:white; 
    text-align: end;
    font-weight: 700;
    background-color: #3BADE0;
    bottom: 0px;
    right: 0px;
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
    width: 70%;
    padding: 6px 10px
}

@media (max-width:991px){
    .gallery_label div{
        position:absolute;
        color:white; 
        text-align: end;
        font-weight: 700;
        background-color: #3BADE0;
        bottom: 0px;
        right: 0px; 
        clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
        width: 70%;
        padding: 20px 10px;
   }
   .gallery_label .storie_cooperative{
    position:absolute;
    color:white; 
    text-align: end;
    font-weight: 700;
    background-color: #3BADE0;
    bottom: 0px;
    right: 0px;
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
    width: 70%;
    padding: 6px 10px
    }
}
@media (max-width:1199px){
    .gallery_label div{
        position:absolute;
        color:white; 
        text-align: end;
        font-weight: 700;
        background-color: #3BADE0;
        bottom: 0px;
        right: 0px; 
        clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
        width: 90%;
        padding: 20px 10px;
   }
   .gallery_label .storie_cooperative{
    position:absolute;
    color:white; 
    text-align: end;
    font-weight: 700;
    background-color: #3BADE0;
    bottom: 0px;
    right: 0px;
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
    width: 90%;
    padding: 6px 10px
    }
}

@media(min-width:768px){
    #S0_col_3 {
    display:flex;
    flex-direction:row
}
}

@media (max-width:767px) {
    #S0_col_3{
        display:flex;
        flex-direction: column;
    }
}
/*GIORNALE RADIO*/

/*MENU CLAUDIA */

.navbar{
    text-transform: uppercase;
}
.menuItem{
    padding-right:20px;
}
@media(max-width:768px){
    .menuItem{
        padding: 10px 10px;
        margin-bottom: 10px; 
}
.subLevel li a span{
    white-space: break-spaces;
}

#responsiveMenu .dropdown-menu li {
    background: transparent;
    padding: .5rem .5rem;
    transition: .3s;
}
}
.navbar-nav.sm-collapsible ul .dropdown-menu .dropdown-header, .navbar-nav.sm-collapsible ul .dropdown-menu>li>a {
    padding-left: 0px!important;
}



/*LE INIZIATIVE*/
/*LE INIZIATIVE*/
/*LE INIZIATIVE*/

.leiniziative-container{
    width: 80%;
    margin: auto;
    padding: 15px 0px;
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    height: 300px;
}

.leiniziative-item{
    width: 80%;
    background-color: white;
    margin: auto;
    text-transform: uppercase;
    font-weight: 700;

}
/*DOVE CI TROVIAMO */
/*DOVE CI TROVIAMO */
/*DOVE CI TROVIAMO */
.dovecitroviamo{
    width: auto; 
    height:100%;
    max-height: 300px;
    /*margin: auto;
    display: block;*/ /*_vb_ 09-02-2022*/
   }
   @media (min-width:993px) and (max-width:1499px){
    .dovecitroviamo{
        width: 100%; 
        height:auto;
        margin: auto;
        display: block;
       }
       .leiniziative-container{
        width: 100%;
        margin: auto;
        padding: 15px 0px;
        display:flex;
        flex-direction: column;
        justify-content: space-around;
        height: auto;
    }
   }

@media (min-width:577px) and (max-width:992px){
    .leiniziative-container{
        width: 100%;
        margin: auto;
        padding: 15px 0px;
        display:flex;
        flex-direction: column;
        justify-content: space-around;
        height: auto;
    }
    .dovecitroviamo{
        width: auto; 
        height:auto;
        margin: auto;
        display: block;
       }
    
}

@media(max-width:576px){
    .leiniziative-container{
        width: 100%;
        margin: auto;
        padding: 15px 0px;
        display:flex;
        flex-direction: column;
        justify-content: space-around;
        height: auto;
    }

    .dovecitroviamo{
        width: 100%; 
        height:auto;
        margin: auto;
        display: block;
       }
}
/*_vb_ 17-02-2022*/
@media (min-width:992px) and (max-width:1299px){
    .menuItem{
        padding:0 5px;
        /*margin-bottom: 1px;*/
    }
    .underline span, .menuItem .dropdown-menu a span {
        font-size:.9rem!important ;
    }
    #responsiveMenu .searchInputContainer > input { 
      max-width: 200px;
    }
}
@media (min-width:1300px) and (max-width:1399px){
    .menuItem{
        padding:0 5px;
        /*margin-bottom: 5px;*/
    }
    .underline span{
        font-size:1rem!important ;
    }
  /* .dropdown-toggle{
padding-left: 0px!important;
    } */
}

/*PRIMO PIANO */
/*PRIMO PIANO */
/*PRIMO PIANO */

/*override proporzioni 16:9*/ 
#dnn_PrimoPiano_News.newsOnly .embed-responsive-16by9::before {
    padding-top: 37.1%;
}

.carousel-control-prev, .carousel-control-next{
opacity:1 !important;
}

.carousel-control-prev{
    justify-content: flex-start!important;
}
.carousel-control-next{
    justify-content: flex-end!important;
}

.carousel-control-prev .carousel-control-prev-icon, .carousel-control-next .carousel-control-next-icon{
   background-color: #3bade0;
   height:50px!important;
}

/*GIOVANI COOPERATORI*/
/*GIOVANI COOPERATORI*/
/*GIOVANI COOPERATORI*/
.gallery_label {
    position: relative;
}

.gallery_label div.giovani-cooperatori {
    position: absolute;
    color: white;
    text-align: end;
    font-weight: 700;
    background-color: #3BADE0;
    right: 0px;
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
    width: 70%;
    padding: 20px 10px;
    bottom:0;
}


/*AREA STUDI*/
/*AREA STUDI*/
/*AREA STUDI*/
.gallery_label div.area-studi {
    position: absolute;
    color: white;
    text-align: end;
    font-weight: 700;
    background-color: #3BADE0;
    right: 0px;
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
    width: 30%;
    padding: 20px 10px;
    bottom: 0;
}

.gallery_label div.area-studi {
    position: absolute;
    color: white;
    text-align: end;
    font-weight: 700;
    background-color: #3BADE0;
    right: 0px;
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
    width: 30%;
    padding: 20px 10px;
    bottom: 0;
}

ul.square-list{
    list-style: none;
    list-style-image: url('/portals/_default/skins/cci_nazionale/img/square_list.svg');
}

.banner-sm-fondosviluppo{
    background-image: url('/portals/_default/skins/cci_nazionale/img/Bg-CC_AreaStudi_BannerFondosviluppo.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100px;
    position: relative;
}

.banner-sm-fondosviluppo div{
    background-color: #ffea64;
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-sm-fondosviluppo div i.fas{
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #2A245B;
}

.banner-sm-fondosviluppo div h3 a{
    text-transform: uppercase;
    font-size: 1rem;
    color: #2A245B;
    margin-bottom:0;
}

@media(max-width:1499px){
    .banner-sm-fondosviluppo div h3 a{
        font-size: 0.938rem;
    }
}

@media(min-width:1500px){
    .banner-sm-fondosviluppo div h3 a{
        font-size: 1.25rem;
    }
}



/* 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_9 .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;
    }
    

    .carousel-control-next, .carousel-control-prev {
        width: auto!important;
    }

    /*LOGO ALLEANZA COOPERATIVE ITALIANE*/
    .alleanza_cooperative{
        max-height: 80px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /*BANNER_CCI*/
.S1_COL_3D{
display: flex;
flex-direction: column;
    }
    @media (max-width:991px) {
        div#dnn_S1_col_3d div {
            width:100%
        }

    #dnn_S1_col_3d{
            display: flex;
            flex-direction: row;
                }
        #dnn_S1_col_3d > div{
            padding: 0 15px;
        }
    }
    @media (max-width:767px) {
        div#dnn_S1_col_3d div {
            width:100%
        }

    #dnn_S1_col_3d{
            display: flex;
            flex-direction: column;
                }
                #dnn_S1_col_3d > div{
                    padding: 0px;
                }
            }
/* .banner_CCI{
    position:relative;
    height: 200px;
    width:100%;
    
} */
.banner_CCI{
    position: relative;
    height: 200px;
    width: 100%;
overflow: hidden;

}

.banner_CCI div{
    height: 100%;
}

.banner_CCI img{
    position: absolute;
    bottom: 0;

}
.banner_CCI a::after{
    content: "";
    position: absolute;
    width: 100px;
    right: 0;
    top:0;
    background: transparent url("/portals/_default/skins/cci_nazionale/img/CCI-Square_trasparent_meta.svg") left top /cover;
    height: 100%;
}

.banner_CCI span{
    background-color: #00b2fea2;
    position: absolute;
    bottom: 0;
    display: flex;
    width: 100%;
    color: white;
    height: 50%;
    align-items: center;
    margin: 0;
    padding-left: 20px;
    font-weight: 700;
    z-index: 0;
}
@media(min-width:991px) and (max-width:1199px){
    .banner_CCI span{
        z-index: 1;
    }
}

/*SOSTENIBILITÀ*/
/*SOSTENIBILITÀ*/
/*SOSTENIBILITÀ*/
.sostenibilita > img{
    max-width: 400px;
    height: auto;
    width:100%;
    margin: 1rem;
}

/*RICHIESTA INFO*/
/*RICHIESTA INFO*/
/*RICHIESTA INFO*/
.page-break-section li.Checkbox table{
    padding: 0 !important;
}
.page-break-section li.Checkbox table input,
.page-break-section li.Checkbox table label{
    display: inline;
}

/*LA INTRANET*/
/*LA INTRANET*/
/*LA INTRANET*/
.intranet_section .banner_CCI{
    position:relative;
    height: 250px;
    width:100%;
    max-width: 500px;  
}

/*IDENTITÀ VISIVA - CERCA IL MATERIALE*/
/*IDENTITÀ VISIVA - CERCA IL MATERIALE*/
/*IDENTITÀ VISIVA - CERCA IL MATERIALE*/
.search_input{
font-size: small;
position: relative;
}
.search_input .input{
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom:10px;
}

.search_input .do_search{
    position: absolute;
    overflow: hidden;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    line-height: 30px;
    text-indent: 40px;
}

.search_input .do_search::before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: 5px;
    bottom: 5px;
    background: transparent url("/Portals/_default/Skins/CCI_Nazionale/Img/search-icon.png") no-repeat center center /contain;
}


.acInput{
    width:100%;
    padding: 0 5px;
    border: 1px solid #ddd;
    line-height: 30px;
    padding-right: 40px;
}
.acInput:focus{
    border: 1px solid #00559f !important;
    outline: none !important;
}

.EDN_search.theme_CCI_Nazionale {
    background-color: #fff;
    padding: 5px 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.16);
    display: block !important;
}
.EDN_search.theme_CCI_Nazionale ul {
    margin: 0;
    list-style-type: none;
}
.EDN_search.theme_CCI_Nazionale ul {
    margin: 0;
    list-style-type: none;
}
.EDN_search.theme_CCI_Nazionale li {
    border-bottom: 1px solid #efefef;
}
.EDN_search.theme_CCI_Nazionale li:last-child {
    border-bottom: none;
}
.EDN_search.theme_CCI_Nazionale ul a {
    font-size: .85rem;
}




/* MOSTRA ELEMENTI VISIBILI SOLO IN MOBILE IN MODALITÀ EDIT */
body.dnnEditState .section7 .row #dnn_S7_col_4,body.dnnEditState .section8 .row #dnn_S8_col_3 {
    display: block!important;
}



/*CATEGORY MENU*/
/*CATEGORY MENU*/
/*CATEGORY MENU*/
.category-menu-list >.level_0 >.single-category > a {
    text-transform: uppercase;
}

/*BALLON MAPS*/
/*BALLON MAPS*/
/*BALLON MAPS*/
.website{
    font-size: .8rem;
}
.EtichettaCarica{
    font-size: 1rem!important;
    color:#00559F;
    font-weight: 700; 
}
.infoBox h2{
    font-size: 1rem!important;
    color:#00559F;
    font-weight: 700;
    margin-bottom: 0;
}
.infoBox{
    font-size: .9rem;
}
.CCI_Unioni_Map p, .CCI_Unioni_Map p span, .CCI_Unioni_Map p a, .CCI_Unioni_Map div a, .CCI_Unioni_Map div span {
font-size: .9rem;
}


/*NOI SUL TERRITORIO*/
.edMaps_slmWrapper{
    padding: 20px !important;
}

.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_labeled{
    padding: 0 !important;
}

.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_slmWrapper > .edMaps_locationSearchWrapper{
    margin: 0 !important;
    width: 100% !important;
}

.edMaps_slmWrapper label{
    display: none;
}

.edMaps_moduleWrapper > .edMaps_mapWrapper .edMaps_textBox > input[type="text"]{
    width: 100% !important;
    border: solid 1px #d4d4d4 !important;
    padding: 0 10px !important;
    height: 30px;
    color: #848484 !important;
    font-family: "Montserrat",Helvetica,Arial,sans-serif !important;
}

/*APP CONFCOOPERATIVE*/
.img_App{
    border-radius:22.5%;
    width:50px;
}


.background_app h1{
    color:#00559F;
    text-transform: uppercase;
    ;
}
.background_app_desktop{
    background-image: url(/portals/_default/skins/CCI_nazionale/img/BG_app_desktop.jpg);
    height: 600px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background_app_mobile{
display:none;
}
@media(max-width:991px){
    .background_app_desktop{
        background-image: none;
        height: auto;

    }
    .background_app_mobile{
    display:inline-block;

    }
}
.sicurezza_lavoratori >.embed-responsive>iframe.embed-responsive-item >html>body::-webkit-full-page-media{
    background-color: transparent!important;

}
.lavorareSicurezza{
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}










/*****************************************************************************************************************************/
/* MODULO LOGIN AD-PRO*/

.LoginContainer {
    max-width: 240px;
    margin: auto;
}

.LoginContainer .dnnFormItem {
    display: flex;
    flex-direction: column;
}

.dnnFormItem > label.dnnFormLabel, .dnnFormItem > span.dnnFormLabel {
  display: block;
  width: 100%;
  text-align: left;
  color: #00559f;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.dnnFormItem input[type="text"], .dnnFormItem input[type="password"] {
  width: 100%;
  min-width: 200px;
  margin-bottom: 10px;
  border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dnnLoginService [id*="_lblLoginRememberMe"].dnnFormLabel {
    width: 0;
    margin: 0;
    margin-bottom: 30px;
}
.dnnLoginService  .dnnLoginRememberMe {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.dnnLoginService  .dnnLoginRememberMe input {
  margin-right: 5px;
}
.dnnLoginService  .dnnLoginRememberMe label {
  margin: 0;
  color: #959595;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
}
.dnnLoginService  .dnnCheckbox .mark {
  background: transparent;
}

.dnnLoginService .dnnLoginRememberMe {
    order: 1;
}

.dnnLoginService .dnnPrimaryAction {
    order: 2;
    align-self: center;
    width: 100%;
    border: none;    
    background: #3BADE0 !important;
    padding: .375rem .75rem;
    transition: all .3s linear;
    text-shadow: none !important;
    border-radius: 0;
    box-shadow: none;
    font-weight: 400;
    font-size: 18px;
}

.dnnLoginService .dnnPrimaryAction:focus, .dnnLoginService .dnnPrimaryAction:hover {
  background: #00559f !important;
}



/* Icona per link esterni nei menu */

#dnnMenu a[target=_blank]:after,
.menu-sitemap a[target=_blank]:after,
.FooterMenu a[target=_blank]:after,
.SidebarMenu > .SidebarMenuItem .subLevel a[target=_blank]:after {
    content: "\f08e";
    font-family: 'FontAwesome';
    display: inline-block;
    opacity: .7;
    font-size: 50%;
    padding-left: 2px;
    vertical-align: super;
}

/*Form Assemblea*/
li.form >div > input, li.form> div >div >input{
    border-radius:0px!important;
}

.LiveForm.Default .Field.Required.form input{
   border: 1px solid #ccc!important;
}

.LiveForm.Default .Field.Required.form input:hover, .LiveForm.Default .Field.Required.form input:focus{
    border: solid 1px #00559f !important;
    outline: none !important;
}

.LiveForm .page-break-section .Field.Required.form label:first-child::before {
    position: absolute;
    content: "*";
    color: red;
    font-size: 14px;
    left: 5px;
    line-height: 23px;
}
.LiveForm .page-break-section .Field.Required.form label:first-child,
.LiveForm .page-break-section .Field.form label:first-child{
    color: #00559F;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .1rem;
    font-weight: 600 !important;
}

.LiveForm.Default .Field .Field-Container-Wide {
    display: table;
    width: 100%;
}

.LiveForm .page-break-section > .Field.Textarea > div > textarea {
    width: 100%;
    min-height: 120px;
}

.LiveForm .page-break-section > .formcontatti-btnSend input.bSubmit,.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: .3s;
    font-weight: 400;
}

li.Phone >div.Field-Container-Wide>span>input::placeholder{
    color:transparent!important;
}

#LiveForm831>ul>li[style*="visibility: hidden"],
#LiveForm833>ul>li[style*="visibility: hidden"],
#LiveForm876>ul>li[style*="visibility: hidden"],
#LiveForm874>ul>li[style*="visibility: hidden"],
#LiveForm882>ul>li[style*="visibility: hidden"],
#LiveForm898>ul>li[style*="visibility: hidden"],
#LiveForm901>ul>li[style*="visibility: hidden"]

{
    display: none !important;
  }

.widthEmailCooperativa .Field-Container-Wide input{
    width:100%!important;
}

.ModenaCF .Field-Container-Wide,
.ModenaCF .Field-Container-Wide input,
.ente_organizzazione .Field-Container-Wide,
.ente_organizzazione .Field-Container-Wide input{
    width:100%!important;
}

.AssembleaModena[style*="visibility: hidden"] {
    display: none !important;
  }

  /*Video Assemblea*/
  .video-assemblea >iframe{
    width: 100%;
    height: 100%;
    min-height: 700px;
  }
@media (max-width:768px) {
    .video-assemblea >iframe{
        width: 100%;
        height: 100%;
        min-height: 300px;
      }
}

@media (max-width:991px) {
    .video-assemblea >iframe{
        width: 100%;
        height: 100%;
        min-height: 400px;
      }
}
@media (max-width:1199px) {
    .video-assemblea >iframe{
        width: 100%;
        height: 100%;
        min-height: 500px;
      }
}

/* A.Gonnella - 04/30/2024 - pagina Area Riservata */
#istruzioniAreaRiservata {
    max-width: 900px;
}

/* Form the european house ambrosetti */
/* .form-pagebreak-back-container
.LiveForm.Default input[type="submit"], .LiveForm.Default input[type="button"] {
    min-width: 100px;
    background: #27AE60;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
} */

.DnnModule-942{
    background-color: white;
}
.headerMilk{
    object-fit: cover;
    height: 700px;
    object-position: center center;
}

.hero-section {
    position: relative;
    height: 70vh;
    background: url('/Portals/_default/Skins/CCI_Nazionale/Img/tutti_prodotti_web.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255 255 255 / 60%); /* Filtro blu con opacità */
    z-index: 1;
}

.hero-section h1 {
    color: #00559f;
    position: relative;
    font-size: 4rem;
    z-index: 2;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-section h2 {
    color: #00559f;
    position: relative;
    font-size: 3rem;
    z-index: 2;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-section img {
    position: relative;
    z-index: 2;
    max-width:500px;
    width:100%;
    height:auto;
    bottom:-50px;
}
.saveThedate h2{
    color:#00559f;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 2rem;;
}
.saveThedate h3{
    color:#00559f;
    font-weight: 600;
    font-size: 2rem;
}
.saveThedate h4{
    color:#00559f;
    font-size: 1.5rem;
}

.maps-milk{
    margin-top: 2rem;
    width:100%;
}
.maps-milk iframe{
    width:100%
}

@media (max-width:992px){
    .hero-section {
        position: relative;
        height: 50vh;
        background: url("/Portals/_default/Skins/CCI_Nazionale/Img/tutti_prodotti_web.jpg") center/cover no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        flex-direction: column;
    }
    
    .hero-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255 255 255 / 60%);
        z-index: 1;
    }
    
    .hero-section h1 {
        color: #00559f;
        position: relative;
        font-size: 2.5rem;
        z-index: 2;
        font-weight: 800;
        text-transform: uppercase;
    }
    
    .hero-section h2 {
        color: #00559f;
        position: relative;
        font-size: 1.5rem;
        z-index: 2;
        font-weight: 800;
        text-transform: uppercase;
    }
    
    .hero-section img {
        position: relative;
        z-index: 2;
        max-width: 300px;
        width: 100%;
        height: auto;
        bottom: -100px;
    }
    
    .saveThedate h2 {
        color: #00559f;
        font-weight: 800;
        font-size: 2rem;
    }
    
    .saveThedate h3 {
        color: #00559f;
        font-weight: 600;
        font-size: 1.25rem;
    }
    .maps-milk{
        width:100%;
        max-width: 800px;
    }
    .saveThedate h4{
        color:#00559f;
        font-size: 1rem;
    }
    
}

.img-milk {
    background-image: url('/portals/0/Assemblea/Tutti_prodotti.jpg'); /* Sostituisci 'tuo_sfondourl.jpg' con il percorso dell'immagine */
    background-size: cover; /* Adatta l'immagine alla dimensione dello schermo */
    background-position: center; /* Centra l'immagine */
    background-repeat: no-repeat; /* Evita la ripetizione dell'immagine */
    /* display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center; */
  }
  .img-milk>.row{
    background-color: #00559f1e;
    height: 100%;
  }
  .LFModuloContatti .LiveForm .page-break-section > .formcontatti-btnSend.btn-cassa input.bSubmit,
   .LFModuloContatti .LiveForm .page-break-section > .formcontatti-btnSend.btn-cassa input.bSubmit:visited{
        background-color: #00964f;
   }

   .logo-gp{
    width:100%;
    max-width:140px;
    height:auto
   }

   .logo-pr{
    width:100%;
    max-width:300px;
    height:auto
   }
@media (max-width:992px){
    .logo-gp{
        width:100%;
        max-width:140px;
        height:auto
       }
    
       .logo-pr{
        width:100%;
        max-width:200px;
        height:auto
       }
}