/*!************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./Assets/css/starter.scss ***!
  \************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
html {
  /*Hat tip to @thierrykoblentz for this approach: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: border-box;
  --fontStack: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI",
    Tahoma, Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Open Sans",
    sans-serif;
  font-family: var(--fontStack);
}

* {
  /*This prevents users being able to select text. Stops long presses in iOS bringing up copy/paste UI for example*/
  /* Most devs find border-box easier to reason about. However by inheriting we can mix box-sizing approaches.*/
  box-sizing: inherit;
}

*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  /*We will be adding our own margin to these elements as needed.*/
  margin: 0;
  /*You'll want to set font-size as needed.*/
  /*No bold for h tags unless you want it*/
}

a {
  text-decoration: none;
  color: inherit;
}

/*Prevent these elements having italics by default*/
em,
i {
  font-style: normal;
}

/*IMPORTANT: This removes the focus outline for most browsers. Be aware this is a backwards accessibilty step!*/
a:focus,
button:focus {
  outline: 0;
}

/* The button element tends to get a lot of default styles which we largely undo here. We set text-alignment (usually set to center by UA style sheet) and the font-family to inherit from your own styles instead. */
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0;
  padding: 0;
  text-align: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  /* Safari adds margin */
  margin: 0;
}

button:hover {
  cursor: pointer;
}

input:not([type=checkbox]),
fieldset {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  /*inputs and fieldset defaults to having a min-width equal to its content in Chrome and Firefox (https://code.google.com/p/chromium/issues/detail?id=560762), we may not want that*/
  min-width: 0;
  /*Reset the font size and family*/
  font-size: inherit;
  font-family: inherit;
}

/*This switches the default outline off when an input receives focus (really important for users tabbing through with a keyboard) so ensure you put something decent in for your input focus instead!!*/
input:focus {
  outline: 0;
  box-shadow: none;
}

/*Removes the little spinner controls for number type inputs (WebKit browsers/forks only)*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

/*SVG defaults to display: inline which I dislike. Inline-block or inline-flex will render white space on SVG elements in HTML (where you would have defs and symbols) if the container isn't a flex box or the font-size set to 0 to crush the whitespace */
svg {
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  /*Make images behave responsively. Here they will scale up to 100% of their natural size*/
  max-width: 100%;
  /*Make images display as a block (UA default is usually inline)*/
  display: block;
}

