.button-chat-inited {
  overflow: unset;
}
.button-chat-inited .page-main > .columns,
.button-chat-inited .page-footer {
  overflow-x: hidden;
}
.button-chat {
  position: sticky;
  left: 100%;
  top: 360px;
  z-index: 50;
  transition: width 0.3s, opacity 0.3s, visibility 0.3s;
  margin-bottom: 30px;
  margin-top: -195px;
  width: 0;
  height: 165px;
  opacity: 0;
  visibility: hidden;
}
.button-chat.init {
  opacity: 1;
  visibility: visible;
}
.button-chat.expanded {
  transform: translateX(0);
  width: 145px;
}
.button-chat.expanded .chat-lists--container {
  transition: opacity 0.4s ease;
  opacity: 1;
}
.button-chat.expanded .chat-icon--img {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}
.button-chat.expanded .chat-icon--close {
  opacity: 1;
}
.button-chat.expanded .chat-icon:hover .chat-icon--close {
  transform: scale3d(0.9, 0.9, 0.9);
}
.button-chat.expanded .list-chat .block-list-chat {
  transform: translate3d(0, 0, 0);
}
.button-chat.expanded .list-chat:nth-child(1) .block-list-chat {
  transition: 0.4s ease;
}
.button-chat.expanded .list-chat:nth-child(2) .block-list-chat {
  transition: 0.4s 0.05s ease;
}
.button-chat.expanded .list-chat:nth-child(3) .block-list-chat {
  transition: 0.4s 0.1s ease;
}
.button-chat .chat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: calc(100% - 1px);
  transform: translate3d(0, -50%, 0);
  width: 40px;
  height: 40px;
  border-radius: 10px 0 0 10px;
  background-color: #000;
  color: #fff;
  transition: opacity 0.4s ease;
  cursor: pointer;
}
.button-chat .chat-icon:hover .chat-icon--img {
  transform: scale3d(0.9, 0.9, 0.9);
}
.button-chat .chat-icon--img {
  height: 18px;
  user-select: none;
  -webkit-user-select: none;
  transition: opacity 0.6s ease, transform 0.4s ease;
}
.button-chat .chat-icon--close {
  position: absolute;
  height: 18px;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.4s ease;
}
.button-chat .chat-icon--close::before,
.button-chat .chat-icon--close::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 18px;
  color: #fff;
  background-color: #fff;
}
.button-chat .chat-icon--close::before {
  transform: rotate(45deg);
}
.button-chat .chat-icon--close::after {
  transform: rotate(-45deg);
}
.button-chat .chat-lists {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}
.button-chat .chat-lists--container {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: normal;
  transition: opacity 0.4s 0s ease;
  opacity: 0;
}
.button-chat .list-chat {
  font-family: 'DBHelvethaicaX-Light';
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #FFF;
  white-space: nowrap;
  overflow: hidden;
}
.button-chat .list-chat:not(:last-child) {
  margin-bottom: 25px;
}
.button-chat .block-list-chat {
  transition: transform 0.6s 0s ease-out;
  transform: translate3d(0, 100%, 0);
}
.button-chat .list-chat--text {
  font-family: 'DBHelvethaicaX-Light';
  color: inherit;
}
.button-chat .list-chat--icon,
.button-chat .list-chat--text {
  display: inline-block;
  vertical-align: middle;
}
.button-chat .list-chat--icon {
  margin-right: 5px;
}
.button-chat .list-chat--icon img {
  height: 15px;
}
@media (min-width: 767px) {
  .button-chat .chat-icon--close::after,
  .button-chat .chat-icon--close::before {
    height: 21px;
  }
  .button-chat .chat-icon--img {
    height: 21px;
  }
  .button-chat .chat-icon--close {
    height: 21px;
  }
  .button-chat .list-chat:not(:last-child) {
    margin-bottom: 15px;
  }
  .button-chat .list-chat--icon {
    margin-right: 5px;
  }
}
