@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');


* {
  margin: 0;
  padding: 0;
}

:root {
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;
  --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
  font-display: swap;
}
img {
  width: 100%;
}
body {
  padding: var(--padding);
  max-width: 70rem;
  margin: 0 auto;
}
li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-weight: 600;
}
small {
  font-size: 1.1rem;
  color: var(--color-text-grey);
  line-height: 0;
}

.bg-light {
  background-color: var(--color-light);
}
.color-grey {
  color: var(--color-text-grey);
}

.header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.header .riferimento{
  display: none;
}
.logo {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}


.social {
  display: flex;
  padding: 0 .5rem;
}
.social a {
  padding: 1rem .5rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  --columns: 12;
  --gutter: 1rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
.grid > .column {
  margin-bottom: var(--gutter);
}


.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.text {
  line-height: 1.5em;
/*  padding-top: 5rem;*/
  padding-bottom: 4rem;
}
.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
.text h1,
.h1,
.intro {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.8rem;
}
.text h2,
.h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.text h3,
.h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.text h4,
.h4 {
  font-weight: 600;
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}
.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}

.footer {
  padding: 9rem 0 6rem;
  line-height: 1.5em;
}
.footer:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-black);
  margin-bottom: 1.5rem;
}

.footer h2 {
  font-weight: 600;
  margin-bottom: .75rem;
}
.footer ul,
.footer p {
  color: var(--color-text-grey);
}
.footer p {
  max-width: 15rem;
}
.footer a:hover {
  color: var(--color-text);
}


.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}


@media screen and (min-width: 60rem) {
  body {
    --padding: 2rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }

}

.pagination {
  display: flex;
  padding-top: 6rem;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}
.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}
.notes{
  padding-top: 2rem;
}
.note{
  margin-top: 1rem;
}
.note-header{
  margin-top: 0;
}

.note-header .arrow-icon{
  position: relative;
  top: 0.3rem;
  font-size: 2rem !important;
  line-height: 1rem;
}
.note-excerpt {
  line-height: 1.5em;
}
.note-excerpt header {
  margin-bottom: 1.5rem;
}
.note-excerpt figure {
  margin-bottom: .5rem;
}
.note-excerpt-title {
  font-weight: 600;
}
.note-excerpt-date {
  color: var(--color-text-grey);
}

.note-title a:hover{
  text-decoration: underline;
}




.traversate h2{

  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;

}
.traversate ul{
  margin: 0;
  width: 100%;
  margin-top: 2rem;
  float: left;
}
.traversate ul li{
  background-color: var(--color-code-light-grey);
  margin: 0;
  list-style: none;
  padding: 0.1rem 0.8rem 0.7rem 0.8rem;
}
.traversate ul li.titleMonth{
  background-color: transparent;
  border-bottom: 2px solid var(--color-black);
  padding: 0.1rem 0.8rem 0.1rem 0.8rem;

}
.traversate ul li.titleMonth:hover {
  opacity: 1;
}
.traversate ul li:hover{
  opacity: 0.7;
  transition: 0.3s ease-in-out;
  
}
.traversate ul li h3{
  margin: 0;
  font-weight: 700;
  text-decoration: underline;
}

.traversate h5{
  font-weight: 700;
  font-size: 0.9rem;

}
.traversate ul li p{
  font-size: 1rem;
}

.clear-month{
  width: 100%;
}
.traversate ul li.all{
  background-color: var(--color-black);
  color: var(--color-white);
  margin-top: 0.8rem;
}
.traversate ul li.italia{
  background-color: var(--color-code-green);
}
.traversate ul li.francia{
  background-color: var(--color-code-aqua);
}
.traversate ul li.spagna{
  background-color: var(--color-code-red);
}
.traversate ul li.austria{
  background-color: var(--color-code-yellow);
}
.traversate ul li.svizzera{
  background-color: var(--color-code-purple);
}
.traversate ul li.germania{
  background-color: var(--color-code-blue);
}
.traversate ul li.galles{
  background-color: var(--color-code-orange);
}
.traversate ul li.presenti{
  border-left: 0.4rem solid var(--color-black);
  border-right: 0.4rem solid var(--color-black);
  padding: 0.1rem 0.4rem 0.7rem 0.4rem;
  position: relative;
}

