.chat-container {
  font-family: $font-family-default;
  font-size: 14px;

  @media (max-width: 767px) {
    font-size: 1rem;
  }

  *, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  ol, ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  a {
    color: $chat-text-inverse;
    text-decoration: none;

    &:hover {
      color: $chat-text;
    }
  }

  img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
  }

  input:focus {
    box-shadow: none;
    outline: 0;
  }
}

// EMOJI MENU (overriding)
body .emoji-menu {
  margin-left: -21px;
  margin-top: -271px;
  width: ($chat-popup-width - 2px);
  z-index: 9999;

  .emoji-menu-tab:hover {
    cursor: pointer;
  }

  @media (max-width: 767px) {
    width: 100%;
  }
}
