﻿body {
    margin: 0px;
    font-family: 'Museo', sans-serif;
    font-weight: 100;
    text-align: center;
    font-size: 16pt;
}

input[type=text], textarea, select {
    font-family: 'Museo', sans-serif;
    font-weight: 100;
    box-sizing: border-box;
}

select {
    border: 1px solid #a2a2a2;
    border-radius: 0px;
    outline: none !important;
}

.container {
    width: 1350px;
    text-align: left;
    margin: auto;
}

.header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: #fff;
    padding: 30px 0px 20px 0px;
    z-index: 1000;
}

    .header > .container {
        position: relative;
    }

    .header.mob {
        background-color: #e9e9eb;
    }

    .header .logo {
        float: left;
        width: 210px;
    }

        .header .logo img {
            width: 100%;
        }

#nav-menu {
    float: right;
    margin: 0px 35px 0px 0px;
    padding: 0px;
    list-style-type: none;
}

    #nav-menu li {
        display: inline-block;
        height: 50px;
        border-left: solid 1px #a2a2a2;
        padding: 3px 12px 0px 12px;
        vertical-align: top;
        position: relative;
        box-sizing: border-box;
        float: left;
    }

        /*#nav-menu li:last-child {
            border-right: solid 1px #a2a2a2;
        }*/

        #nav-menu li a, #nav-menu li span {
            color: #787878;
            display: inline-block;
            font-size: 13pt;
            font-weight: 300;
            line-height: 15pt;
        }

        #nav-menu li span {
            cursor: default;
        }

        #nav-menu li a:hover {
            color: #000;
        }

        #nav-menu li ul {
            position: absolute;
            background-color: #fff;
            top: 50px;
            left: -1px;
            padding: 0px;
            border: 1px solid #a2a2a2;
            width: 140%;
            box-sizing: border-box;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s linear, opacity 0.3s ease-out;
        }

            #nav-menu li ul.vis {
                visibility: visible;
                opacity: 1;
            }

            #nav-menu li ul li, #nav-menu li ul li:last-child {
                border-left: 0px;
                border-right: 0px;
                height: auto;
                padding-top: 0px;
                padding-bottom: 2px;
                margin-top: 5px;
                margin-bottom: 5px;
                width: 100%;
            }

        #nav-menu li.pre {
            min-width: 115px;
        }

            #nav-menu li.pre span {
                margin-top: 3px;
            }

        #nav-menu li .pub {
            position: absolute;
            top: 27px;
        }

        #nav-menu li ul li a {
            text-transform: uppercase;
            font-size: 11pt;
            line-height: 14px;
        }

.header #cercaGoogle {
    /*position: absolute;*/
    top: 4px;
    right: 0px;
}

    .header #cercaGoogle .svg {
        width: 20px;
        margin-top: 4px;
        margin-right: 16px;
        cursor: pointer;
    }

        .header #cercaGoogle .svg:hover * {
            fill: #af320c;
        }

    .header #cercaGoogle .search-box {
        position: absolute;
        top: 35px;
        right: 0px;
        overflow: hidden;
        width: 0px;
        box-shadow: 0px 1px 3px rgba(0,0,0,0.08);
    }

        .header #cercaGoogle .search-box.vis {
            width: 260px;
        }

        .header #cercaGoogle .search-box input {
            border: solid 1px #dedede;
            border-radius: 3px;
            padding: 4px 15px;
            width: 100%;
            float: right;
            font-size: 12pt;
            background: white !important;
        }

#nav-menu-mob {
    float: right;
    border-top: 1px solid #787878;
    border-bottom: 1px solid #787878;
    cursor: pointer;
    box-sizing: border-box;
    display: none;
}

    #nav-menu-mob img, #nav-menu-mob svg {
        width: 36px;
        height: 36px;
        float: left;
    }

    #nav-menu-mob span {
        float: left;
        padding: 5px 10px;
        color: #787878;
    }

    #nav-menu-mob:hover .menu-mob, #nav-menu-mob.sel .menu-mob {
        fill: #000;
    }

    #nav-menu-mob:hover span, #nav-menu-mob.sel span {
        color: #000;
    }

#menu-bkg {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
}

.main {
    margin-top: 130px;
}

    .main .body {
        margin-top: 30px;
    }

