@charset "UTF-8";
.header--sx {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .hamburger {
    width: 19px;
    height: 16px;
    position: fixed;
    cursor: pointer;
    transition: right, background 250ms ease;
    top: 20px;
    left: 15px;
  }
  .hamburger:focus {
    outline: none;
  }
  .hamburger .h1, .hamburger .h2, .hamburger .h3 {
    background: #404040;
    height: 2px;
    width: 19px;
    position: absolute;
    transition: 150ms top ease-out 150ms, 150ms transform ease-out 0;
  }
  .hamburger .h1 {
    top: 0;
    left: 0;
  }
  .hamburger .h2 {
    top: 7px;
    left: 0;
  }
  .hamburger .h3 {
    bottom: 0px;
    left: 0;
  }
  .hamburger.on .h1, .hamburger.on .h2, .hamburger.on .h3 {
    transition: 150ms top ease-out, 150ms transform ease-out 150ms;
  }
  .hamburger.on .h1 {
    top: 7px;
    transform: rotate(45deg);
  }
  .hamburger.on .h2 {
    transform: scaleX(0);
  }
  .hamburger.on .h3 {
    bottom: 7px;
    transform: rotate(-45deg);
  }
}
@media (min-width: 768px) {
  .hamburger {
    width: 30px;
    height: 25px;
    position: fixed;
    cursor: pointer;
    transition: right, background 250ms ease;
    top: 35px;
    left: 40px;
  }
  .hamburger:focus {
    outline: none;
  }
  .hamburger .h1, .hamburger .h2, .hamburger .h3 {
    background: #404040;
    height: 3px;
    width: 30px;
    position: absolute;
    transition: 150ms top ease-out 150ms, 150ms transform ease-out 0;
  }
  .hamburger .h1 {
    top: 0;
    left: 0;
  }
  .hamburger .h2 {
    top: 11px;
    left: 0;
  }
  .hamburger .h3 {
    bottom: 0px;
    left: 0;
  }
  .hamburger.on .h1, .hamburger.on .h2, .hamburger.on .h3 {
    transition: 150ms top ease-out, 150ms transform ease-out 150ms;
  }
  .hamburger.on .h1 {
    top: 11px;
    transform: rotate(45deg);
  }
  .hamburger.on .h2 {
    transform: scaleX(0);
  }
  .hamburger.on .h3 {
    bottom: 11px;
    transform: rotate(-45deg);
  }
}
.menu--logowrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu--logowrap img {
  height: auto;
  vertical-align: top;
  width: 60px;
}
@media (min-width: 768px) {
  .menu--logowrap img {
    width: 100px;
  }
}

.ovnav--wrap {
  width: 100vw;
  height: 100vh;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}
.ovnav--wrap.on {
  display: block;
}

.ovnav--sx {
  background: #fec;
}

.ovnav--menuTray {
  position: absolute;
  width: 300px;
  overflow-y: scroll;
  top: 60px;
  left: 20px;
  height: calc(100% - 90px);
}
@media (min-width: 768px) {
  .ovnav--menuTray {
    top: 100px;
    left: 40px;
    height: calc(100% - 100px);
  }
}

.ovnav--fade {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 100px;
  pointer-events: none;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 75%);
}

.ovnav--dx {
  flex: 1;
  display: none;
}
@media (min-width: 768px) {
  .ovnav--dx {
    display: flex;
    justify-content: space-between;
  }
}

.header--dx {
  position: relative;
}

/* .langSelect--wrap {
    padding: 20px 40px;
    position: absolute;
    right: 20px;
    top: calc(100% + 15px);

    text-align: center;
    background: white;
    border-radius: 6px;
    line-height: 1.5;

    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.4);
    display: none;

}

.langSelect--item {
    font-size: 20px;
    font-weight: bold;
    color: #606060;
    text-decoration: none;
    &:hover {
        color: $rosso;
    }
}
 */
.nav--search {
  cursor: pointer;
  position: fixed;
  top: 31px;
  left: 100px;
  width: 200px;
  height: 32px;
  border: 1px solid #404040;
  border-radius: 16px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.4px;
  z-index: 20;
  align-items: center;
  padding: 0 10px;
  display: none;
}
.nav--search:hover {
  color: #da2032;
}
.nav--search svg {
  margin-right: 7px;
}
@media (min-width: 768px) {
  .nav--search {
    display: flex;
  }
}

.nav--searchMobile {
  cursor: pointer;
  position: fixed;
  top: 18px;
  left: 48px;
  z-index: 20;
  display: block;
}
.nav--searchMobile:hover {
  color: #da2032;
}
.nav--searchMobile svg {
  margin-right: 7px;
}
@media (min-width: 768px) {
  .nav--searchMobile {
    display: none;
  }
}

