.mobile-tags-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  overflow-x: scroll;
  overflow-y: auto;
  height: 50px;
  padding-right: 15px;
  white-space: nowrap;
}
.mobile-tags-wrapper {
  scrollbar-width: none;
}
.mobile-tags-wrapper::-webkit-scrollbar {
  height: 0;
}
.mobile-tags-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.mobile-tags-wrapper::-webkit-scrollbar-thumb {
  border: 0 transparent;
}

.btn-dark {
  background-color: #355c7d;
}
.btn-dark:hover {
  background-color: #355c7d;
}
.btn-light {
  background-color: #7daacf;
}
.btn-light:hover {
  background-color: #355c7d;
}

.restaurants-container {
  display: block;
}
@media (min-width: 640px) and (max-width: 991px) {
  .restaurants-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    grid-gap: 2.5rem;
  }
}
@media (min-width: 992px) {
  .restaurants-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    grid-gap: 2.5rem;
  }
}
.restaurant-teaser {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
