/* Complementos ao layout Gastrofood no WordPress */

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.hayashi-storefront a {
  text-decoration: none;
  color: inherit;
}

.hayashi-storefront .line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hayashi-storefront .line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#hayashi-hero-banner {
  background-color: #f4f4f5;
}

.hayashi-hero-store-head {
  width: 100%;
}

.hayashi-store-open-status {
  visibility: visible;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  color: #52525b;
}

.hayashi-store-open-indicator {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.hayashi-store-open-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #22c55e;
  animation: hayashi-store-open-ping 1.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hayashi-store-open-core {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #22c55e;
}

@keyframes hayashi-store-open-ping {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  75%,
  100% {
    transform: scale(2.25);
    opacity: 0;
  }
}
