/*Efectos especiales noticias*/
.indice_noticias {
    display: block;
    flex-wrap: wrap;
    align-items: baseline;
    width: 100%;
    padding-left: 1%;
}
.index_bloque_noticias {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    width: 100%;
}
.index_bloque_titulo {
    width: 60%;
    color: #015ea3;
    cursor: pointer;
}
.index_bloque_fecha {
    width: 39%;
    font-size: 1em;
    color: #015ea3;
}
.index_bloque_texto {
    width: 100%;
    display: none;
}

/*Cartel de advertencia*/
.index_cartel {
    display: none; /*block*/
    position: absolute;
    top: 0%;
    padding-top: 15%;
    width: 97%;
    height: 120%;
    background-color: black;
    color: whitesmoke;
    font-weight: bold;
    z-index: +5;
}
.index_cartel2 {
    /*display: block;*/
    display: none;
    position: absolute;
    top: 0%;
    padding-top: 15%;
    width: 99%;
    height: 75%;
    background-color: wheat;
    font-weight: bold;
    z-index: +5;
}

.marcador {
    height: 60px;
}

/*Adaptaciones páginas más grandes*/
@media (min-width: 768px) {
    /*Cartel de advertencia*/
    .index_cartel {
        top: 20%;
        padding-top: 0%;
        height: 80%;
    }
    .index_cartel2 {
        top: 0%;
        padding-top: 5%;
        height: 40%;
    }
}

@media (min-width: 1024px) {
    /*Cartel de advertencia*/
    .index_cartel {
        top: 20%;
        padding-top: 0%;
        height: 80%;
    }
}
