:root {
  --bd-body-color: #333333;
  --bd-body-color-rgb: 51, 51, 51;
  --bd-body-bg: #FFFFFF;
  --bd-body-bg-rgb: 255, 255, 255;
  --bd-light-bg: #F3F3F3;
  --bd-light-bg-rgb: 243, 243, 243;
  --bd-dark-bg: #767676;
  --bd-dark-bg-rgb: 118, 118, 118;
  --bd-dark-bg-footer: #931918;
  --bd-dark-bg-footer-rgb: 147, 25,24;
  --bd-light-fg: #FFFFFF;
  --bd-light-fg-rgb: 255, 255, 255;
  --bd-light-fg-footer: #9B9B9B;
  --bd-light-fg-footer-rgb: 155, 155, 155;
  --bd-dark-fg: #333333;
  --bd-dark-fg-rgb: 51, 51, 51;
  --bd-mid-fg: #DDDDDD;
  --bd-mid-fg-rgb: 221, 221, 221;
  --bd-dkred: #931918;
  --bd-dkred-rgb: 147, 25,24;
}


/* Impostazioni generali e ridimensionamenti responsive */
body,
html {
  background: var(--bd-body-bg);
  color: var(--bd-body-color);
  font-family: 'Titillium Web', Arial, sans-serif, system-ui, -apple-system;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: default;
}

b, strong {
  font-weight: 600 !important;
}

.h1, h1 {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.3;
  padding-top: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--bd-body-color) !important;
}

.h2, h2 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--bd-body-color) !important;
}
.h3, h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  padding-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--bd-body-color) !important;
}
.h4, h4 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.9375rem;
  color: var(--bd-body-color) !important;
}

.bianco {
  background: var(--bd-body-bg);
}
.grigio {
  background: var(--bd-light-bg);
}

.justified {
  text-align: justify;
}
.centered {
  text-align: center;
}

@media only screen and (min-width: 576px) {
  h2, .h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
.d-flex {
  display: -moz-box !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.justify-content-left {
  -moz-box-pack: start !important;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.justify-content-center {
  -moz-box-pack: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-content-right {
  -moz-box-pack: end !important;
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.align-items-top {
  -moz-box-align: start !important;
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: start !important;
}
.align-items-middle {
  -moz-box-align: center !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-items-bottom {
  -moz-box-align: end !important;
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: end !important;
}

a > img:hover {
  opacity: .5;
}

.main-container a {
  color: #636363;
  font-weight: 600;
  text-decoration: none;
}
.main-container a:hover {
  color: var(--bd-dkred);
  font-weight: 600;
  text-decoration: none;
}

ul li {
  font-weight: 300;
}
ul li::marker {
  color: var(--bd-dkred);
  font-weight: 300;
  font-size: 0.925rem;
}
.region-content {
  padding: 0;
}

p {
  font-weight: 300;
}

.bg-white {
    --bd-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb),var(--bd-bg-opacity)) !important;
}
.bg-light {
    --bd-bg-opacity: 1;
    background-color: rgba(var(--bd-light-bg-rgb),var(--bd-bg-opacity)) !important;
}
.bg-dark {
    --bd-bg-opacity: 1;
    background-color: rgba(var(--bd-dark-bg-rgb),var(--bd-bg-opacity)) !important;
}
.bg-dark-footer {
    --bd-bg-opacity: 1;
    background-color: rgba(var(--bd-dark-bg-footer-rgb),var(--bd-bg-opacity)) !important;
}
.text-light {
    --bd-text-opacity: 1;
    color: rgba(var(--bd-light-fg-rgb),var(--bd-text-opacity)) !important;
}
.text-mid {
    --bd-text-opacity: 1;
    color: rgba(var(--bd-mid-fg-rgb),var(--bd-text-opacity)) !important;
}
.text-dark {
    --bd-text-opacity: 1;
    color: rgba(var(--bd-dark-fg-rgb),var(--bd-text-opacity)) !important;
}
.text-light-footer {
    --bd-text-opacity: 1;
    color: rgba(var(--bd-light-fg-footer-rgb),var(--bd-text-opacity)) !important;
}

nav.navbar-light {
  background: #FFFFFF !important;
}

#toolbar-administration,
#toolbar-bar {
  z-index: 1021;
}


/* ------------------------- */
/* Navbar contenitore e logo */

.navbar {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media (min-width: 1024.02px){
    .navbar-expand-tablet {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-tablet .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-tablet .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-tablet .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .navbar-expand-tablet > .container {
        flex-wrap: nowrap;
    }
    .navbar-expand-tablet .navbar-collapse {
        display: flex!important;
        flex-basis: auto;
    }
    .navbar-expand-tablet .navbar-toggler {
        display: none;
    }
}
.navbar-brand {
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand img {
  margin: 0 1rem 0 0;
  width: auto;
}
.navbar-nav {
  padding-right: 2.125rem;
}
.dropdown-toggle.show {
  background-color: var(--bd-light-bg);
}
.dropdown-menu {
  background-color: var(--bd-light-bg);
  border: none;
  border-radius: 0;
}
.dropdown-menu[data-bs-popper] {
  margin-top: 0;
}
.dropdown-item {
  padding: 0.5rem 1rem;
}
.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
  background-color: unset;
}


@media only screen and (min-width: 1400px) {
  .navbar > .container-fluid {
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }
  .navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
  .navbar-brand img {
    height: 100px;
  }
  main.main-container {
    margin-top: 133px !important;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1399.98px) {
  .navbar-brand {
    padding-top: calc(0px + 5 * ((100vw - 1024px) / 375.98)) !important;
    padding-bottom: calc(0px + 5 * ((100vw - 1024px) / 375.98)) !important;
  }
  .navbar-brand img {
    height: calc(40px + 20 * ((100vw - 1024px) / 375.98)) !important;
  }
  main.main-container {
    margin-top: calc(121px + 29 * ((100vw - 1024px) / 375.98)) !important;
  }
}
@media only screen and (min-width: 1024px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.8125rem !important;
    padding-left: 0.8125rem !important;
  }
}

@media only screen and (max-width: 1024px) {
  .navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-brand img {
    height: 40px;
  }
  ul.navbar-nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  ul.navbar-nav > li {
    margin-bottom: 0.25rem;
  }
  ul.navbar-nav > li:last-of-type {
    margin-bottom: 0rem;
  }
  .region-nav-additional {
    border-top: 1px solid rgba(var(--bd-spid-blue-rgb),0.55);
  }
  main.main-container {
    margin-top: 90px !important;
  }
}
.navbar-light .navbar-toggler {
    color: rgba(var(--bd-dkred-rgb),0.55);
    border-color: rgba(0,0,0,0.1);
}

/* -------------------------------- */
/* Fine - Navbar contenitore e logo */


/* ----------- */
/* Navbar menu */

.navbar-light .navbar-nav .nav-link {
    color: var(--bd-body-color);
    font-weight: 600;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: var(--bd-dkred);
    text-decoration: none;
}
a.nav-item.nav-link.is-active,
a.nav-item.nav-link.active.is-active {
    color: var(--bd-dkred);
    text-decoration: none;
    font-weight: 700;
}

/* Fine - Navbar menu */
/* ------------------ */


/* ------------------------------------- */
/* Formattazione blocco selettore lingua */

#block-selettorelingua ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#block-selettorelingua ul li {
  display: block;
  margin: 0;
  opacity: 1;
  float: none;
}
#block-selettorelingua ul li:first-of-type a {
  border-bottom: 2px solid #931918;
}
#block-selettorelingua ul li a {
  display: block;
  color: #636363;
  font-weight: 600;
  line-height: 1.625rem;
  text-decoration: none;
  width: 2rem;
  height: 1.75rem;
  text-align: center;
}
#block-selettorelingua ul li a.is-active {
  color: #931918;
  font-weight: 600;
}

/* Fine - Formattazione blocco selettore lingua */
/* -------------------------------------------- */


/* -------------------------------- */
/* Navbar bottoni con effetto slide */

.slide-button {
  width: 11.25rem;
  height: 3.25rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--bd-spid-blue); 
  border-radius: 0;
  color: var(--bd-spid-blue);
  font-size: 1rem;
  font-weight: 300 !important;
  line-height: 3.0rem;
}
.slide-button:hover,
.slide-button.wasHovered:hover {
  animation: hover 0.45s forwards
}
.slide-button.wasHovered {
  animation: leave 0.45s forwards;
}
@keyframes hover {
  from {
    box-shadow: inset 0 0 0 0.01px var(--bd-spid-blue);
  }
  to {
    box-shadow: inset 11.25rem 0 0 0.01px var(--bd-spid-blue);
    color: #FFFFFF;
  }
}
@keyframes leave {
  from {
    box-shadow: inset -11.25rem 0 0 0.01px var(--bd-spid-blue);
    color: #FFFFFF;
  }
  to {
    box-shadow: inset 0 0 0 0.01px var(--bd-spid-blue);
  }
}
.slide-button a:hover {
  text-decoration: none;
  color: #FFFFFF;
}

