/*******CTAC*********/
@keyframes pulse {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33.3333% {
    transform: translate3d(0, 0, 0) scale(0.5);
  }
  66.6666% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes rungdui {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.cta-box {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: transparent;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cta-box .cta-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(19deg, rgb(0, 135, 92) 0%, rgb(143, 202, 28) 100%) !important;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.cta-box .cta-toggle:hover {
  background-color: #3a7bd5;
  animation: none;
}
.cta-box .cta-toggle .bi-headset,
.cta-box .cta-toggle .bi-x {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cta-box .cta-toggle .bi-x {
  opacity: 0;
  transform: rotate(-180deg);
  font-size: 2rem;
}
.cta-box .cta-toggle.active .bi-headset {
  opacity: 0;
  transform: rotate(180deg);
}
.cta-box .cta-toggle.active .bi-x {
  opacity: 1;
  transform: rotate(0);
  display: block !important;
}
.cta-box .cta-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 10px;
  width: 45px;
}
.cta-box.expanded .cta-content {
  max-height: 400px;
}
.cta-box .cta-items {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cta-box .cta-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}
.cta-box .cta-item .icon {
  font-size: 20px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-box .cta-item .icon svg {
  width: 20px;
  height: 20px;
}
.cta-box .cta-item .text {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  margin-right: 10px;
}
.cta-box .cta-item .text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}
.cta-box .cta-item:hover .text {
  opacity: 1;
  visibility: visible;
}
.cta-box .cta-item.phone {
  background-color: #0c0;
}
.cta-box .cta-item.phone:hover {
  filter: hue-rotate(45deg);
}
.cta-box .cta-item.phone:hover .icon svg {
  transform: scale(1.2);
  animation: 0.5s ease 0s infinite rungdui;
}
.cta-box .cta-item.zalo {
  background-color: #0165f7;
}
.cta-box .cta-item.zalo:hover {
  filter: hue-rotate(45deg);
}
.cta-box .cta-item.zalo:hover .icon svg {
  transform: scale(1.2);
  animation: 0.5s ease 0s infinite rungdui;
}
.cta-box .cta-item.email {
  background-color: #6a6a6a;
}
.cta-box .cta-item.email:hover {
  filter: hue-rotate(45deg);
}
.cta-box .cta-item.email:hover .icon svg {
  transform: scale(1.2);
  animation: 0.5s ease 0s infinite rungdui;
}
.cta-box .cta-item.facebook {
  background-color: #0080f7;
}
.cta-box .cta-item.facebook:hover {
  filter: hue-rotate(45deg);
}
.cta-box .cta-item.facebook:hover .icon svg {
  transform: scale(1.2);
  animation: 0.5s ease 0s infinite rungdui;
}

@media (max-width: 768px) {
  .cta-box {
    bottom: 20px;
    right: 20px;
  }
}/*# sourceMappingURL=wvcss.css.map */