@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*###################### Html5 css Reset #############################*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: inherit;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*###################### Animation #############################*/
@keyframes imageAnimation {
  0% {
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1.4);
  }
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  font-size: 14px;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
}
body.navOpen {
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  body {
    font-size: 1.14em;
  }
}

.container {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

main {
  min-height: calc(100vh - 500px);
}

/*########### Header Main ###############################################*/
header.headerMain {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  color: #000;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.35), inset 0 0 6px rgba(255, 255, 255, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.05), 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.6s;
}
header.headerMain .logo {
  position: absolute;
  top: 9px;
  left: 20px;
  display: block;
  width: 220px;
  height: 60px;
  background-image: url("../img/DID-logo-inline.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
header.headerMain .navMobileBtn {
  position: absolute;
  top: 0;
  right: 70px;
  width: 64px;
  height: 80px;
  padding: 24px 18px;
  cursor: pointer;
}
header.headerMain .navMobileBtn span {
  display: block;
  width: 25px;
  height: 4px;
  margin: 5px 0;
  background-color: #333;
  transition: opacity ease-in-out 350ms, transform ease-in-out 350ms;
}
@media only screen and (max-width: 1023px) {
  header.headerMain .navMobileBtn {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  header.headerMain .navMobileBtn {
    display: none;
  }
}
header.headerMain nav.navmain {
  z-index: 9;
  position: absolute;
  top: 20px;
  right: 80px;
  font-size: 1.4em;
  font-family: "Bebas Neue", sans-serif;
}
header.headerMain nav.navmain ul {
  display: flex;
}
header.headerMain nav.navmain ul li {
  display: inline;
  padding: 8px 14px 9px;
}
header.headerMain nav.navmain ul li a {
  color: #222;
}
header.headerMain nav.navmain ul li a:hover {
  color: #6d8dc8;
}
header.headerMain nav.navmain ul li.current-menu-item a {
  color: #6d8dc8;
}
header.headerMain nav.navmain ul li + li {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1023px) {
  header.headerMain nav.navmain {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  header.headerMain nav.navmain {
    display: block;
  }
}
header.headerMain .searchBtn {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px;
}
header.headerMain .searchBtn svg {
  width: 100%;
  color: #222;
}
header.headerMain .searchBtn:hover svg {
  color: #6d8dc8;
}
header.headerMain .reading-progress {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 6px;
  background-color: #666;
  z-index: 9999;
}
header.headerMain .reading-progress .reading-progress__bar {
  width: 0%;
  height: 100%;
  background-color: #6d8dc8;
  transition: width 0.1s linear;
}
body:not(.single) header.headerMain .reading-progress {
  background-color: #6d8dc8;
}

.navMobile {
  z-index: 98;
  position: fixed;
}
.navMobile .inner {
  height: 100%;
  margin: 0 auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.navMobile > div {
  display: none;
  position: fixed;
  top: 80px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  overflow: auto;
  border-top: 1px dotted rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}
.navMobile nav.navmain {
  font-size: 1.4em;
  font-weight: 700;
}
.navMobile nav.navmain ul {
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
}
.navMobile nav.navmain ul li {
  border-bottom: 1px dotted #bbb;
}
.navMobile nav.navmain ul li a {
  display: block;
  color: #333;
  text-align: center;
  padding: 20px 10px;
}
.navMobile nav.navmain ul li a:hover {
  color: #911f1e;
}
.navMobile nav.navfooter {
  font-size: 1.1em;
}
.navMobile nav.navfooter ul {
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
}
.navMobile nav.navfooter ul li {
  border-bottom: 1px dotted #bbb;
}
.navMobile nav.navfooter ul li a {
  display: block;
  color: #333;
  text-align: center;
  padding: 20px 10px;
}
.navMobile nav.navfooter ul li a:hover {
  color: #911f1e;
}

@media only screen and (max-width: 1023px) {
  .navOpen .navMobile > div {
    display: block;
    transition: all ease-in 3s;
  }
}

.navOpen .navMobileBtn span:nth-child(1) {
  -moz-transform: translateY(7px) rotateZ(-45deg);
  -ms-transform: translateY(7px) rotateZ(-45deg);
  -o-transform: translateY(7px) rotateZ(-45deg);
  -webkit-transform: translateY(7px) rotateZ(-45deg);
  transform: translateY(7px) rotateZ(-45deg);
}

.navOpen .navMobileBtn span:nth-child(2) {
  opacity: 0;
}

.navOpen .navMobileBtn span:nth-child(3) {
  -moz-transform: translateY(-11px) rotateZ(45deg);
  -ms-transform: translateY(-11px) rotateZ(45deg);
  -o-transform: translateY(-11px) rotateZ(45deg);
  -webkit-transform: translateY(-11px) rotateZ(45deg);
  transform: translateY(-11px) rotateZ(45deg);
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

/*########### Generic ###############################################*/
a {
  text-decoration: none;
  color: #333;
}
a:focus {
  outline: none;
}

li {
  list-style: none inside;
}

textarea {
  resize: none;
}

.spacer {
  height: 30px;
}

.separator {
  border-top: 1px dotted #ddd;
  margin-top: 0 !important;
}

main > h2 {
  font-size: 2.4em;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
}
main > h2 a:hover {
  color: #6d8dc8;
}
main > h1 {
  font-size: 3.2em;
  text-align: center;
  margin: 30px 0 10px;
  font-family: "Bebas Neue", sans-serif;
  color: #6d8dc8;
}
main > .description {
  max-width: 1200px;
  margin: -26px auto 20px;
  font-size: 1.1em;
  line-height: 1.4em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 10px;
}
@media only screen and (min-width: 768px) {
  main > h2 {
    font-size: 3em;
  }
  main > h1 {
    font-size: 4em;
  }
  main > .description {
    font-size: 1.2em;
  }
}

.home-slider {
  margin-bottom: 30px;
  height: 600px;
}
.home-slider .swiper {
  height: 100%;
}
.home-slider .swiper .swiper-wrapper {
  height: 100%;
}
.home-slider .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: block;
  height: 100%;
}
.home-slider .swiper .swiper-wrapper .swiper-slide figure {
  height: 100%;
}
.home-slider .swiper .swiper-wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.home-slider .swiper .swiper-wrapper .swiper-slide header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.home-slider .swiper .swiper-wrapper .swiper-slide header .inner {
  margin: 0 auto;
  max-width: 1400px;
  padding: 80px 20px 100px;
}
.home-slider .swiper .swiper-wrapper .swiper-slide header .inner .item-category {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2em;
  margin-bottom: 10px;
  background-color: #6d8dc8;
  padding: 6px 20px;
  border-radius: 4px;
}
.home-slider .swiper .swiper-wrapper .swiper-slide header .inner .item-category a {
  color: #fff;
}
.home-slider .swiper .swiper-wrapper .swiper-slide header .inner h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3em;
  margin-bottom: 6px;
}
.home-slider .swiper .swiper-wrapper .swiper-slide header .inner h3 a {
  color: #fff;
}
.home-slider .swiper .swiper-wrapper .swiper-slide header .inner .item-excerpt {
  color: #fff;
  font-size: 1.1em;
  line-height: 1.4em;
}
@media only screen and (min-width: 768px) {
  .home-slider .swiper .swiper-wrapper .swiper-slide header .inner h3 {
    font-size: 4em;
  }
  .home-slider .swiper .swiper-wrapper .swiper-slide header .inner .item-excerpt {
    font-size: 1.2em;
  }
}
.home-slider .swiper .swiper-pagination {
  bottom: 20px !important;
}
.home-slider .swiper .swiper-pagination-bullet {
  width: 24px !important;
  height: 24px !important;
  border-radius: 4px !important;
  background-color: #fff !important;
  opacity: 0.8 !important;
  margin: 0 3px !important;
}
.home-slider .swiper .swiper-pagination-bullet-active {
  background-color: #6d8dc8 !important;
  opacity: 1 !important;
}
.home-slider .swiper .swiper-pagination-bullet:hover {
  background-color: #fff !important;
  opacity: 1 !important;
}

.news-filter {
  margin: 20px auto 30px;
  max-width: 1400px;
  padding: 0 10px;
}
.news-filter ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.2em;
  font-family: "Bebas Neue", sans-serif;
}
.news-filter ul li {
  text-align: center;
}
.news-filter ul li a {
  display: block;
  padding: 10px;
  color: #333;
}
.news-filter ul li a:hover {
  color: #6d8dc8;
}
.news-filter ul li a.active {
  color: #6d8dc8;
}

.negozio-archive h1,
.search-results h1 {
  font-size: 4em;
  text-align: center;
  margin: 30px 0 10px;
  font-family: "Bebas Neue", sans-serif;
  color: #6d8dc8;
}

.services {
  margin-bottom: 30px;
  padding: 0 10px 40px;
  border-bottom: 1px dotted #ddd;
}
.services .inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.services .inner article {
  background-color: #fff;
  padding: 10px;
}
.services .inner article figure {
  position: relative;
  height: 200px;
  margin-bottom: 20px;
}
.services .inner article figure img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% bottom;
}
.services .inner article figure:after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: 0;
  left: 0;
  z-index: 1;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  background-repeat: no-repeat;
}
.services .inner article header {
  padding: 10px;
  text-align: center;
}
.services .inner article header .item-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2em;
  margin-bottom: 2px;
}
.services .inner article header .item-title a {
  color: #6d8dc8;
}
.services .inner article header .item-excerpt {
  font-size: 1em;
  line-height: 1.2em;
  font-weight: 300;
  color: #333;
}
@media only screen and (min-width: 768px) {
  .services .inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  .services .inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

section.negozi {
  margin-bottom: 50px;
}
section.negozi > h2 {
  font-size: 2.4em;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Bebas Neue", sans-serif;
}
@media only screen and (min-width: 768px) {
  section.negozi > h2 {
    font-size: 3em;
  }
}
section.negozi .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
section.negozi .inner article {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
}
section.negozi .inner article figure {
  width: 100%;
  height: 200px;
}
section.negozi .inner article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
section.negozi .inner article header {
  padding: 10px 10px 16px;
  border-radius: 10px;
}
section.negozi .inner article header .item-area {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1em;
  margin: -10px -10px 10px;
  background-color: #6d8dc8;
  padding: 8px 10px;
}
section.negozi .inner article header .item-area a {
  color: #fff;
}
section.negozi .inner article header .item-category {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1em;
  margin-bottom: 2px;
}
section.negozi .inner article header .item-category a {
  color: #6d8dc8;
}
section.negozi .inner article header .item-title {
  font-size: 1.6em;
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
}
section.negozi .inner article header .item-title a {
  color: #fff;
}
section.negozi .inner article header .item-excerpt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9em;
  line-height: 1.2em;
}
@media only screen and (min-width: 640px) {
  section.negozi .inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  section.negozi .inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  section.negozi .inner article figure {
    height: 200px;
  }
  section.negozi .inner article header {
    padding: 16px 20px 16px;
  }
  section.negozi .inner article header .item-area {
    margin: -16px -20px 16px;
    padding: 10px 20px 8px;
  }
}

section.aree {
  margin-bottom: 50px;
}
section.aree > h2 {
  font-size: 2.4em;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Bebas Neue", sans-serif;
}
@media only screen and (min-width: 768px) {
  section.aree > h2 {
    font-size: 3em;
  }
}
section.aree .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
section.aree .inner article {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px #f5f5f5;
  border: 1px solid #fff;
}
section.aree .inner article figure {
  width: 100%;
  height: 200px;
}
section.aree .inner article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
section.aree .inner article header {
  padding: 10px 10px 16px;
  border-radius: 10px;
}
section.aree .inner article header .item-category {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1em;
  margin-bottom: 2px;
}
section.aree .inner article header .item-category a {
  color: #6d8dc8;
}
section.aree .inner article header .item-title {
  font-size: 1.6em;
  font-family: "Bebas Neue", sans-serif;
  color: #333;
}
section.aree .inner article header .item-title a {
  color: #333;
}
section.aree .inner article header .item-excerpt {
  color: #6d8dc8;
  font-size: 0.8em;
  line-height: 1.2em;
}
@media only screen and (min-width: 560px) {
  section.aree .inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 768px) {
  section.aree .inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  section.aree .inner {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  section.aree .inner article figure {
    height: 200px;
  }
}

section.news-list {
  margin-bottom: 50px;
}
section.news-list > h2 {
  font-size: 2.4em;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Bebas Neue", sans-serif;
}
@media only screen and (min-width: 768px) {
  section.news-list > h2 {
    font-size: 3em;
  }
}
section.news-list .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 320px;
  gap: 10px;
}
section.news-list .inner article {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
section.news-list .inner article .item-date {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #222;
  padding: 10px;
  color: #fff;
  display: flex;
}
section.news-list .inner article .item-date > span {
  flex: 1;
  font-size: 0.9em;
}
section.news-list .inner article .item-date > span label {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}
section.news-list .inner article .item-date span + span {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #fff;
}
section.news-list .inner article figure {
  width: 100%;
  height: 100%;
}
section.news-list .inner article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
section.news-list .inner article header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 10px;
}
section.news-list .inner article header .item-category {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2em;
  margin-bottom: 10px;
  background-color: #6d8dc8;
  padding: 6px 20px;
  border-radius: 4px;
  color: #fff;
}
section.news-list .inner article header .item-category a {
  color: #fff;
}
section.news-list .inner article header .item-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2em;
}
section.news-list .inner article header .item-title a {
  color: #fff;
}
section.news-list .inner article header .item-excerpt {
  color: #fff;
  line-height: 1.2em;
  font-size: 0.9em;
}
section.news-list .inner article.is-running .item-date {
  background-color: #6d8dc8;
}
@media only screen and (min-width: 640px) {
  section.news-list .inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  section.news-list .inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  section.news-list .inner article header {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) {
  section.news-list.news-hp .inner article:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  section.news-list.news-hp .inner article:nth-child(1) header .item-title {
    font-size: 2.4em;
  }
  section.news-list.news-hp .inner article:nth-child(2) {
    grid-column: span 1;
    grid-row: span 2;
  }
  section.news-list.news-hp .inner article:nth-child(2) header .item-title {
    font-size: 2.4em;
  }
  section.news-list.news-hp .inner article:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
  }
  section.news-list.news-hp .inner article:nth-child(5) header .item-title {
    font-size: 2.4em;
  }
  section.news-list.news-hp .inner article:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
  }
  section.news-list.news-hp .inner article:nth-child(6) header .item-title {
    font-size: 2.4em;
  }
}

