@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quattrocento:wght@700&display=swap');

/* colors */
:root {
  --white: #fff;
  --black: #000;
  --blue: #235FB7;
  --lightblue: #628CCA;
  --ctalightblue: #C6DDFE;
  --extralightblue: rgba(35, 95, 183, 0.1);
  --green: #28A745;
  --red: #f44336;
  --box-shadow: 0 4px 8.5px 6px rgba(35, 95, 183, 0.2);
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}
a:hover {
  color: #000000;
}
/* general */
button {
  min-width: 160px;
  height: 45px;
  border: none;
  border-radius: 16px;
  padding: 0 30px;
  background: var(--blue);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
button:hover {
  transform: scale(1.1);
  color: var(--blue);
  background: var(--ctalightblue);
}
/* main */
.main .container-fluid {
  padding: 0;
}
.main .row {
  min-height: 100vh;
  padding-left: 15px;
}
/* sidebar */
.sidebar {
  height: 100%;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.logo {
  height: 50px;
}
.sim-status h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
}
.sim-progress {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.sim-progress-bar {
  position: relative;
  width: 10px;
  height: 200px;
  border-radius: 50px;
  margin-right: 10px;
  background: rgba(35, 95, 183, 0.6);
  overflow: hidden;
}
.sim-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 35%;
  border-radius: 50px;
  background: var(--blue);
  transition: height 0.3s ease;
}
.sim-progress-txt {
  height: 200px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-direction: column;
}
.sim-progress-txt p {
  line-height: 1.1;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}
.trustpilot {
  width: 100%;
}
/* form */
.form-time {
  align-content: flex-end;
  min-height: 15vh;
  padding: 20px 0;
}
.form-time h6 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  transition: all 0.3s ease;
}
.form-outer {
  min-height: 85vh;
  background: var(--extralightblue);
  position: relative;
  align-content: center;
}
/* Progress bar */
#progressBar {
  width: 100%;
  background: var(--lightblue);
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
#progressBar div {
  height: 12px;
  width: 20%;
  background: var(--blue);
  border-radius: 30px;
}
.form-step {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.form-step.active {
  display: flex;
}
#contactform {
  width: 80%;
  margin: 0 auto;
  align-content: center;
}
#contactform h3 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  text-wrap: balance;
}
#contactform h5 {
  font-size: 23px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  text-wrap: balance;
  margin: 10px 0 20px 0;
}
/* sliders */
.form-slider {
  width: 100%;
  max-width: 750px;
  padding: 40px 30px;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
}
.value-display {
  font-size: 40px;
  font-weight: 700;
}
.slider {
  width: 100%;
  max-width: 700px;
  margin: 10px 0 !important;
  height: auto !important;
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 10px 0;
  height: 25px;
  -webkit-appearance: none;
  background: transparent;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 25px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) var(--slider-value, 0%), var(--lightblue) var(--slider-value, 0%), var(--lightblue) 100%);
}
input[type="range"]::-moz-range-track {
  height: 25px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) var(--slider-value, 0%), var(--lightblue) var(--slider-value, 0%), var(--lightblue) 100%);
}
input[type="range"]::-ms-track {
  height: 25px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: transparent;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 4px solid var(--white);
  background: var(--blue);
  cursor: pointer;
  margin-top: -0.5px;
}
input[type="range"]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  margin-top: -6px;
}
input[type="range"]::-ms-thumb {
  width: 25px;
  height: 25px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  margin-top: -6px;
}
.slider-values {
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.slider-values p {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}
/* radio */
.radio-opt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 0 20px;
  margin-top: 20px;
}
.radio-buton {
  width: 30%;
  max-width: 170px;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton label {
  background: var(--white);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
  width: 100%;
  height: 130px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-top: 12%;
}
.radio-buton label span {
  font-size: 10px;
}
.radio-buton label::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid var(--blue);
  border-radius: 50px;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: all 0.4s ease;
}
.radio-buton label img {
  height: 50px;
  margin-bottom: 10px;
}
.radio-buton label:hover {
  background: var(--extralightblue);
}
.radio-buton input[type="radio"]:checked + label {
  box-shadow: none;
  border: 1px solid var(--green);
}
.radio-buton input[type="radio"]:checked + label::after {
  background: url('/assets/img/icons/check.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  border: none;
}
/* input */
.input-box{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
  width: 100%;
  max-width: 750px;
  margin-top: 20px;
}
.form-input {
  width: 45%;
  max-width: 300px;
  text-align: center;
}
.final-inputs {
  gap: 15px 20px;
}
.final-inputs .form-input, .final-inputs .form-input input {
  text-align: left;
}
.final-inputs .form-input input, .final-inputs .form-input p {
  padding-left: 15px;
}
.calendar {
  height: 70px;
}
#date2 {
  display: none;
}
.form-input p {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  line-height: 1.1;
  padding-bottom: 10px;
  color: var(--black);
}
.form-input input {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  font-size: 16px;
  color: var(--blue) !important;
  font-weight: 400 !important;
  -webkit-appearance: none;
  text-align: center;
  margin: 0 auto;
  line-height: 1;
}
.form-input input:focus-visible {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}
.form-input input.error {
  border: 1px solid var(--red);
  background-image: url('/assets/img/icons/close.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.form-input input.valid {
  border: 1px solid var(--green);
  background-image: url('/assets/img/icons/check.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.next, .form-button {
  margin-top: 40px;
}
.form-check {
  margin-top: 15px;
  text-align: center;
  padding: 0;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 11px;
  font-weight: 200;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--blue);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--blue);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0.5px;
  font-size: 14px;
}
#politica-link {
  color: var(--black);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--blue);
  text-decoration: underline;
}
.error, #termos-error {
  color: var(--red);
  font-size: 11px;
  width: 100%;
  font-weight: 400;
  text-align: center;
  margin-top: 5px;
}
#termos-error {
  padding: 0;
}
/* message */
.message-box {
  width: 90%;
  max-width: 600px;
  background: var(--white);
  box-shadow: var(--box-shadow);
  margin: 0 auto;
  border-radius: 16px;
  text-align: center;
  padding: 40px 25px;
  text-wrap: balance;
  display: none;
}
.message-box h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}
.message-box p {
  margin: 15px 0 0 0;
  font-size: 18px;
  line-height: 1.1;
}
/* Media Queries */
@media (max-width: 1400px) {
  .sidebar {
    padding: 25px 10px;
  }
}
@media (max-width: 1200px) {
  .sim-progress-txt p {
    font-size: 14px;
  }
  .form-time h6 {
    font-size: 18px;
  }
  #contactform h3 {
    font-size: 28px;
  }
  #contactform h5 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .radio-opt {
    gap: 20px 0;
  }
  .radio-buton {
    width: 80%;
    max-width: 100%;
  }
  .radio-buton label {
    font-size: 14px;
    flex-direction: row;
    padding: 20px 20px 20px 25%;
    height: 80px;
  }
  .radio-buton label img {
    margin: 0 20px 0 0;
  }
  .radio-buton label::after {
    top: 15px;
    right: 15px;
  }
  .radio-buton label span {
    padding-left: 5px;
  }
}
@media (max-width: 768px) {
  .trustpilot, .sim-status {
    display: none;
  }
  .sidebar {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
  }
  .form-time {
    min-height: auto;
    text-align: center;
  }
  .main .row {
    padding-left: unset;
  }
}
@media (max-width: 550px) {
  #contactform h3 {
    font-size: 26px;
  }
  .radio-buton label {
    padding: 20px 50px;
  }
  .input-box {
    gap: 20px 0;
    flex-direction: column;
  }
  .form-input {
    width: 100%;
  }
  .radio-buton label img {
    height: 40px;
    margin: 0 10px 0 0;
  }
  .form-outer {
    min-height: 83vh;
    padding: 30px 0;
  }
}
@media (max-width: 475px) {
  #contactform {
    width: 90%;
    padding: 20px 0;
  }
  .next {
    margin-top: 25px;
  }
  .form-button {
    margin-top: 15px;
  }
  .message-box h3 {
    font-size: 30px;
  }
}