mark {
    background-color: #bc008d; 
    color: #FFF;
    font-weight: bold;
    padding: 0px;
    border-radius: 4px;        
}

*{
    font-family: "Lato", sans-serif;
    font-style: normal;
}
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../../public/img/loader_2.gif') 50% 50% no-repeat rgb(249,249,249);
    opacity: .8;
}
.zoomIt{
    display:block!important;
    -webkit-transition:-webkit-transform ;
    -moz-transition:-moz-transform ;
    -o-transition:-o-transform ;
    -ms-transition:-ms-transform ;
    transition:transform ;
}
.zoomIt:hover{
    -moz-transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -o-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02)
}
.pointer{
    cursor: pointer;
}
.portada {
    width: 100%;
    height: 330px;
    object-fit: contain;
    object-position: center; 
    background-color: #f0f0f0;
}

.limitar-texto {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.2em;
    height: 2.4em;
}
.texto{
    font-size: 15px;
}

.boton-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
}

.boton-flotante.hidden {
    opacity: 0;
    pointer-events: none;
}

.derechos{
    font-size: 9px;
}    