section.zoneservice-list {
  margin-bottom: 50px;
}
section.zoneservice-list > h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2em;
  text-align: center;
  margin-bottom: 4px;
  padding: 0 10px;
}
section.zoneservice-list > h3 {
  font-size: 1.8em;
  text-align: center;
  margin: 0 0 20px;
  border-top: 1px dotted #ddd;
  padding-top: 20px;
  font-family: "Bebas Neue", sans-serif;
  color: #333;
}
@media only screen and (min-width: 768px) {
  section.zoneservice-list > h2 {
    font-size: 3em;
  }
}
section.zoneservice-list .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
section.zoneservice-list .inner article {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f5f5f5;
}
section.zoneservice-list .inner article figure {
  width: 100%;
  height: 200px;
}
section.zoneservice-list .inner article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
section.zoneservice-list .inner article header {
  padding: 10px;
}
section.zoneservice-list .inner article header .item-category {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2em;
  margin-bottom: 2px;
  color: #6d8dc8;
}
section.zoneservice-list .inner article header .item-category a {
  color: #6d8dc8;
}
section.zoneservice-list .inner article header .item-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2em;
}
section.zoneservice-list .inner article header .item-title a {
  color: #333;
}
section.zoneservice-list .inner article header .item-excerpt {
  color: #333;
  line-height: 1.2em;
  font-size: 0.9em;
}
section.zoneservice-list .inner article.is-running .item-date {
  background-color: #6d8dc8;
}
@media only screen and (min-width: 640px) {
  section.zoneservice-list .inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  section.zoneservice-list .inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  section.zoneservice-list .inner article header {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) {
  section.zoneservice-list.news-hp .inner article:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  section.zoneservice-list.news-hp .inner article:nth-child(1) header .item-title {
    font-size: 2.4em;
  }
  section.zoneservice-list.news-hp .inner article:nth-child(2) {
    grid-column: span 1;
    grid-row: span 2;
  }
  section.zoneservice-list.news-hp .inner article:nth-child(2) header .item-title {
    font-size: 2.4em;
  }
  section.zoneservice-list.news-hp .inner article:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
  }
  section.zoneservice-list.news-hp .inner article:nth-child(5) header .item-title {
    font-size: 2.4em;
  }
  section.zoneservice-list.news-hp .inner article:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
  }
  section.zoneservice-list.news-hp .inner article:nth-child(6) header .item-title {
    font-size: 2.4em;
  }
}

