<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#chatCon {
  width: 25%;
  /* position: absolute;
    bottom: 3%;
    right: 3%; */
  position: fixed;
  bottom: 90px;
  right: 90px;
  z-index: 10000;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  #chatCon {
    width: 70%;
  }

  .enviar-in img {
    margin-top: 100%;
  }
}

#chatCon .chat-box {
  /* display: none; */
  width: 100%;
  height: 450px;
  border-radius: 25px 25px 0 0;
  background-color: rgb(255, 255, 255);
}

#chatCon .chat-box .header {
  /* background-color: #3fda73; */
  background-color: white;
  padding: 15px;
  border-radius: 20px 20px 0 0;
  color: rgb(151, 145, 145);
  border-style: none none solid none;
  border-color: rgb(226, 223, 222);
  font-size: 20px;
  font-family: 'Montserrat';
  height: 12%;
}

#chatCon .chat-box .chat-input-area {
  overflow: hidden;
  /* height: 370px;
    padding: 15px; */

  float: left;
  width: 100%;
  height: 12%;

  /* width: 10px;
    height: 20px;
    padding: 15px; */
  border: 1px solid var(--unnamed-color-9e9e9e);
  border: 1px solid #9e9e9e;
  /* border-radius: 10px; */

  background: var(---ed1c24-principal) 0% 0% no-repeat padding-box;
  background: #ed1c24 0% 0% no-repeat padding-box;
  box-shadow: 0px 1px 6px #00000029;
  opacity: 1;
  /* margin-right: 17px; */
}

#chatCon .chat-box .chat-input-area input {
  border: none;
  font: normal normal 300 16px/30px Montserrat;
  letter-spacing: 0.02px;
  color: white;
  opacity: 1;
  height: 100%;
  width: 80%;
  background: var(---ed1c24-principal) 0% 0% no-repeat padding-box;
  background: #ed1c24 0% 0% no-repeat padding-box;
  box-shadow: 0px 1px 6px #00000029;
  opacity: 1;
}

.enviar-in {
  /* top: 20px; */
  float: right;
  width: 20%;
  height: 100%;
  background: var(---ed1c24-principal) 0% 0% no-repeat padding-box;
  background: #ed1c24 0% 0% no-repeat padding-box;
  border-radius: 0px 10px 10px 0px;
  opacity: 1;
}

.enviar-in img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15%;
  width: 55%;
  height: auto;
}

#chatCon .chat-box .chat-input-area input::placeholder {
  color: white;
}

#chatCon .chat-box .msg-area {
  overflow: hidden;
  height: 78%;
  width: 100%;
  padding: 15px;
  overflow: scroll;
}

#chatCon .chat-box .msg-area .left span {
  display: inline-block;
  border-radius: 15px;
  padding: 5px;

  font: var(--unnamed-font-style-normal) normal
    var(--unnamed-font-weight-medium) var(--unnamed-font-size-12) /
    var(--unnamed-line-spacing-30) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-01);
  color: var(--unnamed-color-ffffff);
  text-align: center;
  font: normal normal medium 12px/30px Montserrat;
  letter-spacing: -0.01px;
  color: #ffffff;
  opacity: 1;

  background: var(--unnamed-color-606161) 0% 0% no-repeat padding-box;
  background: #606161 0% 0% no-repeat padding-box;
  opacity: 0.8;
}

#chatCon .chat-box .msg-area .right {
  text-align: right;
}

#chatCon .chat-box .msg-area .right span {
  display: inline-block;
  border-radius: 15px;
  padding: 5px;

  font: var(--unnamed-font-style-normal) normal
    var(--unnamed-font-weight-medium) var(--unnamed-font-size-12) /
    var(--unnamed-line-spacing-30) var(--unnamed-font-family-montserrat);
  letter-spacing: var(--unnamed-character-spacing--0-01);
  color: var(--unnamed-color-ffffff);
  text-align: center;
  font: normal normal medium 12px/30px Montserrat;
  letter-spacing: -0.01px;
  color: #ffffff;
  opacity: 1;

  background: var(--unnamed-color-9e9e9e) 0% 0% no-repeat padding-box;
  background: #9e9e9e 0% 0% no-repeat padding-box;
  opacity: 0.84;
}

#chatCon .chat-box .footer {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#chatCon .chat-box .footer input {
  border: 1px solid red;
  padding: 10px;
  width: 80%;
  border-radius: 15px;
}

#chatCon .chat-box .footer input:foucs {
  outline: none;
}

#chatCon .chat-box .footer button {
  border: none;
  font-size: 22.5px;
  color: lightgreen;
  cursor: pointer;
}

#chatCon .pop {
  width: 100%;
  height: 25%;
  cursor: pointer;
}

#chatCon .pop p {
  text-align: right;
}

#chatCon .pop img {
  border-radius: 50%;
  width: 25%;
}
</pre></body></html>