 #chat-container{
    position: fixed;
    bottom: -540px;
    right: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
   z-index: 1000;
  }
  #chat-container textarea:focus, input:focus{
    outline: none;
  }
  #chat-header{
    background-color: #3f4563;
    border-radius: 15px 15px 0px 0px;
    color: #fff;
    width: 349px;
    padding: 11px 15px;
  }
  #chat-body{
    box-shadow: 0px 28px 44px;
    height: 420px;
    overflow-y: scroll;
    position:relative;
    background-color:#fff;
/*     transition: height 0.1s linear; */
  }
  #chat-body::-webkit-scrollbar-track {
    transition: opacity .2s;
    opacity: 0;
    background-color: #f1f0f0;
  }
  #chat-body .notification{
    position: relative;
    text-align: center;
    margin: 24px 0px 34px 0px;
  }
  #chat-body .notification span{
    background-color: #c3c3c3;
    padding: 9px 16px;
    border-radius: 6px;
    box-shadow: #000 1px 1px 3px;
  }
  #chat-body .conversation{
    position: relative;
    margin: 0 10px 15px 10px;
    max-width: 312px;
    padding: 15px 13px;
    box-shadow: #000 1px 1px 3px;
    line-height: 18px;
  }
  #chat-body .asesor{
    text-align: left;
    color: #222d38;
    background-color: #f1f0f0;
    border-radius: 20px 20px 20px 0px;
  }
  #chat-body .visitante{
    text-align: left;
    color: #ffffff;
    background-color: #19c13a;
    border-radius: 20px 20px 0px 20px;
    text-align: right;
    float: right;
    max-width: fit-content;
  }
  .chat-message-container{
    clear: left;
    display: flow-root;
        width: 100%;
  }
  #chat-form {
    position: relative;
    width: 100%;
    height: 68px;
    background-color: #fff;
    border-top: 1px solid #e8e8e8;
    padding-top: 13px;
    box-shadow: 0px 35px 44px;
  }
  #chat-form textarea{
    margin-left: 10px;
    width: 290px!important;
    height: 50px!important;
    border: none;
    font-family: Arial,sans-serif;
    font-size: 16px;
  }
  #chat-form i{
     color: #19c13a;
    font-size: 34px;
    position: absolute;
    top: 10px;
    right: 22px;
  }
  #chat-form #chat-writting-notification{
    position: absolute;
    top: -20px;
    left: 2px;
    font-size: 13px;
    color: #19c13a;
  }
  #chat-seller-name{
    font-size: 16px;
    position: absolute;
    top: 20px;
    left: 73px;
  }
  #chat-seller-rol{
    font-size: 12px;
    position: absolute;
    top: 40px;
    left: 74px;
  }
  #chat-message:disabled{
    background-color:#eaeaea;
    padding: 7px 7px 1px 7px;
  }
  #chat-header .fa-times-circle, #chat-header .fa-arrow-alt-circle-up {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 25px;
    color: #fff;
  }

#chat-request-admin-form, #chat-admin-form, #chat-admin-form-send-result{
  position: absolute;
  bottom: 15px;
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
  width: calc(100% - 41px);
  margin: 10px;
  padding: 10px;
  border-radius: 4px;
  z-index: 10;
  line-height: 16px;
}
#chat-admin-form{
  position: absolute;
  bottom: 0px;
  -ms-box-sizing:content-box;
  -moz-box-sizing:content-box;
  -webkit-box-sizing:content-box; 
  box-sizing:content-box;
}
#chat-request-admin-form p{
      text-align: center;
    width: 100%;
    margin: 0;
    padding: 0 0 10px 0;
}
#chat-request-admin-form span{
 font-weight: bold; 
}
#chat-request-admin-form i{
  position: relative;
  margin-left: 3px;
  font-size: 22px;
  top: 3px;
}
#chat-request-admin-form i.fa-check-circle {
 color: green; 
}
#chat-request-admin-form i.fa-times-circle {
 color: red; 
}
#chat-request-admin-form i.fa-check-circle:hover {
 color: #11bf11; 
}
#chat-request-admin-form i.fa-times-circle:hover {
 color: #ff6666; 
}

#chat-admin-form input, #chat-admin-form textarea , #chat-admin-form select {
  width: calc(100% - 16px);
  clear: left;
  padding: 7px;
  border-radius: 4px;
  border: 1px solid #ccd6ff;
  margin: 4px 0;
  color: #3c3c3c;
  font-size: 12px;
  line-height: 15px;
  -webkit-box-sizing: initial;
  -moz-box-sizing: initial;
  box-sizing: initial;
}

#chat-admin-form select{
/*   width: calc(100% - 2px); */
  width: 100%;
  height: 31px;
}
.btn {
  display: inline-block;
  padding: 7px 15px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  text-decoration: none;
}
#chat-admin-form a{
  text-decoration: none;
}
.btn-light {
color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-light:hover {
color: #fff;
    background-color: #368eec;
    border-color: #368eec;
}
.btn-red { 
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-red:hover {
    color: #fff;
    background-color: #e26571;
    border-color: #e26571;
}
.chat-form-header{
  font-size: 18px;
  text-transform: uppercase;
  margin: 3px 0 7px;
  color: #707bc5;
}
#chat-admin-form-send-result-title {
  font-weight: bold;
}
#admin-form label {
  margin-bottom: 0px;
} 
  
 @media only screen and (max-width: 600px) {
  #chat-container {
    width:100%;
    right:0px;
  }
  #chat-header {
    width:100%;
  }
  #chat-body .visitante {
    float: none;
    max-width: none;
  }
  #chat-body .conversation {
    max-width: 100%;
  }
}

 @media only screen and (max-width: 1024px) {
   #chat-container .chat-body-full-heigh {
    height: calc(100vh - 156px - 70px);
  }
}