@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");
@import 'https://unpkg.com/swiper@7/swiper-bundle.min.css';
input,
label,
select,
button,
textarea {
  border: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  background-color: none;
}

input:-internal-autofill-selected {
  appearance: menulist-button;
  background-image: none !important;
  background-color: #e8e8e1;
  color: -internal-light-dark(black, white) !important;
}

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
}

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
button,
input[type=reset],
input[type=button],
input[type=submit] {
  /* Fix IE7 display bug */
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  width: 100%;
  margin: 0 auto;
}
html h1,
html h2,
html p,
body h1,
body h2,
body p {
  margin: 12px 0;
}
html a,
body a {
  text-decoration: none;
  display: block;
}
html h4,
body h4 {
  font-weight: 500;
}
html h1,
body h1 {
  font-size: 28px;
}
html .container,
body .container {
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  html .container,
body .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  html .container,
body .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  html .container,
body .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  html .container,
body .container {
    max-width: 1320px;
  }
}
@media screen and (min-width: 1500px) {
  html .container,
body .container {
    max-width: 1440px;
  }
}
html .container .row,
body .container .row {
  display: flex;
  padding: 0 15px;
  flex-wrap: wrap;
  margin: 0 auto;
  overflow-x: hidden;
}
html .container .row.no-wrap,
body .container .row.no-wrap {
  flex-wrap: nowrap;
}
html .container .row.d-block,
body .container .row.d-block {
  display: block;
}
html .container .row.p-0,
body .container .row.p-0 {
  padding: 0;
}
html .container .row .col-2,
body .container .row .col-2 {
  width: 50%;
}
html .container .row .col,
body .container .row .col {
  width: 100%;
}
html .container .row .col-md-2,
body .container .row .col-md-2 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  html .container .row .col-md-2,
body .container .row .col-md-2 {
    width: 50%;
  }
}

.img-full {
  display: block;
  width: 100%;
  height: auto;
}

section {
  padding-bottom: 40px;
}

button {
  display: block;
  border: none;
  background: none;
  border: 1px solid #000;
  cursor: pointer;
}

button,
a.button,
a.cta,
input[type=submit] {
  display: block;
  border: none;
  background: none;
  border-radius: 0;
  color: #fff;
  background-color: #000;
  padding: 10px;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: bold;
}

a.cta {
  width: 260px;
  text-align: center;
  margin: 0 auto;
}

