.zswwc__chat-box-left {
  position: fixed !important;
  bottom: 30px;
  left: 40px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  animation: zswwc__zoom 2s !important;
}

.zswwc__chat-box-right {
  position: fixed !important;
  bottom: 30px;
  right: 40px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  animation: zswwc__zoom 2s !important;
}

.zswwc__chat-box-left p,
.zswwc__chat-box-right p {
  transition: 0.5s all;
  position: relative;
  background-color: #10b981;
  color: #fff;
  font-size: 18px;
  padding: 8px 40px;
  border-radius: 40px;
  filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07))
    drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  margin-bottom: 40px;
  transform: translateY(99px) scale(0);
  opacity: 0;
}

.zswwc__chat-box-left p:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 24px solid #10b981;
  border-right: 12px solid transparent;
  border-top: 12px solid #10b981;
  border-bottom: 20px solid transparent;
  left: 15px;
  bottom: -24px;
}

.zswwc__chat-box-right p:after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 12px solid transparent;
  border-right: 24px solid #10b981;
  border-top: 12px solid #10b981;
  border-bottom: 20px solid transparent;
  right: 15px;
  bottom: -24px;
}

.zswwc__chat-box-left .selected,
.zswwc__chat-box-right .selected {
  transform: translateY(0px) scale(1);
  opacity: 1;
}

.zswwc__chat-box-left img,
.zswwc__chat-box-right img {
  width: 60px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  transform: scale(1);
  animation: zswwc__pulse 2s infinite;
  overflow: visible;
  cursor: pointer;
}

@keyframes zswwc__pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes zswwc__zoom {
  0% {
    opacity: 0;
    transform: translateY(99px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
