#views-exposed-form-search-page-1 .form-item-titulo, #views-exposed-form-search-page-1 .form-item-full {
  display: none;
}

fieldset {
  --itens: 8;
  --gap: 8px;
  --labelH: 36px;
  --checkS: 20px;
}
fieldset.form-wrapper {
  margin-bottom: var(--gap);
}
fieldset .form-check {
  padding: 0;
  margin: 0;
}
fieldset input[type=checkbox],
fieldset .form-check-input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  float: left;
  width: var(--checkS);
  height: var(--labelH);
  background-image: url(../../assets/icons/circle-o.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  margin-top: 0;
  margin-left: 0;
  margin-right: var(--gap);
  border: none;
}
fieldset input[type=checkbox]:focus,
fieldset .form-check-input[type=checkbox]:focus {
  box-shadow: none;
}
fieldset input[type=checkbox]:checked,
fieldset .form-check-input[type=checkbox]:checked {
  background-image: url(../../assets/icons/check-circle.svg);
}
fieldset input[type=checkbox].check-title,
fieldset .form-check-input[type=checkbox].check-title {
  background-image: url(../../assets/icons/plus-circle.svg);
}
fieldset input[type=checkbox].check-title:checked,
fieldset .form-check-input[type=checkbox].check-title:checked {
  background-image: url(../../assets/icons/minus-circle.svg);
}
fieldset input[type=checkbox].check-title:checked + label,
fieldset input[type=checkbox].check-title:checked + .label,
fieldset .form-check-input[type=checkbox].check-title:checked + label,
fieldset .form-check-input[type=checkbox].check-title:checked + .label {
  background-color: var(--cl-blue-light);
}
fieldset label,
fieldset .label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: var(--font-semibold);
  color: var(--cl-txt);
  line-height: 1;
  border: 1px solid var(--cl-gray-20);
  background-color: var(--teaser);
  border-radius: 0.25rem;
  padding: 0 var(--gap);
  height: var(--labelH);
  transition: all 250ms ease-in-out;
}
fieldset label.expandable,
fieldset .label.expandable {
  /*  */
}
fieldset label.expandable:before,
fieldset .label.expandable:before {
  content: "";
}
fieldset input[type=checkbox]:checked ~ .fieldset-wrapper {
  /*  */
}
fieldset input[type=checkbox]:checked ~ .fieldset-wrapper.expandable {
  padding-top: var(--gap);
  padding-bottom: var(--gap);
  max-height: calc(var(--labelH) * var(--itens) + var(--itens) * var(--gap));
  overflow-y: auto;
}
fieldset .fieldset-wrapper {
  transition: all 250ms ease-in-out;
  padding-bottom: var(--gap);
  border-bottom: 1px solid var(--cl-gray-20);
}
fieldset .fieldset-wrapper.expandable {
  box-sizing: content-box;
  padding-left: calc(var(--checkS) + var(--gap));
  padding-bottom: 0;
  max-height: 0;
  border-bottom: none;
  overflow: hidden;
}
fieldset .fieldset-wrapper.expandable .form-check {
  margin: 0;
}
fieldset .fieldset-wrapper .bef-checkboxes {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.form-actions input {
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--link);
  color: var(--cl-white);
  padding: 15px;
  line-height: 1;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  border: none;
}

@media screen and (max-width: 991px) {
  .paragraph--type--webform {
    padding: 50px 30px 20px;
  }
  .paragraph--type--webform .webform-flexbox {
    flex-direction: column;
    gap: 30px;
  }
}

/*# sourceMappingURL=form.css.map*/