#chatico, #chatico2{position:fixed;box-shadow:rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;;bottom:25px;right:25px;background-color:var(--blanco);color:var(--negro);border-radius:10px;height:50px;width:140px;display:flex;justify-content:center;align-items:center;z-index:999999;cursor:pointer;transition:all 3s ease-in-out!important;}
#chatdivcont{display:none;overflow:hidden;background-color:var(--blanco);position:fixed;border-radius:10px;bottom:90px;right:20px;width:0px;height:0px;z-index:99999999;transition:all 3s ease-in-out!important;box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;transition-duration: 3s!important;transition-property: width, display;}
#chatdiv{padding:10px;}

#chatdivcont input{outline: none;}

.chat_width{width:330px!important;height:480px!important;}
.opcchat{width:auto;margin:5px;font-size:12px;padding:10px;border: 1px solid #2580ff;color: #2580ff;font-weight:500;border-radius:10px;cursor:pointer;transition:all 0.3s ease-in-out!important;}
.opcchat_msg{position:relative;padding:10px;border-radius:7px 7px 7px 0px;background-color:#ebf0ff;color:var(--negro);margin:5px;font-size:12px;width:auto;}
.triangulo_chat{
  background-color:#ebf0ff;
  position:absolute;bottom:0px;left:-12px;
  width: 0;
  height: 0;
  border-bottom: 12px solid #ebf0ff;
  border-left: 12px solid var(--blanco);
}
.opcchat_msg_resp{position:relative;padding:10px;border-radius:10px 10px 0px 10px;background-color:#2580ff;color:var(--blanco);margin:5px;font-size:12px;width:auto;}
.triangulo_chat_resp{
  position:absolute;bottom:0px;right:-11.5px;
  width: 0;
  height: 0;
  border-bottom: 12px solid #2580ff;
  border-right: 12px solid var(--blanco);
}
.opcchat:hover{background-color:#ebf0ff;}
.opcchat_select{margin:5px; padding:3px;margin-left:15px;background-color:var(--principal);color:var(--blanco);}

.opctemp{height:32px;}
.opctemp > label { 
  position: relative;
  background: transparent;
  color:#d7d7d7;overflow: hidden;
  height:5px!important;
  top:-18px;left:-3px;
  font-size: 25px;}

.opctemp > label > span {
    position:absolute;
    right:0;
    bottom:0px;
    width:0;
    height:20px;
    background-color: #ebf0ff;
    animation: escribir 1s steps(30) infinite alternate;
}

@keyframes escribir {
    from { width: 100% }
    to { width:0 }
}


@media(max-width:350px){
  .chat_width{width:290px!important;}
  #chatdivcont{right:5px;height:auto !important;}
  #chatico2{right:5px;}

  #chatdiv{height:auto;}

  .opctemp > label {top:-8px;}

  #chatdivcont label{font-size:14px !important;}
}