/*
Theme Name: Fidalgo Child
Theme URI: https://fidalgo.qodeinteractive.com
Description: A child theme of Fidalgo
Author: Elated Themes
Author URI: https://qodeinteractive.com
Version: 1.0
Text Domain: fidalgo
Template: fidalgo



/* Inicio - Imagen carta modal (pop up) */
/* Modal completo */
.custom-img-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

/* Imagen dentro del modal */
.custom-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    animation: zoomIn 0.3s ease;
}
/* Animacion zoom */
@keyframes zoomIn {
    from {transform: scale(0.5);}
    to {transform: scale(1);}
}

@keyframes zoomOut {
    from {transform: scale(1);}
    to {transform: scale(.5);}
}

/* Boton cerrar */
.custom-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    
}

/* Hover cerrar */
.custom-close:hover,
.custom-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Fin - Imagen carta modal (pop up) */


/* Banner cookies */

.cky-notice-btn-wrapper button.cky-btn{
     border:1px solid #c4622d !important;
     color: #c4622d !important;
}

.cky-notice-btn-wrapper button.cky-btn-accept{
     background: #c4622d !important;
     color: #fff !important;
}