.container {
    margin-top: 30px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contenedorMensajes li {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-left: 6px solid #ffcf51;
    background-color: #ecf0f1;
    padding: 5px;
}

.contenedorContactos li {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-left: 6px solid #1abc9c;
    background-color: #ecf0f1;
    padding: 5px;
}

.img-circle {
    padding: 5px;
}

.chat li.mensajeRecibe {
    margin-left: 40px;
}

.chat li.mensajeEnvia {
    margin-right: 40px;
}

.chat {
    margin-left: 30px;
    margin-right: 30px;
}

.shadowPaneles {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.dataUsuarios {
    margin-top: 10px;
}

.ultimoMensaje {
    white-space: nowrap;
    width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search {
    padding: 20px;
}

#buscarContacto {
    border-radius: 3px;
    border: none;
    padding: 14px;
    color: #7f8c8d;
    background: #bdc3c7;
    width: 90%;
    font-size: 14px;
}

.clipped {
    width: auto;
    height: 290px;
    overflow: hidden;
}

.clipped img {
    width: auto;
    height: 100%;
}


#modalFull {
    display: none;
    position: fixed;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
  }

.imagenFullCargar {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }

  .imagenFullCargar, #caption {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  #myModal {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
  }
  
  @keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
  }
  
  .cerrarModal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .cerrarModal:hover,
  .cerrarModal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

  @media only screen and (max-width: 700px){
    .imagenFullCargar {
      width: 100%;
    }
  }
  