.ConversationContainer {
  padding: 11px 100px 0px 100px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;

  &__emptychat {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 83%;

    span {
      font-family: Inter;
      font-style: normal;
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
      margin-top: 58px;
    }
  }

  &__inputcontainer {
    &__input {
      padding: 16px 12px !important;
    }
    &__optionsbar {
      display: flex;
      justify-content: flex-end;
      padding: 13.82px 18px;
    }
  }

  &__icons {
    font-size: 20px;
    cursor: pointer;
    color: #8c8c8c !important;
  }
}

@media (max-width: 768px) {
  .ConversationContainer {
    padding: 5px 10px;
    background: white;

    &__icons {
      color: #096DD9 !important;    }
  }
}
