   .content_form_news{
    position: fixed;
    max-width: 500px;
    width: 100%;
    background: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .4s ease;
    padding: 20px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 5px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
    z-index: -2;
    opacity: 0;
    overflow: hidden;
}


.content_form_news.activo{
    z-index: 11;
    opacity: 1;
    min-height: 100px;
}

.i_news_latter{
    position: relative;
    width: 100%;
    height: 45px;
    margin: 12px 0px;
    outline: none;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 8px;
    padding: 15px;
    font-size: 19px;
}

.l_btn_news{
    position: relative;
    width: 100%;
    height: 45px;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    cursor: pointer;
    background: #1058a8;
    line-height: 45px;
    color: aliceblue;
    font-size: 25px;
    font-weight: 800;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
}

.l_btn_news.activo{
    display: block;
}

.h_news{
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 30px;
}

.l_teminos{
    position: relative;
    font-size: 1em;
    color: rgba(0, 0, 0, .8);
    font-weight: 700;
}

.l_idioma{
    position: relative;
    font-size: 1em;
    color: rgba(0, 0, 0, .8);
    margin-right: 10px;
}

.div_acpetar_terminos, .div_idioma_espanol, .div_idioma_ingles{
    position: relative;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, .6);
    margin-right: 10px;
}

.div_acpetar_terminos::before, .div_idioma_espanol::before, .div_idioma_ingles::before{
    content: '';
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    border-top: 0px solid transparent;
    border-left: 0px solid green;
    border-bottom: 0px solid green;
    border-right: 0px solid transparent;
    position: absolute;
    transition: all .3s ease;
}

.div_acpetar_terminos.activo::before, .div_idioma_espanol.activo::before,.div_idioma_ingles.activo::before{
    width: 25px;
    height: 10px;
    transform: rotate(-45deg);
    border-top: 3px solid transparent;
    border-left: 3px solid green;
    border-bottom: 3px solid green;
    border-right: 3px solid transparent;
}

.alerta_news{
    position: relative:;
    height: 40px;
    width: 100%;
    background: red;
    margin: 10px 0;
    border-radius: 8px;
    display: none;
    transition: all .5s ease;
    
}

.alerta_news.activo{
    display: block;
    
}

.h_error_news{
    position: absolute;
    width: calc(100% - 10px);
    height: 40px;
    line-height: 15px;
    color: aliceblue;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
 }

.div_idioma_news{
    width: 100%;
    height: 70px;
    display: flex;
    flex-wrap: wrap;
}

.div_terminos_news{
    width: 100%;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
}

.l_selecciona_idioma{
    position: relative;
    width: 100%;
}