/* Fine - Navbar bottoni con effetto slide */
/* -------------------------------- */

/* --------------------------------------------- */
/* Navbar, navbar menu e slide button responsive */

@media only screen and (min-width: 1400px) and (max-width: 1519.98px) {
  .navbar-nav .nav-item {
    font-size: calc(14px + 2 * ((100vw - 1400px) / 119.98)) !important;

  }
  .slide-button {
    width: calc(150px + 30 * ((100vw - 1400px) / 119.98)) !important;
    font-size: calc(14px + 2 * ((100vw - 1400px) / 119.98)) !important;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1399.98px) {
  .navbar-nav {
    font-size: calc(12px + 4 * ((100vw - 1024px) / 375.98)) !important;

  }
  .slide-button {
    width: calc(108px + 42 * ((100vw - 1024px) / 375.98)) !important;
    height: calc(41px + 11 * ((100vw - 1024px) / 375.98)) !important;
    font-size: calc(12px + 4 * ((100vw - 1024px) / 375.98)) !important;
    line-height: calc(37px + 11 * ((100vw - 1024px) / 375.98)) !important;
  }
}
@media only screen and (max-width: 1024px) {
  .slide-button {
    margin-top: 1rem;
  }
}


/* Testata pagina interna */
/* ---------------------- */
.region-breadcrumb {
  padding: 0;
}
.testata-titolo-interno {
  padding: 0;
  width: 100%;
}
.testata-titolo-interno > h1 {
  font-weight: 600;
  padding-bottom: 1rem;
}
.site-breadcrumbs {
  color: var(--bd-mid-fg);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  text-transform: uppercase;
  margin: 0;
  padding: 1.25rem 0 0 2.5rem;
  vertical-align: baseline;
}
.breadcrumb {
  margin: 0;
}
.breadcrumb-item > a {
  color: var(--bd-mid-fg);
  font-weight: 500;
  text-decoration: none;
}
.breadcrumb-item > a:hover {
  color: var(--bd-mid-fg);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid var(--bd-spid-orange);
}
.breadcrumb-item + .breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider,">");
}
/* ----------------------------- */
/* Fine - Testata pagina interna */


/* --------------------------- */
/* Fine - Corpo pagina interna */

/* ------------------------- */
/* Pagina contatti           */

.intestazione-contatti {
  padding: 0.5rem;
  background-color: #F6F6F6;
  border: 1px solid var(--bd-mid-fg);
  border-radius: 0.4rem;
}
.intestazione-contatti > p {
  margin-bottom: 0;
}

/* ------------------------- */
/* Fine pagina contatti      */

/* ------------------------- */
/* Blocco Step pagina interna */

