.chatWrapper {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99; }
  .chatWrapper .chatWindow {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    height: 470px;
    width: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    overflow: hidden; }
    .chatWrapper .chatWindow .bar {
      padding: 25px 15px;
      height: 55px;
      display: flex;
      align-items: center;
      width: 100%;
      flex-grow: 0;
      position: relative;
      background-color: #e6e6e6; }
      .chatWrapper .chatWindow .bar .menu {
        position: absolute;
        right: 10px;
        top: 50px;
        z-index: 2;
        background: #ffffff;
        border-radius: 5px;
        list-style: none;
        margin: 0;
        padding: 0;
        color: gray;
        width: 0;
        height: 0;
        overflow: hidden;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
        transition: 0.2s;
        opacity: 0; }
        .chatWrapper .chatWindow .bar .menu li {
          font-size: 1rem;
          padding: 15px 30px;
          cursor: pointer; }
          .chatWrapper .chatWindow .bar .menu li:hover {
            background-color: #606e8e;
            color: #ffffff; }
      .chatWrapper .chatWindow .bar .btn {
        border: none;
        background: none;
        padding: 0;
        margin: 0; }
      .chatWrapper .chatWindow .bar .windowbtn {
        display: inline-block;
        width: 14px;
        height: 14px;
        padding: 0;
        border-radius: 50%;
        margin-right: 5px;
        display: flex; }
        .chatWrapper .chatWindow .bar .windowbtn.close {
          background-color: #ff5f57;
          border: 1px solid #ff5147;
          font-size: 0.75rem;
          display: none; }
          .chatWrapper .chatWindow .bar .windowbtn.close:hover {
            background-color: #ff5147; }
        .chatWrapper .chatWindow .bar .windowbtn.min {
          background-color: #ffbd2e;
          border: 1px solid #ffb81f;
          font-size: 0.75rem; }
          .chatWrapper .chatWindow .bar .windowbtn.min:hover {
            border-color: #f5a700;
            background-color: #f5a700; }
      .chatWrapper .chatWindow .bar .menubtn {
        color: gray;
        margin-left: auto;
        width: auto;
        height: auto;
        display: block;
        padding: 8px;
        border-radius: 50%;
        overflow: hidden;
        font-size: 1.375rem;
        transition: 0.2s; }
        .chatWrapper .chatWindow .bar .menubtn[aria-pressed="true"] {
          background-color: #d9d9d9; }
        .chatWrapper .chatWindow .bar .menubtn[aria-pressed="true"] + .menu {
          width: 200px;
          height: 52px;
          opacity: 1; }
      .chatWrapper .chatWindow .bar .chatbtn {
        display: none;
        color: #ffffff; }
    .chatWrapper .chatWindow .msgWindow {
      background-color: #afd3d9;
      padding: 20px;
      display: flex;
      min-height: 350px;
      max-height: 350px;
      min-width: 500px;
      flex-shrink: 0;
      flex-direction: column;
      flex: 1; }
      .chatWrapper .chatWindow .msgWindow .msg {
        position: relative;
        padding: 10px 20px;
        flex-shrink: 0;
        background: #ebebeb;
        border-radius: 10px;
        color: black;
        display: flex;
        flex-direction: column;
        margin-left: 5px;
        font-size: 1em;
        white-space: pre-line;
        word-wrap: break-word;
        margin-bottom: 10px; }
        .chatWrapper .chatWindow .msgWindow .msg.self {
          align-self: flex-end;
          background-color: #373F51; }
          .chatWrapper .chatWindow .msgWindow .msg.self:before {
            bottom: -2px;
            right: -7px;
            height: 20px;
            border-right: 20px solid #373F51;
            border-bottom-left-radius: 16px 14px;
            -webkit-transform: translate(0, -2px); }
          .chatWrapper .chatWindow .msgWindow .msg.self:after {
            z-index: 1;
            bottom: -2px;
            right: -56px;
            width: 26px;
            height: 20px;
            background: #afd3d9;
            border-bottom-left-radius: 10px;
            -webkit-transform: translate(-30px, -2px); }
          .chatWrapper .chatWindow .msgWindow .msg.self .name {
            display: none; }
          .chatWrapper .chatWindow .msgWindow .msg.self .body, .chatWrapper .chatWindow .msgWindow .msg.self .timestamp {
            color: #ffffff; }
        .chatWrapper .chatWindow .msgWindow .msg.them {
          align-self: flex-start;
          background-color: #ffffff; }
          .chatWrapper .chatWindow .msgWindow .msg.them:before {
            z-index: 2;
            bottom: -2px;
            left: -7px;
            height: 20px;
            border-left: 20px solid #ffffff;
            border-bottom-right-radius: 16px 14px;
            -webkit-transform: translate(0, -2px); }
          .chatWrapper .chatWindow .msgWindow .msg.them:after {
            z-index: 3;
            bottom: -2px;
            left: 4px;
            width: 26px;
            height: 20px;
            background: #afd3d9;
            border-bottom-right-radius: 10px;
            -webkit-transform: translate(-30px, -2px); }
        .chatWrapper .chatWindow .msgWindow .msg .name {
          color: #58A4B0;
          font-weight: bold;
          font-size: 0.875rem; }
        .chatWrapper .chatWindow .msgWindow .msg .body {
          color: #373F51;
          font-size: 0.875rem;
          margin: 0 0 5px 0; }
        .chatWrapper .chatWindow .msgWindow .msg .timestamp {
          align-self: flex-end;
          color: #373F51;
          font-size: 0.75rem; }
        .chatWrapper .chatWindow .msgWindow .msg:before, .chatWrapper .chatWindow .msgWindow .msg:after {
          content: "";
          position: absolute; }
    .chatWrapper .chatWindow form {
      width: 100%;
      margin-top: auto; }
      .chatWrapper .chatWindow form .msgwrapper {
        display: flex;
        align-items: center;
        background-color: #58a4b0;
        padding: 10px 20px;
        margin: 0; }
        .chatWrapper .chatWindow form .msgwrapper button {
          border: none;
          background: none;
          margin: 0;
          padding: 0;
          margin-left: auto;
          font-size: 2rem;
          color: #ffffff; }
          .chatWrapper .chatWindow form .msgwrapper button:disabled {
            opacity: 0.5; }
        .chatWrapper .chatWindow form .msgwrapper input[type="text"] {
          font-size: 1.125rem;
          padding: 10px;
          width: 80%;
          border: none;
          border-bottom: 2px solid #ffffff;
          background: none;
          border-radius: 0;
          padding: 0;
          margin-bottom: 5px;
          display: inline-block;
          vertical-align: middle;
          color: #ffffff;
          height: 40px;
          transition: 0.2s;
          line-height: 40px; }
          .chatWrapper .chatWindow form .msgwrapper input[type="text"]::-webkit-input-placeholder {
            /* Chrome/Opera/Safari */
            color: rgba(255, 255, 255, 0.5); }
          .chatWrapper .chatWindow form .msgwrapper input[type="text"]::-moz-placeholder {
            /* Firefox 19+ */
            color: rgba(255, 255, 255, 0.5); }
          .chatWrapper .chatWindow form .msgwrapper input[type="text"]:-ms-input-placeholder {
            /* IE 10+ */
            color: rgba(255, 255, 255, 0.5); }
          .chatWrapper .chatWindow form .msgwrapper input[type="text"]:-moz-placeholder {
            /* Firefox 18- */
            color: rgba(255, 255, 255, 0.5); }
          .chatWrapper .chatWindow form .msgwrapper input[type="text"]:focus {
            outline: none; }
    .chatWrapper .chatWindow.min {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #58a4b0; }
      .chatWrapper .chatWindow.min *:not(.bar) {
        display: none; }
      .chatWrapper .chatWindow.min .bar {
        background-color: #58a4b0;
        display: block;
        padding: 0; }
        .chatWrapper .chatWindow.min .bar * {
          display: none; }
        .chatWrapper .chatWindow.min .bar .chatbtn {
          display: block;
          height: 50px;
          width: 50px;
          margin: 0;
          padding: 0;
          text-align: center;
          align-self: center; }

@media only screen and (max-width: 35em) {
  .chatWrapper .chatWindow {
    width: 100vw;
    position: relative;
    right: -20px;
    bottom: -20px;
    border-radius: 0; }
    .chatWrapper .chatWindow .msgWindow {
      min-width: 100%; }
    .chatWrapper .chatWindow.min {
      right: 0;
      bottom: 0; } }


/*# sourceMappingURL=app.bundle.css.map*/