/* Switching on box-sizing: border-box by default; toggle this off if you want more granular control */
body {
  box-sizing: border-box;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/* font face */
@font-face {
  font-family: "Raleway";
  src: url(/assets/fonts/Raleway-Medium.257a2127fc71563ee1f5.woff2) format("woff2"), url(/assets/fonts/Raleway-Medium.d8719fb28da2f3885a7a.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url(/assets/fonts/Raleway-SemiBold.b16945d22c89ddd5d9c7.woff2) format("woff2"), url(/assets/fonts/Raleway-SemiBold.81d7f7e9d6dbf487d1c3.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url(/assets/fonts/Raleway-Bold.0ec2e848783463e7ebfa.woff2) format("woff2"), url(/assets/fonts/Raleway-Bold.24df9add62b475756c3d.woff) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url(/assets/fonts/Raleway-ExtraBold.2beb9188ded6ecf04caf.woff2) format("woff2"), url(/assets/fonts/Raleway-ExtraBold.ca25a2b19d5dd0b25787.woff) format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* font face */
body {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}

small {
  font-size: 12px;
  line-height: 24px;
  display: block;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  /* Aggiungi qui le proprietà CSS che desideri assegnare agli h1 a h6 e .h1 a .h6 */
  font-family: "Raleway", sans-serif;
  font-weight: bold;
}

/* Stili per h1 */
h1,
.h1 {
  /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h1 */
  font-size: 60px;
  line-height: 70px;
}

/* Stili per h2 */
h2,
.h2 {
  /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h2 */
  font-size: 48px;
  line-height: 56px;
  margin: 0;
  margin-bottom: 20px;
}

/* Stili per h3 */
h3,
.h3 {
  /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h3 */
  font-size: 36px;
  line-height: 42px;
  margin: 0;
  margin-bottom: 18px;
}

/* Stili per h4 */
h4,
.h4 {
  /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h4 */
  font-size: 24px;
  line-height: 28px;
}

/* Stili per h5 */
h5,
.h5 {
  /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h5 */
}

/* Stili per h6 */
h6,
.h6 {
  /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h6 */
}

@media only screen and (max-width: 1920px) {
  /* Stili per h1 */
  h1,
  .h1 {
    /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h1 */
    font-size: 3.125vw;
    line-height: 3.6458333333vw;
  }
  /* Stili per h2 */
  h2,
  .h2 {
    /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h2 */
    font-size: 2.5vw;
    line-height: 2.9166666667vw;
    margin-bottom: 1.0416666667vw;
  }
  /* Stili per h3 */
  h3,
  .h3 {
    /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h3 */
    font-size: 1.875vw;
    line-height: 2.1875vw;
    margin-bottom: 0.9375vw;
  }
  /* Stili per h4 */
  h4,
  .h4 {
    /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h4 */
    font-size: 1.25vw;
    line-height: 1.4583333333vw;
  }
  /* Stili per h5 */
  h5,
  .h5 {
    /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h5 */
  }
}
@media only screen and (max-width: 1024px) {
  /* Stili per h1 */
  h1,
  .h1 {
    /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h1 */
    font-size: 30px;
    line-height: 40px;
  }
  /* Stili per h2 */
  h2,
  .h2 {
    /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h2 */
    font-size: 26px;
    line-height: 36px;
  }
  /* Stili per h3 */
  h3,
  .h3 {
    /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h3 */
    font-size: 22px;
    line-height: 30px;
  }
  /* Stili per h4 */
  h4,
  .h4 {
    /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h4 */
    font-size: 18px;
    line-height: 22px;
  }
  /* Stili per h5 */
  h5,
  .h5 {
    /* Aggiungi qui le proprietà CSS che desideri assegnare ad .h5 */
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row--center {
  justify-content: center;
}
.row.pd-small {
  margin-right: -8px;
  margin-left: -8px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 16px;
}
.pd-small .col-1, .pd-small .col-2, .pd-small .col-3, .pd-small .col-4, .pd-small .col-5, .pd-small .col-6, .pd-small .col-7, .pd-small .col-8, .pd-small .col-9, .pd-small .col-10, .pd-small .col-11, .pd-small .col-12, .pd-small .col {
  padding-right: 8px;
  padding-left: 8px;
  margin-bottom: 16px;
}

.j-center {
  display: flex;
  justify-content: center;
}

.j-end {
  justify-content: flex-end;
  display: flex;
}

.j-start {
  justify-content: flex-start;
  display: flex;
  align-items: flex-start;
}

.mb-card {
  margin-bottom: 26px;
}

.a-center {
  display: flex;
  align-items: center;
}

.a-end {
  align-items: flex-end;
  display: flex;
}

.j-between-y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.h-100 {
  height: 100%;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-20 {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 15px;
  padding-bottom: 30px;
}

.col-40 {
  flex: 0 0 40%;
  max-width: 40%;
  padding: 0 15px;
  padding-bottom: 30px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-50 {
  margin-bottom: 50px;
}

.j-column {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}

.mt-section {
  margin-top: 116px;
}

@media only screen and (max-width: 1920px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col {
    padding-right: 0.78125vw;
    padding-left: 0.78125vw;
    margin-bottom: 0.78125vw;
  }
  .row {
    margin-right: -0.78125vw;
    margin-left: -0.78125vw;
  }
  .mt-section {
    margin-top: 6.0416666667vw;
  }
  .mb-card {
    margin-bottom: 1.3541666667vw;
  }
}
@media only screen and (max-width: 1024px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col {
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 15px;
  }
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
html {
  height: 100%;
}

body {
  min-height: 100%;
  height: 100%;
  font-size: 18px;
  line-height: 36px;
  overflow-x: hidden;
}
body.page-mappa .main-mappa {
  padding-top: 50px;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  background-color: #315779;
}

.wrapper {
  height: 100%;
}

.container {
  max-width: 1780px;
  width: 90%;
  margin: 0 auto;
}
.container--small {
  max-width: 812px;
}
.container--medium {
  max-width: 1460px;
}

.single-gift .product__gallery {
  height: auto;
}

.page-editor {
  margin-top: 80px;
}

.page-esperienza .product__scheda:after {
  background-color: #77913e;
}
.page-esperienza .card-2__label {
  padding: 0 26px 8px 26px;
}
.page-esperienza .card-2__content {
  margin-top: 16px;
}

a {
  transition: 0.3s ease color;
}
a:not(.btn):not(.btn-i):not(.btn-outline):hover {
  color: #315779;
}

#settings-lang {
  width: auto;
}
#settings-lang.settings-lang-superadmin {
  margin-bottom: -50px;
}

.ball-state {
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.ball-state--success {
  background-color: #00a60b;
}
.ball-state--red {
  background-color: #E53329;
}

.logo {
  width: 206px;
}
.logo svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .logo {
    width: 158px;
  }
}

.row-center {
  display: flex;
  justify-content: center;
}

.stripe-connection {
  display: flex;
  align-items: center;
  padding-left: 32px;
}
.stripe-connection .label {
  margin-left: 50px;
}

*::-moz-selection {
  background-color: #315779;
  color: #fff;
}

*::selection {
  background-color: #315779;
  color: #fff;
}

.mt-30 {
  margin-top: 30px;
}

.no-pointer {
  pointer-events: none;
}

.glightbox-container .ginner-container.ginner-container--column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

hr {
  border: 1px solid #ededed;
  width: auto;
}

.hr-dotted {
  border-style: dashed;
}

.no-result {
  padding-top: 70px;
  padding-bottom: 100px;
  width: 100%;
}

.list-radio li {
  display: flex;
  align-items: center;
}
.list-radio input {
  margin-right: 15px;
}

.list-checkbox .form-check {
  justify-content: flex-start;
}
.list-checkbox li {
  margin-bottom: 18px;
}

.fake-check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: transparent;
  border: 2px solid #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fake-check i {
  margin-top: -10px;
  margin-right: -7px;
  opacity: 0;
  transform: scale(0);
  color: #00a60b;
  font-size: 15px;
}
.selected .fake-check i {
  opacity: 1;
  transform: scale(1.3);
}

.list-group li:nth-child(2n+2) {
  background-color: #f5f5f5;
}
.list-group li {
  padding: 10px 20px;
}
.list-group [class*=col-] {
  padding-bottom: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.list-group [class*=col-]:last-child {
  justify-content: flex-end;
}

@media only screen and (max-width: 1920px) {
  body {
    font-size: 0.9375vw;
    line-height: 1.875vw;
  }
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 30px;
  }
  .row-center {
    width: 100%;
  }
  .container {
    max-width: none;
    padding: 0 20px;
    width: 100%;
  }
  .container--esperienze {
    display: inline-block;
  }
  .list-radio label {
    font-size: 14px;
  }
  #settings-lang {
    width: 100%;
  }
  #settings-lang.settings-lang-superadmin {
    margin-bottom: -20px;
  }
}
.cols {
  display: flex;
  justify-content: space-between;
}

.col .box-shadow {
  width: 100%;
  min-width: auto;
  height: 100%;
}
.col .file-drop-area {
  height: 100%;
}
.col--2 {
  width: 49%;
}
.col--3 {
  width: 32%;
}
.col--30 {
  width: 30%;
}
.col--70 {
  width: 70%;
}
.col--40 {
  width: 40%;
}
.col--60 {
  width: 60%;
}
.col--50 {
  width: 60%;
}
.col-1 {
  flex: 1;
}
.col-05 {
  flex: 0.5;
}
.col--end {
  justify-content: flex-end;
  width: 100%;
}
.col--center {
  justify-content: center;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .cols {
    flex-wrap: wrap;
  }
}
.txt-center {
  text-align: center;
}

.ud {
  text-decoration: underline;
  font-weight: bold;
}

.d-f-center {
  display: flex;
  align-items: center;
}

.hidden {
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 - a 0 height clip, off to the bottom right of the visible 1px box */
  clip: rect(1px, 1px, 1px, 1px); /*maybe deprecated but we need to support legacy browsers */
  clip-path: inset(50%); /*modern browsers, clip-path works inwards from each corner*/
  white-space: nowrap; /* added line to stop words getting smushed together (as they go onto seperate lines and some screen readers do not understand line feeds as a space */
}

.brd-r {
  border-right: 2px solid #EEEEEE;
}

.strong {
  font-weight: bold;
}

.a-start {
  align-items: flex-start;
}

.list-tracking {
  display: flex;
}
.list-tracking li {
  margin-right: 10px;
}
.list-tracking li:last-child {
  margin-right: 0;
}

.box-gray {
  background-color: #F9F9F9;
}

.alert-info {
  display: flex;
  color: #e53329;
  font-size: 12px;
  line-height: 24px;
}
.alert-info--gray {
  color: #808080;
}
.alert-info i {
  margin-right: 10px;
  font-size: 16px;
}

.ball-outline {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #808080;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ball-outline i {
  font-size: 18px;
}
.ball-outline i.icon-statistiche {
  font-size: 12px;
}
.ball-outline .icon-v,
.ball-outline .icon-plus {
  color: #315779;
}

@media only screen and (max-width: 1920px) {
  .ball-outline {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
  .ball-outline i {
    font-size: 0.9375vw;
  }
  .ball-outline i.icon-statistiche {
    font-size: 0.625vw;
  }
}
@media only screen and (max-width: 1024px) {
  .ball-outline {
    width: 30px;
    height: 30px;
  }
  .ball-outline i {
    font-size: 15px;
  }
  .ball-outline i.icon-statistiche {
    font-size: 12px;
  }
}
/* ===============================
=            Choices            =
=============================== */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: visible;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #00bcd4;
}
.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none;
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333 transparent;
  margin-top: -7.5px;
}
.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid rgb(0, 142.7735849057, 161);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: rgb(182.75, 182.75, 182.75);
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__inner {
  padding: 11px 11px 3.75px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid rgb(0, 165.3867924528, 186.5);
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: rgb(0, 165.3867924528, 186.5);
  border: 1px solid rgb(0, 142.7735849057, 161);
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: rgb(170.25, 170.25, 170.25);
  border: 1px solid rgb(144.75, 144.75, 144.75);
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  visibility: visible;
}
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
  border-color: rgb(182.75, 182.75, 182.75);
}
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable::after, .choices__list[aria-expanded] .choices__item--selectable::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: rgb(242.25, 242.25, 242.25);
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid rgb(246.5, 246.5, 246.5);
  color: rgb(127.5, 127.5, 127.5);
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
.choices__input::-webkit-search-decoration, .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
  display: none;
}
.choices__input::-ms-clear, .choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/* =====  End of Choices  ====== */
.choices__list--dropdown .choices__item--selectable,
.choices__list[aria-expanded] .choices__item--selectable {
  padding-right: 0;
}

.choices[data-type*=select-one] {
  border-radius: 30px;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.06);
  display: flex;
}
.choices[data-type*=select-one]::after {
  font-family: "airwns";
  border: 0;
  content: "\e81e";
  width: 20px;
  right: 26px;
  height: 10px;
  font-size: 10px;
  margin-top: -5px;
  transition: transform 0.3s ease;
  transform-origin: center;
  line-height: 1;
}
.choices[data-type*=select-one].is-open::after {
  transform: rotate(-180deg);
  margin-top: -5px;
}

