*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
.msger {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background-color: #FFF;
  box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: all;
}
.msger-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 2px solid #ddd;
  background: #8c939c;
  color: #FFF;
}
.msger-header-title {
  display: flex;
  align-items: center;
}
.msger-header-title img {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-right: 10px;
}
.msger-header-options img {
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.msger-chat {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}
.msger-chat::-webkit-scrollbar {
  width: 6px;
}
.msger-chat::-webkit-scrollbar-track {
  background: #ddd;
}
.msger-chat::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}
.msg {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
.msg:last-of-type {
  margin: 0;
}
.msg-bubble {
  max-width: 450px;
  padding: 15px;
  border-radius: 15px;
  background: #ececec;
}
.msg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.msg-info-name {
  margin-right: 10px;
  font-weight: bold;
}
.msg-info-time {
  font-size: 0.85em;
}
.msg-text {
  font-weight: normal;
}
.left-msg .msg-bubble {
  border-bottom-left-radius: 0;
}
.right-msg {
  flex-direction: row-reverse;
}
.right-msg .msg-bubble {
  background: #579ffb;
  color: #fff;
  border-bottom-right-radius: 0;
}
.right-msg .msg-img {
  margin: 0 0 0 10px;
}
.msger-inputarea {
  padding: 10px;
  border-top: 2px solid #ddd;
  background: #eee;
  display: flex;
  justify-content: space-evenly;
}
.msger-inputarea .button {
  margin-left: 10px;
}
.msger-input {
  background: #ddd;
  padding: 10px;
  font-size: 1em;
  float: left;
  width: 60%;
}
.msger-chat {
  background-color: #fcfcfe;
}
#openChatButton {
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
  pointer-events: all;
}
#openChatButton img {
  width: 50px;
  height: 50px;
}
.mobile-view.portrait #openChatButton {
  top: 23px;
  right: 10px;
  bottom: auto;
}
.mobile-view.portrait #openChatButton img {
  width: 39px;
  height: 39px;
}
.mobile-view.landscape #openChatButton {
  top: 23px;
  right: 10px;
  bottom: auto;
}
.mobile-view.landscape #openChatButton img {
  width: 39px;
  height: 39px;
}
#badge_message_count {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 20px;
  height: 20px;
  background: linear-gradient(to bottom, #f1b01b 24%, #f8710a 100%);
  color: #FFF;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  line-height: 20px;
  display: none;
}
.chat_gaming .msger {
  top: calc((100% - 90%) / 2);
  height: 90%;
  border: 3px solid #ddd;
  background-color: #0b1d31;
  outline: 2px solid #000000;
  border-radius: 15px;
}
.chat_gaming .msger-header {
  background: #0a1a2e;
  border: 2px solid #000000;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.chat_gaming .msger-header-title {
  font-family: LilitaOne;
  font-size: 20px;
}
.chat_gaming .msger-header-title img {
  margin-right: 5px;
}
.chat_gaming .msger-header-options img {
  width: 20px;
  height: 20px;
}
.chat_gaming .msger-chat {
  background-color: #0b1d31;
}
.chat_gaming .msg-info-name {
  color: #4addf7;
  text-shadow: #000000 2px 0px 0px, #000000 1.75517px 0.958851px 0px, #000000 1.0806px 1.68294px 0px, #000000 0.141474px 1.99499px 0px, #000000 -0.832294px 1.81859px 0px, #000000 -1.60229px 1.19694px 0px, #000000 -1.97998px 0.28224px 0px, #000000 -1.87291px -0.701566px 0px, #000000 -1.30729px -1.5136px 0px, #000000 -0.421592px -1.95506px 0px, #000000 0.567324px -1.91785px 0px, #000000 1.41734px -1.41108px 0px, #000000 1.92034px -0.558831px 0px;
  font-family: LilitaOne;
  font-size: 18px;
}
.chat_gaming .msg-info-time {
  font-size: 0.8em;
  font-family: LilitaOne;
}
.chat_gaming .msg-text {
  font-size: 1.1em;
  font-family: LilitaOne;
}
.chat_gaming .left-msg .msg-text {
  color: #000;
}
.chat_gaming .msger-inputarea {
  border-top: unset;
  background: none;
}
.chat_gaming .msger-input {
  border: 1px solid #21344c;
  background-color: #06101c;
  color: #FFF;
}
.chat_gaming .button_icon {
  border-radius: 10px;
}
.chat_gaming .button_send {
  background-color: #15b50d;
}
.chat_gaming .button_emoticons {
  background-color: #084c82;
}
.chat_gaming .msger-chat {
  background-color: transparent;
}
.chat_old .msger {
  top: auto;
  bottom: 0;
  height: 80%;
  max-width: 350px;
  border-radius: 50px;
}
.chat_old .msger-header {
  display: none;
}
.chat_old .msger-chat {
  border-radius: 30px;
}
.chat_old .msg {
  display: unset;
  float: left;
  width: 100%;
}
.chat_old .msg-info {
  display: unset;
  float: left;
  margin-bottom: 0;
}
.chat_old .msg-info-time {
  display: none;
}
.chat_old .msg-bubble {
  padding: 0 15px;
}
.chat_old .right-msg {
  flex-direction: unset;
}
.chat_old .right-msg .msg-bubble {
  background: unset;
  color: unset;
}
.chat_old .msger-inputarea {
  background: #ddd;
  padding: 0;
}
.chat_old .msger-input {
  border: 0;
}
.chat_old .button {
  padding: 5px;
  background: none;
  border: 0;
  filter: grayscale(80%);
}
.chat_old .button img {
  width: 20px;
  filter: brightness(46%) invert(100%);
}
.chat_minimal .msger {
  position: absolute;
  top: 0;
  right: 80px;
  max-width: 400px;
  height: 60%;
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border: 2px solid #FFF;
}
.chat_minimal .msger-header {
  background-color: #032d12;
  border-bottom: 0;
}
.chat_minimal .msger-chat {
  background-color: rgba(0, 0, 0, 0.8);
}
.chat_minimal .msger-inputarea {
  background: #454943;
  border-top: 0;
  display: flex;
  align-items: center;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}
.chat_minimal .msger-inputarea input {
  width: 89%;
}
.chat_minimal .msger-inputarea .button_icon {
  width: 50px;
  padding: 0;
  margin-left: 10px;
}
.chat_minimal .msger-inputarea button {
  background: transparent;
  border: 0;
}
.mobile-view.portrait .chat_minimal .msger {
  top: 0;
  right: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 141;
}
.mobile-view.landscape .chat_minimal .msger {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 50%;
  width: 50%;
  height: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 141;
}
/*# sourceMappingURL=chat.css.map */