.step-top {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--bd-mid-fg);
}
.container.step {
  margin-bottom: 1rem;
}
.row.step {
  width: 90%;
  margin: 0 auto;
}
.card.step {
  border: none;
  border-radius: 0;
}
.card-body.step {
  padding: 1.5rem;
}
.step-title {
  font-weight: 300;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.step-body {
  font-weight: 300;
  font-size: 1.0rem;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--bd-mid-fg);
}
.step-bottom {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--bd-mid-fg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .row.step {
    width: 95%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .row.step {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .row.step {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .row.step {
    width: 95%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575.98px) {
  .row.step {
    width: 100%;
  }
}
@media only screen and (max-width: 319.98px) {
  .row.step {
    width: 100%;
  }
}

/* --------------------------------- */
/* Fine - Blocco Step pagina interna */


/* ------------------------------- */
/* Blocco Sportelli pagina interna */

.sportelli-top {
  font-size: 1.0rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--bd-mid-fg);
}
.container.sportelli {
  margin-bottom: 1rem;
}
.row.sportelli {
  width: 90%;
  margin: 0 auto;
  justify-content: center;
}
.card.sportelli {
  border: none;
  border-radius: 0;
  text-align: center;
}
.card-body.sportelli {
  padding: 1.5rem;
}
.sportelli-title {
  font-weight: 300;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 1.895rem;
  color: var(--bd-body-color);
}
.sportelli-icon {
  height: 4rem;
}
.sportelli-body {
  font-weight: 300;
  font-size: 1.0rem;
  line-height: 1.2;
  margin-top: 1.895rem;
  margin-bottom: 0;
  color: var(--bd-mid-fg);
}
.sportelli-top > a,
.sportelli-body > a {
  display: inline-block;
  font-weight: 500;
  color: var(--bd-spid-blue);
  text-decoration: none;
}
.sportelli-top > a:after,
.sportelli-body > a:after {
  display: block;
  content: '';
  border-bottom: 3px solid var(--bd-spid-blue);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 450ms ease-in-out;
}
.sportelli-top > a:hover:after,
.sportelli-body > a:hover:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}

.sportelli-bottom {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--bd-mid-fg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .row.sportelli {
    width: 95%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .row.sportelli {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .row.sportelli {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .row.sportelli {
    width: 95%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575.98px) {
  .row.sportelli {
    width: 100%;
  }
}
@media only screen and (max-width: 319.98px) {
  .row.sportelli {
    width: 100%;
  }
}

/* -------------------------------------- */
/* Fine - Blocco Sportelli pagina interna */


/* ------------------------- */
/* Blocco App pagina interna */

.app-pagina-sopra {
  padding-top: 0rem;
}
.app-pagina-sotto {
  padding-bottom: 0rem;
}
.app-sinistra > .app-interno {
  padding: 0 1rem 0 0;
}
.app-destra > .app-interno {
  padding: 0 0 0 1rem;
}
.app-grafica {
  width: 20rem;
}
.app-body-disponibile {
  font-weight: 500;
  font-size: 0.825rem;
  line-height: 1;
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
  color: var(--bd-body-color);
  text-transform: uppercase;
}
.app-sinistra-bottom {
  padding: 0 9.0rem;
}
.app-store-icon {
  height: 2rem;
}
.app-title {
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 0.9375rem;
}
.app-body {
  font-weight: 300;
  font-size: 1.0rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--bd-mid-fg);
}
.app-bottone {
  margin-top: 3.25rem;
}
.app-bottone > .btn {
  margin-bottom: 0 !important;
}
.app-bottone > .btn-sm {
  padding: 2px 30px !important;
}
.app-sotto {
  margin-top: 4.375rem;
}
.main-interno .app-pagina-sopra ul {
  list-style: none;
  margin-top: 0.25rem;
  padding-left: 0.5rem;
}
.main-interno .app-pagina-sopra li {
  position: relative;
  font-size: 1.0rem;
  font-weight: 300;
  line-height: 1.25;
  margin-left: 2.625rem;
  margin-bottom: 1.0rem;
  color: var(--bd-mid-fg);
}
.main-interno .app-pagina-sopra li:before {
  position: absolute;
  content: url(../icon/webID_icon_check.svg);
  top: 50%;
  left: 0;
  height: 1.6875rem;
  width: 1.6875rem;
  transform: translate(-150%, -50%);
}
.main-interno .app-pagina-sopra .app-sinistra-bottom {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0 8.125rem;
}
.app-pagina-sotto {
  padding-bottom: 0rem;
}
.app-pagina-sotto > h2 {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.3;
  margin-top: 4.375rem;
  margin-bottom: 0.9375rem;
}
.app-pagina-sotto .card {
  border-radius: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .main-interno .app-pagina-sopra .app-sinistra-bottom {
    padding: 0 5.3125rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .main-interno .app-pagina-sopra .app-sinistra-bottom {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .main-interno .app-pagina-sopra .app-sinistra-bottom {
    padding: 0 0.479rem;
  }
  .main-interno .app-pagina-sopra .app-grafica {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .main-interno .app-pagina-sopra .app-sinistra-bottom {
    padding: 0 3.5rem;
  }
/*  .main-interno .app-pagina-sopra .app-sinistra-bottom #app-store-sinistra {
    padding: 0 0.325rem 0 0.625rem;
    margin-bottom: 0;
  }
  .main-interno .app-pagina-sopra .app-sinistra-bottom #app-store-centro {
    padding: 0 0.475rem 0 0.475rem;
    margin-bottom: 0;
  }
  .main-interno .app-pagina-sopra .app-sinistra-bottom #app-store-destra {
    padding: 0 0.625rem 0 0.325rem;
    margin-bottom: 0;
  }
*/  .main-interno .app-pagina-sopra .app-destra {
    margin-top: 1rem;
  }
  .main-interno .app-pagina-sotto > h2 {
    margin-top: 1.75rem;
  }
}

/* ------------------------- */
/* Fine - Blocco App pagina interna */



/* Testata home page */
#contenitore-testata {
  background-image: url("../img/webID_impronta.png");
  background-repeat: no-repeat;
  background-attachment: inherit;
  background-position: 82.5% 0%;
  background-size: contain;
}
.testata {
  height: 400px;
  padding-top: 4.375rem;
}
.testata-titolo {
  padding-left: 2.5rem;
}
.testata-spunta {
  display: flex;
  width: 42%;
}
.testata-spunta > img {
  width: 43px;
  height: 43px;
  margin-top: 0.325rem;
  margin-right: 0.75rem;
}
.testata-spunta > h1 {
  font-size: 2.625rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 0;
}
.testata-body {
  display: flex;
  width: 48%;
}
.testata-body > h2 {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.3;
  margin: 1.0rem 0 0 3.5rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--bd-spid-orange); 
}

/* Testata home page responsive */
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .testata {
    height: 340px;
  }
  .testata-spunta > img {
    width: 32px;
    height: 32px;
    margin-top: 0.375rem;
  }
  .testata-spunta > h1 {
    font-size: 2.25rem;
  }
  .testata-body > h2 {
    font-size: 1.5rem;
    margin: 1.0rem 0 0 2.75rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .testata {
    height: 310px;
  }
  .testata-spunta > img {
    width: 30px;
    height: 30px;
    margin-top: 0.225rem;
  }
  .testata-spunta > h1 {
    font-size: 1.85rem;
  }
  .testata-body {
    width: 47%;
  }
  .testata-body > h2 {
    font-size: 1.25rem;
    margin: 1.0rem 0 0 2.65rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .testata {
    height: 290px;
  }
  .testata-titolo {
    padding-left: 1.0rem;
  }
  .testata-spunta {
    width: 48%;
  }
  .testata-spunta > img {
    width: 24px;
    height: 24px;
    margin-top: 0.225rem;
  }
  .testata-spunta > h1 {
    font-size: 1.55rem;
  }
  .testata-body {
    width: 56%;
  }
  .testata-body > h2 {
    font-size: 1.1rem;
    margin: 1.0rem 0 0 2.3rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .testata {
    height: 290px;
  }
  .testata-titolo {
    padding-left: 1.0rem;
  }
  .testata-spunta {
    width: 60%;
  }
  .testata-spunta > img {
    width: 24px;
    height: 24px;
    margin-top: 0.225rem;
  }
  .testata-spunta > h1 {
    font-size: 1.55rem;
  }
  .testata-body {
    width: 74%;
  }
  .testata-body > h2 {
    font-size: 1.1rem;
    margin: 1.0rem 0 0 2.3rem;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575.98px) {
  .testata {
    height: calc(260px + 30 * ((100vw - 320px) / 255.98)) !important;
  }
  .testata-titolo {
    padding-left: 1.0rem;
  }
  .testata-spunta {
    width: calc(90% - 9.5 * ((100vw - 20rem) / 15.999)) !important;
  }
  .testata-spunta > img {
    width: calc(18px + 6 * ((100vw - 320px) / 255.98)) !important;
    height: calc(18px + 6 * ((100vw - 320px) / 255.98)) !important;
    margin-top: 0.225rem;
  }
  .testata-spunta > h1 {
    font-size: calc(1.15rem + 0.35 * ((100vw - 20rem) / 15.999)) !important;
  }
  .testata-body {
    width: calc(100% - 9.0 * ((100vw - 20rem) / 15.999)) !important;
  }
  .testata-body > h2 {
    font-size: calc(0.75rem + 0.35 * ((100vw - 20rem) / 15.999)) !important;
    margin: 1.0rem 0 0 2.0rem;
  }
}
@media only screen and (max-width: 319.98px) {
  .slogan {
    height: 540px;
  }
  #slogan-sinistra {
    padding: 0 1.5rem;
    margin-top: 1.0rem;
  }
  #slogan-centro {
    padding: 0 1.5rem;
  }
  #slogan-destra {
    padding: 0 1.5rem;
    margin-bottom: 1.0rem;
  }
  .slogan-icon {
    height: 3.125rem;
  }
  .slogan-title {
    margin-top: 0.9375rem !important;
  }
  .slogan-body {
    font-size: 0.875rem !important;
  }
}
/* Fine - Testata home page responsive */
/* Fine - Testata home page */

/* Doppio box */
.doppio-box {
  padding-top: 4.375rem;
}
.box-interno {
  position: relative;
}
.box-interno > h2 {
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 0.9375rem;
}
.box-body {
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--bd-mid-fg);
}
.box-spunta {
  display: flex;
  align-items:center;
}
.box-bottone {
  margin-top: 3.25rem;
}
.box-bottone > .btn {
  margin-bottom: 0;
}
.link-fine-box {
  margin-top: 3.25rem;
  margin-bottom: 3.25rem;
}
.link-fine-box > a {
  display: inline-block;
  font-weight: 500;
  color: var(--bd-spid-blue);
  text-decoration: none;
}
.link-fine-box > a:after {
  display: block;
  content: '';
  border-bottom: 2px solid var(--bd-spid-blue);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 450ms ease-in-out;
}
.link-fine-box > a:hover:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
/*
.doppio-box-sotto {
  margin-top: 4.375rem;
}
.box-note {
  line-height: 1.5;
  margin-bottom: 0;
}
.box-note > a {
  display: inline-block;
  font-weight: 500;
  color: var(--bd-spid-blue);
  text-decoration: none;
}
.box-note > a:after {
  display: block;
  content: '';
  border-bottom: 2px solid var(--bd-spid-blue);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 450ms ease-in-out;
}
.box-note > a:hover:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
*/

/* Doppio box responsive */
@media only screen and (min-width: 1400px) {
  .doppio-box {
    height: 700px;
  }
  .box-interno {
    height: 465px;
    padding: 1.5rem;
  }
  .box-interno > h2 {
    font-size: 1.75rem;
  }
  .box-body {
    font-size: 1.0rem;
  }
  .box-spunta {
    margin: 0.625rem 0 0 0.5rem;
  }
  .box-spunta > img {
    width: 27px;
    height: 27px;
  }
  .box-spunta > span {
    margin-left: 0.75rem;
  }
  .box-bottone > .btn-sm {
    padding: 2px 30px;
  }
  .link-fine-box > a {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .doppio-box {
    height: 655px;
  }
  .box-interno {
    height: 420px;
    padding: 1.5rem;
  }
  .box-interno > h2 {
    font-size: 1.5rem;
  }
  .box-body {
    font-size: 1.0rem;
  }
  .box-spunta {
    margin: 0.625rem 0 0 0.5rem;
  }
  .box-spunta > img {
    width: 27px;
    height: 27px;
  }
  .box-spunta > span {
    margin-left: 0.75rem;
  }
  .box-bottone {
    margin-top: 3.25rem;
  }
  .box-bottone > .btn {
    margin-bottom: 0 !important;
  }
  .box-bottone > .btn-sm {
    padding: 2px 30px !important;
  }
  .link-fine-box {
    margin-top: 2.125rem;
    margin-bottom: 2.125rem;
  }
  .link-fine-box > a {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .doppio-box {
    height: 610px;
  }
  .box-interno {
    height: 380px;
    padding: 1.0rem;
  }
  .box-interno > h2 {
    font-size: 1.25rem;
  }
  .box-body {
    font-size: 0.925rem;
  }
  .box-spunta {
    margin: 0.625rem 0 0 0.5rem;
  }
  .box-spunta > img {
    width: 22px;
    height: 22px;
  }
  .box-spunta > span {
    margin-left: 0.5rem;
  }
  .box-bottone {
    margin-top: 3.25rem;
  }
  .box-bottone > .btn {
    font-size: 0.925rem;
    margin-bottom: 0 !important;
  }
  .box-bottone > .btn-sm {
    padding: 2px 30px !important;
  }
  .link-fine-box {
    margin-top: 2.0rem;
    margin-bottom: 2.0rem;
  }
  .link-fine-box > a {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .doppio-box {
    height: 530px;
  }
  .box-interno {
    height: 385px;
    padding: 1.0rem;
  }
  .box-interno > h2 {
    font-size: 1.125rem;
  }
  .box-body {
    font-size: 0.875rem;
  }
  .box-spunta {
    margin: 0.625rem 0 0 0.325rem;
  }
  .box-spunta > img {
    width: 20px;
    height: 20px;
  }
  .box-spunta > span {
    margin-left: 0.325rem;
  }
  .box-bottone {
    margin-top: 3.25rem;
  }
  #box-destra > div > div.d-flex.justify-content-center.box-bottone {
    margin-top: 4.925rem;
  }
  .box-bottone > .btn {
    font-size: 0.875rem;
    margin-bottom: 0 !important;
  }
  .box-bottone > .btn-sm {
    padding: 2px 25px !important;
  }
  .link-fine-box {
    margin-top: 1.625rem;
    margin-bottom: 1.625rem;
  }
  .link-fine-box > a {
    font-size: 0.625rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .doppio-box {
    height: 990px;
  }
  .box-interno {
    height: 420px;
    padding: 1.5rem;
  }
  .box-interno:first-of-type {
    margin-bottom: 1.0rem;
  }
  .box-interno > h2 {
    font-size: 1.75rem;
  }
  .box-body {
    font-size: 1rem;
  }
  .box-spunta {
    margin: 0.625rem 0 0 0.325rem;
  }
  .box-spunta > img {
    width: 27px;
    height: 27px;
  }
  .box-spunta > span {
    margin-left: 0.325rem;
  }
  .box-bottone {
    margin-top: 3.25rem;
  }
  .box-bottone > .btn {
    font-size: 0.875rem;
    margin-bottom: 0 !important;
  }
  .box-bottone > .btn-sm {
    padding: 2px 25px !important;
  }
  .link-fine-box {
    margin-top: 1.625rem;
    margin-bottom: 1.625rem;
  }
  .link-fine-box > a {
    font-size: 0.625rem;
  }
  .doppio-box-sotto {
    margin-top: 3.125rem;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575.98px) {
  .doppio-box {
    height: 940px;
  }
  .box-interno {
    height: 390px;
    padding: 1.0rem;
  }
  .box-interno:first-of-type {
    margin-bottom: 1.0rem;
  }
  .box-interno > h2 {
    font-size: calc(0.95rem + 0.35 * ((100vw - 20rem) / 15.999)) !important
  }
  .box-body {
    font-size: 0.875rem;
  }
  .box-spunta {
    margin: 0.625rem 0 0 0.5rem;
  }
  .box-spunta > img {
    width: calc(16px + 4 * ((100vw - 320px) / 255.98)) !important;
    height: calc(16px + 4 * ((100vw - 320px) / 255.98)) !important;
  }
  .box-spunta > span {
    margin-left: 0.75rem;
  }
  .box-bottone {
    margin-top: 3.25rem;
  }
  #box-destra > div > div.d-flex.justify-content-center.box-bottone {
    margin-top: 4.0rem;
  }
  .box-bottone > .btn {
    font-size: calc(0.70rem + 0.175 * ((100vw - 20rem) / 15.999)) !important;
    margin-bottom: 0 !important;
  }
  .box-bottone > .btn-sm {
    padding: 2px 25px !important;
  }
  .link-fine-box {
    margin-top: 1.625rem;
    margin-bottom: 1.625rem;
  }
  .link-fine-box > a {
    font-size: 0.625rem;
  }
  .doppio-box-sotto {
    margin-top: 3.125rem;
  }
}
@media only screen and (max-width: 319.98px) {
  .slogan {
    height: 540px;
  }
  #slogan-sinistra {
    padding: 0 1.5rem;
    margin-top: 1.0rem;
  }
  #slogan-centro {
    padding: 0 1.5rem;
  }
  #slogan-destra {
    padding: 0 1.5rem;
    margin-bottom: 1.0rem;
  }
  .slogan-icon {
    height: 3.125rem;
  }
  .slogan-title {
    margin-top: 0.9375rem !important;
  }
  .slogan-body {
    font-size: 0.875rem !important;
  }
}
/* Fine - Doppio box responsive */
/* Fine - Doppio box */

/* Slogan */
.slogan {
  height: 350px;
}
#slogan-sinistra,
#slogan-destra {
  padding: 0 5rem;
}
#slogan-centro {
  padding: 0 3.5rem;
}
.slogan-icon {
  height: 4rem;
}
.slogan-title {
  font-weight: 300;
  line-height: 1;
  margin-top: 1.875rem;
  margin-bottom: 0.9375rem;
}
.slogan-body {
  font-weight: 300;
  font-size: 1.0rem;
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--bd-mid-fg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  #slogan-sinistra,
  #slogan-destra {
    padding: 0 3.0rem;
  }
  #slogan-centro {
    padding: 0 2.0rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #slogan-sinistra {
    padding: 0 2.5rem;
  }
  #slogan-centro {
    padding: 0 2.0rem;
  }
  #slogan-destra {
    padding: 0 2.5rem;
  }
  .slogan-body {
    font-size: 1rem !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .slogan {
    height: 400px;
  }
  #slogan-sinistra {
    padding: 0 0.25rem;
  }
  #slogan-centro {
    padding: 0;
  }
  #slogan-destra {
    padding: 0 0.25rem 0 1.5rem;
  }
  .slogan-body {
    font-size: 1rem !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .slogan {
    height: 550px;
  }
  #slogan-sinistra {
    padding: 0;
    margin-top: 1.0rem;
  }
  #slogan-centro {
    padding: 0;
  }
  #slogan-destra {
    padding: 0;
    margin-bottom: 1.0rem;
  }
  .slogan-icon {
    height: 3.125rem;
  }
  .slogan-title {
    margin-top: 0.9375rem !important;
  }
  .slogan-body {
    font-size: 1rem !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575.98px) {
  .slogan {
    height: 570px;
  }
  #slogan-sinistra {
    padding: 0 1.5rem;
    margin-top: 1.0rem;
  }
  #slogan-centro {
    padding: 0 1.5rem;
  }
  #slogan-destra {
    padding: 0 1.5rem;
    margin-bottom: 1.0rem;
  }
  .slogan-icon {
    height: 3.125rem;
  }
  .slogan-title {
    margin-top: 0.9375rem !important;
  }
  .slogan-body {
    font-size: 1rem !important;
  }
}
@media only screen and (max-width: 319.98px) {
  .slogan {
    height: 540px;
  }
  #slogan-sinistra {
    padding: 0 1.5rem;
    margin-top: 1.0rem;
  }
  #slogan-centro {
    padding: 0 1.5rem;
  }
  #slogan-destra {
    padding: 0 1.5rem;
    margin-bottom: 1.0rem;
  }
  .slogan-icon {
    height: 3.125rem;
  }
  .slogan-title {
    margin-top: 0.9375rem !important;
  }
  .slogan-body {
    font-size: 0.875rem !important;
  }
}
/* Fine - Slogan */