.choices {
  border: 1px solid #ededed;
}

.choices .choices__inner {
  background: #fff;
  border: 0;
  font-size: 18px;
  font-weight: bold;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  border-radius: 30px;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  z-index: 99;
}

.choices__inner {
  padding-right: 50px;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border: 0;
  border-radius: 30px;
}
.is-open .choices__inner {
  border: 0;
}
.is-flipped.is-open .choices__inner {
  border: 0;
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  padding: 20px;
}

.choices[data-type*=select-one] .choices__input {
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 20px;
}

.choices__list--single {
  padding: 0 16px;
}

@media only screen and (max-width: 1920px) {
  .choices__inner {
    padding-right: 2.6041666667vw;
  }
  .choices[data-type*=select-one] {
    font-size: 0.8333333333vw;
  }
  .choices[data-type*=select-one]::after {
    width: 1.0416666667vw;
    height: 0.5208333333vw;
    font-size: 0.5208333333vw;
    right: 1.3541666667vw;
    margin-top: -0.2604166667vw;
  }
  .choices[data-type*=select-one].is-open::after {
    margin-top: -0.2604166667vw;
  }
  .choices .choices__inner {
    border-radius: 1.5625vw;
    font-size: 0.9375vw;
  }
  .choices[data-type*=select-one] .choices__input, .choices[data-type*=select-one] input:not([type=checkbox]):not([type=radio]):not([name=Amount]):not(.input-search):not([type=file]) {
    margin: 0;
    border: 0;
    border-radius: 0;
    padding: 20px;
    box-shadow: none;
  }
}
@media only screen and (max-width: 1024px) {
  .choices[data-type*=select-one] {
    font-size: 16px;
    width: 100%;
  }
  .choices[data-type*=select-one]::after {
    width: 20px;
    height: 10px;
    font-size: 10px;
    margin-top: -5px;
    right: 0;
  }
  .choices[data-type*=select-one].is-open::after {
    margin-top: -5px;
  }
  .choices .choices__inner {
    border-radius: 30px;
    font-size: 16px;
  }
  .choices__list[aria-expanded] {
    border-radius: 20px;
  }
}
.splide__slide--has-video {
  cursor: pointer;
}

