/* 
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 */

/* Badge descuento */
span.product-discount {
    background: #DB1215;
	min-width:60px;
	min-height:30px;
    color: white;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
}

/* Contador regresivo de ofertas */
.sale-countdown {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(49, 92, 167, 0.3);
}

.countdown-days, .countdown-hours, .countdown-minutes, .countdown-seconds, .countdown-separator {
	color:#FAB519;
	font-size:14px;
	font-weight:700;
}

/* Responsive */
@media (max-width: 480px) {
    .sale-countdown {
        gap: 10px;
        padding: 15px;
    }
}

/* Tabla descripcion */
.tabla-row {
    display: flex;
    width: 100%;
    border-bottom: 2px solid #fff;
}
.tabla-titulo {
    flex: 0 0 40%;
    background: #315CA733;
    padding: 12px 15px;
    font-weight: 600;
    border-right: 2px solid #fff;
    color: #63656A;
}
.tabla-texto {
    flex: 1;
    background: #315CA71A;
    padding: 12px 15px;
    color: #63656A;
}
/* Responsive */
@media (max-width: 768px) {
    .tabla-row {
        flex-direction: column;
    }
    
    .tabla-titulo {
        flex: 0 0 100%;
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #fff;
    }
    
    .tabla-texto {
        flex: 0 0 100%;
        width: 100%;
    }
}

.prev-scroll svg,
.next-scroll svg {
  transition: opacity .25s ease;
  opacity: 1;
}


