html.modal-chat-abierto {
  overflow: hidden;
}
.chat-falso-img {
  position: fixed;
  z-index: 99999;
  right: 30px;
  bottom: 50px;
}
.chat-falso-img img {
  cursor: pointer;
}
#modal-chat {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
}
#modal-chat[hidden] {
  display: none;
}
#modal-chat .modal-inner {
  position: relative;
  width: 100%;
  max-width: 450px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: 24px;
  border-radius: 10px;
  background-color: #ffffff;
}
#modal-chat .modal-inner .modal-cerrar {
  position: absolute;
  top: 24px;
  right: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent !important;
}
#modal-chat .modal-inner #modal-chat-titulo {
  margin: 0 40px 24px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
#modal-chat .modal-inner #modal-chat-texto {
  margin: 0 0 32px;
  color: #666666;
  font-size: 16px;
  line-height: 1.5;
}
#modal-chat .modal-inner .modal-botones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
#modal-chat .modal-inner .modal-botones .oup-button {
  margin: 0;
  background-color: #4775ae !important;
}
#modal-chat .modal-inner .modal-botones .oup-button:hover {
  background-color: #2766a8 !important;
}