body header {
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
}
body header nav {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 25px 0;
}
@media screen and (min-width: 768px) {
  body header nav {
    height: 200px;
  }
}
body header nav .wrapper-logo {
  width: 95px;
  height: auto;
}
@media screen and (min-width: 768px) {
  body header nav .wrapper-logo {
    width: 205px;
  }
}
body header nav .wrapper-logo a {
  width: 100%;
  height: 100%;
}
body header .hero {
  height: calc(100% - 100px);
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  body header .hero {
    height: calc(100% - 200px);
  }
}
body header .hero .wrapper-hero-video {
  height: 100%;
}
body header .hero .wrapper-hero-video #video-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  body header .hero .wrapper-hero-video #video-desktop {
    display: block;
  }
}
body header .hero .wrapper-hero-video #video-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  body header .hero .wrapper-hero-video #video-mobile {
    display: none;
  }
}
body header .hero .wrapper-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
  -moz-object-fit: cover;
  -o-object-fit: cover;
  -ms-object-fit: cover;
  object-fit: cover;
  -webkit-object-position: center center;
  -moz-object-position: center center;
  -o-object-position: center center;
  -ms-object-position: center center;
  object-position: center center;
}
body header .hero .wrapper-titles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  z-index: 10;
  width: 100%;
}
body header .hero .wrapper-titles h1 {
  margin-top: 0;
}
body header .hero .wrapper-titles h1 img {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  body header .hero .wrapper-titles h1 img {
    width: 640.35px;
    height: auto;
  }
}
body header .hero .wrapper-titles h2 {
  font-size: 28px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  body header .hero .wrapper-titles h2 {
    font-size: 44px;
    margin-bottom: 24px;
  }
}
body header .hero #scroll-down {
  position: absolute;
  bottom: 75px;
  left: 50%;
  z-index: 10;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
}
body header .hero #scroll-down span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
body header .hero #scroll-down span:nth-of-type(2) {
  top: 16px;
}
body main button {
  margin: 0 auto;
}
body main #intro {
  padding-top: 40px;
}
body main #intro .intro-text p {
  margin: 0 auto;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  body main #intro .intro-text p {
    margin-bottom: 48px;
  }
}
body main #intro .intro-text p:nth-child(1) {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  body main #intro .intro-text {
    margin-top: 40px;
    font-size: 24px;
  }
}
body main #intro > .container > .row:nth-child(1) {
  margin-bottom: 40px;
  text-align: center;
}
body main #intro > .container > .row:nth-child(1) a {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  body main #intro > .container > .row:nth-child(1) a {
    font-size: 18px;
  }
}
body #slider h3 {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  border-bottom: 2px solid #E8E8E1;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  body #slider h3 {
    font-size: 36px;
  }
}
body #slider h3 .gender-labels {
  letter-spacing: 0.38px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: border-bottom 100ms ease-in-out;
  padding: 10px 30px;
  display: block;
  width: 450px;
  text-align: center;
}
body #slider h3 .gender-labels.active {
  border-bottom: 3px solid #000000;
}
body #slider h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}
body #slider ul {
  list-style: none;
  width: 13%;
}
body #slider ul li {
  margin-bottom: 15px;
  border: 1px solid #E8E8E1;
}
@media screen and (min-width: 768px) {
  body #slider ul li {
    margin-bottom: 21px;
  }
}
body #slider article {
  width: 87%;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  body #slider article {
    padding-left: 30px;
  }
}
body #slider article .gallery {
  border: 1px solid #E8E8E1;
}
body #slider article .gallery.galleryHide {
  display: none;
}
body #slider ul .gallery-thu,
body #slider .gallery {
  display: block;
  width: 100%;
  overflow: hidden;
}
body #slider ul .gallery-thu img,
body #slider .gallery img {
  display: block;
  width: 100%;
  height: auto;
}
body #slider .gallery-thu {
  opacity: 0.5;
  cursor: pointer;
}
body #slider .gallery-thu img {
  pointer-events: none;
}
body #slider .gallery-thu.active {
  opacity: 1;
}
body #slider .product_gallery .row {
  padding: 0;
}
body #slider .product_card {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  body #slider .product_card {
    margin-top: 0;
  }
}
body #slider .product_card .product_description {
  position: relative;
  font-size: 15px;
  margin-top: 0;
  transition: all 200ms ease-out;
}
@media screen and (min-width: 768px) {
  body #slider .product_card .product_description {
    font-size: 18px;
  }
}
body #slider .product_card .product_description .more {
  display: none;
  transition: all 200ms ease-out;
}
body #slider .product_card .product_description .rectangle {
  display: block;
  height: 110px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(238, 238, 238, 0) 0%, #FFFFFF 100%);
  transition: all 200ms ease-out;
}
body #slider .product_card .readmoreToggler {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25px;
  cursor: pointer;
  transition: all 200ms ease-out;
}
@media screen and (min-width: 768px) {
  body #slider .product_card .readmoreToggler {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  body #slider .product_card {
    padding-left: 100px;
  }
}
@media screen and (min-width: 1200px) {
  body #slider .product_card {
    padding-left: 150px;
  }
}
@media screen and (min-width: 768px) {
  body #slider .product_card .details_wrapper {
    font-size: 24px;
  }
}
body #slider .product_card .details_wrapper > h3 {
  border: none;
  text-align: left;
  display: block;
}
@media screen and (min-width: 768px) {
  body #slider .product_card .details_wrapper > h3 {
    font-size: 36px;
  }
}
body #slider .product_card .details_wrapper p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  body #slider .product_card .details_wrapper p {
    font-size: 16px;
  }
}
body #slider .product_card .details_wrapper p.description {
  margin-bottom: 32px;
}
body #slider .product_card .details_wrapper p.pro_code {
  margin-top: 0;
  font-size: 13px;
}
body #slider .product_card .details_wrapper .price {
  margin-top: 8px;
}
body #slider .product_card .details_wrapper .price span {
  text-decoration: line-through;
  margin-right: 5px;
}
body #slider .product_card .sizes-wrapper {
  border-top: 1px solid #E8E8E1;
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  body #slider .product_card .sizes-wrapper {
    padding: 40px 0;
  }
}
body #slider .product_card .sizes-wrapper .size_grid {
  display: grid;
  grid-template: repeat(2, 60px)/repeat(4, 60px);
  grid-gap: 0.9rem;
  text-align: center;
}
@media screen and (min-width: 370px) {
  body #slider .product_card .sizes-wrapper .size_grid {
    grid-template: repeat(2, 57px)/repeat(5, 57px);
  }
}
@media screen and (min-width: 400px) {
  body #slider .product_card .sizes-wrapper .size_grid {
    grid-template: repeat(2, 60px)/repeat(5, 60px);
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  body #slider .product_card .sizes-wrapper .size_grid {
    grid-template: repeat(2, 65px)/repeat(3, 65px);
  }
}
@media screen and (min-width: 992px) {
  body #slider .product_card .sizes-wrapper .size_grid {
    grid-template: repeat(2, 70px)/repeat(4, 73px);
  }
}
@media screen and (min-width: 1366px) {
  body #slider .product_card .sizes-wrapper .size_grid {
    grid-template: repeat(2, 70px)/repeat(5, 70px);
  }
}
@media screen and (min-width: 1401px) {
  body #slider .product_card .sizes-wrapper .size_grid {
    grid-template: repeat(2, 70px)/repeat(5, 70px);
    grid-gap: 1.2rem;
  }
}
@media screen and (min-width: 1500px) {
  body #slider .product_card .sizes-wrapper .size_grid {
    grid-template: repeat(2, 70px)/repeat(6, 70px);
    grid-gap: 1.2rem;
  }
}
body #slider .product_card .sizes-wrapper .size_grid button {
  margin: 0;
  border: 2px solid #E8E8E1;
  background-color: #ffffff;
  color: #000;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  transition: all 100ms ease-in-out;
}
body #slider .product_card .sizes-wrapper .size_grid button.size-clicked {
  border-color: #000;
}
body #slider .product_card .sizes-wrapper .size_grid button.color-clicked {
  border-color: #000;
}
body #slider .product_card .sizes-wrapper .size_grid button.disabled {
  pointer-events: none;
  filter: opacity(0.4);
}
body #slider .product_card .intochart {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: none;
  background-color: #000;
  color: #ffffff;
  border-radius: 0;
  width: 100%;
  height: 50px;
  margin-bottom: 32px;
}
body #slider .product_card .intochart.ready-to-update::before {
  content: "Aggiorna il carrello";
  pointer-events: none;
}
body #slider .product_card .intochart.ready-to-update span {
  display: none;
}
body #slider .product_card .intochart span {
  pointer-events: none;
}
body #slider .product_card .intochart .icon {
  display: none;
  pointer-events: none;
}
body #slider .product_card .intochart .icon img {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  body #slider .product_card .intochart {
    margin-bottom: 40px;
  }
}
body #slider .product_card .intochart.disabled {
  display: none;
}
body #slider .product_card .color-wrapper.disabled {
  display: none;
}
body #slider .product_card .intochart.active {
  pointer-events: none;
  border: 1px solid #56AD6A;
  background-color: #ECFEF0;
  color: #56AD6A;
}
body #slider .product_card .intochart.active span {
  display: none;
}
body #slider .product_card .intochart.active::before {
  content: "Aggiunto nel carrello";
  pointer-events: none;
}
body #slider .product_card .intochart.active .icon {
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
body form {
  margin: 0 auto;
}
body form label {
  font-family: "Poppins", sans-serif;
}
body form .input-group {
  position: relative;
}
body form .input-group span {
  position: absolute;
  bottom: -20px;
  left: 16px;
  color: #FF6D6D;
  font-size: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}
