:root {
  --header-background-color: coral;
  --header-text-color: coral;
  --button-color: coral;
  --button-text-color: coral;
  --bubble-background-color: coral;
  --bubble-icon-color: coral;
  --button-border-radius: coral;
  --bubble-options-background-color: #ffffff;
  --bubble-options-text-color: #474747;
}

html,
body,
button,
input,
select {
  font-family: 'Open Sans', sans-serif;
}

* {
  font-family: 'Open Sans', sans-serif;
}
p {
  margin: 0px;
}
body {
  margin: 5px;
}

.embed-chat-bot-window {
  width: 360px !important;
  height: fit-content;
  border-radius: 10px;
  background: url('../assets/images/whatsapp-background-wallpaper.png');
  position: absolute;
  box-shadow: rgba(0, 0, 0, 0.1) 0 12px 24px 0;
}
.bot-window {
  width: 360px !important;
  height: fit-content;
  border-radius: 10px;
  background: url('../assets/images/whatsapp-background-wallpaper.png');
  position: absolute;
  bottom: 120px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 12px 24px 0;
}

.widget-close-btn {
  color: rgb(255, 255, 255);
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  opacity: 0.4;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.widget-close-btn::before {
  transform: rotate(45deg);
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: black;
  display: block;
  border-radius: 2px;
}

.widget-close-btn::after {
  transform: rotate(-45deg);
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: black;
  display: block;
  border-radius: 2px;
  color: black;
}

.bot-window-top-div {
  display: flex;
  border-radius: 10px 10px 0 0;
  padding: 24px 20px;
  background-color: var(--header-background-color);
}
.bot-window-top-div-img-div {
  width: 52px;
  height: 52px;
  display: block;
  position: relative;
  flex-shrink: 0;
}
.bot-window-top-div-active-status::before {
  content: '';
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  background-color: rgb(74, 213, 4);
  display: block;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(9, 94, 84);
  border-image: initial;
}
.bot-window-top-div-img-data {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
  border-radius: 50%;
}
.bot-window-top-div-image {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.br-50 {
  border-radius: 50% !important;
}
.bot-window-top-div-details {
  padding: 0 16px;
  align-self: center;
}

.bot-window-top-div-details-name {
  font-size: 16px;
  color: var(--header-text-color);
  font-weight: 700;
}

.bot-window-top-div-details-reply-time {
  font-size: 13px;
  margin-top: 4px;
  color: var(--header-text-color);
  word-break: break-all;
}
.widget-message-div {
  min-height: 190px;
  max-height: 195px;
  overflow-y: scroll;
  padding-bottom: 5px;
}

.widget-message-div::-webkit-scrollbar {
  display: none;
}
.welcome-message-div {
  display: flex;
  background-color: rgb(255, 255, 255);
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.13) 0 1px 0.5px;
  margin-left: 20px;
  max-width: calc(100% - 110px);
  padding: 7px 14px 6px;
  border-radius: 0 8px 8px;
  margin-top: 20px;
}
.bot-window-details-before-message {
  margin: -7px 0 0 -23px;
}
.pl-10 {
  padding-left: 10px;
}

.bot-window-details-message-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.bot-window-details-message {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: rgb(17, 17, 17);
  padding: 5px 5px 5px 0;
  white-space: pre-line;
  word-break: break-word;
  text-align: justify;
}

.bot-window-details-message-time {
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-right: -8px;
  margin-bottom: -4px;
}
.bot-window-button {
  background-color: white;
  border-radius: 0 0 10px 10px;
  padding: 20px;
}

.bot-window-button-details {
  font-size: 15px;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border-radius: var(--button-border-radius);
  background-color: var(--button-color);
}

.bot-window-button-details svg {
  fill: var(--button-text-color);
}

#button--whatsapp-icon {
  display: none;
}

.ml-10 {
  margin-left: 10px;
}
.embed-bubble-chat-bot-window {
  width: 360px !important;
  height: fit-content;
  border-radius: 10px;
  background: url('../assets/images/whatsapp-background-wallpaper.png');
  position: absolute;
  box-shadow: rgba(0, 0, 0, 0.1) 0 12px 24px 0;
}

.position-absolute {
  position: absolute;
}
.common-bottom {
  bottom: 50px;
}

.template-widget-native-notification::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: rgb(255, 0, 0);
  display: block;
  position: absolute;
  z-index: 1;
  right: 5px;
  bottom: 48px;
  border-radius: 50%;
}

.template-widget-notification::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: rgb(255, 0, 0);
  display: block;
  position: absolute;
  z-index: 1;
  right: 4px;
  top: 4px;
  border-radius: 50%;
}

.template-widget-button {
  color: white;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.15) 0 3px 12px;
  background-color: var(--bubble-background-color);
  transition: opacity 0.3s ease;
}

.template-widget-button.options-active {
  opacity: 0.7;
  cursor: default;
}

.p-15 {
  padding: 15px;
}
.d-flex {
  display: flex;
}
.widget-bubble-icon-with-text {
  padding: 10px 5px 0 15px;
}
.widget-bubble-text {
  font-size: 15px;
  margin-left: 4px;
  font-weight: 700;
  line-height: 20px;
  padding-top: 8px;
  padding-right: 15px;
  color: var(--bubble-icon-color);
}

#parent-container {
  display: none;
  -webkit-animation: slide-in-bottom 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-bottom 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
#parent-container-embed-bubble {
  display: none;
  -webkit-animation: slide-in-bottom 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-bottom 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
#parent-bottom-icon {
  display: none;
}
#widget-close-btn {
  display: none;
}
#button-text {
  color: var(--button-text-color);
}
#bottom-button--without-text {
  display: none;
}

#bottom-button--without-text svg {
  fill: var(--bubble-icon-color);
}
#bottom-button--with-text {
  display: none;
}

#bottom-button--with-text svg {
  fill: var(--bubble-icon-color);
  height: 20px;
  width: 20px;
}

@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.vector-icon {
  position: absolute;
  height: 75%;
  width: 75%;
  top: 12.5%;
  right: 12.5%;
  bottom: 12.5%;
  left: 12.5%;
  max-width: 100%;
  overflow: hidden;
  max-height: 100%;
}

.icons {
  width: 24px;
  position: relative;
  height: 24px;
  overflow: hidden;
  flex-shrink: 0;
  color: var(--bubble-options-text-color);
}


.bubble-option-text {
  position: relative;
  font-weight: 600;
  font-size: 14px;
}

.icons-parent {
  display: flex;
  flex-direction: row;
  color: var(--bubble-options-text-color);
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
  gap: 2px;
}

.frame-parent {
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 16, 11, 0.1);
  border-radius: 10px;
  padding: 10px 13px;
  box-sizing: border-box;
  text-align: left;
  font-size: 12px;
  font-family: Mulish, serif;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

#bubble-options-container {
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 95%;
  z-index: 999;
  margin-right: 5px;
}

.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.frame-child {
  width: 100%;
  margin-block: 5px;
  opacity: 0.3;
  color: var(--bubble-options-text-color);
  height: 1px;
}
