:root {
  --sq--green-color:#D2F2D4;
}
.sq__wrapper {
  background-color: var(--sq--green-color);
  padding: 6rem;
  border-radius: 3rem;
  max-width: 800px;
  margin: 0 auto;
}


/* Star rating */
.b4n-sq-inputs label {
  font-size: 2rem;
  cursor: pointer;
  color: #ccc;
  font-size: 0;
}
.b4n-sq-inputs label::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 42px;
  background-image: url(../img/star--default.svg);
  background-size: 42px;
  transition: all .5s;
}

.b4n-sq-inputs input {
  display: none;
}

.b4n-sq-inputs label.active::before {
  background-image: url(../img/star--active.svg);
}
.b4n-sq-inputs {
  display: inline-flex;
  gap: .8rem;
  margin-bottom: 2.5rem;
}

.optional-fields input {
  background-color: #fff;
  border: none;
  border-radius: .8rem;
  height: 36px;
  width: 100%;
}
.optional-fields textarea {
  background-color: #fff;
  border: none;
  border-radius: .8rem;
  height: 120px;
  width: 100%;
  margin-bottom: 2rem;
}

#sq_form h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00703B;
  margin-bottom: 1.4rem;
  max-width: 450px;
  line-height: 1.25;
}
#sq_form fieldset div:first-child h3 {
  font-size: 3.6rem;
}
#sq_form fieldset div:first-child .b4n-sq-inputs label::before {
  width: 55px;
  height: 55px;
  background-size: 55px;
}
#sq_form fieldset > div:first-child   {
  background-image: url(../img/svorto--feet.webp);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}
#submitForm {
  display: block;
  padding: 1rem 2.2rem;
  color: #fff;
  background-color: #57B36A;
  border: none;
  border-radius: 25px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
 #sq_form fieldset > div:first-child   {
  background: none;
} 
.sq__wrapper {
  padding: 3rem;
  border-radius: 3rem;
  max-width: 100%;
  margin: 0 auto;
}
#sq_form h3 {
  font-size: 1.7rem;
  margin-bottom: .7rem;
  max-width: 100%;
}
#sq_form fieldset div:first-child h3 {
  font-size: 2.4rem;
}
.b4n-sq-inputs {
  margin-bottom: 1.2rem;
}
#sq_form fieldset div:first-child .b4n-sq-inputs label::before {
  width: 45px;
  height: 45px;
  background-size: 45px;
}
}