.search-form {
  max-width: 700px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
}
.search-form input[type=search] {
  flex: 1;
  padding: 10px 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4em;
  border: 1px solid #ddd;
  border-radius: 20px 0 0 20px;
  outline: none;
}
.search-form input[type=search]:focus {
  border-color: #6d8dc8;
}
.search-form button {
  background-color: #6d8dc8;
  border: none;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4em;
  padding: 8px 20px;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
}
.search-form button:hover {
  background-color: #6d8dc8;
}

.search-none,
.search-start,
.search-limit {
  text-align: center;
}

.mw-vertical-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.55);
}

.mw-vertical-overlay__panel {
  width: min(720px, 100%);
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.mw-vertical-overlay__title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.mw-vertical-overlay__msg {
  margin: 0 0 14px 0;
  font-size: 15px;
  line-height: 1.4;
}

.mw-vertical-overlay__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.mw-vertical-overlay__btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mw-vertical-overlay__btn--primary {
  background: #6d8dc8;
  color: #fff;
}

.mw-vertical-overlay__btn--ghost {
  background: #f2f2f2;
  color: #111;
}

section.product-list {
  margin-bottom: 50px;
}
section.product-list > h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2em;
  text-align: center;
  margin-bottom: 4px;
  padding: 0 10px;
}
section.product-list > h3 {
  font-size: 1.8em;
  text-align: center;
  margin: 0 0 20px;
  border-top: 1px dotted #ddd;
  padding-top: 20px;
  font-family: "Bebas Neue", sans-serif;
  color: #333;
}
section.product-list .description {
  max-width: 1200px;
  margin: -10px auto 20px;
  font-size: 1.1em;
  line-height: 1.4em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 10px;
}
@media only screen and (min-width: 768px) {
  section.product-list > h2 {
    font-size: 3em;
  }
  section.product-list .description {
    font-size: 1.2em;
  }
}
section.product-list .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  display: grid;
}
section.product-list .inner article {
  position: relative;
  min-width: 0;
  box-shadow: 0 0 10px #ddd;
  border-radius: 10px;
  border: 1px solid #fff;
  overflow: hidden;
}
section.product-list .inner article figure {
  width: 100%;
  height: 200px;
  background-color: #f5f5f5;
  position: relative;
}
section.product-list .inner article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.product-list .inner article header {
  padding: 10px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
section.product-list .inner article header .item-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4em;
  margin-bottom: 10px;
}
section.product-list .inner article header .item-category {
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 300;
}
section.product-list .inner article header .item-category a {
  color: #6d8dc8;
}
section.product-list .inner article header .item-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6em;
  margin: 6px 0;
}
section.product-list .inner article header .item-title a {
  color: #000;
}
section.product-list .inner article header .item-excerpt {
  line-height: 1.2em;
  font-size: 0.9em;
  margin-bottom: 10px;
}
section.product-list .inner article header .add-to-cart {
  margin-top: auto;
}
section.product-list .inner article header .add-to-cart .button {
  display: block;
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #ddd;
  background-color: #f5f5f5;
  font-weight: 700;
  font-size: 0.8em;
  text-transform: uppercase;
  text-align: center;
}
section.product-list .inner article header .add-to-cart .button:hover {
  background-color: #ddd;
}
section.product-list .inner article header .add-to-cart .added_to_cart {
  display: block;
  margin-top: 4px;
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #6d8dc8;
  background-color: #6d8dc8;
  color: #fff;
  font-weight: 700;
  font-size: 0.8em;
  text-transform: uppercase;
  text-align: center;
}
section.product-list .inner article header .add-to-cart .added_to_cart:hover {
  background-color: rgb(71.9552238806, 112.0746268657, 186.0447761194);
}
section.product-list.list-4 .inner {
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media only screen and (min-width: 480px) {
  section.product-list.list-4 .inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 640px) {
  section.product-list.list-4 .inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  section.product-list.list-4 .inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
section.product-list.list-6 .inner {
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}
@media only screen and (min-width: 480px) {
  section.product-list.list-6 .inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 640px) {
  section.product-list.list-6 .inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  section.product-list.list-6 .inner {
    grid-template-columns: repeat(6, 1fr);
  }
}
section.product-list .more {
  text-align: center;
  margin-top: 20px;
}
section.product-list .more a {
  display: inline-block;
  padding: 12px 20px 10px;
  color: #6d8dc8;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid #6d8dc8;
}
section.product-list .more a:hover {
  background-color: #f5f5f5;
}

.product-cat-archive h1.page-title {
  font-size: 2.6em;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  background-color: #6d8dc8;
  color: #fff;
  padding: 14px 10px 10px;
}
.product-cat-archive h3 {
  font-size: 1.8em;
  text-align: center;
  margin: 0 0 20px;
  border-top: 1px dotted #ddd;
  padding-top: 20px;
  font-family: "Bebas Neue", sans-serif;
  color: #333;
}
.product-cat-archive.product-cat-archive--second-hand section.product-list .inner article figure {
  width: 100%;
  height: 400px;
  background-color: #f5f5f5;
  position: relative;
}
.product-cat-archive.product-cat-archive--second-hand section.product-list .inner article figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% bottom;
}
.product-cat-archive.product-cat-archive--second-hand section.product-list .inner article figure .badge-sold {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #6d8dc8;
  color: #fff;
  padding: 6px 10px;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 14px;
}

.vertical-subhead {
  height: 240px;
  position: relative;
}
.vertical-subhead a {
  color: #fff;
}
.vertical-subhead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vertical-subhead .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.vertical-subhead .inner .vertical-subhead__content {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  max-width: 980px;
  text-align: center;
  width: 100%;
  padding: 0 10px;
}
.vertical-subhead .inner .vertical-subhead__content .vertical-subhead__label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3em;
}
.vertical-subhead .inner .vertical-subhead__content .vertical-subhead__desc {
  font-size: 1.2em;
  line-height: 1.2em;
  margin-top: 4px;
}

.product-cat-filter {
  padding: 10px;
  background-color: #222;
}
.product-cat-filter ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.4em;
  font-family: "Bebas Neue", sans-serif;
}
.product-cat-filter ul li {
  text-align: center;
}
.product-cat-filter ul li a {
  display: block;
  padding: 10px;
  color: #fff;
}
.product-cat-filter ul li a:hover {
  color: #6d8dc8;
}
.product-cat-filter ul li a.active {
  color: #6d8dc8;
}

