body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  font-family: system-ui;
  font-weight: 200; }
  body .title {
    color: #fff;
    padding: 5px 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px; }
  body .app {
    height: 300px;
    width: 300px;
    display: flex;
    flex-direction: column;
    transition: all .4s ease; }
  body .title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    color: #fff;
    background: #6db8a7;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-align: center; }
  body .message {
    margin: 15px 0; }
  body .message div:nth-child(1) {
    font-size: 11px;
    opacity: 0.9;
    margin-bottom: 6px; }
  body .message div:nth-child(2) {
    background: #6db8a7;
    color: #fff;
    display: inline;
    padding: 4px 8px;
    border-radius: 8px; }
  body .message-list {
    box-sizing: border-box;
    padding: 0 0 0 6px;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    background: white;
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.05); }
  body .send-message-form {
    background: #f5f5f5;
    display: flex;
    box-sizing: border-box;
    height: 60px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.06); }
    body .send-message-form input {
      width: 100%;
      padding: 15px 10px;
      border: none;
      margin: 0;
      background: #f5f5f5;
      font-weight: 200; }
      body .send-message-form input:focus {
        outline-width: 0; }
      body .send-message-form input::placeholder {
        color: black; }
  body .header {
    margin: 0;
    padding: 5px;
    background: #dcf3ee;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px; }
    body .header .header-maximize {
      float: right;
      opacity: 0.3;
      cursor: pointer; }
  body .icon {
    width: 80px;
    position: absolute;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
    z-index: 50;
    transition: opacity 0.5s ease; }
  body .icon-clicked {
    opacity: 0.2; }
  body .chat {
    position: absolute;
    cursor: pointer;
    padding: 10px 30px; }
  body .max {
    position: static;
    margin: 0 auto;
    padding: 10px; }
    body .max .app {
      height: 95vh;
      width: 55vw;
      margin: 0 auto; }

@media only screen and (max-width: 768px) {
  body .max .app {
    width: 95vw; } }
