#lazyloading2-loader {
  display: none;
  width: 100%;
  text-align: center;
  padding: 22px 10px;
  box-sizing: border-box;
}

#lazyloading2-loader.is-visible {
  display: block;
}

.lazyloading2-text {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.lazyloading2-dots span {
  opacity: 0;
  animation: lazyloading2Dots 1.2s infinite;
}

.lazyloading2-dots span:nth-child(1) {
  animation-delay: 0s;
}

.lazyloading2-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.lazyloading2-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes lazyloading2Dots {
  0% { opacity: 0; }
  25% { opacity: 1; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.lazyloading2-error {
  display: none;
  font-size: 13px;
  color: #666;
}

.lazyloading2-error button {
  margin-left: 8px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}

#lazyloading2-loader.has-error .lazyloading2-text {
  display: none;
}

#lazyloading2-loader.has-error .lazyloading2-error {
  display: block;
}

#lazyloading2-frame {
  display: block !important;
  visibility: hidden !important;
}

#listagemProdutos .listagem-item.produto-adicionado {
  min-height: 520px;
}

/* Mobile: remove segunda imagem/zoom, pois não existe hover */
@media (max-width: 767px) {
  #listagemProdutos .imagem-produto .imagem-zoom {
    display: none !important;
  }

  #listagemProdutos .imagem-produto.has-zoom .imagem-zoom {
    display: none !important;
  }

  #listagemProdutos .listagem-item.produto-adicionado {
    min-height: auto;
  }
}