.fly-chat-block__btn-wrapper {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.fly-chat-block__btn-wrapper a.fly-chat {
  display: flex;
}

.fly-chat_noicon {
  width: fit-content;
  min-width: 44px;
}

.fly-chat_noicon {
  animation: flickering 2s ease infinite;
}

.fly-chat_noicon:hover {
  color: #fff;
}

.fly-chat_noicon .fly-chat__text {
  margin-left: 0;
}

@media (max-width: 850px) {
  .fly-chat-block__btn-wrapper .fly-chat {
    font-size: 12px;
  }
}

@keyframes flickering {
  0% {
    background: #596175;
  }

  50% {
    background: #57617a80;
  }

  100% {
    background: #596175;
  }
}
