.chat-act-bar {
  background: linear-gradient(90deg, #0052d9 0%, #71a7ff 91.79%);
}
.chat-act-bar__inner {
  box-sizing: border-box;
  padding: 20px 0px;
  min-height: 140px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-act-bar__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #fff;
}
.chat-act-bar__link {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #fff;
  cursor: pointer;
}
.chat-act-bar__link::after {
  margin-left: 16px;
  display: block;
  content: "";
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease-in-out;
  background-size: cover;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNiIgaGVpZ2h0PSIzNiIgdmlld0JveD0iMCAwIDM2IDM2IiBmaWxsPSJub25lIj4KICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTI2LjM3ODYgMTYuNTAwMUwxOS4xODk0IDkuMzEwNzhMMjEuMzEwNyA3LjE4OTQ1TDMyLjEyMTMgMTguMDAwMUwyMS4zMTA3IDI4LjgxMDhMMTkuMTg5NCAyNi42ODk1TDI2LjM3ODYgMTkuNTAwMUgzVjE2LjUwMDFIMjYuMzc4NloiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPg==");
}
@media screen and (min-width: 769px) {
  .chat-act-bar__link:hover::after {
    transform: translateX(4px);
  }
}

@media screen and (max-width: 768px) {
  .chat-act-bar__inner {
    min-height: 0px;
    padding: 48px 16px;
    flex-direction: column;
  }
  .chat-act-bar__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
  }
  .chat-act-bar__link {
    margin-top: 24px;
    padding: 9px 44px;
    background: #fff;
    color: #0052d9;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
  }
  .chat-act-bar__link::after {
    content: none;
    display: none;
  }
}