/*
	Theme Name: Hello Biz
	Theme URI: https://elementor.com/products/hello-biz/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Biz is a free, user-friendly Hybrid WordPress Theme that was crafted for seamless integration with the Elementor site builder and tailored specifically for business websites. Perfect for beginners, but far from limited to just them, it features a dedicated beginner-oriented “Home” screen to simplify and streamline the web-building process. Hello Biz also integrates with Elementor’s premium features, giving you access to tools like AI, and accessibility enhancements in one place. Whether launching a startup site or refining a company portfolio, Hello Biz offers a solid, responsive foundation for all web creators. Report security bugs through the Patchstack Vulnerability Disclosure Program. The Patchstack team validates, triages, and handles vulnerabilities. Report here: https://patchstack.com/database/wordpress/theme/hello-biz/vdp.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 1.2.0
	Stable tag: 1.2.0
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-biz
	Tags: flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready, style-variations
*/

footer {
  border: 4px solid transparent; /* Importante: il bordo deve essere trasparente */
  border-image: linear-gradient(to right, red, orange, yellow, green, blue);
  border-image-slice: 1; /* Estende l'immagine del bordo fino al bordo */
  padding: 10px; /* Aggiungi padding per non far toccare il contenuto col bordo */
}

footer div.e-con-inner {
  position: relative;
  padding: 10px;
  background: white; /* Colore di sfondo del contenuto */
  border-radius: 5px;
  overflow: hidden; /* Nasconde il gradiente in eccesso */
}

footer div.e-con-inner::before {
  content: '';
  position: absolute;
  top: -5px; bottom: -5px;
  left: -5px; right: -5px; /* Crea uno spazio attorno all'elemento */
  background: linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
  background-size: 400% 400%; /* Preparazione per l'animazione */
  animation: gradientBorder 5s ease infinite;
  z-index: -1; /* Mette il gradiente dietro il contenuto */
  border-radius: 10px;
}

@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
