.formarea {
  /* background-image: url(https://storage-asset.msi.com/global/picture/product_homepage/business_productivity/series-background.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 6vh;
  padding-bottom: 6vh;
}
@media (max-width: 1300px) {
  .formarea {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1050px) {
  .formarea {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 800px) {
  .formarea {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.formarea__intro {
  text-align: center;
  margin-bottom: 15px;
}
.formarea__desc {
  margin-top: 20px;
}
.formarea__desc p {
  font-size: var(--text-lg);
  text-align: center;
}
.formarea .note {
  font-size: var(--text-lg);
  text-align: center;
  color: red;
}
#btbapp .error {
  color: red;
  font-size: var(--text-xs);
  text-align: start;
}
#btbapp .submitbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-gold-400);
  border-radius: 4px;
  font-size: var(--text-lg);
  padding: 1em 2.5em;
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--color-gold-400);
  margin-left: 20px;
}
#btbapp .submitbtn:hover {
  background: var(--color-gold-500);
  color: var(--color-gold-400);
  border: 1px solid var(--color-gold-400);
}
#btbapp .nextbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-gold-400);
  border-radius: 4px;
  font-size: var(--text-lg);
  padding: 1em 2.5em;
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--color-gold-400);
  margin-left: 20px;
}
#btbapp .nextbtn:hover {
  background: var(--color-gold-500);
  color: var(--color-gold-400);
  border: 1px solid var(--color-gold-400);
}
#btbapp .steparea {
  display: none;
  background: #fff;
  padding: 4% 10%;
}
#btbapp .steparea select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 60px;
  background-color: #F2F2F2;
  border: 1px solid #ccc;
  padding: 0.6rem 1rem;
  padding-right: 2.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  -webkit-transition: border 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  transition: border 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0);
}
#btbapp .steparea select:hover {
  border: 1px solid rgba(0, 0, 0, 0.5333333333);
}
#btbapp .steparea select:focus {
  outline: none;
  border-color: #3b82f6;
  -webkit-box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
          box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background-color: #fff;
}
#btbapp .steparea option {
  background: #fff;
  color: #333;
}
#btbapp .steparea .checkbonswitch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 4px;
  font-size: var(--text-lg);
  color: #000;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#btbapp .steparea .checkbonswitch span {
  margin-left: 10px;
}
#btbapp .steparea .checkbonswitch span.required::after {
  content: "*";
  color: red;
  margin-left: 5px;
  font-size: var(--text-lg);
}
#btbapp .steparea h4 {
  color: var(--color-gold-400);
  font-size: var(--title-lg);
  margin-bottom: 40px;
}
#btbapp .steparea .field__checkbox-title {
  color: var(--color-black);
  font-size: var(--title-md);
  margin-bottom: 5px;
  padding-top: 10px;
  display: block;
}
#btbapp .steparea.active {
  display: block;
}
#btbapp .steparea .field__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#btbapp .steparea .field__checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 20px;
}
#btbapp .steparea .field__checkbox label span {
  padding-left: 10px;
}
#btbapp .steparea .field-block {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin: 40px 0;
}
#btbapp .steparea .field-block.haserror input {
  border: 1px solid red;
}
#btbapp .steparea .field-block.haserror select {
  border: 1px solid red;
}
#btbapp .steparea .field-block.haserror textarea {
  border: 1px solid red;
}
#btbapp .steparea .field-block label {
  color: #8B8E98;
  font-weight: 600;
  font-size: var(--text-lg);
}
#btbapp .steparea .field-block label.required::after {
  content: "*";
  color: red;
  margin-left: 5px;
  font-size: var(--text-lg);
}
#btbapp .steparea .field-block textarea {
  width: auto;
  padding: 0 0 0 16px;
  border-radius: 9px;
  outline: none;
  background-color: #F2F2F2;
  border: 1px solid rgba(229, 229, 229, 0);
  font-size: var(--text-lg);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#btbapp .steparea .field-block textarea:hover {
  border: 1px solid rgba(0, 0, 0, 0.5333333333);
}
#btbapp .steparea .field-block textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.5333333333);
  background-color: #fff;
}
#btbapp .steparea .field-block input {
  width: auto;
  height: 60px;
  padding: 0 0 0 16px;
  border-radius: 9px;
  outline: none;
  background-color: #F2F2F2;
  border: 1px solid rgba(229, 229, 229, 0);
  font-size: var(--text-lg);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#btbapp .steparea .field-block input:hover {
  border: 1px solid rgba(0, 0, 0, 0.5333333333);
}
#btbapp .steparea .field-block input:focus {
  border: 1px solid rgba(0, 0, 0, 0.5333333333);
  background-color: #fff;
}
.btbapp__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.btbapp__block::after {
  content: "";
  width: 100%;
  height: 10px;
  background: var(--color-gold-400);
  display: block;
}
.btbapp__block-title {
  width: 33.3333333333%;
  text-align: center;
  padding: 25px 0;
  -webkit-box-shadow: -5px 0 10px 1px rgba(0, 0, 0, 0.0588235294) inset;
          box-shadow: -5px 0 10px 1px rgba(0, 0, 0, 0.0588235294) inset;
  background: var(--color-gray-200);
  font-weight: 900;
  font-size: var(--title-xs);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btbapp__block-title svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-left: 10px;
}
.btbapp__block-title.active {
  background: var(--color-gold-400);
  color: var(--color-white);
}
.btbapp__block-title.active svg path {
  fill: var(--color-white);
}


.succes__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--text-lg);
  font-weight: 900;
  margin-top: 70px;
}

.btnbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btnbox .backbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 4px;
  font-size: var(--text-lg);
  padding: 1em 2.5em;
  color: var(--color-gold-400);
  margin-top: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--color-gold-400);
}
.btnbox .backbtn:hover {
  background: var(--color-gold-400);
  color: #fff;
  border: 1px solid var(--color-gold-400);
  opacity: 0.7;
}
