.messengers {
  position: fixed;
  right: 40px;
  bottom: 30px;
  z-index: 1000
}
.messengers__list {
  display: flex;
  flex-direction: column;
  align-items: flex-end
}
.messengers__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-top: 7px;
  padding: 9px 9px 9px 20px;
  border-radius: 102px;
  transition: width .3s
}
.messengers__item_blue {
  background-color: #2aabee
}
.messengers__item_green {
  background-color: #25d366
}
.messengers__text {
  visibility: hidden;
  opacity: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.88px;
  color: #fff
}
.messengers__icon {
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%)
}
.messengers__icon_tel {
  right: 12px
}
@media (min-width:768px) {
  .messengers__item:hover {
    width: 204px
  }
  .messengers__item:hover .messengers__text {
    visibility: visible;
    opacity: 1;
    transition: opacity .2s .2s
  }
}
@media (max-width:768px) {
  .messengers {
    right: 10px;
    bottom: 10px
  }
  .messengers__item {
    margin-top: 5px
  }
}