.btn-messengers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-messengers__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  overflow: hidden;
  border-radius: 100%;
  border: none;
  background: none;
  color: #ffffff;
  transition: all 0.5s ease 0s;
}

.btn-messengers__link:hover {
  transition: all 0.5s ease 0s;
  -webkit-box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.4);
}

.footer .btn-messengers__link:hover {
  transition: all 0.5s ease 0s;
  -webkit-box-shadow: 0px 0px 14px 2px rgba(255, 255, 255, 0.4);
  -moz-box-shadow: 0px 0px 14px 2px rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0px 14px 2px rgba(255, 255, 255, 0.4);
}

.btn-messengers__link img,
.btn-messengers__link svg {
  display: inline-block;
  width: 100%;
}

.btn-messengers__link--whatsapp {
  background-color: #00bd24;
}

.btn-messengers__link--telegram {
  padding: 0;
}

.btn-messengers__link--telegram-bot {
  padding: 2px;
}

.btn-messengers__link--telegram,
.btn-messengers__link--telegram-bot {
  background-color: #29b6f6;
}

.btn-messengers__link--max-bot {
  padding: 0;
}

.btn-messengers__link--max,
.btn-messengers__link--max-bot {
  background: linear-gradient(210deg,
  #8a2eff 0%,
  #6b3dff 30%,
  #3f6bff 60%,
  #00c2ff 100%
  );
}

