/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 22 2026 | 23:31:00 */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    padding-right: 35px;
}

.wpcf7 form.sent .wpcf7-response-output{
	display:none !important;
}

/*modal y preloader*/
#modalTitle{
	font-weight: bold;
}
p#modalMessage {
    font-size: 1.3em;
	color:black;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    z-index: 9998;
}

.custom-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;

    width: 90%;
    max-width: 450px;

    background: white;
    padding: 30px 34px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);

    text-align: center;
    animation: fadeIn 0.25s ease-out;

}

/* Animación suave */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}


.modal-close {
    position: absolute;
    top: 13px;
    right: 14px;
    font-size: 33px;
    cursor: pointer;
    font-weight: bold;
	color: black;
}

/* Loader */
.loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9997;
}

.loader {
    width: 45px;
    height: 45px;
    border: 5px solid #fff;
    border-top-color: #ccff00;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