/* .overlay--wrap {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: -100%;
    background: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;

    opacity: 0;
    transition: opacity 200ms ease-in-out;
    color: #222;

    &.on {
        left: 0;
        opacity: 1;
        transition: opacity 200ms ease-in-out;
        box-shadow: inset 0px 0px 80px -20px rgba(0,0,0,0.5);
    }
} */
.overlay--close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 60px;
  line-height: 0;
  color: #da2032;
  cursor: pointer;
  top: 5px;
  right: 5px;
}
.overlay--close:hover {
  color: #ae1928;
}
@media (min-width: 768px) {
  .overlay--close {
    top: 20px;
    right: 20px;
  }
}

.overlay--layout {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
@media (max-width: 1300px) {
  .overlay--layout {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.overlay--title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #da2032;
}

.overlay--content {
  padding: 50px 0 10px 0;
  position: relative;
}
.overlay--content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 50%;
  border-right: 1px solid #ccc;
}

.overlay--select {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 10px 31px 10px 10px;
  box-sizing: border-box;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #ccc;
  background: #f0f0f0 url("../img/down-arrow.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px auto;
  border-radius: 2px;
  font-family: "WorkSans", "Helvetica", Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
}
@media (min-width: 480px) {
  .overlay--select {
    width: 400px;
  }
}

.overlay--row {
  padding: 15px 0 5px 0;
  text-align: center;
}
.overlay--row label {
  display: block;
  margin-bottom: 5px;
  color: #444;
}
.overlay--row input {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #ccc;
  width: 100%;
  max-width: 400px;
  padding: 10px;
  box-sizing: border-box;
  font-family: "WorkSans", "Helvetica", Arial, sans-serif;
  font-size: 16px;
  background: #f0f0f0;
}

.overlay--msg {
  font-size: 14px;
  color: #da2032;
  font-weight: bold;
  padding-top: 5px;
  text-transform: uppercase;
}

.overlay--button {
  padding: 20px 0 10px 0;
  text-align: center;
}

.overlay--links {
  display: flex;
  justify-content: center;
  color: #da2032;
  max-width: 400px;
  margin: 0 auto;
}
.overlay--links a {
  text-transform: uppercase;
  font-weight: bold;
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
}

.overlay--row__disabled {
  opacity: 0.5;
  pointer-events: none;
}

.overlay--button__disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Lightbox ——————————————————————————————————————————  */
#imagelightbox {
  position: fixed;
  z-index: 9999;
  -ms-touch-action: none;
  touch-action: none;
  box-shadow: 0 0 150px -30px rgba(0, 0, 0, 0.3);
  outline: 20px solid white;
}

