.dropdown {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.dropdown select {
  width: max-content;
  border-radius: 0;
  background-color: var(--green-700);
  color: var(--yellow);
  border: 1px solid var(--yellow);
}

.dropdown select option {
  padding: 0 2px 8px;
  line-height: 2em;
  background: var(--white);
  color: var(--green-700);
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffd914' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/*  tablet M*/
@media only screen and (max-width: 900px) {
  .dropdown {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

/*  tablet M*/
@media only screen and (max-width: 600px) {
  .dropdown {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}