.traversate ul li .presenti-label{
  position: absolute;
  bottom: 0.3rem;
  right: 0.3rem;
}


ul.filtri{
  width: 100%;
  float: left;
  margin-top: 0.4rem;
}
ul.filtri li{
  float: left;
  width: auto;
  padding-bottom: 0.3rem;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;

}
ul.filtri li.presenti{
  clear: both;
  padding-bottom: 0.3rem;
  margin-top: 0.8rem;
}
input[type=button] {
  background-color: var(--color-light);
  border: none;
  color: var(--color-black);
  padding: 1rem 2rem;
  text-decoration: none;
  margin-top: 2rem;
  margin-bottom: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.3s cubic-bezier(.86,0,.07,1);
}

input[type=button]:hover {
  background-color: var(--color-text-grey);
  color: var(--color-white);

}
.print-icon{
  font-size: 3rem !important;
  margin: 1rem;
  position: relative;
  top: 1.1rem;
}
.arrow-icon{
  position: relative;
  top: 0.45rem;
}

.search-icon{
  font-size:1.8rem !important;
  line-height: 1.2rem !important;
  position: relative;
  top: 0.45rem;
}



.form-contatto label{
  display: none;
}
.form-contatto label.gdpr{
  display: inline;
  color: var(--color-text-grey);
}
.form-contatto label.gdpr a{
  text-decoration: underline;
}
.form-contatto input:not([type="checkbox"]):not([type="submit"]){
  width: 50%;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  border: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
  box-sizing: border-box;
  float: left;
}
.form-contatto textarea{
  width: 100%;
  padding: 0.4rem 1rem;
  margin-bottom: 0.5rem;
  border: 0;
  border-bottom: 2px solid;
  border-left: 2px solid;
  box-sizing: border-box;
  float: left;
  min-height: 120px;
}
.form-contatto input[type="submit"]{
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  padding: 0.4rem 1.6rem;
  margin-top: 1rem;
  border: 0;
  border-radius: 0;
  font-size: 1.1rem;
}


.inp {
  position: relative;
  display: grid;
  overflow: hidden;
  margin-bottom: 0.7rem;
}
.inp .label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 1.4rem;
  color: var(--color-black);
  font-weight: 500;
  transform-origin: 0 0;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
  pointer-events: none;
}
.inp .focus-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
}
.inp input {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  border: 0;
  font-family: inherit;
  padding: 16px 12px 0 12px;
  height: 56px;
  font-size: 16px;
  font-weight: 400;
  background: var(--color-light);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.3);
  color: #000;
  transition: all 0.15s ease;
}
.inp input:hover {
  background: rgba(0, 0, 0, 0.04);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}
.inp input:not(:-moz-placeholder-shown) + .label {
  color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.65);
}
.inp input:not(:-ms-input-placeholder) + .label {
  color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.65);
}
.inp input:not(:placeholder-shown) + .label {
  color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.65);
}
.inp input:focus {
  background: rgba(0, 0, 0, 0.05);
  outline: none;
  box-shadow: inset 0 -2px 0 var(--color-code-red);
}
.inp input:focus + .label {
  color: var(--color-code-red);
  transform: translate3d(0, -12px, 0) scale(0.65);
}
.inp input:focus + .label + .focus-bg {
  transform: scaleX(1);
  transition: all 0.1s ease;
}
















.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: var(--color-black);
  height: 50px;
  width: 100%;
}




.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu a[aria-current] {
  text-decoration: underline;
}


.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}
.menu > li:last-child {
  margin:0 0 0 1rem;
  overflow: hidden;
}
.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: var(--color-black);
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}


.traversate .list-traversate-italia{
  margin-top: 0.4rem;
  margin-bottom: 0.2rem;

}
.button-traversate-italia{
  margin-bottom: 4rem;
  float: left;
  width: 100%;
}

@media (max-width: 1280px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 5;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 3.5rem;
    padding: 1rem;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    box-sizing: border-box;
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}


.honeypot {
    position: absolute;
    left: -9999px;
}