.footer {
    margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
}

    .footer .col {
        background-color: #eeeef0;
        box-sizing: border-box;
        overflow: hidden;
        padding: 12px;
        width: 33.3%;
        display: inline-block;
        float: left;
        border: solid 2px #fff;
    }

        .footer .col h3 {
            color: #787878;
            font-size: 12pt;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .footer .col .list {
            list-style-type: none;
            margin-top: 20px;
            padding: 0px;
        }

            .footer .col .list li {
                margin-bottom: 12px;
            }

        .footer .col.images .list.ico img {
            float: left;
            margin-top: 3px;
        }

        .footer .col.images .list.ico img {
            width: 20px;
        }

        .footer .col.images .list.img .i {
            width: 115px;
            display: inline-block;
            max-height: 90px;
            overflow: hidden;
	    margin-top: 10px;
        }

            .footer .col.images .list.img .i img {
                width: 100%;
            }

        .footer .col.images .list .txt {
            color: #787878;
            display: block;
            float: right;
        }

        .footer .col.images .list.ico .txt {
            width: 90%;
            max-height: 50px;
            text-overflow: ellipsis;
            overflow: hidden;
        }

        .footer .col.images .list.img .txt {
            width: 65%;
        }

        .footer .col.images .list .txt:hover {
            color: #000;
        }

        .footer .col.images .list .txt b {
            color: #e95024;
        }

        .footer .col.images .list b {
            font-weight: 500;
        }

        .footer .col.images .list.img b {
            color: #787878;
        }

    .footer .bottom {
        margin-top: 15px;
        /*margin-bottom: 15px;*/
        padding: 10px 0px;
        border-top: solid 1px #787878;
        border-bottom: solid 1px #787878;
        text-transform: uppercase;
        text-align: center;
        font-size: 15pt;
		width: 100%
    }

        .footer .bottom a {
            color: #787878;
        }

            .footer .bottom a:hover {
                color: #000;
            }
    .footer .credits {
        /*margin-top: 5px;*/
        /*margin-bottom: 15px;*/
        padding: 8px 0px;
        text-align: center;
        font-size: 11pt;
		width: 100%
    }

        .footer .credits a {
            color: #787878;
        }

            .footer .credits a:hover {
                color: #000;
            }
.path {
    list-style-type: none;
    margin: 10px 0px 30px 0px;
    padding: 0px;
}

    .path li {
        display: inline-block;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 11pt;
        color: #000;
        margin: 0px 2px;
    }

    .path.b a {
        color: #787878;
    }

.pp .img {
    width: 48%;
    float: left;
}

    .pp .img img {
        width: 100%;
    }

.pp .txt {
    width: 48%;
    float: right;
}

.box {
    margin-top: 50px;
}

    .box .box-b {
        margin-top: 20px;
    }

.box .box-b[class*=cat-] {
    padding: 40px 0px 90px 0px;
}

    .box .box-b[class*=cat-] .section {
        margin-bottom: 20px;
        font-size: 25pt;
        font-weight: 600;
    }

        .box .box-b[class*=cat-] .section > img, .box .box-b[class*=cat-] .section > svg {
            width: 62px;
            float: left;
            margin: -11px 20px 0px 0px;
        }

    .box .box-b[class*=cat-] .sub-section {
        font-size: 21pt;
        font-weight: 500;
        display: block;
        padding-top: 50px;
    }

        .box .box-b.cat-blue .replaced-svg * {
            fill: #0d91c1;
        }

        .box .box-b.cat-blue .section {
            color: #0d91c1;
        }

        .box .box-b.cat-green .replaced-svg * {
            fill: #2dcf9c;
        }

        .box .box-b.cat-green .section {
            color: #2dcf9c;
        }

        .box .box-b.cat-violet .replaced-svg * {
            fill: #f669ab;
        }

        .box .box-b.cat-violet .section {
            color: #f669ab;
        }



.cols, .cols .links, .pp .links {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    break-inside: avoid;
    margin-top: 50px;
}

    .cols .links, .pp .links {
        margin-top: 10px;
    }

        .cols .links li, .pp .links li {
            font-style: italic;
            font-weight: 500;
        }

.col-1 {
    column-count: unset;
    -moz-column-count: unset;
    -webkit-column-count: unset;
    column-gap: unset;
    -moz-column-gap: unset;
    -webkit-column-gap: unset;
}

    .col-1 > li {
        margin-bottom: 25px;
    }

        .col-1 > li .ico {
            width: 36px;
            float: none;
            margin-bottom: 6px;
        }

        .col-1 > li h3 {
            color: #000;
        }

.col-2 {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    column-count: 2;
    margin-top: 10px;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-gap: 50px;
    -moz-column-gap: 50px;
    -webkit-column-gap: 50px;
}

.col-3.osservatorio {
    list-style-type: none;
    margin: 20px 0px 0px 0px;
    padding: 0px;
    column-count: 3;
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-gap: 50px;
    -moz-column-gap: 50px;
    -webkit-column-gap: 50px;
    font-size: 12pt;
}

.col-3 > li {
    width: 33.3%;
    float: left;
    border-left: dotted 1px #787878;
    padding: 0px 20px;
    box-sizing: border-box;
    min-height: 150px;
    margin-bottom: 30px;
}

    .col-3 > li.clear {
        float: none;
        border: none;
        padding: 0px;
        min-height: unset;
        width: 100%;
        margin: 0px;
    }

    .col-3 > li h3 {
        font-size: 20pt;
        margin-bottom: 6px;
        color: #000;
    }

    .col-3 > li .ico {
        width: 12%;
        float: left;
    }

    .col-3 > li .txt {
        width: 84%;
        float: right;
    }

.col-4 > li {
    width: 27%;
    border-left: solid 1px #e95024;
    padding: 0px 20px;
    box-sizing: border-box;
    float: left;
}

.news-l {
    list-style-type: none;
    margin: 30px 0px 0px 0px;
    padding: 0px;
}

    .news-l li {
        margin-bottom: 30px;
        border-bottom: solid 1px #000;
        padding-bottom: 20px;
    }

        .news-l li:last-child {
            border-bottom: none;
        }

        .news-l li img {
            float: left;
            width: 40%;
            margin-right: 50px;
        }

            .news-l li img:last-child {
                margin-right: 0px;
            }

        .news-l li h4 {
            margin-top: 20px;
        }
        .news-l li h3 {
            color: #787878;
        }

        .news-l li .txt {
            column-count: 2;
            -moz-column-count: 2;
            -webkit-column-count: 2;
            column-gap: 50px;
            -moz-column-gap: 50px;
            -webkit-column-gap: 50px;
            margin-top: 15px;
            width: 84%;
        }

.pre-det .col-1 {
    width: 84%;
}

.clear {
    clear: both;
}

.tran, .tran *, a, button, .button, h1.title {
    transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.loader {
    background: url("/Content/images/loader.svg") no-repeat center center transparent;
    width: 100%;
    height: 100%;
}

a {
    color: #e95326;
    text-decoration: none;
}

    a:hover, a.b:hover, .b a:hover {
        color: #af320c;
    }

    a img {
        border: none;
    }

    a.b, .b a {
        color: #000;
    }

    a.plus, a.minum {
        font-weight: 700;
        color: #787878;
    }

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    color: #e95024;
    margin: 0px;
}

    h1.title, h2.title, h3.title {
        font-size: 27pt;
    }

    h2.title {
        color: #d11f70;
    }

b {
    font-weight: 500;
}

.imprese .eber-logo-emr, .imprese .eber-logo-emr * {
    fill: #abd8d3;
}

    .dipendenti .eber-logo-emr, .imprese .eber-logo-emr * {
        fill: #fccc7f;
    }

div.multilevel ol {
    counter-reset: section;
    list-style-type: none;
}

    div.multilevel ol li:before {
        counter-increment: section;
        content: counters(section, ".") " ";
    }

.sp-map {
    width: 700px;
    margin: 60px 0px 40px 0px;
    position: relative;
}

    .sp-map .mm {
        position: absolute;
        left: 0px;
    }

    .sp-map .mg {
        cursor: pointer;
    }

.sp-el {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

    .sp-el > li {
        margin-bottom: 40px;
    }

        .sp-el > li h4 {
            font-weight: 100;
            font-size: 18pt;
            text-transform: uppercase;
        }

            .sp-el > li h4 b {
                font-weight: 700;
            }

        .sp-el > li p {
            line-height: 26pt;
        }

            .sp-el > li p a {
                color: #5a5a5a;
            }

                .sp-el > li p a:hover {
                    color: #e95024;
                }

        .sp-el > li .col-4 > li h5 {
            font-size: 16pt;
            color: #5a5a5a;
            min-height: 80px;
        }

        .sp-el > li .col-4 > li br {
            display: block;
            margin-bottom: 15px;
        }

        .sp-el > li .col-4 > li:last-child {
            border-right: solid 1px #e95024;
        }

        .sp-el > li .up {
            font-style: italic;
            font-weight: 700;
            display: inline-block;
            margin-top: 20px;
        }

    .sp-el .cols.col-4 li a {
        color: #5a5a5a;
    }

        .sp-el .cols.col-4 li a:hover {
            color: #e95024;
        }

.div-search {
    margin-top: 30px;
}

    /*.div-search * {
        float: left;
    }*/

    .div-search label {
        text-transform: uppercase;
        margin-top: 2px;
    }

    .div-search input[type=text] {
        font-size: 14pt;
        padding: 3px 10px;
        margin-left: 10px;
    }

    .div-search .btn {
        vertical-align: middle;
        display: inline-block;
        margin-left: 10px;
        width: 26px;
        margin-top: 2px;
        cursor: pointer;
    }

        .div-search .btn .svg * {
            fill: #545454;
        }

        .div-search .btn:hover .svg * {
            fill: #e95024;
        }

    .div-search ul {
        list-style-type: none;
        padding-left: 0px;
    }

        /*.div-search ul > li {
            margin-right: 100px;
        }*/

    .div-search .drop {
        font-size: 14pt;
        padding: 3px 10px;
        margin-left: 10px;
        font-family: 'Museo', sans-serif;
        font-weight: 100;
        box-sizing: border-box;
        width: auto;
    }

.cover {
    list-style-type: none;
    margin: 60px 0px 0px 0px;
    padding: 0px;
}

    .cover li {
        width: 33%;
        float: left;
        margin-bottom: 20px;
    }

        .cover li a {
            color: #000;
        }

            .cover li a:hover {
                color: #e95024;
            }

            .cover li a .img {
                width: 90px;
                height: 90px;
                overflow: hidden;
                float: left;
                margin-right: 15px;
            }

                .cover li a .img img {
                    width: 100%;
                }

            .cover li a span {
                font-weight: 500;
                font-size: 13pt;
            }

.gsc-search-button .gsc-search-button-v2 {
    display: none;
}

div.table-title {
    display: block;
    margin: auto;
    max-width: 600px;
    padding: 5px;
    width: 100%;
}

.table-title h3 {
    color: #fafafa;
    font-size: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: "Roboto", helvetica, arial, sans-serif;
    text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

/*** Table Styles **/

.table-fill {
    background: white;
    border-radius: 3px;
    border-collapse: collapse;
    height: 320px;
    margin: auto;
    padding: 5px;
    width: 100%;
}

th {
    color: #e95024;
    background: white;
    border-top: 1px solid #C1C3D1;
    border-bottom: 4px solid #9ea7af;
    border-right: 1px solid #C1C3D1;
    font-size: 23px;
    font-weight: 100;
    padding: 12px;
    text-align: left;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}

    th:first-child {
        border-top-left-radius: 3px;
    }

    th:last-child {
        border-top-right-radius: 3px;
        border-right: none;
    }

tr {
    border-top: 1px solid #C1C3D1;
    border-bottom: 1px solid #C1C3D1;
    font-size: 16px;
    font-weight: normal;
    text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}

    tr:first-child {
        border-top: none;
    }

    tr:last-child {
        border-bottom: none;
    }

    tr:nth-child(odd) td {
        background: #EBEBEB;
    }

    tr:last-child td:first-child {
        border-bottom-left-radius: 3px;
    }

    tr:last-child td:last-child {
        border-bottom-right-radius: 3px;
    }

td {
    background: #FFFFFF;
    padding: 10px;
    text-align: left;
    vertical-align: middle;
    font-weight: 300;
    font-size: 12px;
    border-right: 1px solid #C1C3D1;
}

    td:last-child {
        border-right: 0px;
    }

th.text-left {
    text-align: left;
}

th.text-center {
    text-align: center;
}

th.text-right {
    text-align: right;
}

td.text-left {
    text-align: left;
}

td.text-center {
    text-align: center;
}

td.text-right {
    text-align: right;
}

.select2 {
    min-width: 70px;
    margin: 0px 10px 0px 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    left: 0% !important;
}

.select2-container--default .select2-selection--single {
    border-radius: 0px !important;
}

.select2-dropdown {
    border-radius: 0px !important;
}

.select2-container--classic .select2-selection--single:focus {
    border: 0px !important;
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 0px !important;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: white !important;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 0px !important;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 0px !important;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: white !important;
    color: #e95024 !important;
}

.select2-results__option[aria-selected=true] {
    background-color: white !important;
}

.select2-container *:focus {
    outline: none !important;
}

.select2-container {
    text-align: left !important;
}

.option1 {
    width: 200px;
}

#select2-Settore-container {
    width: 470px;
}

#select2-Tipologia-container {
    width: 70%;
}

#select2-Anno-container {
    width: 470px;
}