/* ------------------------- */
/* Blocco Numeri - Home Page */
#contenitore-numeri {
  min-height: 400px;
  padding-top: 1.875rem;
}
.numeri-card {
  padding-top: 2.5rem;
}
.numeri-card-inside > img {
  width: 43px;
  height: 43px;
}
.numeri-title {
  font-weight: 300;
  line-height: 1;
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
}
.numeri-body {
  font-weight: 300;
  font-size: 1.0rem;
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--bd-mid-fg);
}
@media only screen and (max-width: 992px) {
  .numeri-card:last-of-type {
    padding-bottom: 4.375rem;
  }
  .numeri-card-inside {
    width: 75%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .numeri-card-inside {
    width: 65%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 576px) {
  .numeri-card-inside {
    width: 40%;
    margin: 0 auto;
  }
}


/* Fine - Blocco Numeri - Home Page */
/* -------------------------------- */


/* ---------------------- */
/* Blocco App - Home page */

.app {
  height: 700px;
  padding-top: 4.375rem;
}
.app-sinistra > .app-interno {
  padding: 0 1rem 0 0;
}
.app-destra > .app-interno {
  padding: 0 0 0 1rem;
}
.app-grafica {
  width: 20rem;
}
.app-body-disponibile {
  font-weight: 500;
  font-size: 0.825rem;
  line-height: 1;
  margin-top: 2.75rem;
  margin-bottom: 2.75rem;
  color: var(--bd-body-color);
  text-transform: uppercase;
}
.app-sinistra-bottom {
  padding: 0 9.375rem;
}
#app-store-sinistra {
  padding: 0 0.325rem 0 0.625rem;
}
#app-store-centro {
  padding: 0 0.475rem 0 0.475rem;
}
#app-store-destra {
  padding: 0 0.625rem 0 0.325rem;
}
.app-store-icon {
  height: 2rem;
}
.app-title {
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 0.9375rem;
}
.app-body {
  font-weight: 300;
  font-size: 1.0rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--bd-mid-fg);
}
#app-destra ul {
  list-style: none;
  margin-top: 0.25rem;
  padding-left: 0.5rem;
}
#app-destra li {
  position: relative;
  font-size: 1.0rem;
  font-weight: 300;
  line-height: 1.25;
  margin-left: 2.625rem;
  margin-bottom: 1.0rem;
  color: var(--bd-mid-fg);
}
#app-destra li:before {
  position: absolute;
  content: url(../icon/webID_icon_check.svg);
  top: 50%;
  left: 0;
  height: 1.6875rem;
  width: 1.6875rem;
  transform: translate(-150%, -50%);
}
.app-bottone {
  margin-top: 3.25rem;
  -moz-box-pack: start !important;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.app-bottone > .btn {
  margin-bottom: 0 !important;
}
.app-bottone > .btn-sm {
  padding: 2px 30px !important;
}
.app-sotto {
  margin-top: 4.375rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .app-sinistra-bottom {
    padding: 0 6.5625rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .app-sinistra-bottom {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .app-sinistra-bottom {
    padding: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .app {
    height: 995px;
  }
  .app-grafica {
    width: 16rem;
  }
  .app-body-disponibile {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .app-sinistra-bottom {
    padding: 0;
  }
  #app-store-sinistra,
  #app-store-centro,
  #app-store-destra {
    margin-bottom: 1rem;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .app-bottone {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
    -moz-box-pack: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575.98px) {
  .app {
    height: calc(1110px - 115 * ((100vw - 320px) / 255.98)) !important;
  }
  .app-grafica {
    width: 16rem;
  }
  .app-body-disponibile {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .app-sinistra-bottom {
    padding: 0 !important;
  }
  #app-store-sinistra,
  #app-store-centro,
  #app-store-destra {
    margin-bottom: 1rem;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .app-bottone {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
    -moz-box-pack: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}
@media only screen and (max-width: 319.98px) {
  .app {
    height: calc(1110px - 115 * ((100vw - 320px) / 255.98)) !important;
  }
  .app-grafica {
    width: 100%;
  }
  .app-body-disponibile {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .app-sinistra-bottom {
    padding: 0 !important;
  }
  #app-store-sinistra,
  #app-store-centro,
  #app-store-destra {
    margin-bottom: 1rem;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .app-bottone {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem;
    -moz-box-pack: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

/* Fine - Blocco App - Home page */
/* ----------------------------- */

/* ------------------ */
/* Contenitore Footer */
/* Fascia pre-footer  */

.pf-low-band {
  height: 350px;
}
#block-titoloprefooter h3 {
  padding-top: 1.25rem;
}
.logo-frame {
  height: 100%;
  width: 100%;
  padding: 0.925rem 2rem;
  border: 1px solid var(--bd-mid-fg);
  border-radius: 0.4rem;
}
.pf-title {
  font-weight: 300;
  margin-top: 4.375rem;
  margin-bottom: 2.5rem;
}
.btn-container {
  margin-top: 0px;
  margin-bottom: 1.25rem;
}
.btn {
  font-size: 1.0rem;
  font-weight: 400 !important;
  line-height: 1.0;
  padding: 0.805rem 1.425rem;
  margin-bottom: 1.25rem;
  border-radius: 0.4rem;
}
.btn-expand {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-icon {
  height: 24px;
  margin-right: 10px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 2px 15px !important;
}
.btn-primary {
  background-color: var(--bd-spid-blue);
  border-color: var(--bd-spid-blue);
}
a.btn.btn-dkred-cerchio {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bd-dkred);
  --bs-btn-border-color: var(--bs-white);
  --bs-btn-border-radius: 0.4rem;
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: #{shade-color($bd-violet, 10%)};
  --bs-btn-hover-border-color: #{shade-color($bd-violet, 10%)};
  --bs-btn-focus-shadow-rgb: var(--bd-dkred-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: #{shade-color($bd-violet, 20%)};
  --bs-btn-active-border-color: #{shade-color($bd-violet, 20%)};
  background-color: var(--bs-btn-bg);
  border: 2px solid var(--bs-btn-bg);
  border-radius: var(--bs-btn-border-radius);
  color: var(--bs-btn-color);
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
a.btn.btn-dkred-cerchio:hover {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bd-dkred);
  --bs-btn-border-color: var(--bs-white);
  --bs-btn-border-radius: 0.4rem;
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: #{shade-color($bd-violet, 10%)};
  --bs-btn-hover-border-color: #{shade-color($bd-violet, 10%)};
  --bs-btn-focus-shadow-rgb: var(--bd-dkred-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: #{shade-color($bd-violet, 20%)};
  --bs-btn-active-border-color: #{shade-color($bd-violet, 20%)};
  background-color: var(--bs-btn-color);
  border: 2px solid var(--bs-btn-bg);
  border-radius: var(--bs-btn-border-radius);
  color: var(--bs-btn-bg);
}
.pf-note {
  color: var(--bd-mid-fg);
  font-size: 0.9375rem;
  font-weight: 300;
  margin-bottom: 0.375rem;
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .logo-frame {
    padding: 0.925rem 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .logo-frame {
    padding: 0.925rem 2rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .logo-frame {
    padding: 0.55rem 0.75rem;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575.98px) {
  .logo-frame {
    padding: 0.925rem 2rem;
  }
}
@media only screen and (max-width: 319.98px) {
  .logo-frame {
    padding: 0.925rem 2rem;
  }
}

/* Fine - Fascia pre-footer  */

/* Fascia footer */
.ft-low-band {
  height: 4.75rem;
  position: relative;
}
.container-fluid.footer-top {
  position: absolute;
  top: 0px;
}
.container-fluid.footer-bottom {
  position: absolute;
  bottom: 0px;
}
.container.footer-narrow-top {
  padding-top: 4.375rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
.container.footer-narrow-bottom {
  padding-right: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 2.5rem;
}
#inside-footer-sinistra {
  visibility: hidden;
}
.footer-logo {
  width: 117px;
}
.footer-contatti {
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
  height: 1.25rem;
}
.footer-copyright {
  font-size: 0.9375rem;
  margin-bottom: 0rem;
}
.footer-contatti > a,
.footer-copyright > a {
  display: inline-block;
  color: #FFFFFF;
  font-weight: 400;
  text-decoration: none;
}
.footer-contatti > a:after,
.footer-copyright > a:after {
  display: block;
  content: '';
  border-bottom: 2px solid #FFFFFF;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 450ms ease-in-out;
}
.footer-contatti > a:hover:after,
.footer-copyright > a:hover:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
.footer-icone {
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.footer-icone > a > img {
  height: 2rem;
}


@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .pf-note {
    font-size: 0.825rem;
  }
  .btn-subfooter,
  .footer-contatti,
  .footer-copyright {
    font-size: 0.825rem !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .pf-low-band {
    height: 400px;
  }
  .pf-note {
    font-size: 0.825rem;
  }
  .ft-low-band {
    height: 4rem;
  }
  #inside-footer-sinistra {
    visibility: visible;
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }
  #post-footer-sinistra {
    display: none !important;
  }
  #post-footer-destra {
    justify-content: center !important;
    margin-top: 1rem;
  }
  .btn-subfooter,
  .footer-contatti,
  .footer-copyright {
    font-size: 0.825rem !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .pf-low-band {
    height: 400px;
  }
  .pf-note {
    font-size: 0.75rem;
  }
  .ft-low-band {
    height: 4rem;
  }
  #inside-footer-sinistra {
    visibility: visible;
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }
  #post-footer-sinistra {
    display: none !important;
  }
  #post-footer-destra {
    justify-content: center !important;
    margin-top: 1rem;
  }
  .btn-subfooter,
  .footer-contatti,
  .footer-copyright {
    font-size: 0.75rem !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575.98px) {
  .pf-low-band {
    height: 570px;
  }
  .pf-note {
    font-size: calc(12px + 2 * ((100vw - 320px) / 255.98)) !important;
  }
  .ft-low-band {
    height: 4rem;
  }
  .container.footer-narrow-top {
    padding-top: 4.375rem;
    padding-right: 0rem;
    padding-left: 0rem;
  }
  .container.footer-narrow-bottom {
    padding-right: 0rem;
    padding-bottom: 1.25rem;
    padding-left: 0rem;
  }
  #inside-footer-sinistra {
    visibility: visible;
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }
  #post-footer-sinistra {
    display: none !important;
  }
  #post-footer-destra {
    justify-content: center !important;
    margin-top: 1rem;
  }
  .btn-subfooter,
  .footer-contatti,
  .footer-copyright {
    font-size: calc(12px + 2 * ((100vw - 320px) / 255.98)) !important;
  }
}
@media only screen and (max-width: 319.98px) {
  .pf-low-band {
    height: 540px;
  }
  .pf-note {
    font-size: 0.625rem;
  }
  .ft-low-band {
    height: 4rem;
  }
  .container.footer-narrow-top {
    padding-top: 4.375rem;
    padding-right: 0rem;
    padding-left: 0rem;
  }
  .container.footer-narrow-bottom {
    padding-right: 0rem;
    padding-bottom: 1.25rem;
    padding-left: 0rem;
  }
  #inside-footer-sinistra {
    visibility: visible;
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }
  #post-footer-sinistra {
    display: none !important;
  }
  #post-footer-destra {
    justify-content: center !important;
    margin-top: 1rem;
  }
  .btn-subfooter,
  .footer-contatti,
  .footer-copyright {
    font-size: 0.625rem !important;
  }
  .btn {
    font-size: 0.875rem !important;
  }
}

/* post-footer */

.region-post-footer {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.btn-subfooter {
    display: inline-block;
    font-size: 0.9375rem;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border-right: 2px solid #FFFFFF;
    border-left: none;
    border-radius: 0rem;
    padding: 0 0.65rem 0 0.325rem;
/*    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; */
}
.btn-subfooter-link {
  text-decoration: none;
}
.btn-subfooter:first-child {
  padding-left: 0;
  padding-right: 0.65rem;
  border-right: 2px solid #FFFFFF;
  border-left: none;
}
.btn-subfooter:last-child {
  padding-left: 0.325rem;
  padding-right: 0;
  border-right: none;
  border-left: none;
}

.btn-subfooter > a {
  color: #FFFFFF;
  text-decoration: none;
}
.btn-subfooter > a:after {
  display: block;
  content: '';
  border-bottom: 3px solid #FFFFFF;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 450ms ease-in-out;
}
.btn-subfooter > a:hover:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
.btn-subfooter > a.is-active:hover:after {
  transform: scaleX(1);
  transition: none;
}
.btn-subfooter > a.is-active:after {
  color: #FFFFFF;
  text-decoration: none;
  transform: scaleX(1);
  transition: none;
  border-bottom: 3px solid #FFFFFF;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1020;
}

/* -------------------------------------------------- */
/* Form Assistenza, ID Professionale e Firma con SPID */
/* -------------------------------------------------- */

.form-required:after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0.3rem;
  content: " * ";
  color: var(--bd-spid-orange);
  vertical-align: top;
  background-image: none;
}
.hi-lepidaid-div,
.hi-lepidaid-pro-div,
.lo-lepidaid-div,
.lo-nv-div {
  background-color: #FFFFFF;
  padding: 1rem;
  border: none;
  border-radius: 0;
}
.hi-lepidaid-div .testo-arancio,
.hi-lepidaid-pro-div .testo-arancio,
.lo-lepidaid-div .testo-arancio,
.lo-nv-div .testo-arancio {
  color: var(--bd-spid-orange);
}
.hi-lepidaid-pro-div p {
  margin-bottom: 0 !important;
}
.hi-lepidaid-div ul {
  margin-bottom: 0;
}
.hi-lepidaid-div b,
.hi-lepidaid-div strong,
.hi-lepidaid-pro-div b,
.hi-lepidaid-pro-div strong,
.lo-lepidaid-div b,
.lo-lepidaid-div strong {
  font-weight: 500;
  color: var(--bd-mid-fg);
}
.lo-lepidaid-div .testo-arancio p {
  margin-bottom: 1.0rem !important;
}
.lo-lepidaid-div p {
  margin-bottom: 0 !important;
}
.lo-nv-div h2 {
  font-weight: 300;
  margin-top: 1.0rem !important;
  margin-bottom: 1.0rem !important;
}
.lo-nv-div p {
  margin-bottom: 0 !important;
  color: var(--bd-mid-fg);
}
.form-item > ul > li:last-of-type {
  margin-bottom: 0;
}
.form-composite > legend,
label {
  font-weight: 400;
  color: var(--bd-mid-fg);
  padding-bottom: 0.5rem;
}
legend {
  margin-bottom: 0 !important;
  padding-bottom: 0.625rem !important;
  border-bottom: 1px solid var(--bd-mid-fg);
}
label.option {
  font-weight: 300;
  color: var(--bd-mid-fg);
}
.description {
  margin-top: 0.5rem;
  margin-left: 0 !important;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--bd-mid-fg);
}
.description a {
  font-size: 0.85rem !important;
  line-height: 1.1 !important;
}
.form-actions {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.form-control {
  font-weight: 300;
}
.text-count-message {
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 300;
  color: var(--bd-mid-fg);
}
.text-count-message > span.text-count {
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 400;
  color: var(--bd-spid-orange);
}
.webform-submission-form .form-item:before,
.webform-submission-form .form-item:after {
  content: " ";
  display: table;
}
fieldset.form-item {
  border: none;
  border-radius: 0;
}
fieldset.form-item > legend {
  padding: 0.5rem 0;
  margin-bottom: 0;
  background-color: var(--bd-light-bg);;
  border: none;
}
fieldset.form-item > legend:first-child {
  border-radius: 0;
}
.form-composite.webform-fieldset--title-inline legend {
  margin: 0 0;
}
fieldset.form-item > .fieldset-wrapper {
  padding: 0 1rem;
}
.fieldset-wrapper > div {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.form-radios .form-item:first-of-type {
  margin-top: 0;
}
.form-radios .form-item:last-of-type {
  margin-bottom: 0;
}
input[type="text"],
input[type="email"],
textarea.form-control {
  border: none;
  border-radius: 0;
}
fieldset.radios--wrapper.js-webform-states-hidden[style*="display: block"] {
  display: flex !important;
}
.form-check-input[type="checkbox"] {
  border-radius: 0;
}
.form-check-input:checked {
  background-color: var(--bd-spid-blue);
  border-color: var(--bd-spid-blue);
}
.form-item-captcha-response {
  margin-bottom: 0;
}
.form-item-captcha-response > label.js-form-required.form-required {
  display: block;
}
.form-item-captcha-response > label.js-form-required.form-required > span.field-prefix {
  display: inline-block;
}
input#edit-captcha-response {
  display: inline-block;
  width: 10%;
}
.webform-button--submit{
  width: 312px;
  border: none;
  margin-bottom: 0;
}

/* --------------------------------------------------------- */
/* Fine - Form Assistenza, ID Professionale e Firma con SPID */
/* --------------------------------------------------------- */


/* ------------------------------ */
/* Toolbar amministrazione Drupal */
/* ------------------------------ */

@media only screen and (min-width: 992px) {
  .toolbar-horizontal header.sticky-top,
  .toolbar-vertical.toolbar-tray-open header.sticky-top,
  .toolbar-horizontal header.fixed-top,
  .toolbar-vertical.toolbar-tray-open header.fixed-top {
    top: 39px;
  }
  .toolbar-horizontal.toolbar-tray-open header.sticky-top,
  .toolbar-horizontal.toolbar-tray-open header.fixed-top {
    top: 78px;
  }
  .toolbar-vertical.toolbar-tray-open header.sticky-top,
  .toolbar-vertical.toolbar-tray-open header.fixed-top {
    z-index: 1020;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.998px) {
  .toolbar-horizontal header.sticky-top,
  .toolbar-vertical header.sticky-top,
  .toolbar-vertical.toolbar-tray-open header.sticky-top,
  .toolbar-horizontal header.fixed-top,
  .toolbar-vertical header.fixed-top,
  .toolbar-vertical.toolbar-tray-open header.fixed-top {
    top: 39px !important;
  }
  .toolbar-horizontal.toolbar-tray-open header.sticky-top,
  .toolbar-horizontal.toolbar-tray-open header.fixed-top {
    top: 78px !important;
  }
  .toolbar-vertical.toolbar-tray-open header.sticky-top,
  .toolbar-vertical.toolbar-tray-open header.fixed-top {
    z-index: 1020;
  }
  #toolbar-bar {
    position: fixed;
  }
}

@media only screen and (max-width: 767.998px) {
  .toolbar-horizontal header.sticky-top,
  .toolbar-vertical header.sticky-top,
  .toolbar-horizontal.toolbar-tray-open header.sticky-top,
  .toolbar-vertical.toolbar-tray-open header.sticky-top,
  .toolbar-horizontal header.fixed-top,
  .toolbar-vertical header.fixed-top,
  .toolbar-horizontal.toolbar-tray-open header.fixed-top,
  .toolbar-vertical.toolbar-tray-open header.fixed-top {
    top: 39px !important;
  }
  .toolbar-vertical.toolbar-tray-open header.sticky-top,
  .toolbar-vertical.toolbar-tray-open header.fixed-top {
    z-index: 1020;
  }
  #toolbar-bar {
    position: fixed;
  }
}

/* ------------------------------------- */
/* Fine - Toolbar amministrazione Drupal */
/* ------------------------------------- */

.faq__entries {
  margin-bottom: 37.5rem;
}
.accordion {
  position: relative;
  height: auto
}

.accordion-item {
  width: 30%;
}
.accordion-collapse {
  position: absolute;
  width: 68%;
  top: 0px;
  left: 32%;
}
.accordion-collapse > .accordion-body {
  padding: 0;
}

.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.125);
}
.accordion-header {
  margin-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion-button:not(.collapsed),
.accordion-button:hover {
  color: #FFFFFF;
  background-color: var(--bd-spid-blue);
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled) {
  cursor: pointer;
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--bd-mid-fg);
  text-align: left;
  background-color: #FAFAFA;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}
.accordion-button:hover::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-button.collapsed::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}
.sub.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--bd-mid-fg);
    text-align: left;
    background-color: #FFFFFF;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
}
.sub.accordion-button:hover {
    color: var(--bd-body-color);
    background-color: #FAFAFA;
}
.sub.accordion-button:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 4.2333332 4.2333335' version='1.1' id='svg851' inkscape:version='1.1 (c68e22c387  2021-05-23)' sodipodi:docname='cross.svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Csodipodi:namedview id='namedview853' pagecolor='%23ffffff' bordercolor='%23666666' borderopacity='1.0' inkscape:pageshadow='2' inkscape:pageopacity='0.0' inkscape:pagecheckerboard='0' inkscape:document-units='mm' showgrid='false' units='px' inkscape:zoom='43.6875' inkscape:cx='7.9885551' inkscape:cy='8' inkscape:window-width='1920' inkscape:window-height='1001' inkscape:window-x='-9' inkscape:window-y='-9' inkscape:window-maximized='1' inkscape:current-layer='layer1' /%3E%3Cdefs id='defs848' /%3E%3Cg inkscape:label='Livello 1' inkscape:groupmode='layer' id='layer1'%3E%3Cg id='g9725' transform='matrix(0.26458333 0 0 0.26458333 -0.0356825 -0.08335146)'%3E%3Cpath d='m 8.1361131 2.2737615 -0.0025 12.0825355' id='path4' style='fill:%23212529%3Bfill-opacity:1%3Bstroke:%23212529%3Bstroke-width:1.16694%3Bstroke-linecap:round%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1' /%3E%3Cpath d='M 14.176131 8.3162793 2.0935952 8.3137793' id='path1062' style='fill:none%3Bstroke:%23212529%3Bstroke-width:1.16694%3Bstroke-linecap:round%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
}
.sub.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 4.2333332 4.2333335' version='1.1' id='svg851' inkscape:version='1.1 (c68e22c387  2021-05-23)' sodipodi:docname='cross.svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Csodipodi:namedview id='namedview853' pagecolor='%23ffffff' bordercolor='%23666666' borderopacity='1.0' inkscape:pageshadow='2' inkscape:pageopacity='0.0' inkscape:pagecheckerboard='0' inkscape:document-units='mm' showgrid='false' units='px' inkscape:zoom='43.6875' inkscape:cx='7.9885551' inkscape:cy='8' inkscape:window-width='1920' inkscape:window-height='1001' inkscape:window-x='-9' inkscape:window-y='-9' inkscape:window-maximized='1' inkscape:current-layer='layer1' /%3E%3Cdefs id='defs848' /%3E%3Cg inkscape:label='Livello 1' inkscape:groupmode='layer' id='layer1'%3E%3Cg id='g9725' transform='matrix(0.26458333 0 0 0.26458333 -0.0356825 -0.08335146)'%3E%3Cpath d='m 8.1361131 2.2737615 -0.0025 12.0825355' id='path4' style='fill:%23212529%3Bfill-opacity:1%3Bstroke:%23212529%3Bstroke-width:1.16694%3Bstroke-linecap:round%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1' /%3E%3Cpath d='M 14.176131 8.3162793 2.0935952 8.3137793' id='path1062' style='fill:none%3Bstroke:%23212529%3Bstroke-width:1.16694%3Bstroke-linecap:round%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    transform: rotate(45deg);
}
.sub.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 4.2333332 4.2333335' version='1.1' id='svg851' inkscape:version='1.1 (c68e22c387  2021-05-23)' sodipodi:docname='cross.svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3E%3Csodipodi:namedview id='namedview853' pagecolor='%23ffffff' bordercolor='%23666666' borderopacity='1.0' inkscape:pageshadow='2' inkscape:pageopacity='0.0' inkscape:pagecheckerboard='0' inkscape:document-units='mm' showgrid='false' units='px' inkscape:zoom='43.6875' inkscape:cx='7.9885551' inkscape:cy='8' inkscape:window-width='1920' inkscape:window-height='1001' inkscape:window-x='-9' inkscape:window-y='-9' inkscape:window-maximized='1' inkscape:current-layer='layer1' /%3E%3Cdefs id='defs848' /%3E%3Cg inkscape:label='Livello 1' inkscape:groupmode='layer' id='layer1'%3E%3Cg id='g9725' transform='matrix(0.26458333 0 0 0.26458333 -0.0356825 -0.08335146)'%3E%3Cpath d='m 8.1361131 2.2737615 -0.0025 12.0825355' id='path4' style='fill:%23212529%3Bfill-opacity:1%3Bstroke:%23212529%3Bstroke-width:1.16694%3Bstroke-linecap:round%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1' /%3E%3Cpath d='M 14.176131 8.3162793 2.0935952 8.3137793' id='path1062' style='fill:none%3Bstroke:%23212529%3Bstroke-width:1.16694%3Bstroke-linecap:round%3Bstroke-linejoin:miter%3Bstroke-miterlimit:4%3Bstroke-dasharray:none%3Bstroke-opacity:1' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}
.accordion-flush .accordion-collapse {
    border-width: 0;
}
.collapse:not(.show) {
    display: none;
}
h2.accordion-top-title {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--bd-body-color);
}
h2.accordion-header,
h2.sub.accordion-header {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0;
  color: var(--bd-mid-fg);
}
.sub.accordion-item {
  width: 100%;
}
.sub.accordion-collapse {
  position: relative;
  width: 100%;
  top: unset;
  left: unset;
}
.sub.accordion-body {
  padding: 1.0rem 2.75rem 1.0rem 1.75rem;
}
.sub.accordion-body p {
  font-size: 1.0rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--bd-mid-fg);
}
.sub.accordion-body p:last-of-type {
  margin-bottom: 0;
}
.sub.accordion-body ul {
  list-style: none;
  margin-top: 0.25rem;
  padding-left: 0.5rem;
}
.sub.accordion-body ul:last-of-type {
  margin-bottom: 0;
}
.sub.accordion-body li {
  position: relative;
  font-size: 1.0rem;
  font-weight: 300;
  line-height: 1.25;
  margin-left: 2.625rem;
  margin-bottom: 1.0rem;
  color: var(--bd-mid-fg);
}
.sub.accordion-body li:last-of-type {
  margin-bottom: 0;
}
.sub.accordion-body li:before {
  position: absolute;
  content: url(../icon/webID_icon_check.svg);
  top: 50%;
  left: 0;
  height: 1.6875rem;
  width: 1.6875rem;
  transform: translate(-150%, -50%);
}
.sub.accordion-body a {
  display: inline-block;
  font-size: 1.0rem;
  font-weight: 500;
  color: var(--bd-spid-blue);
  line-height: 1.30;
  text-decoration: none;
}
.sub.accordion-body a:after {
  display: block;
  content: '';
  border-bottom: 2px solid var(--bd-spid-blue);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 650ms ease-in-out;
}
.sub.accordion-body a:hover:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}