body form .input-group #codicepromozionale {
  border: 2px solid #000;
  background-color: #fff;
  color: #000;
}
body form .input-group #codicepromozionale::-webkit-input-placeholder {
  /* Edge */
  color: #000;
}
body form .input-group #codicepromozionale:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000;
}
body form .input-group #codicepromozionale::placeholder {
  color: #000;
}
body form input,
body form select {
  width: 100%;
  height: 50px;
  outline: 0;
  background: none;
  border: none;
  background-color: #E8E8E1;
  color: #767676;
  border-radius: 4px;
  padding: 0;
  padding-left: 15px;
  padding-right: 15px;
}
body form select#stato {
  appearance: none;
}
body form .row.grid {
  display: grid;
  grid-template: repeat(10, 1fr) auto 1fr/1fr;
  grid-auto-flow: row;
  grid-row-gap: 32px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  body form .row.grid {
    grid-row-gap: 48px;
    grid-column-gap: 32px;
  }
}
body form .row.grid #submit_message {
  display: none;
}
@media screen and (min-width: 768px) {
  body form .row.grid {
    grid-template: repeat(4, 1fr) auto 1fr/repeat(4, 1fr);
  }
  body form .row.grid .input-group:nth-child(1) {
    grid-area: 1/1/2/3;
  }
  body form .row.grid .input-group:nth-child(2) {
    grid-area: 1/3/2/5;
  }
  body form .row.grid .input-group:nth-child(3) {
    grid-area: 2/1/3/3;
  }
  body form .row.grid .input-group:nth-child(4) {
    grid-area: 2/3/3/5;
  }
  body form .row.grid .input-group:nth-child(5) {
    grid-area: 3/1/4/3;
  }
  body form .row.grid .input-group:nth-child(6) {
    grid-area: 3/3/4/4;
  }
  body form .row.grid .input-group:nth-child(7) {
    grid-area: 3/4/4/5;
  }
  body form .row.grid .input-group:nth-child(8) {
    grid-area: 4/1/5/2;
  }
  body form .row.grid .input-group:nth-child(9) {
    grid-area: 4/2/5/3;
  }
  body form .row.grid .input-group:nth-child(10) {
    grid-area: 4/3/5/5;
  }
  body form .row.grid .input-group:nth-child(11) {
    grid-area: 5/1/6/5;
  }
  body form .row.grid .input-group:nth-child(12) {
    grid-area: 6/1/7/5;
  }
}

