/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/


/* Add your custom styles here */

::selection {
  background: #52f0cd96; /* color de fondo personalizado */
  color: var(--e-global-color-text);        /* color del texto durante la selección */
}

/* Para compatibilidad con navegadores basados en WebKit */
::-moz-selection {
  background: #52f0cd96;
  color: var(--e-global-color-text);
}

.fels--text-gradient {
  background: linear-gradient(90deg, var(--e-global-color-primary), var(--e-global-color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* */
.fels--list .elementor-icon-list-item {
  min-height: 91px;
  padding: 20px;
  background-color: #121621;
  border: 1px solid #FFFFFF1A;
  border-radius: 12px;
}



/*.elementor-nav-menu--layout-horizontal :is(
  .elementor-item:hover,
  .elementor-item-active
) {
  color: var(--e-global-color-59d3d44) !important;
  background-color: var(--e-global-color-text);
  border-radius: 6px;
} */




/* Component: Text scroll 
.fels-text-scroll ul {
  display: inline-flex !important;
  flex-wrap: nowrap !important; 
  animation: scrollRight 80s linear infinite;
}

.fels-text-scroll li {
  flex: 0 0 auto;
}

.fels-text-scroll li span {
  white-space: nowrap;
}  */

/* Animación 
@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} */

/*
@media (max-width: 767px) {
* Component: Text scroll *
.fels-text-scroll ul {
  display: inline-flex !important;
  flex-wrap: nowrap !important; 
  animation: scrollRight 80s linear infinite;
}
	
} */


/* General 
p:is(:only-child, :last-child) {
  margin-bottom: 0;
} 

.fels--step {
  width: 60px;
  height: 60px;
}

.fels--step > div {
  display: grid !important;
  place-items: center;
} */

/*.elementor-widget-text-editor ul {
	margin-bottom: 1rem;
	padding-left: 18px;
}

.elementor-widget-text-editor ul li:not(:last-child) {
	margin-bottom: 8px;
} */

/*.elementor-button svg {
  fill: inherit;
} */





/*
.elementor-social-icon {
  background: none !important;
  background-image: linear-gradient(45deg, var(--e-global-color-primary) 0%, var(--e-global-color-accent) 100%) !important;
}

.elementor-social-icon:hover {
  background-image: linear-gradient(90deg, var(--e-global-color-accent) 0%, var(--e-global-color-primary) 100%) !important;
} */


/* 
.animated-border {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border: 3px solid transparent;
  border-radius: 10px;
  z-index: 1;
  background-color: white; 
}

.animated-border::before {
  content: "";
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  z-index: -1;
  background: linear-gradient(90deg, var(--e-global-color-primary), var(--e-global-color-accent));
  background-size: 200% auto;
  border-radius: 10px;
  animation: animate-border 2s linear infinite;
}


@keyframes animate-border {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
} */