body{
    background-color:transparent;
}

.principalLogin{
    padding:1.5rem;
    max-width: 1250px;
    background-color:#f5f5f5;
    display:none;
}

.contLogin{
    max-width: 1250px;
    min-height: 620px;
    margin: 0 auto;
    background-color: #fff;
}

.contInfo{
    padding:15px;
    font-size: 1.1rem;
}

.contSoporte{
    padding: 15px;
    background-color:#fff;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    display: none;
}

.contForm{
    padding:10px;
    display: none;
}

.contRecomendacion{
    background-color:#f5f5f5; 
    padding:15px; 
    border-radius:10px; 
    border:solid #D9D9D9 2px;
}

.btnIngresar{
    width: 9rem;
    margin:0 auto;
    background-color: #00294D;
    border-color:  #00294D;
    text-transform: uppercase;
}

.chTerminos{
    font-size:12px;
}

.refTerminos1{
    text-decoration: none;
    color: #00294D;
    pointer-events: none;
}

.refTerminos2{
    text-decoration: underline;
    cursor: pointer;
    color: #00294D;
}

.txtForm{
    color:#00294D;
    overflow: hidden;
}

.fondo1{
    background: left bottom no-repeat;
    background-repeat: no-repeat !important; 
    background-position-y:center !important;
    width: 100%;
    height: 100%;
}

.fondo2{
    display:none;
}

.msg{
    display:none;
    text-align: center;
}

 /*CSS STREAMINGS*/
 .principalStreaming{
    background-color:#f5f5f5;
    padding: 1.5rem 2.5rem 1.5rem 2.5rem;
    max-width: 1400px;
    display:none;
 }

 .conEncabezado{
    background-color:#eeeeee;
 }

 .contChat{
     border:solid 1px #d1d1d1;
     width:97%;
     height: 570px;
     margin-left: 3%;
     position: relative;
     display: flex;
     flex-direction: column;
 }

 .contBoton{
     border:solid 1px #d1d1d1;
     background-color:white;
     width:97%;
     margin-left: 3%;
     display:none;
 }

 .contMSG{
    width:100%;
    height: 100%;
    overflow:auto;
    flex-grow: 2;
 }

 #listaMSG{
     width:100%;
     max-height: 337px;
     list-style:none;
     padding: 10px;
 }

 .tituloChat{
    background-color: #FFFFFF;
    padding:0.6rem;
    padding-bottom: 1rem;
    color: #666666;
    width: 100%;
    z-index: 100000;
    flex-grow: 1;
 }

 .pieChat{
    background-color: #FFFFFF;
    padding:0.6rem;
    width:100%;
    flex-grow: 1;
 }

 .txtNombre{
    font-size:11px;
    color: #999999;
    padding:5px;
 }

 #txtEscribir{
    padding:0;
    font-size:1rem;
    line-height: 1rem;
    max-height:80px;
    padding:5px;
    overflow-y:auto;
    color: #333333;
    outline:none;
    margin:0 auto;
    border-bottom:solid 2px hsla(208, 100%, 15%, .2);
    transition: all ease-in .2s;
}

#txtEscribir:focus{
     border-bottom:solid 2px hsla(208, 100%, 15%, 1);
}

[contenteditable=true]:empty:before{
    content: attr(placeholder);
    pointer-events: none;
    display: block; /* For Firefox */
    color: #C6C6C6;
  }

  div[contenteditable=true] {
    width: 96%;
  }

.contEnviar{
    padding: .8rem 0.5em 0.9rem 0;
    font-size:12px;
}

#btnEnviar{
    cursor: pointer;
    margin-left: 10px;
    opacity: .4;
    padding: .3em;
    transition: opacity ease-in .2s;
 }

 #btnEnviar:hover{
    opacity: 1;
 }

.btnMostrar{
    font-size: .7rem;
    text-align: center;
    margin:0 auto;
    padding:.6rem;
    color: #999999;
    clear: both;
    cursor: pointer;
    transition: color ease-in .2s;
}

 .btnOcultar {
    border-top:solid 1px #C6C6C6;
    font-size: .7rem;
    text-align: center;
    margin:0 auto;
    margin-top: .9rem;
    padding:10px 10px 0px 10px;
    color: #999999;
    clear: both;
    cursor: pointer;
    transition: color ease-in .2s;
 }

.btnOcultar:hover, .btnMostrar:hover{
    color: black;
    transition: color ease-in .2s;
}

 .msgUsuario {  
    white-space: pre-wrap;      /* Webkit */    
    white-space: -moz-pre-wrap; /* Firefox */     
    white-space: -pre-wrap;     /* Opera <7 */    
    white-space: -o-pre-wrap;   /* Opera 7 */     
    word-wrap: break-word;      /* IE */ 
    margin-bottom: 15px;
    color: #333333;
    line-height: 1.2;
 }
 
#txtNombreUsuario{
    float: left;
    color: #666666;
    
}

@media (max-width: 1215px) { 
    .fondo1{
        background-size: contain !important;
    }
}

@media (max-width: 992px) { 
    .fondo1{
        display:none;
    }

    .fondo2{
        display:block;
    }

    .contLogin{
        height: 100%;
    }

    .contChat{
        width:100%;
        margin-left: 0;
        height: 360px;
        position: relative;
    }

    .contMSG{
        height: 185px;
    }

    #listaMSG{
        max-height: 175px;
    }

    .contBoton{
        width:100%;
        margin-left: 0;
    }
 }