#preview-section {
  transition: all 300ms ease-out;
}
#preview-section.disabled {
  display: none;
}
#preview-section #submit {
  cursor: pointer;
}
#preview-section #submit.disabled {
  pointer-events: none;
  background-color: #F6F6F6;
  color: #767676;
  font-size: 18px;
}
#preview-section #preview {
  padding-bottom: 24px;
  text-align: left;
  font-size: 16px;
  transition: all 300ms ease-out;
}
#preview-section #preview h3 {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  #preview-section #preview h3 {
    font-size: 25px;
  }
}
#preview-section #preview h4 {
  font-size: 14px;
}
#preview-section #preview img {
  border: 1px solid #E8E8E1;
}
@media screen and (min-width: 768px) {
  #preview-section #preview img.max-md-h-210 {
    max-width: 210px;
  }
}
#preview-section #preview .row:nth-child(1) {
  margin-bottom: 25px;
  display: block;
}
#preview-section #preview .row > h3 {
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8E8E1;
}
@media screen and (min-width: 768px) {
  #preview-section #preview .row > h3 {
    font-size: 36px;
  }
}
#preview-section #preview #chosen-wrapper p {
  text-align: left;
}
#preview-section #preview #chosen-wrapper #chosen-model {
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  #preview-section #preview #chosen-wrapper #chosen-model {
    margin-bottom: 12px;
    font-size: 16px;
  }
}
#preview-section #preview #chosen-wrapper #chosen-size {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  #preview-section #preview #chosen-wrapper #chosen-size {
    margin-top: 12px;
  }
}
@media screen and (min-width: 992px) {
  #preview-section #preview .col-2:nth-child(1) {
    width: 20%;
  }
}
@media screen and (min-width: 1200px) {
  #preview-section #preview .col-2:nth-child(1) {
    width: auto;
  }
}
#preview-section #preview .col-2:nth-child(2) {
  padding-left: 20px;
}
@media screen and (min-width: 992px) {
  #preview-section #preview .col-2:nth-child(2) {
    width: 80%;
  }
}
#preview-section #preview .delete-basket {
  display: none;
  align-items: center;
  align-content: flex-start;
  background-color: #fff;
  color: #000;
  margin: 0;
  padding-left: 0;
}
#preview-section #preview .delete-basket span {
  margin-right: 5px;
}
#preview-section #preview .delete-basket span img {
  border: none;
}

