/*
 Theme Name:   MS006 - Orience APP
 Theme URI:    -
 Description:  Tema explícito para la webapp de orience
 Author:       Mindset
 Author URI:   https://mindsetdigital.io
 Version:      1.0.0
*/


img[src$=".svg"] {
    width: 100%;
    height: auto;
}

 .wp-block-site-logo {
    max-width: 50px;
}


/* Estilo para tablas */ 
.wp-site-blocks table  {
    td, th {
        border-top: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
       
    }
    td {
       padding:20px !important;
    }

    th {
         padding:15px 20px !important;
    }

    td > mark {
        padding:7px 20px;
        border-radius:10px
    }
    
}

.breadcrumb {
    font-size: 0.8em;
    width: 100%;
    display: flex;
    gap: 5px;
    align-items: center;
}

main {
    min-height: calc(100vh - 295px);
}
.isButton {
    cursor: pointer;
}
.isButton:hover {
    background-color:#f2f2f2 !important;
    /* background-color: var(--wp--preset--color-primary) !important; */
    /* color: #fff; */
}


/*
MODAL
*/
div#modal { display: none;}
div#modal.active {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,.5);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index: 999;
    margin: 0px !important;
}

.modal {
    background:white;
        border-radius: 25px;
    padding: 25px;
    flex:auto;
    max-height: 90vh;
    overflow-y: scroll;
    border:1px solid #f2f2f2
}

.buttonClose {
    display: flex;
    justify-content: end;
}

#buttonClose {
    font-size: 2em;

    cursor: pointer;
}


.hide {
    display: none !important;
}