.vendor {
  height: 100px;
}

.vendor-selected {
  background-color: rgba(var(--dark-blue), 1) !important;
  border: 3px solid rgba(var(--yellow), 1) !important;
}

.vendor-container {
  display: flex;
  margin: 1rem 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vendor-option-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.vendor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-vendor {
  height: 52px;
  width: 52px;
  border-radius: 12px;
  border: 1px solid transparent;
  background-color: rgba(var(--dark), 0.7);
  margin-bottom: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-vendor:hover {
  background-color: rgba(var(--dark), 1);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.img-vendor {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .vendor-option-title {
    font-size: 0.9rem;
  }
}
