* {
  box-sizing: border-box;
}

html {
	height: 100%;

}





body {
  font-family: 'Noto Sans KR','Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Arial, Helvetica,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	background-color: rgba(223, 242, 247, .5);
	height: 100%;
	margin: 0;
}

span {
	padding-right: 15px;
	padding-left: 15px;

	font-size:14px;
}

.container {
	display: flex;
  justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.chat {
	margin-top:50px;
	padding:10px;
	height: 550px;
	width: 330px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 1px solid #ccc;
    border-radius: 10px;
	background:#fff;
} 

::-webkit-input-placeholder { 
	color: .711 
}
 
input { 
	border: 0; 
	padding: 15px; 
	margin-left: auto;
	border-radius: 10px; 
	width:100%;
	border: 2px solid #000;
}

.messages {
	display: flex;
	flex-direction: column;
	overflow: scroll;
	height: 90%;
	width: 100%;
	background-color: white;
	padding: 15px;
	margin: 15px;
	border-radius: 10px;
}

#bot {
	margin-left: auto;
}

.recommend{
	border-radius: 15px;
    margin: 5px;
    padding: 5px 10px;
    color: #fff;
    background: #000;
}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 100;src: url(../src/font/NotoSansKR-Thin.woff2) format('woff2'),url(../src/font/NotoSansKR-Thin.woff) format('woff'),url(../src/font/NotoSansKR-Thin.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 300;src: url(../src/font/NotoSansKR-Light.woff2) format('woff2'),url(../src/font/NotoSansKR-Light.woff) format('woff'),url(../src/font/NotoSansKR-Light.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 400;src: url(../src/font/NotoSansKR-Regular.woff2) format('woff2'),url(../src/font/NotoSansKR-Regular.woff) format('woff'),url(../src/font/NotoSansKR-Regular.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 500;src: url(../src/font/NotoSansKR-Medium.woff2) format('woff2'),url(../src/font/NotoSansKR-Medium.woff) format('woff'),url(../src/font/NotoSansKR-Medium.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 700;src: url(../src/font/NotoSansKR-Bold.woff2) format('woff2'),url(../src/font/NotoSansKR-Bold.woff) format('woff'),url(../src/font/NotoSansKR-Bold.otf) format('opentype');}

@font-face {font-family: 'Noto Sans KR';font-style: normal;font-weight: 900;src: url(../src/font/NotoSansKR-Black.woff2) format('woff2'),url(../src/font/NotoSansKR-Black.woff) format('woff'),url(../src/font/NotoSansKR-Black.otf) format('opentype');}

.bot {
	font-family: 'Noto Sans KR', Consolas, 'Courier New', Menlo, source-code-pro, Monaco,  
	monospace;
}

.avatar {
	height: 25px;
}

.response {
	display: flex;
	align-items: center;
	margin: 1%;

}
.response > span {
    align-items: center;
    margin: 1%;
    border-radius: 15px;
    margin: 5px;
    padding: 5px 10px;
    border: 2px solid #ccc;
    color: #000;
}

.user{text-align:right;margin-left: auto;}
/* Mobile */

@media only screen and (max-width: 980px) {
  .container {
		flex-direction: column; 
		justify-content: flex-start;
	}
	.chat {
		width: 75vw;
		margin: 10vw;
	}
}

._chatbotBtn{
    position: absolute;
    left: 93%;
    width: 10%;
    height: 100%;
    bottom: 80px;
    color: white;
    font-size: large;
}
