/*  MODAL */
.g_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    overflow: auto;
    padding: 10px;
}

.g_modal .modal_contenedor {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    /*max-width: 600px;
    width: 100%;*/
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.g_modal .modal_cerrar {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #888;
}

.g_modal .modal_titulo {
    margin-bottom: 15px;
}

.g_modal .modal_cuerpo {
    margin-bottom: 20px;
}

.g_modal .modal_pie {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/*MODAL GRACIAS*/
.modal_gracias{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.emoji {
    font-size: 3rem;
}
