/* =======================================================
    WHATSAPP CHAT WIDGET
======================================================= */
.wa-chat-widget {
  background: transparent;
  /* background: lightsalmon; */
}

/* Whatsapp Chat Send Button */
.wa-chat-widget .wa-chat-send {
  background: #4DC247;
  /* background: lightseagreen; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  position: fixed;
  z-index: 99999;
  right: 20px;
  bottom: 0;
  margin-bottom: 30px;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease-in-out;
}
.wa-chat-widget .wa-chat-send .wa-chat-send-icon {
  width: auto;
  height: 30px;
  margin-right: 10px;
}
.wa-chat-widget .wa-chat-send .wa-chat-send-icon path {
  fill: #fff;
}
.wa-chat-widget .wa-chat-send .wa-chat-send-text {
  font-size: 20px;
  color: #fff;
  display: block;
  /* flex-grow: 1; */
}

@media only screen and (max-width: 669px) {
  .voucher__promo.active + .wa-chat-widget .wa-chat-send {
      bottom: 120px;
  }
}

@media only screen and (max-width: 768px) {
  .wa-chat-widget .wa-chat-send .wa-chat-send-icon {
      height: 20px;
  }
  .wa-chat-widget .wa-chat-send .wa-chat-send-text {
      font-size: 15px;
  }
}



/* Whatsapp Chat Box */
.wa-chat-widget .wa-chat-box {
  /* background: lightskyblue; */
  width: 95%;
  max-width: 360px;
  margin: 0 auto;
  position: fixed;
  z-index: 9999;
  right: 20px;
  bottom: 0;
  border-radius: 12px;
  overflow-x: hidden;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  margin-bottom: 0;
  transition: all 0.35s ease-out;
}

.wa-chat-widget.show .wa-chat-box {
  opacity: 1;
  visibility: visible;
  margin-bottom: 90px;
}

@media only screen and (max-width: 669px) {

  .voucher__promo.active + .wa-chat-widget .wa-chat-box {
      bottom: 120px;
  }

}

@media only screen and (max-width: 500px) {
  .wa-chat-widget .wa-chat-box {
      width: auto;
      max-width: none;
      left: 20px;
      right: 20px;
  }
}


/* Whatsapp Chat Box Header */

.wa-chat-widget .wa-chat-box .wa-chat-box-header {
  background: #0A5F54;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-header .wa-chat-box-brand-icon {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 25px;
  box-shadow: -2px 2px 6px rgb(0 0 0 / 20%);
}

.wa-chat-widget .wa-chat-box .wa-chat-box-header .wa-chat-box-brand-details {
  width: 100%;
  padding: 0;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-header .wa-chat-box-brand-details .wa-chat-box-brand-name {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-header .wa-chat-box-brand-details .wa-chat-box-brand-subtitle {
  font-size: 14px;
  color: #fff;
  line-height: 1.25;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-header .wa-chat-box-header-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 30px;
  line-height: 0.6;
  vertical-align: top;
  display: inline-block;
  cursor: pointer;
}


/* Whatsapp Chat Box Content */

.wa-chat-widget .wa-chat-box .wa-chat-box-content {
  background-color: #e7e7e7;
  background-image: url("https://katsudoto.id/media/kat/bg-wa-box-fix.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: repeat-y;
  /* background: chocolate; */
  padding: 10px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-content .wa-chat-box-content-chat {
  background: #fff;
  margin: 10px 0;
  margin-right: auto;
  margin-left: 0;
  border-radius: 12px;
  padding: 10px 15px;
  display: inline-block;
  position: relative;
  text-align: left;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-content .wa-chat-box-content-chat.sender {
  margin-left: auto;
  margin-right: 0;
  background: #fff;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-content .wa-chat-box-content-chat .wa-chat-box-content-chat-nickname {
  color: #00000075;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: bold;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-content .wa-chat-box-content-chat .wa-chat-box-content-chat-text {
  color: #111111;
  font-size: 15px;
  line-height: 1.5;
}


/* Whatsapp Chat Box Footer */

.wa-chat-widget .wa-chat-box .wa-chat-box-footer {
  background: #fff;
  padding: 20px;
  text-align: center;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-footer .wa-chat-box-footer-send {
  background: #4DC247;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  margin-bottom: 10px;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-footer .wa-chat-box-footer-send .wa-chat-box-footer-send-icon {
  width: 20px;
  height: 20px;
  margin-top: -2px;
  margin-right: 5px;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-footer .wa-chat-box-footer-send .wa-chat-box-footer-send-icon path {
  fill: #fff;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-footer .wa-chat-box-footer-send .wa-chat-box-footer-send-text {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-footer .wa-chat-box-footer-watermark {
  font-size: 13px;
  color: #636363;
  font-style: italic;
  display: inline-block;
}

.wa-chat-widget .wa-chat-box .wa-chat-box-footer .wa-chat-box-footer-watermark a {
  font-size: inherit;
  color: #006EFF6E;
  font-style: inherit;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

