h1.title,
h2.title,
h3.title,
h4.title,
h5.title,
h6.title {
  font-weight: normal;
}
h1.title::after,
h2.title::after,
h3.title::after,
h4.title::after,
h5.title::after,
h6.title::after {
  content: "";
  display: block;
  width: 40px;
  height: 6px;
  margin-top: 16px;
  background-color: var(--pleca-color, #edd350);
  border-radius: 6px;
}
h1.title--center,
h2.title--center,
h3.title--center,
h4.title--center,
h5.title--center,
h6.title--center {
  text-align: center;
}
h1.title--center::after,
h2.title--center::after,
h3.title--center::after,
h4.title--center::after,
h5.title--center::after,
h6.title--center::after {
  margin: 16px auto 0;
}

.field {
  background-color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 36px;
}
.field .icon {
  display: block;
}
.field input {
  flex: auto;
}
.field input, .field input:focus, .field input:focus-visible {
  border: none;
  outline: none;
}

select {
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
  border: none;
}
select:focus-visible {
  outline: none;
}

.hero {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.wrapper {
  margin-top: 24px;
  padding: 24px;
  border-radius: 40px;
  background-color: #f3f3f3;
}

.controls {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.not-found {
  text-align: center;
}
.not-found.hide {
  display: none;
}

.item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #081754;
}
.item__title {
  font-weight: bold;
  font-size: 18px;
  color: #081754;
}
.item__definition {
  font-size: 16px;
  color: #081754;
}
.item.hide {
  display: none;
}

@media (min-width: 768px) {
  .wrapper {
    margin-top: 48px;
    padding: 48px;
  }
  .controls {
    margin-bottom: 48px;
    grid-template-columns: repeat(2, 1fr);
  }
}

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