$borderColor: rgb(224, 224, 224);
$lightBlueBg: rgb(223, 247, 255);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.one {
  background-color: white;
  position: relative;
}
.container {
  display: flex;
  flex: 1;
}

.conversation {
  padding: 0.5rem;
  border-bottom: 0.0625rem solid $borderColor;
  display: flex;
  align-items: center;
}
.mainBody {
  height: 100vh;
  .conversationPanel {
    height: 100vh;
    width: 100%;
    background-color: $lightBlueBg;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    .text {
      color: #595959;
      padding: 1.05rem;
      text-align: center;
      line-height: 1.6;
      font-size: 1.25rem;
    }
    .button {
      padding: 0.4rem;
      font-size: 0.75rem;
    }
  }
  .icon {
    position: fixed;
    bottom: 2.25rem;
    right: 1.4375rem;
  }
}
.bufferZone {
  // "bufferZone" space between content and chat input
  height: 6rem;
}
.chatInput {
  position: fixed;
  bottom: 0;
  width: 100%;
  color: rgb(100, 92, 92);
  background-color: rgb(255, 255, 255);
  padding: 0.625rem 0.312rem;
  display: flex;
  // align-items: center;
  .inputBox {
    flex: 1;
    margin-right: 0.8rem;
  }

  .button {
    flex: 1;
  }
}
