#chat_wrapper{
    height: 70vh;
    background: white;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(189,189,189,1);
    -moz-box-shadow: 10px 20px 5px 0px rgba(189,189,189,1);
    box-shadow: 10px 20px 5px 0px rgba(189,189,189,1);
    border-radius: 10px 10px;
}




div#chat_left_bar_container {
    width: 20%;
    height: calc(70vh - 80px);
    background: #F4F8FC;
    display: inline-block;
    vertical-align: top;
    overflow-y: auto;
    border-right: 2px solid #dedede;
}



.message_container {
    color: #213b73;
    padding: 10px 0;
    border-bottom: 1px solid #3871a7;
}

.message_container:hover{
    background: #6CA6D0;
    color: white;
}

.message_container_selected{
    background: #6CA6D0;
    color: white;
}



.message_ico{
    display: inline-block;
    font-size: 1.2rem;
    width: 40px;
    text-align: center;
    vertical-align: top;
}

.message_text{
    display: inline-block;
    font-size: 1rem;
    text-align: right;
    width: 120px;
}

.message_text_large{
    font-size: 1.3rem;
}


/*  --------------------  */

div#chat_top_bar_container {
    
    height: 80px;
    background-color: #3a8cbe;
    border-bottom: 1px solid #3a8cbe;
    vertical-align: top;
    border-radius: 10px 10px 0 0;
}

div#chat_top_bar_container img{
    width: 50px;
    margin: 15px;
    display: inline-block;
}

div#chat_top_bar_container p{
    display: inline-block;
    font-size: 2rem;
    color: white;
}

#bar_title{
    flex-grow: 0;
   flex-shrink: 0;
   flex-basis: 20%;
    height: 100%;
    font-size: 1.8rem;
    text-align: center;
    padding-top: 22px;
}

.card_container{
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 80%;
    height: 60px;
    margin-top: 10px;
    vertical-align: center;
}

.card_wrappper{
    border: 1px solid #bbbbbb;
    border-radius: 10px;
    width: 160px;
    vertical-align: center;
    color: #213b73;
    background: white;
    margin-right: 20px;
}

.card_left_icon {
    display: inline-block;
    background: #8de04a;
    width: 40px;
    height: 100%;
    text-align: center;
    font-size: 2rem;
    vertical-align: middle;
    border-right: 1px solid #bbbbbb;
    border-radius: 10px 0 0 10px;
    padding-top: 11px;
    color: white;
}

.card_text{
    display: inline-block;
    color: #213b73;
    text-align: right;
    width: 70%;
}

.btn_terminar_conversacion {
    text-align: right;
    float: right;
    margin-top: 26px;
    margin-right: 25px;
}

/*  --------------------  */

#chat_medium_area_container{
    background: #eaf4f9;
    width: 100%;
}


div#chat_content_container {
    width: 80%;
    height: calc(70vh - 81px);
    background: #EBF4F9;
    display: inline-block;
   
    margin-left: -4px;
}

div#chat_content_wrapper {
    height: calc(100% - 50px);
    padding: 20px;
    overflow-y: auto;
}


.chat_message_wrapper{
    -webkit-box-shadow: 10px 10px 5px 0px rgba(189,189,189,1);
    -moz-box-shadow: 10px 10px 5px 0px rgba(189,189,189,1);
    box-shadow: 10px 10px 5px 0px rgba(189,189,189,1);
    max-width: 60%;
    padding: 10px 20px;
    color: white;
    display: inline-block;
    border-radius: 10px;
}

.chat_message_time{
    font-size: .8rem;
    font-weight: 100;
    margin-bottom: 5px;
}

.chat_message_container_mt {
    text-align: right;
    padding-right: 20px;
    margin-top: 15px;
}

.chat_message_container_mo {
    text-align: left;
    padding-left: 20px;
    margin-top: 15px;
}


.chat_message_mo{
    background-color: #868686;
}

.chat_message_mt{
    background-color: #3a76aa;
}

.chat_body{
    font-size: 1.1rem;
    display: inline-block;
}

.chat_body_url {
    font-size: 1.1rem;
    font-style: italic;
    text-decoration: underline;
}

.status_ico {
    display: inline-block;
    padding-left: 5px;
    color: yellow;
}



/* ------------ */

div#chat_send_area_container {
    height: 50px;
    border-top: 1px solid #dedede;
}

div#chat_send_area_text {
    display: inline-block;
    width: 90%;
    background: blue;
}


div#chat_send_area_button {
    display: inline-block;
    width: 10%;
    background: gray;
    margin-left: -4px;
}

#send_text{
    height: 50px;
    width: 100%;
    border: 0;
    padding-left: 10px;
    color: #213b73;
    font-size: 1.2rem;
    background: white;
}

#send_text:focus {
    outline: none !important;
}

#send_button{
    width: 100%;
    border: 0;
    height: 50px;
    background: green;
    color: white;
    margin: 0 2px;
}


.chat_footer {
    height: 10px;
    background: #3a8cbe;
    border-radius: 0 0 10px 10px;
}