/*@mixin xl-up {
    @media (min-width: 1560px) {
        @content;
    }
}

@mixin lg-up {
    @media (min-width: 1440px) {
        @content;
    }
}

@mixin md-up {
    @media (min-width: 1199px) {
        @content;
    }
}

@mixin xs-up {
    @media (min-width: 767px) {
        @content;
    }
}

@mixin xxs-up {
    @media (min-width: 321px) {
        @content;
    }
}

@mixin tablet-portrait {
    @media screen and (orientation: portrait) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin tablet-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin phone-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 820px) {
        @content;
    }
}
*/
/*PADDING stop PER SECTION*/
/*ECCEZIONE PER FOOTER NELLA PAGINA DEL CHI SIAMO*/
/*@mixin xl-up {
    @media (min-width: 1560px) {
        @content;
    }
}

@mixin lg-up {
    @media (min-width: 1440px) {
        @content;
    }
}

@mixin md-up {
    @media (min-width: 1199px) {
        @content;
    }
}

@mixin xs-up {
    @media (min-width: 767px) {
        @content;
    }
}

@mixin xxs-up {
    @media (min-width: 321px) {
        @content;
    }
}

@mixin tablet-portrait {
    @media screen and (orientation: portrait) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin tablet-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin phone-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 820px) {
        @content;
    }
}
*/
/*@mixin xl-up {
    @media (min-width: 1560px) {
        @content;
    }
}

@mixin lg-up {
    @media (min-width: 1440px) {
        @content;
    }
}

@mixin md-up {
    @media (min-width: 1199px) {
        @content;
    }
}

@mixin xs-up {
    @media (min-width: 767px) {
        @content;
    }
}

@mixin xxs-up {
    @media (min-width: 321px) {
        @content;
    }
}

@mixin tablet-portrait {
    @media screen and (orientation: portrait) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin tablet-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin phone-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 820px) {
        @content;
    }
}
*/
/*PADDING stop PER SECTION*/
/*ECCEZIONE PER FOOTER NELLA PAGINA DEL CHI SIAMO*/
/*@mixin xl-up {
    @media (min-width: 1560px) {
        @content;
    }
}

@mixin lg-up {
    @media (min-width: 1440px) {
        @content;
    }
}

@mixin md-up {
    @media (min-width: 1199px) {
        @content;
    }
}

@mixin xs-up {
    @media (min-width: 767px) {
        @content;
    }
}

@mixin xxs-up {
    @media (min-width: 321px) {
        @content;
    }
}

@mixin tablet-portrait {
    @media screen and (orientation: portrait) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin tablet-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin phone-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 820px) {
        @content;
    }
}
*/
.registrazione {
  font-family: "Zilla Slab", Tahoma, serif;
  font-weight: 400;
  padding: 40px 0;
  color: #666;
  font-size: 16px;
  line-height: 19px;
}
.registrazione .step2, .registrazione .step3, .registrazione .step4 {
  display: none;
}
.registrazione .title {
  font-family: "Poppins", sans-serif;
  color: #333;
  font-weight: 700;
}
.registrazione .intestazione {
  border-bottom: 2px solid #e4e4e3;
  padding-bottom: 5px;
}
.registrazione .intestazione .title {
  font-size: 29px;
  line-height: 43px;
}
.registrazione .intestazione .private-customare {
  font-size: 16px;
  text-decoration: underline;
  color: #666;
}
.registrazione .cont-form {
  max-width: 400px;
  margin: 0 auto;
}
.registrazione .steps {
  padding-top: 50px;
}
.registrazione .steps ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
}
.registrazione .steps ul li {
  text-align: center;
}
.registrazione .steps ul li span {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #F8F8F8;
  font-size: 16px;
  line-height: 30px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}
