/*
CTC Separate Stylesheet
Updated: 2025-08-29 19:45:00
*/

/**
 * Whatsapp chat
 */

.wc_whatsapp_app {
  position: fixed;
  bottom: 100px;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.wc_whatsapp_app.left {
  left: 30px;
}

.wc_whatsapp_app.right {
  right: 30px;
}

.wc_whatsapp {
  z-index: 10;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 2px 2px 20px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.wc_whatsapp:hover,
.wc_whatsapp:focus {
  background-color: #179345;
}

.wc_whatsapp img {
  width: 30px;
  height: 30px;
  display: block;
}

/* Optional pulse effect */
.wc_whatsapp_app::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 70px;
  height: 70px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

@keyframes pulse-border {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.wc_whatsapp_secondary {
  width: 165px;
  position: absolute;
  right: 75px;
  text-align: center;
}
