.callme {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
.bot-button {
    display: flex;
    padding: 20px;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

   .phone-btn {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%; /* Делаем круг */
  background-color: #1886cb; /* Синий цвет */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.2s;
}

.phone-btn:hover {
    background-color: #1a5dc5;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(37, 117, 252, 0.5);
    animation: pulse 0.6s ease-in-out;

}

.phone-btn:active {
  transform: scale(0.95);
}

.phone-icon {
  font-size: 30px;
  color: #e9eaf1;
}

.bounce-left {
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    color: #c2c6d7;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding-right: 20px;
      /* Запускаем анимацию */
      animation: bounce-left 1.5s ease-in-out infinite;
    }

    @keyframes bounce-left {
      0% { transform: translateX(0px); opacity: 1; }
      50% { transform: translateX(15px); opacity: 1; }
      100% { transform: translateX(0); opacity: 1; }
    }

    @media(max-width: 768px) {

     .phone-btn {
    width: 50px;
    height: 50px;
  }
  .phone-icon {
    font-size: 20px;
  }
  /*.bounce-left {*/
  /*    display: none;*/
  /*  }*/
}

