html, body, #tplt_all, #tplt_body, #myApp {
  margin: 0px;
  padding: 0px;
  height: 100%;
  font-family: "Hiragino Kaku Gothic ProN";
}

div.user-icon {
  border-radius: 20px;
  width: 24px;
  height: 24px;
  display: inline-block;
}

table.chat-room {
  box-sizing: border-box;
  border-spacing: 0px;
  height: 100%;
  width: 100%;
  border-collapse: collapse;
  /*/
	@media screen and (max-width: 500px){
		td.chat-room-foot{
			height: 3em;
		}
		td.chat-room-body{
			div.message-area{
				height: 80vh;
			}
		}
	}
	/*/
}

table.chat-room td.chat-room-head {
  text-align: center;
  background-color: #263146;
  color: white;
  font-size: 1.2rem;
  padding: 3px;
}

table.chat-room td.chat-room-foot {
  vertical-align: middle;
  padding: 0px;
  font-size: 1.2rem;
  height: 3em;
  background-color: #f6f6f9;
  text-align: center;
}

table.chat-room td.chat-room-foot textarea {
  box-sizing: border-box;
  border: 1px solid #ddd;
  font-size: 1.2rem;
  padding: 0.2em;
  border-radius: 15px;
  width: 99%;
  height: 90%;
}

table.chat-room td.chat-room-body {
  padding: 5px 3px;
  border-bottom: 7px solid #f6f6f9;
  vertical-align: top;
  background-color: #7096bf;
  height: 87%;
}

table.chat-room td.chat-room-body div.message-area {
  height: 100%;
  position: relative;
  overflow-y: scroll;
  overflow-x: none;
}

table.chat-room td.chat-room-body div.message-area::-webkit-scrollbar {
  display: none;
}

table.chat-room td.chat-room-menu {
  text-align: left;
}

table.chat-room td.button-area {
  width: 2em;
  padding: 0.2em 0;
}

div.chat-room-message {
  text-align: center;
  width: 100%;
}

div.chat-room-message div.message-content {
  white-space: pre-wrap;
}

div.chat-room-message div.message {
  text-align: left;
  margin: 5px 10px;
  padding: 4px 6px;
  display: inline-block;
  position: relative;
  border-radius: 10px;
  color: #555;
  border-radius: 10px;
}

div.chat-room-message div.message::after {
  content: "";
  position: absolute;
  top: -2px;
  border: 8px solid transparent;
}

div.chat-room-message-send {
  text-align: right;
}

div.chat-room-message-send div.message {
  background-color: #c8f5ab;
}

div.chat-room-message-send div.message::after {
  right: -19px;
  border-left: 18px solid #c8f5ab;
  transform: rotate(-35deg);
}

div.chat-room-message-receive {
  text-align: left;
}

div.chat-room-message-receive div.message {
  background-color: white;
}

div.chat-room-message-receive div.message::after {
  left: -19px;
  border-right: 18px solid white;
  transform: rotate(35deg);
}

div.choice-container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: no-wrap;
  align-content: space-around;
  margin-left: 10px;
}

div.choice {
  background-color: white;
  border-radius: 15px;
  padding: 4px 10px;
  font-size: 1.2rem;
  margin: 3px;
  border: 1px solid #ddd;
}

svg {
  cursor: pointer;
}

div.menu-items {
  z-index: 10;
  text-align: center;
  margin-top: 5px;
  color: #555;
  position: absolute;
  border: 1px solid #ddd;
  width: 5em;
  background-color: white;
}

div.menu-item:hover {
  background-color: #ddd;
}

div.menu {
  font-size: 1rem;
  float: right;
  width: 5em;
  text-align: right;
  cursor: pointer;
  margin-right: 1em;
  text-align: right;
  border-radius: 2em;
  line-height: 2em;
  height: 2em;
}
