body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 100%;
}

.chat {
  padding-top: 40px;
}

#root {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow-y: auto;
  height: 100%;
  /* padding: 10px; */
  border-width: 3px;
  border-style: solid;
  border-right: 0;
  border-image:
    linear-gradient(
      to bottom,
      rgba(111, 115, 210),
      rgba(0, 0, 0, 0)
    ) 1 100%;
}

.message {
  margin-bottom: 10px;
}

.message .user {
  font-weight: bold;
  text-align: right;
}

.message .remove {
  position: absolute;
  width: 22px;
  height: 20px;
  left: -60px;
  /* display: "block", */
  display: none;
  padding: 0;
  line-height: 18px;
  border: "none";
}

.send-message {
  padding: 0;
}

.my-input-text::placeholder {
  color: #ccc;
}

code:hover {
  cursor: pointer;
}

.slide-in-top {
	animation: slide-in-top .5s linear 0s 1 normal none;
}

/**
 * ----------------------------------------
 * animation slide-right
 * ----------------------------------------
 */
@keyframes slide-in-top {

		0% {
			transform:translateY(-1000px);
			opacity:0;
		}
		100% {
			transform:translateY(0);
			opacity:1;
		}
	}