@media only screen and (max-width: 767.998px) {
  .accordion-button p,
  .sub.accordion-button p {
  }
  .sub.accordion-body p {
  }
  .sub.accordion-body a {
  }
}

/* FAQ responsive */
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  h2.accordion-top-title {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  h2.accordion-top-title {
    font-size: 1.25rem;
  }
  .accordion-button,
  .sub.accordion-button,
  .sub.accordion-body p,
  .sub.accordion-body a {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  h2.accordion-top-title {
    font-size: 1.1rem;
  }
  .accordion-button,
  .sub.accordion-button,
  .sub.accordion-body p {
    font-size: 0.75rem;
  }
  .sub.accordion-body a {
    font-size: 0.75rem;
  }
  .sub.accordion-body a:after {
    border-bottom: 1.75px solid var(--bd-spid-blue);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .faq__entries {
    margin-bottom: 0;
  }
  h2.accordion-top-title {
    font-size: 1.1rem;
  }
  .accordion-item {
    width: 100% !important;
  }
  .accordion-collapse {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 575.98px) {
  .faq__entries {
    margin-bottom: 0;
  }
  h2.accordion-top-title {
    font-size: 0.9rem;
  }
  .accordion-item {
    width: 100% !important;
  }
  .accordion-collapse {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
  }
  .accordion-button,
  .sub.accordion-button,
  .sub.accordion-body p {
    font-size: 0.75rem;
  }
  .accordion-button,
  .sub.accordion-button {
    padding: 0.75rem 1rem;
  }
  .sub.accordion-body {
    padding: 0.75rem 1rem 0.75rem 1.5rem;
  }
  .sub.accordion-body a {
    font-size: 0.75rem;
  }
  .sub.accordion-body a:after {
    border-bottom: 1.5px solid var(--bd-spid-blue);
  }
}
@media only screen and (max-width: 319.98px) {
  .faq__entries {
    margin-bottom: 0;
  }
  h2.accordion-top-title {
    font-size: 0.825rem;
  }
  .accordion-item {
    width: 100% !important;
  }
  .accordion-collapse {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
  }
  .accordion-button,
  .sub.accordion-button,
  .sub.accordion-body p {
    font-size: 0.625rem;
  }
  .accordion-button,
  .sub.accordion-button {
    padding: 0.5rem 0.75rem;
  }
  .sub.accordion-body {
    padding: 0.5rem 0.75rem 0.5rem 1rem;
  }
  .sub.accordion-body a {
    font-size: 0.625rem;
    font-weight: 400;
  }
  .sub.accordion-body a:after {
    border-bottom: 1.25px solid var(--bd-spid-blue);
  }
}

/* Hero banner */
/*-------------*/

.jumbotron {
  height: 460px;
  margin-bottom: 2.5rem;
}
.hero-occhiello {
  color: var(--bs-white);
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.hero-titolo {
  color: var(--bs-white) !important;
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.hero-catenaccio {
  color: var(--bs-white);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 3.0rem;
}
.hero-bottoni > .btn {
  text-transform: uppercase;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.hero-bottoni > a.btn.btn-dkred-cerchio {
  background-color: var(--bs-btn-bg);
  border: 2px solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  color: var(--bs-btn-color);
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.hero-bottoni > a.btn.btn-dkred-cerchio:hover {
  background-color: var(--bs-btn-color);
  border: 2px solid var(--bs-btn-color);
  border-radius: var(--bs-btn-border-radius);
  color: var(--bs-btn-bg);
}
.hero-bottoni > a.btn.btn-dkred-cerchio:last-child {
  margin-left: 0;
}


@media only screen and (min-width: 320px) and (max-width: 575.98px) {
  .hero-occhiello {
    font-size: calc(0.775rem + 0.36 * ((100vw - 17.78rem) / 14.22)) !important;
  }
  .hero-titolo {
    font-size: calc(2.75rem + 1.525 * ((100vw - 17.78rem) / 14.22)) !important;
  }
  .hero-catenaccio {
    font-size: calc(1.1rem + 0.425 * ((100vw - 17.78rem) / 14.22)) !important;
  }
}
@media only screen and (max-width: 319.98px) {
  .hero-occhiello {
    font-size: 0.775rem !important;
  }
  .hero-titolo {
    font-size: 2.25rem !important;
  }
  .hero-catenaccio {
    font-size: 1.1rem !important;
  }
}

/* Fine Hero banner */
/*------------------*/


.card-contatto {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
}
.card-contatto a {
  color: #636363;
  text-decoration: underline;
}
.card-contatto a:hover {
  color: #931918;
}

@media only screen and (min-width: 1400px) {
  .card-body {
    padding: 1rem 1rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .card-body {
    padding: 1rem 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .card-body {
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .card-body {
    padding: 0rem 1rem;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  .card-body {
    padding: 1rem 1rem;
  }
}
@media only screen and (max-width: 575.98px) {
  .card-body {
    padding: 1rem 1rem;
  }
}

.card-sessione {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: 1px solid var(--bd-mid-fg);
  border-radius: 0.4rem;
}
.break {
  background-color: #E6E6E6;
}
.card-sessione .card-time {
  padding: 1rem 1rem;
}
@media only screen and (min-width: 768px) {
  .card-sessione .card-body {
    padding: 0 1rem;
    margin: 1rem 0;
    border-left: 1px solid var(--bd-mid-fg);
  }
}
@media only screen and (max-width: 767.98px) {
  .card-sessione .card-body {
    padding: 1rem 0;
    margin: 0 1rem;
    border-top: 1px solid var(--bd-mid-fg);
  }
}

.card-sessione .card-time h5,
.card-sessione .card-body h5 {
  margin-bottom: 0;
}
.card-sessione .card-body > p:first-of-type {
  margin-top: 1rem;
}
.card-sessione .card-body > ul {
  margin-top: 1rem;
}
.card-sessione .card-body > p > ul {
  margin-top: 0rem;
}

.card-tabs {
  margin-top: 0.25rem;
}
.bolzano {
  display: inline-block;
  margin-top: 0.45rem;
  margin-right: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border: 1px solid #A9D7F4;
  border-radius: 0.25rem;
  background-color: #A9D7F4;
}
.bologna {
  display: inline-block;
  margin-top: 0.45rem;
  margin-right: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border: 1px solid #F7B972;
  border-radius: 0.25rem;
  background-color: #F7B972;
}
.schio {
  display: inline-block;
  margin-top: 0.45rem;
  margin-right: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border: 1px solid #98F0B0;
  border-radius: 0.25rem;
  background-color: #98F0B0;
}
.trento {
  display: inline-block;
  margin-top: 0.45rem;
  margin-right: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border: 1px solid #F5E98A;
  border-radius: 0.25rem;
  background-color: #F5E98A;
}
.streaming {
  display: inline-block;
  margin-top: 0.45rem;
  margin-right: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  border: 1px solid #E0ACF4;
  border-radius: 0.25rem;
  background-color: #E0ACF4;
}

/* Banner gestione Cookie */
/*------------------------*/

.eu-cookie-withdraw-tab {
  border-bottom-color: #636363 !important;
  border-bottom-style: none !important;
  top: 1px;
  left: 50%
}
.eu-cookie-compliance-message {
  margin: 1em 0 0;
}
.eu-cookie-compliance-message h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bd-light-fg) !important;
  line-height: 0.9;
}
.eu-cookie-compliance-message p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.2;
}
.eu-cookie-compliance-message p a {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bd-body-color);
  text-decoration: underline;
}
.eu-cookie-compliance-message p a:hover {
  color: var(--bd-dkred);
}
.eu-cookie-compliance-category-description {
  font-size: 0.925rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.disagree-button.eu-cookie-compliance-more-button,
.eu-cookie-compliance-agree-button,
.eu-cookie-compliance-default-button,
.eu-cookie-compliance-hide-button,
.eu-cookie-compliance-more-button-thank-you,
.eu-cookie-withdraw-button,
.eu-cookie-compliance-save-preferences-button {
  box-shadow: none;
  background: var(--bd-light-bg);
  background-image: none;
  border-radius: 0.4rem;
  border: 2px solid var(--bd-light-bg);
  color: var(--bd-body-color);
  font-family: 'Titillium Web', Arial, sans-serif, system-ui, -apple-system;
  font-weight: 400;
  text-shadow: none;
}
.disagree-button.eu-cookie-compliance-more-button:hover,
.eu-cookie-compliance-agree-button:hover,
.eu-cookie-compliance-default-button:hover,
.eu-cookie-compliance-hide-button:hover,
.eu-cookie-compliance-more-button-thank-you:hover,
.eu-cookie-withdraw-button:hover,
.eu-cookie-compliance-save-preferences-button:hover {
  box-shadow: none;
  background: var(--bd-light-bg);
  background-image: none;
  border-radius: 0.4rem;
  border: 2px solid var(--bd-body-color);
  color: var(--bd-body-color);
  font-family: 'Titillium Web', Arial, sans-serif, system-ui, -apple-system;
  font-weight: 400;
  text-shadow: none;
}

/* Fine - Banner gestione Cookie */
/*-------------------------------*/

.video-js .vjs-control-bar {
    height: 2.5rem !important;
    background-color: rgba(43,51,63,1) !important;
}
.vjs-button>.vjs-icon-placeholder:before {
    line-height: 2.5 !important;
}