.splide__slide--has-video:hover .splide__video__play {
  opacity: 1;
}

.splide__slide__container--has-video {
  cursor: pointer;
  position: relative;
}

.splide__slide__container--has-video:hover .splide__video__play {
  opacity: 1;
}

.splide__video {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.splide__video__wrapper {
  background: #000;
  height: inherit;
  width: inherit;
}

.splide__video__wrapper div,
.splide__video__wrapper iframe,
.splide__video__wrapper video {
  height: 100%;
  width: 100%;
}

/* Per WebKit (Chrome, Safari) */
video::-webkit-media-controls-mute-button {
  background-color: #315779;
}

/* Per Gecko (Firefox) */
video::-moz-media-controls-mute-button {
  background-color: #315779;
}

/* Per Trident (Internet Explorer) */
video::-ms-media-controls-mute-button {
  background-color: #315779;
}

/* Per Blink (Opera) */
video::-o-media-controls-mute-button, video::-webkit-media-controls-mute-button {
  background-color: #315779;
}

/* Per altri browser */
video::media-controls-mute-button {
  background-color: #315779;
}

.splide__video__play {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  left: 50%;
  opacity: 0.7;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.1s linear;
  width: 40px;
}

.splide__video__play:after {
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 9px 0 9px 17px;
  content: "";
  display: inline-block;
  margin-left: 4px;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__pagination__page {
  width: 10px;
  height: 10px;
}
.splide__pagination__page.is-active {
  transform: scale(1);
}

.splide__video__play {
  background: transparent;
  border: 4px solid #fff;
  width: 80px;
  height: 80px;
  opacity: 1;
}
.splide__video__play:hover {
  opacity: 0.6;
}
.splide__video__play:after {
  border-color: transparent transparent transparent #fff;
  border-width: 19px 0 19px 27px;
}

.splide__slide--has-video:hover .splide__video__play:hover {
  opacity: 0.6;
}

.splide__arrow {
  background-color: transparent;
  height: 50px;
  width: 70px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.splide__arrow svg {
  width: 100%;
  height: 100%;
}
.splide__arrow svg.mobile {
  display: none;
}
.splide__arrow--next {
  right: 0;
  transform: translateX(50px) translateY(-50%);
  z-index: 10;
}
.splide__arrow--prev {
  left: 0;
  transform: translateX(-50px) translateY(-50%);
  z-index: 10;
}

@media only screen and (max-width: 1024px) {
  .splide__arrow--next {
    transform: translateY(-50%);
  }
  .splide__arrow--prev {
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 1024px) {
  .splide__arrow {
    height: 40px;
    width: 40px;
  }
  .splide__arrow svg.desktop {
    display: none;
  }
  .splide__arrow svg.mobile {
    display: block;
  }
}
body:not(.no-pad) {
  padding-top: 272px;
}

#checkbox-ee {
  display: none;
}

@media only screen and (max-width: 1400px) {
  body {
    padding-top: 7.3571428571vw;
  }
}
@media only screen and (max-width: 1024px) {
  body:not(.no-pad) {
    padding-top: 120px;
  }
}
.header-f {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.3s ease;
}
.header-f .nav {
  transition: all 0.3s ease;
  height: 100px;
}
.scroll-up .header-f {
  transform: translateY(0);
}
.scroll-up .header-f .nav {
  opacity: 1;
  visibility: visible;
}
.scroll-down .header-f {
  transform: translateY(-45px);
}
.scroll-down .header-f .nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 0;
}
.header-f__shipping, .header-f__lang {
  position: relative;
  display: flex;
  align-items: center;
}
.header-f__shipping form, .header-f__lang form {
  width: auto;
}
.header-f__shipping form input:not([type=checkbox]):not(.input-search):not([type=radio]):not([name=Amount]):not([type=file]), .header-f__lang form input:not([type=checkbox]):not(.input-search):not([type=radio]):not([name=Amount]):not([type=file]) {
  border-radius: 0;
}
.header-f__shipping .choices, .header-f__lang .choices {
  box-shadow: none;
  border: 0;
}
.header-f__shipping .choices__list--dropdown, .header-f__lang .choices__list--dropdown {
  width: 200px;
}
.header-f__shipping .choices__inner, .header-f__lang .choices__inner {
  background: transparent;
}
.header-f__shipping .choices__list--dropdown, .header-f__shipping .choices__list[aria-expanded], .header-f__shipping .choices[data-type*=select-one] .choices__input, .header-f__lang .choices__list--dropdown, .header-f__lang .choices__list[aria-expanded], .header-f__lang .choices[data-type*=select-one] .choices__input {
  border: 1px solid #315779;
  border-radius: 0;
}
.header-f__shipping .choices__list--dropdown .choices__item--selectable.is-highlighted, .header-f__shipping .choices__list[aria-expanded] .choices__item--selectable.is-highlighted, .header-f__lang .choices__list--dropdown .choices__item--selectable.is-highlighted, .header-f__lang .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  text-decoration: underline;
}
.header-f__shipping .choices__list--dropdown .choices__item, .header-f__shipping .choices__list[aria-expanded] .choices__item, .header-f__lang .choices__list--dropdown .choices__item, .header-f__lang .choices__list[aria-expanded] .choices__item {
  color: #315779;
}
.header-f__shipping .choices[data-type*=select-one] .choices__inner, .header-f__lang .choices[data-type*=select-one] .choices__inner {
  display: flex;
  align-items: center;
}
.header-f__shipping .choices[data-type*=select-one]::after, .header-f__lang .choices[data-type*=select-one]::after {
  right: 0;
}
.header-f__shipping .choices__list--single, .header-f__lang .choices__list--single {
  padding-right: 0;
}
.header-f__topbar {
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 12px;
}
.header-f__topbar .choices .choices__inner {
  font-size: 12px;
  padding: 0;
  padding-right: 30px;
}
.header-f__topbar .choices[data-type*=select-one]::after {
  font-size: 8px;
}
.header-f .langs {
  display: flex;
}
.header-f .langs li {
  margin-right: 5px;
}
.header-f .langs li:last-child {
  margin-right: 0;
}
.header-f__topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-f__top {
  border-bottom: 1px solid #ededed;
  padding: 22px 0;
}
.header-f__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-f .minicart {
  margin-right: 25px;
}
.header-f__actions {
  display: flex;
  font-weight: bold;
}
.header-f__actions i {
  color: #315779;
  padding: 12px;
  font-size: 18px;
}
.header-f__actions a.search {
  display: none;
}
.header-f__burger {
  display: none;
}

@media only screen and (max-width: 1920px) {
  .header-f__actions i {
    padding: 0.625vw;
    font-size: 0.9375vw;
  }
}
@media only screen and (max-width: 1024px) {
  .header-f__claim {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .header-f__top {
    background-color: #fff;
    border-bottom: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    padding: 16px 0;
    position: relative;
    z-index: 1;
  }
  .header-f__topbar {
    z-index: 1000;
  }
  .header-f__shipping .choices .choices__inner {
    min-width: 80px;
    font-size: 12px !important;
  }
  .header-f__lang .choices .choices__inner {
    min-width: 100px;
    font-size: 12px !important;
  }
  .header-f .scritta, .header-f .claim {
    display: block;
  }
  .header-f .minicart {
    margin-right: 10px;
  }
  .header-f .minicart span {
    display: none;
  }
  .header-f__login {
    display: none;
  }
  .header-f__actions {
    order: 2;
  }
  .header-f__actions i {
    color: #000000;
    background-color: #f5f5f5;
    padding: 10px;
    font-size: 12px;
    border-radius: 50%;
    margin-right: 10px;
  }
  .header-f__actions a.search {
    display: block;
  }
  .header-f__burger {
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-f__burger .burger,
  .header-f__burger .burger:after,
  .header-f__burger .burger:before {
    content: "";
    display: block;
    width: 15px;
    height: 2px;
    background: #315779;
    position: absolute;
    border-radius: 10px;
    transition: background ease 0.3s, top ease 0.3s 0.3s, transform ease 0.3s;
  }
  .header-f__burger .burger:before {
    top: -4px;
  }
  .header-f__burger .burger:after {
    top: 4px;
  }
  .c-nav-open .header-f__burger .burger {
    background: transparent;
  }
  .c-nav-open .header-f__burger .burger:before {
    transform: rotate(45deg);
    background: #315779;
    top: 0;
    transition: top ease 0.3s, transform ease 0.3s 0.3s;
  }
  .c-nav-open .header-f__burger .burger:after {
    transform: rotate(-45deg);
    background: #315779;
    top: 0;
    transition: top ease 0.3s, transform ease 0.3s 0.3s;
  }
  .header-f .logo {
    order: 1;
  }
  .header-f__search {
    display: none;
  }
}
.header-clean {
  padding: 22px 0;
  border: 1px solid #eee;
}
.header-clean__container {
  display: flex;
  justify-content: center;
}

.nav {
  width: 100%;
  background-color: #fff;
}
.nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100px;
}
.nav__list .ball-outline {
  margin-right: 10px;
}
.nav__list a {
  display: inline-flex;
  align-items: center;
}
.page-cantina .nav__list {
  border-bottom: 2px solid #ededed;
}
.nav a {
  color: #808080;
  font-weight: 600;
}
.nav a.current-item {
  text-decoration: underline;
  color: #315779;
}
.nav a.current-item .ball-outline {
  border-color: #315779;
}
.nav a:hover {
  color: #315779;
}
.nav a:hover .ball-outline {
  border-color: #315779;
}
.nav li {
  padding: 0 21px;
  font-size: 18px;
}

@media only screen and (max-width: 1400px) {
  .nav {
    height: 5.7142857143vw;
  }
  .nav li {
    padding: 0 1.5vw;
    font-size: 1.2857142857vw;
  }
}
@media only screen and (max-width: 1024px) {
  .nav {
    display: none;
  }
}
.nav-mobile {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .nav-mobile {
    display: block;
    width: 100%;
    height: calc(100 * var(--vh));
    background-color: #315779;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0;
    padding: 0;
    background-image: url(/assets/images/shape-nav-mobile-2.svg);
    background-size: auto;
    background-position: bottom;
    background-repeat: no-repeat;
  }
  .c-nav-open .nav-mobile {
    transform: scaleY(1);
  }
  .nav-mobile__container {
    padding: 120px 20px 80px;
    height: 100%;
    z-index: 1;
  }
  .nav-mobile__search {
    width: 100%;
    height: 60px;
    background: #FFF;
    border: 1px solid #ededed;
    border-radius: 30px;
    padding: 8px;
    margin-bottom: 30px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.06);
  }
  .nav-mobile__search form {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .nav-mobile__search-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-mobile__search .input-search {
    font-size: 18px;
  }
  .nav-mobile__search label {
    font-size: 18px;
    position: relative;
    font-weight: bold;
    padding: 4px 24px;
    border-right: 1px solid #E5E5E5;
  }
  .nav-mobile__search input[type=radio] {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
  }
  .nav-mobile__search input[type=radio]:first-child {
    left: 0;
  }
  .nav-mobile__search input[type=radio]:checked + label {
    font-weight: bold;
  }
  .nav-mobile__search input[type=text] {
    height: 100%;
    width: 33.3333%;
    border: none;
    margin: 0 22px;
    padding: 0;
    font-size: 16px;
  }
  .nav-mobile__search-icon {
    border-radius: 100%;
    background: #315779;
    width: 40px;
    height: 40px;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-mobile__search-icon i {
    font-size: 18px;
  }
  .nav-mobile__search .no-select {
    background: transparent;
    border: 0;
    width: 33.3333%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-right: 1px solid #EAEAEA;
    text-align: center;
    cursor: pointer;
    color: #000;
  }
  .nav-mobile__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
  }
  .nav-mobile__list li {
    margin-bottom: 10px;
  }
  .nav-mobile__list li a {
    color: #fff;
    background-color: #315779;
    border-radius: 30px;
    padding: 10px;
  }
  .nav-mobile__list li a:hover {
    color: #000 !important;
  }
  .nav-mobile__list div.double {
    display: flex;
    background-color: #CD1766;
    border-radius: 25px;
    padding: 5px 15px;
  }
  .nav-mobile__list div.double a {
    display: inline-block;
    padding: 10px 15px;
    line-height: 1;
    background-color: transparent;
  }
  .nav-mobile__list div.double a:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nav-mobile__list div.single {
    display: flex;
    background-color: #CD1766;
    border-radius: 25px;
    padding: 5px 15px;
  }
  .nav-mobile__list div.single a {
    display: inline-block;
    padding: 10px 15px;
    line-height: 1;
    background-color: transparent;
  }
  .nav-mobile__footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-mobile__logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  .nav-mobile__logo img {
    height: 90px;
  }
}
.title-line {
  text-align: center;
  font-weight: bold;
  position: relative;
}
.title-line__big {
  font-size: 90px;
  position: relative;
  z-index: -1;
  color: #f6f6f6;
  background-color: #fff;
  padding: 0 36px;
}
.title-line__title {
  margin-top: -48px;
  font-weight: 800;
}
.title-line .shape-title {
  position: absolute;
  bottom: 30px;
  z-index: -1;
  width: 100%;
}

@media only screen and (max-width: 1920px) {
  .title-line__big {
    font-size: 4.6875vw;
    padding: 0 1.875vw;
  }
  .title-line__title {
    margin-top: -2.5vw;
  }
  .title-line .shape-title {
    bottom: 1.5625vw;
  }
}
@media only screen and (max-width: 1024px) {
  .title-line__big {
    display: none;
  }
  .title-line__title {
    font-size: 30px;
    line-height: 36px;
  }
  .title-line__txt p {
    font-size: 18px;
  }
  .title-line .shape-title {
    display: none;
  }
}
.section-title__line {
  max-width: 92px;
  margin: 30px auto;
}
.section-title__txt {
  text-align: center;
  font-size: 24px;
}
.section-title__txt p {
  font-weight: 600;
}

[data-txt-region] {
  text-transform: capitalize;
}

@media only screen and (max-width: 1024px) {
  .section-title {
    margin: 40px auto 0;
    padding: 0 20px;
  }
  .section-title__txt {
    text-align: center;
    font-size: 18px;
  }
}
.hero {
  width: 100%;
  position: relative;
  margin-bottom: 100px;
  background: #fff;
}
.hero .btn {
  display: inline-flex;
  margin-top: 40px;
}
.hero .container {
  position: relative;
}
.hero__container {
  position: relative;
  border-radius: 20px;
}
.hero__bg {
  border-radius: 20px;
  height: 100%;
  width: 100%;
}
.hero__bg img.banner--img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: 0.5;
}
.hero__bg .splide__track {
  border-radius: 20px;
}
.hero .splide__pagination {
  bottom: 1.75em;
}
.hero .splide__pagination__page {
  width: 14px;
  height: 14px;
  margin: 0 7px;
}
.hero .splide__pagination__page.is-active {
  transform: scale(1);
  opacity: 1;
}
.hero__content {
  height: 100%;
  width: 40%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 90px;
  padding-bottom: 94px;
  padding-top: 210px;
  border-radius: 20px;
  background: linear-gradient(58deg, #000000 5%, rgba(0, 0, 0, 0) 60%);
}
.hero__content h2 {
  color: #fff;
  font-size: 60px;
}

.shape-uva {
  position: absolute;
  height: 1187px;
  width: 1187px;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 1920px) {
  .hero {
    margin-bottom: 5.2083333333vw;
  }
  .hero .btn {
    margin-top: 2.0833333333vw;
  }
  .hero__container {
    border-radius: 1.0416666667vw;
  }
  .hero__bg {
    border-radius: 1.0416666667vw;
  }
  .hero__bg img.banner--img {
    border-radius: 1.0416666667vw;
  }
  .hero__bg .splide__track {
    border-radius: 1.0416666667vw;
  }
  .hero .splide__pagination__page {
    width: 0.7291666667vw;
    height: 0.7291666667vw;
    margin: 0 0.3645833333vw;
  }
  .hero__content {
    padding-left: 4.6875vw;
    padding-bottom: 4.8958333333vw;
    padding-top: 10.9375vw;
  }
  .hero__content h2 {
    font-size: 3.125vw;
  }
  .shape-uva {
    height: 93.0729166667vw;
    width: 93.0729166667vw;
  }
}
@media only screen and (max-width: 1024px) {
  .hero {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
  }
  .hero .splide__pagination {
    z-index: 10;
  }
  .hero .btn {
    margin-top: 30px;
  }
  .hero__container {
    border-radius: 20px;
  }
  .hero__bg {
    border-radius: 20px;
  }
  .hero__bg img {
    height: 480px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
  }
  .hero__bg .splide__track {
    border-radius: 20px;
  }
  .hero .splide__pagination__page {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
  .hero__content {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding-top: 186px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 80px;
    background: linear-gradient(17deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  }
  .hero__content h1 {
    font-size: 36px;
    line-height: 40px;
  }
  .hero__content h2 {
    font-size: 36px;
  }
  .hero__content button {
    height: 50px;
    width: 175px;
    background: #315779;
    border: none;
    color: white;
  }
}
.search-bar {
  width: 100%;
  height: 100%;
  background: #FFF;
  border: 1px solid #ededed;
  border-radius: 30px;
  padding: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.06);
}
.search-bar .choices[data-type*=select-one] {
  box-shadow: none;
  border: 0;
  margin: 0;
}
.search-bar .choices[data-type*=select-one] i {
  color: #bbbbbb;
}
.search-bar .choices[data-type*=select-one] .choices__inner {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  min-height: auto;
  color: #2E2E2E;
}
.search-bar .choices__list--single .choices__item {
  color: #bbbbbb;
  font-weight: normal;
}
.search-bar .choices[data-type*=select-one]::after {
  color: #bbbbbb;
}
.search-bar__input {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-bar .input-search {
  font-size: 14px;
}
.search-bar label {
  font-size: 18px;
  position: relative;
  font-weight: bold;
  padding: 4px 24px;
  border-right: 1px solid #E5E5E5;
}
.search-bar input[type=radio] {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
}
.search-bar input[type=radio]:first-child {
  left: 0;
}
.search-bar input[type=radio]:checked + label {
  font-weight: bold;
}
.search-bar input[type=text] {
  height: 100%;
  width: 70%;
  border: none;
  margin: 0 22px;
  padding: 0;
}
.search-bar__icon {
  border-radius: 100%;
  background: #315779;
  width: 30px;
  height: 30px;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-bar__icon i {
  font-size: 14px;
}
.search-bar .no-select {
  background: transparent;
  border: 0;
  max-width: 110px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-right: 1px solid #EAEAEA;
  text-align: center;
  cursor: pointer;
}

@media only screen and (max-width: 1400px) {
  .search-bar {
    padding: 0.5714285714vw;
  }
  .search-bar .input-search input {
    font-size: 1.2857142857vw;
  }
  .search-bar label {
    font-size: 1.2857142857vw;
    padding: 0.2857142857vw 1.7142857143vw;
  }
  .search-bar__icon {
    width: 2.8571428571vw;
    height: 2.8571428571vw;
  }
  .search-bar__icon i {
    font-size: 1.2857142857vw;
  }
}
@media only screen and (max-width: 1024px) {
  .search-bar {
    padding: 0;
    height: auto;
    border-radius: none;
    box-shadow: none;
    border: none;
  }
  .search-bar .input-search input {
    font-size: 16px;
  }
  .search-bar label {
    font-size: 16px;
    padding: 4px 0;
  }
  .search-bar input[type=text] {
    height: 100%;
    width: auto;
    margin: 0;
    margin-left: 15px;
    max-width: 180px;
    padding: 0;
  }
  .search-bar__icon {
    width: 11.1111111111vw;
    height: 11.1111111111vw;
  }
  .search-bar__icon i {
    font-size: 5vw;
  }
}
.cantine-regions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.cantine-regions li {
  margin: 5px;
}
.cantine-regions a.selected {
  background-color: #315779;
  color: #fff;
  border-color: #315779;
}
.cantine-regions .btn-outline {
  font-size: 14px;
  padding: 8px 20px;
}

@media only screen and (max-width: 1920px) {
  .cantine-regions {
    margin-top: 1.5625vw;
  }
  .cantine-regions li {
    margin: 0.2604166667vw;
  }
  .cantine-regions .btn-outline {
    font-size: 0.7291666667vw;
    padding: 0.4166666667vw 1.0416666667vw;
  }
}
@media only screen and (max-width: 1024px) {
  .cantine-regions {
    margin-top: 30px;
  }
  .cantine-regions li {
    margin: 5px;
  }
  .cantine-regions .btn-outline {
    font-size: 12px;
    padding: 4px 14px;
  }
}
.cantine-letters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
}
.cantine-letters li {
  margin-right: 10px;
}
.cantine-letters li:last-child {
  margin-right: 0;
}
.cantine-letters a {
  color: #BBBBBB;
}
.cantine-letters a.selected {
  color: #315779;
}

.txt--white {
  color: #fff;
}
.txt--viola {
  color: #315779;
}
.txt--green {
  color: #77913e;
}
.txt--green-2 {
  color: #00a60b;
}
.txt--blu {
  color: #0047a6;
}
.txt--verde {
  color: #77913e;
}
.txt--gray {
  color: #808080;
}
.txt--gray-2 {
  color: #BBBBBB;
}
.txt--red {
  color: #e53329;
}
.txt-strike {
  text-decoration: line-through;
}

.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

.txt-underline {
  text-decoration: underline;
}

.txt-uppercase {
  text-transform: uppercase;
}

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

.custom-select {
  min-width: 210px;
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 25px;
  background: #fff;
  border: 1px solid #ededed;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.06);
  max-height: 52px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.custom-select__form {
  border-top: 2px solid #ededed;
  padding: 10px 14px 8px 14px;
}
.custom-select__form .btn {
  width: 100%;
  margin-bottom: 10px;
}
.custom-select__form input {
  margin-bottom: 10px;
}
.custom-select input {
  padding: 10px 26px;
  width: 100%;
}
.custom-select ul {
  padding: 10px 26px 8px 26px;
  max-height: 500px;
  overflow-y: scroll;
  border-top: 2px solid #EDEDED;
  color: #BBBBBB;
}
.custom-select.is-open {
  max-height: 300px;
}
.custom-select.is-open .custom-select__btn:after {
  transform: rotate(180deg);
}
.custom-select .ball-state {
  margin-right: 10px;
}
.custom-select__btn {
  display: flex;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding: 8px 26px;
}
.custom-select__btn:after {
  transition: transform 0.3s ease;
  font-family: "bootstrap-icons";
  content: "\f282";
  color: #CACACA;
  font-size: 20px;
  transform-origin: center;
}
.custom-select__label {
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: capitalize;
  text-transform: capitalize;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
}
.custom-select__label.is-set {
  color: #315779;
}

.custom-select select {
  display: none;
}

.custom-select ul {
  list-style: none;
  margin: 0;
  width: 100%;
}

.custom-select li {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 16px;
  transition: color 0.3s ease;
}
.map-filters__col .custom-select li {
  align-items: flex-start;
}
.map-filters__col .custom-select li:after {
  content: "\f286";
  font-family: "bootstrap-icons";
  font-size: 10px;
  margin-left: 5px;
  opacity: 0;
}
.custom-select li.selected {
  color: #315779;
}
.custom-select li.selected:after {
  opacity: 1;
}
.custom-select li.active, .custom-select li:hover {
  color: #315779;
}
.custom-select li.active a, .custom-select li:hover a {
  color: #315779;
}

@media only screen and (max-width: 1920px) {
  .custom-select {
    max-height: 2.7083333333vw;
    min-width: 10.9375vw;
  }
  .custom-select__btn {
    padding: 0.4166666667vw 1.3541666667vw;
  }
  .custom-select ul {
    padding: 0.5208333333vw 1.3541666667vw 0.4166666667vw 1.3541666667vw;
  }
}
@media only screen and (max-width: 1024px) {
  .custom-select {
    max-height: 50px;
  }
  .custom-select__btn {
    padding: 10px 15px;
  }
  .custom-select ul {
    padding: 0 10px 5px 10px;
  }
}
.only-mobile {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .only-desktop {
    display: none;
  }
  .only-mobile {
    display: block;
  }
}