.home-verticals {
  margin-bottom: 50px;
}
.home-verticals .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}
.home-verticals .inner article {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}
.home-verticals .inner article a {
  color: #fff;
}
.home-verticals .inner article a figure {
  width: 100%;
  height: 100%;
}
.home-verticals .inner article a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.5s;
}
.home-verticals .inner article a header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 20px 30px;
  transition: all ease-in-out 0.5s;
}
.home-verticals .inner article a header .vertical-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3em;
}
.home-verticals .inner article a header .vertical-description {
  font-size: 1.2em;
  line-height: 1.2em;
  margin-top: 4px;
}
.home-verticals .inner article a:hover figure img {
  transform: scale(1.1);
}
.home-verticals .inner article a:hover header {
  padding-bottom: 50px;
}
.home-verticals .inner article + article {
  margin-top: 20px;
}

.negozio-subhead h3 {
  font-size: 2.6em;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  background-color: #6d8dc8;
  color: #fff;
  padding: 14px 10px 10px;
}
.negozio-subhead h3 a {
  color: #fff;
}

.product-detail {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}
.product-detail .product .product-top {
  margin-bottom: 30px;
}
.product-detail .product .product-top .product-gallery .badge-sold {
  background-color: #6d8dc8;
  color: #fff;
  padding: 6px 10px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.8em;
  text-transform: uppercase;
  position: absolute;
  top: 10px;
}
.product-detail .product .product-top .product-gallery .flex-viewport {
  box-shadow: 0 0 14px #333;
  margin-bottom: 30px;
}
.product-detail .product .product-top .product-gallery .flex-control-thumbs {
  border: 1px solid #ddd;
}
.product-detail .product .product-top .product-gallery .images {
  float: none !important;
  width: 100% !important;
  display: block !important;
}
.product-detail .product .product-top .product-gallery .images img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.product-detail .product .product-top .product-summary .product-category {
  margin-bottom: 4px;
}
.product-detail .product .product-top .product-summary .product-category a {
  color: #6d8dc8;
}
.product-detail .product .product-top .product-summary h1 {
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #bbb;
}
.product-detail .product .product-top .product-summary .action-block {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #bbb;
}
.product-detail .product .product-top .product-summary .action-block .product-price {
  font-family: "Bebas Neue", sans-serif;
}
.product-detail .product .product-top .product-summary .action-block .product-price .woocommerce-Price-amount {
  font-size: 1.8em;
}
.product-detail .product .product-top .product-summary .action-block .product-price .mw-price-vat {
  display: block;
  color: #333;
}
.product-detail .product .product-top .product-summary .action-block .product-price .mw-unit-price-wrapper {
  color: #6d8dc8;
}
.product-detail .product .product-top .product-summary .action-block .product-cta .stock.stock {
  color: #333;
}
.product-detail .product .product-top .product-summary .action-block .product-cta .stock.out-of-stock {
  color: #6d8dc8;
}
.product-detail .product .product-top .product-summary .action-block .product-cta > .stock {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3em;
  margin-bottom: 10px;
}
.product-detail .product .product-top .product-summary .action-block .product-cta form {
  margin: 0;
}
.product-detail .product .product-top .product-summary .action-block .product-cta form .quantity input {
  width: 60px;
  padding: 4px 0 4px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
}
.product-detail .product .product-top .product-summary .action-block .product-cta form table.variations {
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
}
.product-detail .product .product-top .product-summary .action-block .product-cta form table.variations tr td,
.product-detail .product .product-top .product-summary .action-block .product-cta form table.variations tr th {
  padding: 6px 10px;
}
.product-detail .product .product-top .product-summary .action-block .product-cta form table.variations tr td select,
.product-detail .product .product-top .product-summary .action-block .product-cta form table.variations tr th select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-size: 1em;
}
.product-detail .product .product-top .product-summary .action-block .product-cta form .single_variation_wrap .single_variation {
  font-size: 1.3em;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 10px;
}
.product-detail .product .product-top .product-summary .action-block .product-cta form .single_variation_wrap .single_variation .price {
  color: #000;
}
.product-detail .product .product-top .product-summary .action-block .product-cta form .single_variation_wrap .single_variation .price small {
  display: block;
  font-size: 0.6em;
  color: #333;
}
.product-detail .product .product-top .product-summary .action-block .product-cta form button {
  background-color: #6d8dc8;
}
.product-detail .product .product-top .product-summary .action-block .product-cta form button:hover {
  background-color: rgb(71.9552238806, 112.0746268657, 186.0447761194);
}
.product-detail .product .product-top .product-summary .action-block .product-cta .product-access a {
  background-color: #6d8dc8;
  margin-bottom: 6px;
}
.product-detail .product .product-top .product-summary .action-block .product-cta .product-access a:hover {
  background-color: rgb(71.9552238806, 112.0746268657, 186.0447761194);
}
@media only screen and (max-width: 479px) {
  .product-detail .product .product-top .product-summary .action-block .product-cta {
    padding-top: 10px;
  }
}
@media only screen and (min-width: 480px) {
  .product-detail .product .product-top .product-summary .action-block {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .product-detail .product .product-top .product-summary .action-block .product-cta {
    padding-left: 20px;
    border-left: 1px dotted #bbb;
  }
}
.product-detail .product .product-top .product-summary .product-details {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #bbb;
}
.product-detail .product .product-top .product-summary .product-details h2 {
  font-size: 1.2em;
  text-transform: uppercase;
  line-height: 1em;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-detail .product .product-top .product-summary .product-details .woocommerce-product-attributes tbody tr th {
  text-align: left;
}
.product-detail .product .product-top .product-summary .product-details .pod-tax {
  line-height: 1.4em;
}
.product-detail .product .product-top .product-summary .product-details .pod-tax strong {
  font-weight: 700;
}
.product-detail .product .product-top .product-summary .product-description {
  line-height: 1.4em;
  font-size: 1.1em;
}
.product-detail .product .product-top .product-summary .product-description p + p {
  margin-top: 10px;
}
.product-detail .product .product-top .product-summary .product-description strong {
  font-weight: 700;
}
.product-detail .product .product-top .product-summary .product-description h2 {
  font-size: 1.6em;
  line-height: 1em;
  font-weight: 700;
}
.product-detail .product .product-top .product-summary .product-description a {
  color: #6d8dc8;
  border-bottom: 1px dotted;
}
.product-detail .product .product-top .product-summary .product-description a:hover {
  color: #000;
}
.product-detail .product .product-top .product-summary .product-description ul {
  padding-left: 20px;
}
.product-detail .product .product-top .product-summary .product-description ul li {
  list-style: square inside;
}
@media only screen and (min-width: 768px) {
  .product-detail .product .product-top {
    display: flex;
    gap: 40px;
  }
  .product-detail .product .product-top .product-gallery {
    flex: 2;
  }
  .product-detail .product .product-top .product-summary {
    flex: 3;
  }
}

.woocommerce form input {
  font-size: 1.2em;
  font-family: "Inter", sans-serif;
}
.woocommerce #order_review #payment input.button {
  background-color: #6d8dc8;
}
.woocommerce #order_review #payment input.button:hover {
  background-color: rgb(71.9552238806, 112.0746268657, 186.0447761194);
}
.woocommerce #customer_login h2 {
  font-size: 1.2em;
  font-weight: 700;
}
.woocommerce #customer_login form {
  margin: 1em 0 2em;
}
.woocommerce #customer_login .woocommerce-privacy-policy-text {
  margin: 2em 0;
  font-size: 0.8em;
}
.woocommerce .woocommerce-notices-wrapper .woocommerce-message {
  border-top-color: #6d8dc8;
}
.woocommerce .woocommerce-notices-wrapper .woocommerce-message:before {
  color: #6d8dc8;
}
.woocommerce .woocommerce-info {
  border-top-color: #6d8dc8;
}
.woocommerce .woocommerce-info:before {
  color: #6d8dc8;
}
.woocommerce .woocommerce-info.mw-vertical-notice {
  background-color: #6d8dc8;
  color: #fff;
  border: none;
  padding: 20px;
  font-size: 1.1em;
  line-height: 1.3em;
}
.woocommerce .woocommerce-info.mw-vertical-notice br {
  content: "";
  display: block;
  margin: 4px 0;
}
.woocommerce .woocommerce-info.mw-vertical-notice strong {
  font-weight: 700;
  font-size: 1.2em;
  display: block;
}
.woocommerce .woocommerce-info.mw-vertical-notice:before {
  display: none;
}
.woocommerce nav.woocommerce-MyAccount-navigation {
  width: 100%;
  float: none;
  margin-bottom: 20px;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul {
  font-weight: 900;
  display: flex;
  flex-wrap: wrap;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul li a {
  text-transform: uppercase;
  padding: 10px 20px;
  display: block;
  box-shadow: 0 0 10px #ddd;
  margin: 4px;
  border-radius: 20px;
  border: 1px solid #fff;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul li a:hover {
  color: #6d8dc8;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: #6d8dc8;
  color: #fff;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #bbb;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  color: #666;
}
@media only screen and (min-width: 768px) {
  .woocommerce nav.woocommerce-MyAccount-navigation {
    width: 20%;
    float: left;
  }
  .woocommerce nav.woocommerce-MyAccount-navigation ul {
    flex-flow: column;
    text-align: right;
  }
  .woocommerce nav.woocommerce-MyAccount-navigation ul li a {
    margin: 0 0 8px;
  }
}
.woocommerce .woocommerce-MyAccount-content {
  width: 100%;
  float: none;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-MyAccount-content {
    width: 78%;
    float: right;
  }
}
.woocommerce .woocommerce-MyAccount-content > h2,
.woocommerce .woocommerce-MyAccount-content > header > h2 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-MyAccount-content p {
  line-height: 1.2em;
}
.woocommerce .woocommerce-MyAccount-content p strong {
  font-weight: 700;
}
.woocommerce .woocommerce-MyAccount-content #add_payment_method button {
  background-color: #6d8dc8;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td a + a {
  margin-left: 10px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-downloads {
  margin-top: 30px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-downloads h2 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-downloads table tbody tr td.download-file a {
  background-color: #6d8dc8;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-downloads table tbody tr td.download-file a:hover {
  background-color: rgb(71.9552238806, 112.0746268657, 186.0447761194);
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details {
  margin-top: 30px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details h2 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details > p {
  line-height: 1.2em;
  padding: 10px;
  background-color: #6d8dc8;
  color: #fff;
  border-radius: 4px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details > p strong {
  font-weight: 700;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details > p + p {
  margin-top: 4px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .order-again {
  display: none;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details {
  margin-top: 30px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details h2 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details address {
  line-height: 1.2em;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses {
  margin-top: 30px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address > header {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #aaa;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address > header h2 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address > header a {
  color: #6d8dc8;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address > header a:hover {
  color: #000;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address address {
  line-height: 1.2em;
}
.woocommerce .woocommerce-MyAccount-content > form h2 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-order p a {
  color: #6d8dc8;
}
.woocommerce .woocommerce-order p a:hover {
  color: #000;
}
.woocommerce .woocommerce-order p strong {
  font-weight: 700;
}
.woocommerce .woocommerce-order .woocommerce-bacs-bank-details {
  margin: 3em 0;
}
.woocommerce .woocommerce-order .woocommerce-notice {
  background-color: #f5f5f5;
  padding: 20px;
  font-size: 1.4em;
  font-weight: 700;
  border-radius: 4px;
}
.woocommerce .woocommerce-order .woocommerce-order-overview {
  margin: 3em 0;
}
.woocommerce .woocommerce-order .woocommerce-order-overview strong {
  font-weight: 700;
}
.woocommerce .woocommerce-order .woocommerce-order-downloads {
  margin: 3em 0;
}
.woocommerce .woocommerce-order .woocommerce-order-downloads h2 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-order .woocommerce-order-downloads table tbody tr td.download-file a {
  background-color: #6d8dc8;
}
.woocommerce .woocommerce-order .woocommerce-order-downloads table tbody tr td.download-file a:hover {
  background-color: rgb(71.9552238806, 112.0746268657, 186.0447761194);
}
.woocommerce .woocommerce-order .woocommerce-order-details {
  margin: 3em 0;
}
.woocommerce .woocommerce-order .woocommerce-order-details h2 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-order .woocommerce-order-details > p {
  line-height: 1.2em;
  padding: 10px;
  background-color: #6d8dc8;
  color: #fff;
  border-radius: 4px;
}
.woocommerce .woocommerce-order .woocommerce-order-details > p strong {
  font-weight: 700;
}
.woocommerce .woocommerce-order .woocommerce-order-details > p + p {
  margin-top: 4px;
}
.woocommerce .woocommerce-order .woocommerce-order-details .order-again {
  display: none;
}
.woocommerce .woocommerce-order .woocommerce-customer-details h2 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-order .woocommerce-customer-details address {
  line-height: 1.2em;
}
.woocommerce .woocommerce-checkout h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-checkout #customer_details {
  margin-bottom: 30px;
}
.woocommerce .woocommerce-checkout #order_review #payment {
  background-color: #f5f5f5 !important;
}
.woocommerce .woocommerce-checkout #order_review #payment button {
  background-color: #6d8dc8;
}
.woocommerce .woocommerce-checkout #order_review #payment button:hover {
  background-color: rgb(71.9552238806, 112.0746268657, 186.0447761194);
}

.wc-block-cart__submit a {
  background-color: #6d8dc8;
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
}
.wc-block-cart__submit a:hover {
  background-color: rgb(71.9552238806, 112.0746268657, 186.0447761194);
}

.wc-block-components-sidebar-layout .wc-block-formatted-money-amount {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4em;
}
.wc-block-components-sidebar-layout .wc-block-components-button {
  background-color: #6d8dc8;
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  border: none;
  border-radius: 4px;
}
.wc-block-components-sidebar-layout .wc-block-components-button:hover {
  background-color: rgb(71.9552238806, 112.0746268657, 186.0447761194);
}

.single-post .detail {
  padding-top: 30px;
}
.single-post .detail article > header {
  max-width: 1400px;
  margin: 0 auto 20px;
  padding: 0 10px;
  text-align: left;
}
.single-post .detail article > header .category {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4em;
  margin-bottom: 4px;
  color: #6d8dc8;
}
.single-post .detail article > header .category a {
  color: #6d8dc8;
}
.single-post .detail article > header h1 {
  font-size: 3em;
  margin-bottom: 2px;
  font-family: "Bebas Neue", sans-serif;
}
.single-post .detail article > header h2 {
  font-size: 1.3em;
  line-height: 1.2em;
  font-weight: 300;
  margin-bottom: 10px;
}
.single-post .detail article > header .entry-meta {
  margin-bottom: 20px;
}
.single-post .detail article > header .entry-meta .entry-date {
  color: #6d8dc8;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1em;
}
.single-post .detail article > header .entry-reading-time {
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
}
.single-post .detail article > figure {
  max-width: 1400px;
  width: 100%;
  height: 400px;
  margin: 0 auto 30px;
  margin-bottom: 30px;
}
.single-post .detail article > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
@media only screen and (min-width: 640px) {
  .single-post .detail article > figure {
    height: 500px;
  }
}
@media only screen and (min-width: 768px) {
  .single-post .detail article header h1 {
    font-size: 4em;
  }
  .single-post .detail article header h2 {
    font-size: 1.6em;
  }
  .single-post .detail article > figure {
    height: 600px;
  }
}
@media only screen and (min-width: 1024px) {
  .single-post .detail article > figure {
    height: 700px;
  }
}

.page .detail {
  padding-top: 30px;
}
.page .detail article > header {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 10px;
  text-align: left;
}
.page .detail article > header h1 {
  font-size: 3em;
  margin-bottom: 2px;
  font-family: "Bebas Neue", sans-serif;
}
.page .detail article figure {
  max-width: 1400px;
  margin: 0 auto 30px;
  height: 600px;
  margin-bottom: 30px;
}
.page .detail article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
@media only screen and (min-width: 768px) {
  .page .detail article header h1 {
    font-size: 4em;
  }
}

.pageDetail {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 10px;
}
.pageDetail .page-header h1 {
  font-size: 2.4em;
  letter-spacing: -0.05em;
  text-align: center;
  margin: 30px 0 10px;
  font-weight: 700;
  color: #6d8dc8;
}
.pageDetail .page-header h2 {
  max-width: 1200px;
  margin: 0 auto 40px;
  font-size: 1.2em;
  line-height: 1.4em;
  text-align: center;
}
@media only screen and (min-width: 640px) {
  .pageDetail .page-header h1 {
    font-size: 3em;
  }
  .pageDetail .page-header h2 {
    font-size: 1.4em;
  }
}
@media only screen and (min-width: 1024px) {
  .pageDetail .page-header h1 {
    font-size: 4em;
  }
  .pageDetail .page-header h2 {
    font-size: 1.6em;
  }
}

.single-negozio-area {
  padding: 20px;
  background-color: #6d8dc8;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2em;
  text-align: center;
}
.single-negozio-area a {
  color: #fff;
}

.single-negozio .detail,
.single-zone_service .detail,
.single-evento .detail,
.single-service .detail,
.single-area .detail {
  padding-top: 30px;
}
.single-negozio .detail article > header,
.single-zone_service .detail article > header,
.single-evento .detail article > header,
.single-service .detail article > header,
.single-area .detail article > header {
  max-width: 1400px;
  margin: 0 auto 20px;
  padding: 0 10px;
  text-align: left;
}
.single-negozio .detail article > header .category,
.single-zone_service .detail article > header .category,
.single-evento .detail article > header .category,
.single-service .detail article > header .category,
.single-area .detail article > header .category {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4em;
  margin-bottom: 4px;
  color: #6d8dc8;
}
.single-negozio .detail article > header .category a,
.single-zone_service .detail article > header .category a,
.single-evento .detail article > header .category a,
.single-service .detail article > header .category a,
.single-area .detail article > header .category a {
  color: #6d8dc8;
}
.single-negozio .detail article > header h1,
.single-zone_service .detail article > header h1,
.single-evento .detail article > header h1,
.single-service .detail article > header h1,
.single-area .detail article > header h1 {
  font-size: 3em;
  margin-bottom: 2px;
  font-family: "Bebas Neue", sans-serif;
}
.single-negozio .detail article > header h2,
.single-zone_service .detail article > header h2,
.single-evento .detail article > header h2,
.single-service .detail article > header h2,
.single-area .detail article > header h2 {
  font-size: 1.3em;
  line-height: 1.2em;
  font-weight: 300;
  margin-bottom: 10px;
}
.single-negozio .detail article > header .entry-meta,
.single-zone_service .detail article > header .entry-meta,
.single-evento .detail article > header .entry-meta,
.single-service .detail article > header .entry-meta,
.single-area .detail article > header .entry-meta {
  margin-bottom: 20px;
}
.single-negozio .detail article > header .entry-meta .entry-date,
.single-zone_service .detail article > header .entry-meta .entry-date,
.single-evento .detail article > header .entry-meta .entry-date,
.single-service .detail article > header .entry-meta .entry-date,
.single-area .detail article > header .entry-meta .entry-date {
  color: #6d8dc8;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1em;
}
.single-negozio .detail article > header .entry-meta .event-dates,
.single-zone_service .detail article > header .entry-meta .event-dates,
.single-evento .detail article > header .entry-meta .event-dates,
.single-service .detail article > header .entry-meta .event-dates,
.single-area .detail article > header .entry-meta .event-dates {
  display: flex;
  color: #6d8dc8;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1em;
  margin-bottom: 20px;
}
.single-negozio .detail article > header .entry-meta .event-dates .event-start,
.single-zone_service .detail article > header .entry-meta .event-dates .event-start,
.single-evento .detail article > header .entry-meta .event-dates .event-start,
.single-service .detail article > header .entry-meta .event-dates .event-start,
.single-area .detail article > header .entry-meta .event-dates .event-start {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-negozio .detail article > header .entry-meta .event-dates .event-start .event-day,
.single-zone_service .detail article > header .entry-meta .event-dates .event-start .event-day,
.single-evento .detail article > header .entry-meta .event-dates .event-start .event-day,
.single-service .detail article > header .entry-meta .event-dates .event-start .event-day,
.single-area .detail article > header .entry-meta .event-dates .event-start .event-day {
  font-size: 6em;
  letter-spacing: -2px;
}
.single-negozio .detail article > header .entry-meta .event-dates .event-start .event-month-year,
.single-zone_service .detail article > header .entry-meta .event-dates .event-start .event-month-year,
.single-evento .detail article > header .entry-meta .event-dates .event-start .event-month-year,
.single-service .detail article > header .entry-meta .event-dates .event-start .event-month-year,
.single-area .detail article > header .entry-meta .event-dates .event-start .event-month-year {
  margin-top: -10px;
  color: #222;
}
.single-negozio .detail article > header .entry-meta .event-dates .event-end,
.single-zone_service .detail article > header .entry-meta .event-dates .event-end,
.single-evento .detail article > header .entry-meta .event-dates .event-end,
.single-service .detail article > header .entry-meta .event-dates .event-end,
.single-area .detail article > header .entry-meta .event-dates .event-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px dotted #aaa;
}
.single-negozio .detail article > header .entry-meta .event-dates .event-end .event-day,
.single-zone_service .detail article > header .entry-meta .event-dates .event-end .event-day,
.single-evento .detail article > header .entry-meta .event-dates .event-end .event-day,
.single-service .detail article > header .entry-meta .event-dates .event-end .event-day,
.single-area .detail article > header .entry-meta .event-dates .event-end .event-day {
  font-size: 6em;
  letter-spacing: -5px;
}
.single-negozio .detail article > header .entry-meta .event-dates .event-end .event-month-year,
.single-zone_service .detail article > header .entry-meta .event-dates .event-end .event-month-year,
.single-evento .detail article > header .entry-meta .event-dates .event-end .event-month-year,
.single-service .detail article > header .entry-meta .event-dates .event-end .event-month-year,
.single-area .detail article > header .entry-meta .event-dates .event-end .event-month-year {
  margin-top: -10px;
  color: #222;
}
.single-negozio .detail article > header .entry-meta .event-ics,
.single-zone_service .detail article > header .entry-meta .event-ics,
.single-evento .detail article > header .entry-meta .event-ics,
.single-service .detail article > header .entry-meta .event-ics,
.single-area .detail article > header .entry-meta .event-ics {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 6px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2em;
}
.single-negozio .detail article > header .entry-meta .event-ics a,
.single-zone_service .detail article > header .entry-meta .event-ics a,
.single-evento .detail article > header .entry-meta .event-ics a,
.single-service .detail article > header .entry-meta .event-ics a,
.single-area .detail article > header .entry-meta .event-ics a {
  color: #222;
}
.single-negozio .detail article > header .entry-meta .event-ics a:hover,
.single-zone_service .detail article > header .entry-meta .event-ics a:hover,
.single-evento .detail article > header .entry-meta .event-ics a:hover,
.single-service .detail article > header .entry-meta .event-ics a:hover,
.single-area .detail article > header .entry-meta .event-ics a:hover {
  color: #6d8dc8;
}
.single-negozio .detail article .content-block,
.single-zone_service .detail article .content-block,
.single-evento .detail article .content-block,
.single-service .detail article .content-block,
.single-area .detail article .content-block {
  max-width: 1400px;
  margin: 0 auto 20px;
  padding: 0 10px;
}
.single-negozio .detail article .content-block figure.cover,
.single-zone_service .detail article .content-block figure.cover,
.single-evento .detail article .content-block figure.cover,
.single-service .detail article .content-block figure.cover,
.single-area .detail article .content-block figure.cover {
  border-radius: 10px;
}
.single-negozio .detail article .content-block figure.cover img,
.single-zone_service .detail article .content-block figure.cover img,
.single-evento .detail article .content-block figure.cover img,
.single-service .detail article .content-block figure.cover img,
.single-area .detail article .content-block figure.cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .single-negozio .detail article .content-block figure.cover,
  .single-zone_service .detail article .content-block figure.cover,
  .single-evento .detail article .content-block figure.cover,
  .single-service .detail article .content-block figure.cover,
  .single-area .detail article .content-block figure.cover {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .single-negozio .detail article .content-block,
  .single-zone_service .detail article .content-block,
  .single-evento .detail article .content-block,
  .single-service .detail article .content-block,
  .single-area .detail article .content-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  .single-negozio .detail article .content-block figure.cover,
  .single-zone_service .detail article .content-block figure.cover,
  .single-evento .detail article .content-block figure.cover,
  .single-service .detail article .content-block figure.cover,
  .single-area .detail article .content-block figure.cover {
    flex: 2;
  }
  .single-negozio .detail article .content-block .single-content,
  .single-zone_service .detail article .content-block .single-content,
  .single-evento .detail article .content-block .single-content,
  .single-service .detail article .content-block .single-content,
  .single-area .detail article .content-block .single-content {
    flex: 3;
  }
}
.single-negozio .detail article .content-block-map,
.single-zone_service .detail article .content-block-map,
.single-evento .detail article .content-block-map,
.single-service .detail article .content-block-map,
.single-area .detail article .content-block-map {
  max-width: 1400px;
  margin: 0 auto 20px;
  padding: 0 10px;
}
.single-negozio .detail article .content-block-map figure.cover img,
.single-zone_service .detail article .content-block-map figure.cover img,
.single-evento .detail article .content-block-map figure.cover img,
.single-service .detail article .content-block-map figure.cover img,
.single-area .detail article .content-block-map figure.cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.single-negozio .detail article .content-block-map .area-map iframe,
.single-zone_service .detail article .content-block-map .area-map iframe,
.single-evento .detail article .content-block-map .area-map iframe,
.single-service .detail article .content-block-map .area-map iframe,
.single-area .detail article .content-block-map .area-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media only screen and (max-width: 767px) {
  .single-negozio .detail article .content-block-map figure.cover,
  .single-zone_service .detail article .content-block-map figure.cover,
  .single-evento .detail article .content-block-map figure.cover,
  .single-service .detail article .content-block-map figure.cover,
  .single-area .detail article .content-block-map figure.cover {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .single-negozio .detail article .content-block-map,
  .single-zone_service .detail article .content-block-map,
  .single-evento .detail article .content-block-map,
  .single-service .detail article .content-block-map,
  .single-area .detail article .content-block-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.single-negozio .detail article .negozio-dati,
.single-zone_service .detail article .negozio-dati,
.single-evento .detail article .negozio-dati,
.single-service .detail article .negozio-dati,
.single-area .detail article .negozio-dati {
  max-width: 1400px;
  margin: 0 auto 30px;
  padding: 0 10px;
}
.single-negozio .detail article .negozio-dati .inner,
.single-zone_service .detail article .negozio-dati .inner,
.single-evento .detail article .negozio-dati .inner,
.single-service .detail article .negozio-dati .inner,
.single-area .detail article .negozio-dati .inner {
  font-size: 1.1em;
  line-height: 1.4em;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.single-negozio .detail article .negozio-dati .inner p,
.single-zone_service .detail article .negozio-dati .inner p,
.single-evento .detail article .negozio-dati .inner p,
.single-service .detail article .negozio-dati .inner p,
.single-area .detail article .negozio-dati .inner p {
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  background-color: #fff;
}
.single-negozio .detail article .negozio-dati .inner strong,
.single-zone_service .detail article .negozio-dati .inner strong,
.single-evento .detail article .negozio-dati .inner strong,
.single-service .detail article .negozio-dati .inner strong,
.single-area .detail article .negozio-dati .inner strong {
  font-weight: 700;
}
.single-negozio .detail article .negozio-dati .inner .negozio-social a.social-link,
.single-zone_service .detail article .negozio-dati .inner .negozio-social a.social-link,
.single-evento .detail article .negozio-dati .inner .negozio-social a.social-link,
.single-service .detail article .negozio-dati .inner .negozio-social a.social-link,
.single-area .detail article .negozio-dati .inner .negozio-social a.social-link {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.4em;
  color: #222;
  border: none;
}
.single-negozio .detail article .negozio-dati .inner .negozio-social a.social-link.instagram,
.single-zone_service .detail article .negozio-dati .inner .negozio-social a.social-link.instagram,
.single-evento .detail article .negozio-dati .inner .negozio-social a.social-link.instagram,
.single-service .detail article .negozio-dati .inner .negozio-social a.social-link.instagram,
.single-area .detail article .negozio-dati .inner .negozio-social a.social-link.instagram {
  color: #E1306C;
}
.single-negozio .detail article .negozio-dati .inner .negozio-social a.social-link.facebook,
.single-zone_service .detail article .negozio-dati .inner .negozio-social a.social-link.facebook,
.single-evento .detail article .negozio-dati .inner .negozio-social a.social-link.facebook,
.single-service .detail article .negozio-dati .inner .negozio-social a.social-link.facebook,
.single-area .detail article .negozio-dati .inner .negozio-social a.social-link.facebook {
  color: #3b5998;
}
.single-negozio .detail article .negozio-dati .inner .negozio-social a.social-link svg,
.single-zone_service .detail article .negozio-dati .inner .negozio-social a.social-link svg,
.single-evento .detail article .negozio-dati .inner .negozio-social a.social-link svg,
.single-service .detail article .negozio-dati .inner .negozio-social a.social-link svg,
.single-area .detail article .negozio-dati .inner .negozio-social a.social-link svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
}
.single-negozio .detail article .negozio-dati .inner a,
.single-zone_service .detail article .negozio-dati .inner a,
.single-evento .detail article .negozio-dati .inner a,
.single-service .detail article .negozio-dati .inner a,
.single-area .detail article .negozio-dati .inner a {
  color: #6d8dc8;
  border-bottom: 1px dotted;
}
.single-negozio .detail article .negozio-dati .inner a:hover,
.single-zone_service .detail article .negozio-dati .inner a:hover,
.single-evento .detail article .negozio-dati .inner a:hover,
.single-service .detail article .negozio-dati .inner a:hover,
.single-area .detail article .negozio-dati .inner a:hover {
  color: #000;
}
@media only screen and (min-width: 768px) {
  .single-negozio .detail article .negozio-dati .inner,
  .single-zone_service .detail article .negozio-dati .inner,
  .single-evento .detail article .negozio-dati .inner,
  .single-service .detail article .negozio-dati .inner,
  .single-area .detail article .negozio-dati .inner {
    padding: 20px;
    gap: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .single-negozio .detail article header h1,
  .single-zone_service .detail article header h1,
  .single-evento .detail article header h1,
  .single-service .detail article header h1,
  .single-area .detail article header h1 {
    font-size: 4em;
  }
  .single-negozio .detail article header h2,
  .single-zone_service .detail article header h2,
  .single-evento .detail article header h2,
  .single-service .detail article header h2,
  .single-area .detail article header h2 {
    font-size: 1.6em;
  }
}

.error404 .detail {
  padding: 20px;
}
.error404 .detail article > header {
  max-width: 1200px;
  margin: 0 auto 30px;
  text-align: center;
}
.error404 .detail article > header .category {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3em;
  margin-bottom: 2px;
}
.error404 .detail article > header .category a {
  color: #911f1e;
}
.error404 .detail article > header h1 {
  font-size: 6em;
  margin-bottom: 2px;
  font-family: "Bebas Neue", sans-serif;
}
.error404 .detail article > header h2 {
  font-size: 1.6em;
  line-height: 1.2em;
  font-weight: 300;
  margin-bottom: 10px;
}
.error404 .detail article .content404 {
  max-width: 1200px;
  margin: 40px auto;
}
.error404 .detail article .content404 svg .cls-1 {
  fill: #911f1e;
}

.single-content {
  max-width: 1400px;
  margin: 0 auto 30px;
  padding: 0 10px;
  font-size: 1.1em;
  line-height: 1.4em;
}
.single-content strong {
  font-weight: 700;
}
.single-content h2 {
  font-size: 1.6em;
  line-height: 1em;
  font-weight: 700;
}
.single-content a {
  color: #6d8dc8;
  border-bottom: 1px dotted;
}
.single-content a:hover {
  color: #000;
}
.single-content p {
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}
.single-content .woocommerce p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.single-content ul {
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}
.single-content ul li {
  list-style: square inside;
}
.single-content ul li + li {
  margin-top: 14px;
}
.single-content ol {
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}
.single-content ol li {
  list-style: decimal inside;
}
.single-content ol li + li {
  margin-top: 14px;
}
.single-content > * + * {
  margin-top: 20px;
}
.single-content iframe {
  width: 100%;
  height: 500px;
}
.single-content hr {
  border-color: #f5f5f5;
}
@media only screen and (min-width: 768px) {
  .single-content {
    font-size: 1.2em;
  }
  .single-content h2 {
    font-size: 1.8em;
  }
}

.pagination {
  margin: 30px auto;
  display: flex;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3em;
}
.pagination .nav-links {
  border: 1px solid #f5f5f5;
  border-radius: 20px;
  padding: 0 10px;
  display: flex;
}
.pagination .nav-links .page-numbers {
  padding: 10px 10px 8px;
}
.pagination .nav-links .page-numbers:hover {
  color: #6d8dc8;
}
.pagination .nav-links .page-numbers + .page-numbers {
  border-left: 1px solid #f5f5f5;
}
.pagination .nav-links span.page-numbers {
  color: #6d8dc8;
}

/*########### Footer Main ###############################################*/
.footerMain {
  background-color: #222;
  padding: 20px;
  margin-top: 30px;
}
.footerMain .inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footerMain .inner .footer-block {
  margin-bottom: 20px;
}
.footerMain .inner .footer-block .contact-form h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2em;
  color: #fff;
  margin-bottom: 20px;
}
.footerMain .inner .footer-block .contact-form .screen-reader-response {
  color: #fff;
  margin-bottom: 20px;
}
.footerMain .inner .footer-block .contact-form .screen-reader-response p {
  line-height: 1.2em;
  font-weight: 700;
}
.footerMain .inner .footer-block .contact-form .screen-reader-response ul {
  line-height: 1.2em;
  font-size: 0.9em;
}
.footerMain .inner .footer-block .contact-form .screen-reader-response ul li {
  list-style: square inside;
}
.footerMain .inner .footer-block .contact-form .screen-reader-response ul li a {
  color: #fff;
}
.footerMain .inner .footer-block .contact-form .screen-reader-response p + ul {
  margin-top: 10px;
}
.footerMain .inner .footer-block .contact-form form .hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.footerMain .inner .footer-block .contact-form form .wpcf7-response-output {
  display: none;
}
.footerMain .inner .footer-block .contact-form form .form-row {
  margin-bottom: 10px;
}
.footerMain .inner .footer-block .contact-form form .form-row span input,
.footerMain .inner .footer-block .contact-form form .form-row span textarea {
  font-family: "Inter", sans-serif;
  font-size: 1em;
  border: none;
  padding: 10px 20px;
  width: 100%;
  outline: none;
  border-radius: 20px;
  background-color: #000;
  color: #ddd;
  border: 2px solid #000;
}
.footerMain .inner .footer-block .contact-form form .form-row span input:focus,
.footerMain .inner .footer-block .contact-form form .form-row span textarea:focus {
  border-color: #6d8dc8;
}
.footerMain .inner .footer-block .contact-form form .form-row span input::placeholder,
.footerMain .inner .footer-block .contact-form form .form-row span textarea::placeholder {
  color: #ddd;
}
.footerMain .inner .footer-block .contact-form form .form-row span textarea {
  height: 140px;
  padding: 20px;
}
.footerMain .inner .footer-block .contact-form form .form-row span span {
  display: block;
  color: #fff;
  margin: 10px 0 0 20px;
}
.footerMain .inner .footer-block .contact-form form .form-actions input {
  border: none;
  min-width: 200px;
  padding: 10px;
  background-color: #6d8dc8;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4em;
  border-radius: 20px;
  cursor: pointer;
}
.footerMain .inner .footer-block .contact-form form .form-actions input:hover {
  background-color: #fff;
  color: #222;
}
@media only screen and (max-width: 767px) {
  .footerMain .inner .footer-block .partner-footer {
    margin-bottom: 30px;
  }
  .footerMain .inner .footer-block .contact-form {
    flex: 2;
  }
}
@media only screen and (min-width: 768px) {
  .footerMain .inner .footer-block {
    display: flex;
  }
  .footerMain .inner .footer-block .partner-footer {
    flex: 3;
  }
  .footerMain .inner .footer-block .contact-form {
    flex: 2;
  }
}
.footerMain .navmain {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 20px 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3em;
}
.footerMain .navmain ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footerMain .navmain ul li {
  margin: 10px;
}
.footerMain .navmain ul li.current-menu-item a {
  color: #6d8dc8;
}
.footerMain .navmain a {
  color: #fff;
}
.footerMain .navmain a:hover {
  color: #6d8dc8;
}
.footerMain .navfooter {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 0.9em;
}
.footerMain .navfooter ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footerMain .navfooter ul li {
  margin: 10px;
}
.footerMain .navfooter ul li a {
  color: #fff;
}
.footerMain .navfooter ul li a:hover {
  color: #6d8dc8;
}
.footerMain .disclaimer {
  text-align: center;
}
.footerMain .disclaimer p {
  font-size: 0.8em;
  line-height: 1.4em;
  color: #fff;
}
.footerMain .disclaimer p strong {
  font-weight: 700;
}
.footerMain .disclaimer p a {
  color: #333;
}
.footerMain .wa-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.9);
  transition: all ease-in-out 0.6s;
}
.footerMain .wa-btn svg {
  width: 80%;
  fill: #fff;
}
.footerMain .wa-btn:hover {
  transform: scale(1.1);
}
.footerMain .credits {
  text-align: center;
}
.footerMain .credits .credits-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  opacity: 0.8;
}
.footerMain .credits .credits-inner:hover {
  opacity: 1;
}
.footerMain .credits .credits-inner svg {
  width: 34px;
  height: 34px;
  color: #fff;
  margin-right: 10px;
}
.footerMain .credits .credits-inner p {
  color: #fff;
  font-size: 0.8em;
  line-height: 1.1em;
  text-align: left;
}
.footerMain .credits .credits-inner p span {
  display: block;
}

.patronage {
  margin: 20px auto 0;
  padding: 20px 20px 0;
  border-top: 1px dotted #bbb;
}
.patronage .inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 140px;
  background-image: url("../img/patronage.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media print {
  @page {
    size: portrait;
  }
  * {
    -moz-print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  body {
    margin: 0.5cm;
    background-color: transparent;
  }
}/*# sourceMappingURL=core.css.map */