#newsletter .wrapper-newsletter {
  border: 1px solid #E8E8E1;
  padding: 25px;
  text-align: center;
  margin: 0 auto;
}
#newsletter .wrapper-newsletter .row {
  padding: 0;
}
#newsletter .wrapper-newsletter h2 {
  font-size: 16px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  #newsletter .wrapper-newsletter h2 {
    font-size: 18px;
  }
}
#newsletter .wrapper-newsletter p {
  font-size: 14px;
}
#newsletter .wrapper-newsletter a.button {
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #000;
  color: #000;
  background-color: #ffffff;
  width: 100%;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #newsletter .wrapper-newsletter a.button {
    font-size: 18px;
    font-weight: bold;
  }
}
@media screen and (min-width: 768px) {
  #newsletter .wrapper-newsletter a.button {
    color: #ffffff;
    background-color: #000;
    border: none;
  }
}
@media screen and (min-width: 768px) {
  #newsletter .wrapper-newsletter .col-md-2:nth-child(1) {
    text-align: left;
  }
}
#newsletter .wrapper-newsletter .col-md-2:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #newsletter .wrapper-newsletter .col-md-2:nth-child(2) {
    padding-left: 25px;
  }
}

footer {
  padding: 30px 0;
  background-color: #000000;
  color: #ffffff;
}
footer .row:nth-child(1) {
  justify-content: space-between;
  align-items: center;
}
footer .row:nth-child(1) .footer-logo {
  display: inline-block;
  width: 167px;
  height: auto;
}
footer .row:nth-child(2) {
  margin-top: 10px;
  margin-bottom: 0;
}
footer .row:nth-child(2) p {
  margin-bottom: 0;
}
footer .row:nth-child(3) {
  margin-top: 17px;
}
footer .row:nth-child(3) p {
  margin: 5px 20px 5px 0;
}
footer ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer ul li {
  margin-left: 10px;
}
footer p {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  font-size: 14px;
}
footer .policy, footer .regolamento {
  color: white;
  text-decoration: underline;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper .swiper-wrapper {
  padding-top: 50px;
  margin-bottom: 30px;
}
.swiper .swiper-wrapper h3,
.swiper .swiper-wrapper p {
  text-align: left;
  display: block;
}
.swiper .swiper-pagination-bullet {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  background: none;
  opacity: 1;
  cursor: pointer;
}

.swiper-info .swiper-pagination-2.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-info .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-info .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

#sumit-message-alert.disabled {
  display: none;
}
#sumit-message-alert .wrapper-alert {
  padding: 25px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}
#sumit-message-alert .wrapper-alert.success {
  border: 1px solid #56AD6A;
  background-color: #ECFEF0;
  color: #000000;
}
#sumit-message-alert .wrapper-alert.error {
  border: 1px solid #FFC2C2;
  background-color: #FF6D6D;
  color: #000000;
}
#sumit-message-alert .wrapper-alert.error p {
  display: none;
}
#sumit-message-alert .wrapper-alert .row {
  padding: 0;
}
#sumit-message-alert .wrapper-alert h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.38px;
}
#sumit-message-alert .wrapper-alert h2 span {
  font-weight: 400;
  font-size: 16px;
}
#sumit-message-alert .wrapper-alert p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  #sumit-message-alert .wrapper-alert p {
    font-size: 18px;
  }
}

.color-btn {
  position: relative;
}

.color-btn::before {
  content: '';
  width: 50%;
  height: 50%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.blue-btn::before {
  background-color: rgb(47, 46, 69);
}

.black-btn::before {
  background-color: #090909;
}

.blue-btn::after {
  content: 'BLU';
  position: absolute;
  bottom: 0;
}

.black-btn::after {
  content: 'NERO';
  position: absolute;
  bottom: 0;
}

li.hidden {
  display: none;
}