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

/* Resolucion escritorio */
@media screen and (min-width: 1025px) {
	.ocultar-elemento-escritorio {
		display: none !important;
	}
}

/* Resolucion tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.ocultar-elemento-tablet {
		display: none !important;
	}
}

/* Resolucion movil */
@media screen and (max-width: 767px) {
	.ocultar-elemento-movil {
		display: none !important;
	}
}

/* Estilos WooCommerce */

.woocommerce-info {
    border-top-color: #D0AF1C;
}

.woocommerce-info::before {
    color: #D0AF1C;
}

/* Ocultar el texto de carrito vacio */
.woocommerce-mini-cart__empty-message {
    visibility: hidden;
    position: relative;
    /* Forzamos altura 0 para que no ocupe espacio el texto invisible */
    font-size: 0 !important; 
}

/* Poner texto en Español de carrito vacio */
.woocommerce-mini-cart__empty-message:after {
    content: "Tu carrito está vacío";
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    display: block;
    text-align: center;
}

/* Ocultamos el boton de eplorar productos en pedidos y descargas */
.woocommerce-account.woocommerce-page.woocommerce-orders .woocommerce-MyAccount-content-wrapper-no-data .woocommerce-info .woocommerce-Button.wc-forward.button,
.woocommerce-account.woocommerce-page.woocommerce-downloads .woocommerce-MyAccount-content-wrapper-no-data .woocommerce-info .wc-forward.button {
	display: none !important;
}

/* Arreglo de interlineado de suscripcion al boletin en checkout */
body.woocommerce-checkout.woocommerce-page .woocommerce-billing-fields label[data-automation-id="woo-commerce-subscription-opt-in"] span {
	line-height: 24px;
}