/* Основные стили плагина */
.fsb-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.fsb-main-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Пульсация */
.fsb-main-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}




.pls {
  position: relative; // Нужно будет в будущем, для позиционирования эффекта
  text-align: center; 
  padding: 10px; // Отступ можете подобрать свой.
  border-radius: 50%; // Делаем икноку круглой
  background: #a4845a;
  width: 80px;
  height: 80px;
}
.pls::after,
.pls::before {
  content: '';
  position: absolute;
  border: 2px solid #a4845a;
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pls 2.5s linear infinite;
}

.pls::after {
  animation-delay: 1.25s;
}

@keyframes pls {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}




.fsb-buttons {
    position: absolute;
    bottom: 70px;
    right: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fsb-container.active .fsb-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fsb-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    cursor: pointer;
}

.fsb-button:hover {
    transform: scale(1.1);
}

.fsb-whatsapp {
    background: #25D366;
    cursor: pointer !important;
}

.fsb-telegram {
    background: #0088cc;
    cursor: pointer !important;
}

.fsb-phone {
    background: #4CAF50;
    cursor: pointer !important;
}