#select2-Anni-container {
    width: 350px;
}

li label {
    margin-right: 10px;
}

.div-search.tran ul li {
    display: inline-block;
}

.overme{
    max-height : 160px;
    overflow:hidden;
    text-overflow: ellipsis;
}

    .overme p {
        margin-top:0px;
        padding-bottom:20px;
    }
    
    /*.exp-c {
        cursor: pointer;
    }

        .exp-c p {
            margin-top: 0px;
        }*/

ul.social {
    list-style-type: none;
    display: inline-block;
    padding: 0px;
    margin: 10px 0px;
}

    ul.social li {
        float: left;
        margin-right: 10px;
    }

.doc {
    /*display: none;*/
    margin-left: 20px;
}

    .doc h3 {
        font-size: 15px;
    }

.plus {
    cursor: pointer;
    /*font-weight: bold;*/
    color: #787878;
}

.struct .cont {
    position: relative;
    padding-bottom: 20px;
}

    .struct .cont .plus {
        position: absolute;
        right: 4px;
    }

exp-c {
    cursor: default;
}

    .exp-c p {
        margin-bottom: 5px;
    }

.pubblicazioni {
    list-style-type: disc;
    column-count: 3;
    column-gap: 80px;
    border-left: dotted 1px #787878;
    column-rule: 1px dotted #787878;
}

    .pubblicazioni.col-3 > li {
        float: unset;
        border-left: none;
        min-height: unset;
        padding: 0px;
        margin-bottom: 10px;
        width: auto;
    }

    .pubblicazioni li > a {
        color: #000000;
    }