.overlayImage--overlay {
  background-color: #eee;
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.overlayImage--close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 60px;
  line-height: 0;
  color: #da2032;
  cursor: pointer;
  z-index: 10002;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 
.overlay--lang {
    background-image: url('../img/overlay-world.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    &.on {
        box-shadow: none;
    }

    display: block;

    .inwrap {
        height: 100%;
    }

    .overlayLang--dummy {
        height: 100%;
        max-width: 600px;
        margin: 0 auto;        
    }

}

.overlayLang--wrap {
    text-align: center;
    height: 100%;
}

.confirmLang--wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.confirmLang--logo {
    margin-bottom: 30px;
    margin-top: -40px; // così sembra più centrato

    img {
        width: 96px;
        height: auto;
    }
}

.confirmLang--txt {
    font-weight: bold;
    color: #606060;
    font-size: 18px;
}

.confirmLang--country {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 42px;

    @include media('>=tablet') {
        font-size: 56px;
    }

    @include media('>=desktophd') {
        font-size: 76px;
    }
}

.confirmLang--btn {
    color: white;
    background: $rosso;
    border-radius: 30px;
    font-weight: bold;
    padding: 10px 40px;
    display: inline-block;
    margin: 0 auto;
    cursor: pointer;
    box-shadow: 0 5px 15px -6px rgba(0,0,0,0.30);

    font-size: 16px;
    padding: 10px 20px;

    @include media('>=tablet') {
        font-size: 22px;
        padding: 10px 40px;
    }
}

.confirmLang--other {
    margin-top: 25px;
    color: #606060;
    text-decoration: underline;
    cursor: pointer;

    font-size: 16px;
    @include media('>=tablet') {
        font-size: 18px;
    }
}

// lang choose
.chooseLang--wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.chooseLang--head { 
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 20px;
    position: relative;
}

.chooseLang--back {
    position: absolute;
    left: 0; bottom: 2px;
    display: block;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    &:hover {
        color: $rosso;
    }
}

.chooseLang--logo {
    img {
        width: 96px;
        height: auto;
    }
}

.chooseLang--shortcuts {
    border-bottom: 1px solid #00000024;
    padding-top   : 0px;
    padding-bottom: 10px;
    margin-bottom : 10px;
    line-height   : 1.5;

    @include media('>=tablet') {
        padding-top: 40px;
        padding-bottom: 20px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

}

.chooseLang--shortcutsRow {
    display: grid;
    grid-column-gap: 20px;
    // grid-row-gap: 10px;
    grid-template-columns: repeat(2, 1fr);

    @include media('>=tablet') {
        grid-template-columns: repeat(3, 1fr);
    }
}

.chooseLang--shortcutsItem {
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    &:hover {
        color: $rosso;
    }

    @include media('>=tablet') {
        font-size: 22px;
    }
}

.chooseLang--search {
    margin-bottom: 20px;
    position: relative;

    label {
        display: block;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        text-align: left;
    }
    input {
        display: block;
        border: 1px solid #333;
        border-radius: 20px;
        padding: 5px 10px;
        width: 100%;
        font-family: $font;
        font-size: 16px;
    }
}

.chooseLang--field { 
    position: relative;

    .chooseLang--resetSearch {
        position: absolute;
        top: 7px;
        right: 10px;

        cursor: pointer;
        &:hover {
            color: $rosso;
        }
        svg {
            width: 15px;
            height: auto;
        }
    }

}

.continents--wrap {
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    grid-template-columns: repeat(2, 1fr);

    @include media('>=tablet') {
        grid-template-columns: repeat(3, 1fr);
    }    

    margin-bottom: 20px;
    div {
        text-align: left;
        margin-right: 25px;
        text-transform: uppercase;
        color: #606060;
        font-weight: bold;
        font-size: 13px;
        cursor: pointer;
        &:hover {
            color: $rosso;
        }
        &.on {
            color: $rosso;
        }
    }
}

.chooseLang--help {
    font-size: 18px;
    text-align: left;
    font-weight: bold;
    color: #909090;
    //height: 500px;
}



.chooseLang--results {
    position: relative;
    height: 100%;
    text-align: left;

}

.chooseLang--tray {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow-y: auto;
    padding: 10px 0;

}

.chooseLang--grid {
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 5px;

    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    @include media('>=tablet') {
        grid-template-columns: repeat(3, 1fr);
    }  

    div {
        cursor: pointer;
        &:hover {
            color: $rosso;
        }

        font-size: 16px;
        @include media('>=tablet') {
            font-size: 18px;
        }
    }
} */
.ovsearch--wrap {
  width: 100vw;
  height: 100vh;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  overflow-y: scroll;
  z-index: 20;
}
.ovsearch--wrap.on {
  display: block;
}

.ovsearch--tray {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ovsearch--layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ovsearch--logowrap {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  padding-top: 12px;
}
@media (min-width: 768px) {
  .ovsearch--logowrap {
    padding-top: 23px;
  }
}
.ovsearch--logowrap img {
  width: 60px;
  height: auto;
}
@media (min-width: 768px) {
  .ovsearch--logowrap img {
    width: 100px;
  }
}

.ovsearch--head {
  position: relative;
  margin-bottom: 8px;
}

.ovsearch--title {
  color: #da2032;
  font-weight: bold;
  font-size: 18px;
  text-align: left;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .ovsearch--title {
    font-size: 18px;
    text-align: center;
    padding-top: 5px;
  }
}

.ovsearch--close {
  position: absolute;
  bottom: 4px;
  right: 0;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
}
.ovsearch--close span {
  margin-right: 4px;
}
.ovsearch--close:hover {
  color: #da2032;
}

/* algolia override */
#searchbox {
  margin-bottom: 20px;
}

.ovsearch--page {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.ovsearch--pageTitle {
  font-weight: bold;
  font-size: 18px;
  color: #aaa;
}

@media (min-width: 768px) {
  .ovsearch--list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 16px;
  }
}

.ovsearch--item {
  display: block;
  padding: 0;
  box-shadow: none;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  margin: 0;
}
.ovsearch--item h2 {
  font-size: 16px;
  font-weight: bold;
  color: #da2032;
}
.ovsearch--item a {
  text-decoration: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.ovsearch--item .fluids {
  text-transform: uppercase;
  font-size: 12px;
  color: #777;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

.ovsearch--itemSx {
  width: calc(100% - 100px - 40px);
}

.ovsearch--itemDx {
  width: 100px;
}

.page--li + .page--li {
  margin: 0;
}

.page--item {
  display: none;
}

.ovsearch--articlesList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .ovsearch--articlesList {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ovsearch--articlesItem {
  margin: 0;
  padding: 0;
  box-shadow: none;
  display: block;
}
.ovsearch--articlesItem a {
  text-decoration: none;
}
.ovsearch--articlesItem h2 {
  font-weight: bold;
  color: #da2032;
  font-size: 18px;
  margin-bottom: 10px;
}
.ovsearch--articlesItem .img {
  background: #da2032;
  padding-top: 55.26%;
  margin-bottom: 10px;
  border-radius: 4px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ovsearch--articlesItem article {
  color: #606060;
}

.ovsearch--more {
  padding-bottom: 40px;
  text-align: center;
}

.freeze {
  overflow: hidden;
}