/**
* Theme Name: Iconique Child
* Description: This is a child theme of Iconique.
* Author: <a href="https://cmsmasters.net/">cmsmasters</a>
* Template: iconique
* Version: 1.0.0
* Tested up to: 6.6
* Requires PHP: 7.4
* License:
* License URI:
* Text Domain: iconique-child
* Copyright: cmsmasters 2025 / All Rights Reserved
*/
.tabs p{
	margin: 0 !important;
}
.cmsmasters-theme-button:hover::before, button:hover::before {
	opacity: 1 !important;
}
.cmsmasters-theme-button::after, button::after {
	background-color: transparent !important;
	background-image: none !important;
}
/* Animación para la flecha */
.flecha-bota {
    animation: botar 2s infinite ease-in-out;
}

/* Definición del movimiento */
@keyframes botar {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px); /* Ajusta este valor para que baje más o menos */
    }
    100% {
        transform: translateY(0);
    }
}