.free_users_chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  width: 360px;
  max-width: 100%;
}
.free_users_chat .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
  box-sizing: border-box;
  width: 66px;
  height: 66px;
  background: rgb(0, 0, 0);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.14);
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.free_users_chat .icon .chat_icon {
  width: 30px;
  height: 30px;
}
.free_users_chat .icon .chat_close {
  width: 36px;
  height: 36px;
  display: none;
}
.free_users_chat .tooltip {
  position: absolute;
  right: 86px;
  bottom: 0;
  width: 360px;
  max-width: 100%;
  box-sizing: border-box;
  padding: 30px;
  border-radius: 12px;
  background-color: #000000;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  transform: translateY(10%);
  opacity: 0;
  pointer-events: none;
}
.free_users_chat .tooltip .title {
  margin-bottom: 20px;
  color: #ffffff;
  display: block;
  font-weight: 700;
}
.free_users_chat .tooltip .title img {
  width: 210px;
  height: 12px;
}
.free_users_chat .tooltip p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
}
.free_users_chat .tooltip .buttons {
  display: flex;
  gap: 20px;
}
.free_users_chat .tooltip .buttons a {
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  padding: 10px 18px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  color: #ffffff;
  min-width: 100px;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
}
.free_users_chat .tooltip .buttons a.white {
  background: #ffffff;
  color: #000000;
  width: 175px;
  padding: 10px 0;
}
.free_users_chat .tooltip .buttons a.white:hover {
  opacity: 0.8;
}
.free_users_chat .tooltip .buttons a.transparent:hover {
  background: #ffffff;
  color: #000000;
}
.free_users_chat.active .chat_icon {
  display: none;
}
.free_users_chat.active .chat_close {
  display: block !important;
}
.free_users_chat.active .tooltip {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  opacity: 1;
  pointer-events: unset;
}