.impresa-sicura {
    border-top: dotted 1px #787878;
    margin-top: 30px;
}

    .impresa-sicura h4 {
        color: #000;
        margin-top: 5px;
    }

    .impresa-sicura .box {
        margin-top: 0px;
    }

#fondartigianato:before {
    display: block;
    content: " ";
    margin-top: -40px;
    height: 115px;
    visibility: hidden;
}

ul.sez {
    list-style: none;
    padding-left: 0px;
}

.sez .sez-li {
    display: block;
    padding-right: 50px;
    float: left;
}

.sez-li h4 {
    text-transform: uppercase;
    color: #545454;
    font-weight: 800;
    margin-bottom: 20px;
}

.sez-li.contratti {
    width: 25%;
}

.modulistica {
    margin-top: 10px;
    font-weight: bold;
}

.tableSediPeriferiche {
    width: 100%;
    border-spacing: 50px;
}

    .tableSediPeriferiche tr td {
        background: none;
        font-size: 16pt;
        font-weight: 100;
        border-left: solid 1px #e95024;
        border-right: none;
        padding: 0px 20px 20px 20px;
        vertical-align: top;
    }

        .tableSediPeriferiche tr td:nth-child(3) {
            border-right: solid 1px #e95024;
        }

        .tableSediPeriferiche tr td h5 {
            font-size: 16pt;
            color: #5a5a5a;
            min-height: 80px;
        }

        .tableSediPeriferiche tr td a {
            color: #5a5a5a;
        }
