/*
Theme Name: Hello-Child
Theme URI:  https://educaparasentir.com
Description: Tema hijo para Nombre del Tema
Author: Roberto
Author URI: https://ondiseno.com
Template: hello-elementor
Version: 1.0.0
*/
.tutor-discount-box {
    border: 1px solid #e0e0e0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.tutor-discount-box .descuento {
    color: blue !important;
    font-weight: bold;
    font-size: 18px;
}
/*Estilo para el boton de descuento en la pagina de los cursos*/
.tutor-course-discount {
    background-color: #2E8D47; /* Ajusta este color con el verde exacto de tu página */
    color: white; /* Ajusta este color con el naranja exacto de tu página */
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.tutor-course-discount:hover {
    transform: scale(1.05);
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-effect {
    animation: pulse 2s infinite;
}