/*  botoes de escolha */

.btn-filter {
  border-radius: 999px;
  border: 1px solid #ccc;
  font-weight: 500;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: white;
  color: #333;
  transition: all 0.2s ease;
  font-family: Montserrat;
}

.btn-filter .material-symbols-outlined {
  font-size: 18px;
}

.btn-filter.active {
  border-color: black;
  border-width: 2px;
  background-color: black;
  color: white;
}

.styled-input {
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 18px;
  color: #555;
  padding: 10px 12px;
  resize: none;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: Montserrat;
  font-weight: bolder;
}

.styled-input:focus {
  border-color: #000;
}

.form-label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  color: #333;
  font-family: Montserrat;
  font-weight: 600;
}

.char-counter {
  font-size: 12px;
  color: #999;
  display: block;
  text-align: left;
  margin-top: 4px;
  font-family: Montserrat;
  font-weight:500;
  letter-spacing: 1px;
}

.form-titulo {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
  color: #333;
  font-family: Montserrat;
  font-weight: 600;
}

.multiselect-parent .btn-group {
  width: 100%;
}

.multiselect-parent .btn-group button.btn.btn-default {
  width: 100%;
  text-align: left;
  background-color: white;
  color: #000;
  font-size: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #000;
  box-shadow: none !important;
  font-family: inherit;
}

.multiselect-parent .btn-group.open .dropdown-menu {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 6px;
  max-height: 250px;
  overflow-y: auto;
  font-size: 15px;
}

