@-webkit-keyframes chat_inv_title_scroll {
  0% {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes chat_inv_title_scroll {
  0% {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.chat-popup-container.chat-popup-container--offer {
  overflow: visible;
  contain: layout;
}
.chat-popup-container--offer-xmas::before {
  content: "";
  background:  url(https://static.behappy2day.com/i/santacornerhat.png);
  display: block;
  background-size: 100% auto;
  position: absolute;
  top: -12px;
  left: -40px;
  width: 96px;
  height: 96px;
  z-index: 1;
}
.chat-popup-container--offer .chat-popup-container-title {
  padding-left: 0;
  width: 235px;
  color: #cc0000;
  overflow: hidden;
  font-size: 24px!important;
}
.chat-popup-container--offer .chat-popup-container-title > span {
  white-space: nowrap;
  -webkit-animation: chat_inv_title_scroll 20s linear infinite;
  animation: chat_inv_title_scroll 20s linear infinite;
  display: inline-block;
  z-index: 0
}