.wa-widget-content {
  margin: 1rem;
  overflow: hidden;
  font-family: helvetica, arial, sans-serif;
  font-size: 15px;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}
.wa-widget-content *,
.wa-widget-content ::after,
.wa-widget-content ::before {
  box-sizing: border-box;
}

.wa-widget {
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 0;
}
.wa-widget:last-child {
  margin-right: 0;
}
.wa-widget.expanded {
  border-radius: 1rem;
}
.wa-widget .wa-widget-content {
  position: absolute;
  right: 0;
  bottom: 6rem;
  z-index: -1;
  width: 360px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s linear;
}
.wa-widget .wa-widget-content.expanded {
  z-index: 99;
  visibility: visible;
  opacity: 1;
}

.wa-widget-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 2rem;
  height: 2rem;
  padding: 1rem;
  margin: 1rem;
  text-align: center;
  background-color: white;
  border-radius: 9rem;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}
.wa-widget-toggle::before {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  content: "";
  background-color: red;
  border-radius: 10px;
}

.chat-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  color: white;
  background-color: rgb(9, 94, 84);
}
.chat-header .chat-admin-picture {
  position: relative;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
}
.chat-header .chat-admin-picture img {
  width: 100%;
  height: 100%;
}
.chat-header .chat-admin-picture::before {
  position: absolute;
  right: 2.3333333333px;
  bottom: 2.3333333333px;
  width: 7px;
  height: 7px;
  content: "";
  background-color: #4fce5d;
  border: 2px solid rgb(9, 94, 84);
  border-radius: 7px;
}
.chat-header h4,
.chat-header p {
  margin: 0.2rem;
}

.chat-content {
  padding: 1rem;
  background-color: #d1ecd4;
}
.chat-content .chat-admin-picture {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
}

.chat-item {
  display: inline-flex;
  align-items: flex-end;
}
.chat-item p {
  padding: 1rem;
  margin: 0 2rem 0.5rem 0;
  background-color: white;
  border-radius: 1rem;
}
.chat-item p:first-child {
  border-top-left-radius: 0;
}

.chat-form {
  padding: 0.25rem;
  background-color: white;
}
.chat-form textarea,
.chat-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
  font-family: inherit;
  resize: none;
  background-color: inherit;
  transition: all 0.25s linear;
}
.chat-form textarea,
.chat-form input,
.chat-form input:focus {
  border: 1px solid transparent;
  border-radius: 0.5rem;
  outline: 0;
}
.chat-form .chat-send {
  width: 100%;
  padding: 0.75rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  background-color: #4fce5d;
  border: 0;
  border-radius: 0.5rem;
  outline: 0;
}
.chat-form .invalid {
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.25);
}

@media (width <= 460px) {
  .wa-widget {
    width: 100%;
  }
  .wa-widget-toggle {
    float: right;
  }
  .wa-widget-content {
    right: 1rem;
    left: 1rem;
    width: auto;
  }
}

/*# sourceMappingURL=whatsapp-widget.css.map */
