/*
 Theme Name:   MANGRO
 Description:  Hello Elementor Child Theme
 Author:       Perduracion Digital
 Author URI:   https://perduraciondigital.com
 Template:     hello-elementor
 Version:      1.0
 Text Domain:  hello-elementor
*/

/* -----> GENERAL */

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: var(--e-global-color-secondary);
    border-radius: 0;
	transition: .4s all ease-in-out;
}
::-webkit-scrollbar-thumb:hover{
	background: var(--e-global-color-primary);
}
::-webkit-scrollbar-track {
	background: #efefef;
    border-radius: 0 !important;
}
.elementor-icon-box-wrapper .elementor-icon-box-title{
	margin-top: 0 !important;
}
.elementor-widget-icon .elementor-icon-wrapper{
	display: flex !important;
}
.elementor-widget-text-editor .elementor-widget-container>*:last-child,
.elementor-text-editor>*:last-child{
	margin-bottom: 0 !important;
}
.elementor-button-content-wrapper{
    display: flex;
    align-items: center;
}
* a{
	color: var(--e-global-color-secondary);
}
* a:hover{
	color: var(--e-global-color-primary);
}
* b.resaltar{
	color: var(--e-global-color-primary) !important;
}
.items_rep .jet-listing-dynamic-repeater__items {
    flex-wrap: wrap !important;
}

/* -----> CABECERA */

@media (max-width: 767px) {
    body:not(.rtl) .elementor-647 .elementor-element.elementor-element-6900011 .elementor-sitemap-section ul {
        padding-left: 25px;
        margin-left: 0px;
    }
}
header .elementor-sticky--active{
	box-shadow: 0 0 10px 1px #8181813b;
}

/* -----> PIE DE PAGINA */

/* -> Firma de Perduracion Digital */
.firma_pdp {
  	position: relative;
    font-weight: 800;
	transition: 0.5s all ease-in-out;
}
.firma_pdp:hover{
	margin-left: 8px;
}
.firma_pdp::before,
.firma_pdp::after {
  content: '';
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease, left 0.3s ease, right 0.3s ease;
}
.firma_pdp::before {
  content: '{';
  left: -15px;
}
.firma_pdp::after {
  content: '}';
  right: -15px;
}
.firma_pdp:hover::before {
  opacity: 1;
  left: -9px;
}
.firma_pdp:hover::after {
  opacity: 1;
  right: -9px;
}

/* -----> PAGINA DE INICIO */
/* ----------> BOTON DE WSP FLOTANTE */

@keyframes pulso-whatsapp {
		0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 70px rgba(37, 211, 102, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}
.wsp_btn{
		animation: pulso-whatsapp 1.7s infinite;
		border-radius: 50px;
}