.registrazione .steps ul li span:before {
  content: "";
  background: #fff;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
}
.registrazione .steps ul li span:after {
  content: "";
  background: #C9CAC8;
  position: absolute;
  width: 130px;
  height: 1px;
  transform: translateY(-50%);
  top: 50%;
  left: 40px;
}
.registrazione .steps ul li:last-child span:after {
  display: none;
}
.registrazione .steps ul li.selected {
  color: #111;
  font-weight: 600;
}
.registrazione .steps ul li.selected span {
  background: #E0E0E0;
}
.registrazione .please-enter-data {
  padding: 40px 0 20px;
  text-align: center;
  font-size: 18px;
  line-height: 27px;
}
.registrazione hr {
  background: #C9CAC8;
  margin: 0 0 20px 0;
  border: none;
  height: 1px;
}
.registrazione .confirm .data {
  font-size: 13px;
  color: #ADADAD;
}
.registrazione .modale {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.registrazione .modale.active {
  opacity: 1;
  pointer-events: all;
}
.registrazione .modale .toppa-modale {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.registrazione .modale .modal-content {
  max-width: 500px;
  background: #fff;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 25px 40px 40px;
  max-height: 90%;
  overflow-y: auto;
}
.registrazione .modale .modal-content::-webkit-scrollbar {
  width: 8px;
  border-radius: 0px;
  background-color: #f5f2f0;
}
.registrazione .modale .modal-content::-webkit-scrollbar-button {
  display: none;
}
.registrazione .modale .modal-content::-webkit-scrollbar-button:hover {
  display: none;
}
.registrazione .modale .modal-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: none;
  border-radius: 8px;
  border: 2px solid #f5f2f0;
}
.registrazione .modale .modal-content::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.registrazione .modale .modal-content::-webkit-scrollbar-track {
  background-color: #f5f2f0;
  border-radius: 0px;
}
.registrazione .modale .modal-content::-webkit-scrollbar-track:hover {
  background-color: #f5f2f0;
}
.registrazione .modale .modal-content form {
  display: none;
}
.registrazione .modale .modal-content form.active {
  display: block;
}
.registrazione .modale .modal-content .title {
  padding-bottom: 20px;
}
.registrazione .modale .modal-content .txt a {
  color: #666;
  text-decoration: underline;
}
.registrazione .modale .modal-content .cta {
  padding-top: 40px;
}
.registrazione .modale .modal-content .small {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #666;
  text-decoration: underline;
  padding-top: 20px;
}
.registrazione .modale .modal-content hr {
  margin: 20px 0;
}
.registrazione .step-thankyou-page {
  text-align: center;
  padding-top: 40px;
}

/*@mixin xl-up {
    @media (min-width: 1560px) {
        @content;
    }
}

@mixin lg-up {
    @media (min-width: 1440px) {
        @content;
    }
}

@mixin md-up {
    @media (min-width: 1199px) {
        @content;
    }
}

@mixin xs-up {
    @media (min-width: 767px) {
        @content;
    }
}

@mixin xxs-up {
    @media (min-width: 321px) {
        @content;
    }
}

@mixin tablet-portrait {
    @media screen and (orientation: portrait) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin tablet-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin phone-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 820px) {
        @content;
    }
}
*/
/*PADDING stop PER SECTION*/
/*ECCEZIONE PER FOOTER NELLA PAGINA DEL CHI SIAMO*/
/*@mixin xl-up {
    @media (min-width: 1560px) {
        @content;
    }
}

@mixin lg-up {
    @media (min-width: 1440px) {
        @content;
    }
}

@mixin md-up {
    @media (min-width: 1199px) {
        @content;
    }
}

@mixin xs-up {
    @media (min-width: 767px) {
        @content;
    }
}

@mixin xxs-up {
    @media (min-width: 321px) {
        @content;
    }
}

@mixin tablet-portrait {
    @media screen and (orientation: portrait) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin tablet-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin phone-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 820px) {
        @content;
    }
}
*/
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.between {
  justify-content: space-between;
}
.flex.center {
  align-items: center;
}
.flex.flex-75 {
  gap: 15px;
}
.flex.flex-75 > div {
  visibility: visible;
}
.flex.flex-75 > div:first-child {
  flex: 0 0 calc(75% - 7.5px);
  max-width: calc(75% - 7.5px);
}
.flex.flex-75 > div:last-child {
  flex: 0 0 calc(25% - 7.5px);
  max-width: calc(25% - 7.5px);
}
.flex.flex-25 {
  gap: 15px;
}
.flex.flex-25 > div {
  visibility: visible;
}
.flex.flex-25 > div:first-child {
  flex: 0 0 calc(25% - 7.5px);
  max-width: calc(25% - 7.5px);
}
.flex.flex-25 > div:last-child {
  flex: 0 0 calc(75% - 7.5px);
  max-width: calc(75% - 7.5px);
}
.flex.flex-50 {
  gap: 15px;
}
.flex.flex-50 > div {
  flex: 0 0 calc(50% - 7.5px);
  max-width: calc(50% - 7.5px);
}

/*@mixin xl-up {
    @media (min-width: 1560px) {
        @content;
    }
}

@mixin lg-up {
    @media (min-width: 1440px) {
        @content;
    }
}

@mixin md-up {
    @media (min-width: 1199px) {
        @content;
    }
}

@mixin xs-up {
    @media (min-width: 767px) {
        @content;
    }
}

@mixin xxs-up {
    @media (min-width: 321px) {
        @content;
    }
}

@mixin tablet-portrait {
    @media screen and (orientation: portrait) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin tablet-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin phone-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 820px) {
        @content;
    }
}
*/
/*PADDING stop PER SECTION*/
/*ECCEZIONE PER FOOTER NELLA PAGINA DEL CHI SIAMO*/
/*@mixin xl-up {
    @media (min-width: 1560px) {
        @content;
    }
}

@mixin lg-up {
    @media (min-width: 1440px) {
        @content;
    }
}

@mixin md-up {
    @media (min-width: 1199px) {
        @content;
    }
}

@mixin xs-up {
    @media (min-width: 767px) {
        @content;
    }
}

@mixin xxs-up {
    @media (min-width: 321px) {
        @content;
    }
}

@mixin tablet-portrait {
    @media screen and (orientation: portrait) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin tablet-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 1024px) {
        @content;
    }
}

@mixin phone-landscape {
    @media screen and (orientation: landscape) and (max-device-width: 820px) {
        @content;
    }
}
*/
form {
  visibility: visible;
}
form .control-form {
  padding-bottom: 20px;
}
form .control-form.next-choice {
  display: none;
  padding-bottom: 0;
}
form .control-form.next-choice .box {
  margin-bottom: 0;
}
form .control-form.show-next .next-choice {
  display: block;
}
form label {
  display: block;
  padding-bottom: 8px;
  margin: 0;
}
form input, form select, form textarea {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #B2B4B3;
  padding: 8px 16px;
  color: #666;
  outline: none;
}
form input.error, form select.error, form textarea.error {
  border-color: #FF0000;
}
form input.error + .error-message, form select.error + .error-message, form textarea.error + .error-message {
  display: block;
}
form select {
  background: url(/Template/registrazione/img/select.png) no-repeat right 14px center #ffffff;
}
form .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
form .inputfile + label {
  border: 1px solid #B2B4B3;
  padding: 0;
  height: 37px;
  position: relative;
}
form .inputfile + label span {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  line-height: 1;
}
form .inputfile + label strong {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #B2B4B3;
  color: #fff;
  font-weight: normal;
  line-height: 35px;
  padding: 0 20px;
  font-family: "Poppins";
  font-size: 13px;
}
form .inputfile.error + label {
  border-color: #FF0000;
}
form .inputfile.error + label strong {
  background: #FF0000;
}
form .inputfile.error + label + .error-message {
  display: block !important;
}
form textarea {
  min-height: 140px;
}
form .radio {
  gap: 0 50px;
}
form .radio label {
  gap: 10px;
}
form .radio label a {
  color: #666;
  text-decoration: underline;
}
form .radio input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: auto;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
form .radio input[type=radio] + span {
  width: 36px;
  height: 36px;
  border: 1px solid #B2B4B3;
  border-radius: 100%;
  position: relative;
}
form .radio input[type=radio] + span:before {
  content: "";
  background: #96AD5D;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
form .radio input[type=radio]:checked + span:before {
  opacity: 1;
}
form .radio input[type=radio].error + span {
  border-color: #FF0000;
}
form .radio .error-message {
  flex: 0 0 100%;
  max-width: 100%;
}
form .radio.error .error-message {
  display: block;
}
form .checkbox {
  gap: 50px;
}
form .checkbox label {
  gap: 10px;
}
form .checkbox label a {
  color: #666;
  text-decoration: underline;
}
form .checkbox input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: auto;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
form .checkbox input[type=checkbox] + span {
  width: 36px;
  height: 36px;
  border: 1px solid #B2B4B3;
  position: relative;
}
form .checkbox input[type=checkbox] + span:before {
  content: "";
  background: #96AD5D;
  position: absolute;
  width: 30px;
  height: 30px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
form .checkbox input[type=checkbox] + span:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 14px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  width: 9px;
  height: 13px;
  transform: rotate(225deg) translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
form .checkbox input[type=checkbox]:checked + span:before {
  opacity: 1;
}
form .checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}
form .checkbox input[type=checkbox].error + span {
  border-color: #FF0000;
}
form .checkbox input[type=checkbox].error + span + div .error-message {
  display: block;
  margin-top: 5px;
  line-height: 1;
}
form .phone {
  position: relative;
}
form .phone input {
  padding-left: 75px;
}
form .phone input + span {
  position: absolute;
  left: 1px;
  top: 1px;
  background: #F8F8F8;
  height: calc(100% - 2px);
  line-height: 32px;
  width: 60px;
  text-align: center;
}
form .error-message, form .error-message-size {
  display: none;
  color: #FF0000;
  font-size: 10px;
  margin-top: 8px;
}
form .message-france {
  padding: 40px 45px 0;
  text-align: center;
}
form .message-france a {
  /*display: block;*/
  color: #666;
  text-decoration: underline;
  margin-top: 20px;
}
form .box {
  background: #F8F8F8;
  margin: 0 -15px;
  padding: 10px 15px;
  margin-bottom: 20px;
}
form .box .checkbox {
  visibility: visible;
}
form .box .checkbox input {
  visibility: visible;
}
form .box .checkbox input + span {
  width: 28px;
  height: 28px;
  background: #ffffff;
}
form .box .checkbox input + span:before {
  width: 22px;
  height: 22px;
}
form .box .checkbox input + span:after {
  top: -1px;
  left: 11px;
  width: 7px;
  height: 11px;
}
form .note {
  font-size: 13px;
  padding-top: 8px;
}
form .note a {
  color: #666666;
  display: block;
  text-decoration: underline;
  margin-top: 8px;
}
form .cta {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
form .cta .btn {
  background: #666;
  display: inline-block;
  border: 1px solid #666;
  width: auto;
  padding: 8px 20px;
  color: #fff;
  text-transform: none;
  font-weight: normal;
  font-family: "Poppins";
  font-size: 13px;
  line-height: 20px;
  outline: none !important;
  letter-spacing: 0;
}
form .cta .btn:before {
  display: none;
}
form .cta .btn.invert {
  background: #fff;
  color: #666;
}
form .cta.vertical {
  display: block;
  text-align: center;
}
form .cta.vertical .btn {
  display: block;
  margin-bottom: 15px;
  max-width: 70%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
form .cta.vertical .btn:last-child {
  margin-bottom: 0;
}
form .autocomplete {
  visibility: visible;
}
form .autocomplete .listAddress {
  position: relative;
  z-index: 1;
}
form .autocomplete .listAddress ul {
  position: absolute;
  z-index: 2;
  background: #fff;
  width: 100%;
  border-top: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
form .autocomplete .listAddress ul li {
  padding: 10px 20px;
  cursor: pointer;
  border-left: 1px solid #B2B4B3;
  border-right: 1px solid #B2B4B3;
  transition: all 0.3s ease-in-out;
}
form .autocomplete .listAddress ul li a {
  visibility: visible;
}
form .autocomplete .listAddress ul li:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #B2B4B3;
}
form .autocomplete .listAddress ul li:hover {
  background: #F8F8F8;
}
form .autocomplete .listProvince {
  position: relative;
  z-index: 1;
}
form .autocomplete .listProvince ul {
  position: absolute;
  z-index: 2;
  background: #fff;
  width: 100%;
  border-top: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
form .autocomplete .listProvince ul li {
  padding: 10px 20px;
  cursor: pointer;
  border-left: 1px solid #B2B4B3;
  border-right: 1px solid #B2B4B3;
  transition: all 0.3s ease-in-out;
}
form .autocomplete .listProvince ul li a {
  visibility: visible;
}
form .autocomplete .listProvince ul li:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #B2B4B3;
}
form .autocomplete .listProvince ul li:hover {
  background: #F8F8F8;
}

/*@import "views/header";
@import "views/footer";*/