/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1753566249
Updated: 2025-07-26 23:44:09

*/

/* ESTILOS PARA CAMPOS DEL FORM BLOQUEADOS */
.bloqueado {
	position: relative;
}

.bloqueado:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,0.5);
	z-index: 2;
	/*pointer-events: none;*/
	border-radius: 4px;
}


.no-data-message {
    padding: 20px;
    text-align: center;
    background: #f8f8f8;
    border-radius: 8px;
    margin: 20px 0;
}

.admin-notice {
    margin-top: 15px;
    padding: 15px;
    background: #fff8e5;
    border-left: 4px solid #ffb900;
    text-align: left;
    font-size: 14px;
}

/* Forzar visibilidad del texto y placeholder */
input[type="date"] {
    color: #333 !important; /* Color de texto oscuro */
    opacity: 1 !important; /* Eliminar transparencia */
    -webkit-opacity: 1 !important;
    -moz-opacity: 1 !important;
	text-align:left !important;
}

/* Placeholder visible en móviles */
input[type="date"]:not(:valid):before {
    content: attr(placeholder);
    color: #999;
    margin-right: 8px;
	text-align:left !important;
}

/* Ajustes específicos para Safari */
@media screen and (max-width: 767px) {
    input[type="date"] {
        -webkit-appearance: none;
        appearance: none;
        background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23333" viewBox="0 0 24 24"><path d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>') no-repeat 95% 50%;
        padding-right: 30px !important;
		text-align:left !important;
    }
}

/* FORMATO A RADIO Y CHECKBOXES*/
/* Reset de estilos nativos */
.jet-form__field-wrap input[type="checkbox"],
.jet-form__field-wrap input[type="radio"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #ddd !important;
    border-radius: 3px !important; /* Solo para checkboxes */
    outline: none !important;
    cursor: pointer !important;
    vertical-align: middle !important;
    position: relative !important;
}

/* Checkboxes - Estilo personalizado */
.jet-form__field-wrap input[type="checkbox"]:checked {
    background: #2b9443 !important;
    border-color: #2b9443 !important;
}

.jet-form__field-wrap input[type="checkbox"]:checked::before {
    content: "X" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: white !important;
    font-weight: bold !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

/* Radios - Estilo personalizado */
.jet-form__field-wrap input[type="radio"] {
    border-radius: 50% !important;
}

.jet-form__field-wrap input[type="radio"]:checked::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.7) !important;
    width: 100% !important;
    height: 100% !important;
    background: #2b9443 !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    border-color: #2b9443 !important;
}