@charset "utf-8";

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #f8f8f8;
	margin: 0;
	padding: 0;
	/* display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center; */
	height: 100vh;
}
input[type="text"] {
	width: calc(100% - 100px);
	padding: 10px;
	border-radius: 20px;
	border: 1px solid #ccc;
	margin-right: 10px;
	box-sizing: border-box;
	font-size: 16px;
	outline: none;
}
input[type="text"] + button {
	padding: 10px 20px;
	border-radius: 20px;
	border: none;
	background-color: #FF5722;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	outline: none;
}
input[type="text"] + button:disabled {
	background-color: #888;
}
input[type="text"] + button:hover {
	background-color: #f4511e;
}
header, footer, main {
	padding: 0 16px;
}

/* header */
header {
	height: 60px;
}
header h1 {
	margin-bottom: 10px;
	padding: 0;
	text-align: center;
	color: #333;
	font-size: 1.5em;
}

/* main menu */
.mainMenu {
	position: fixed;
	top: 16px;
	left: 16px;
  margin: 0;
  font-size: 110%;
}
#menubutton {
  opacity: 0;
}
#menubutton:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menubutton:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menubutton:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menubutton:checked ~ .mainMenu [role="menu"] {
  left: 0 !important;
}
.menu__btn {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}
.mainMenu [role="menu"] {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #ECEFF1;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  transition-duration: .25s;
}
.mainMenu [role="menuitem"] {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: .25s;
}
.mainMenu [role="menuitem"]:hover {
  background-color: #CFD8DC;
}


.tips {
	
}
.liquor-cabinet {
	clear: both;
	margin: 20px 0;
}
.liquor-cabinet .emptyMessage, .liquor-cabinet ul {
	background-color: #FFF;
	border: 1px solid #ddd;
	border-radius: 8px;
}
.liquor-cabinet .emptyMessage {
	margin: 0 0 1em;
	padding:16px;
	text-align: center;
}
.liquor-cabinet ul {
	list-style: none;
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	padding: 10px 0;
}
.liquor-cabinet ul li {
	padding: 5px 10px;
}
.liquor-cabinet ul li button {
	border: 0;
	background: none;
}
.chat-container {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	overflow-y: auto;
	height: 55vh;
	background-color: #fff;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.user-message, .bot-message {
	max-width: 80%;
}
.user-message {
	float: right;
	background-color: #4CAF50;
	color: #fff;
	text-align: right;
	padding: 10px 15px;
	border-radius: 20px;
	margin-bottom: 10px;
	max-width: 70%;
	word-wrap: break-word;
}
.bot-message {
	clear: right;
	background-color: #2196F3;
	color: #fff;
	text-align: left;
	padding: 10px 15px;
	border-radius: 20px;
	margin-bottom: 10px;
	max-width: 70%;
	word-wrap: break-word;
}

.loader {
	display: block;
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-top: 4px solid #fff;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	animation: spin 1s linear infinite;
	margin: auto;
	margin-bottom: 10px;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* alert */
.dimm {
  display: none;
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
	background: rgb(0 0 0 / 30%);
}
.dimm.active {
  display: flex;
	align-items: center;
	justify-content: center;
}
.no-scroll {
  overflow-y: auto !important;
}
/* this is added to the body when a dialog is open */
.has-dialog {
  overflow: hidden;
}
[aria-hidden="true"] {
	display: none;
}
[aria-hidden="false"] {
	display: block;
}
[role="alertdialog"] {
	position: relative;
	width: calc(100% - (16px * 2)); /* == breakpoint - left+right margin */
	min-height: auto;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 19px 38px rgb(0 0 0 / 12%), 0 15px 12px rgb(0 0 0 / 22%);
	text-align: center;
}
[role="alertdialog"] #alertLabel {
	margin: 16px 0 0;
	font-size: 32px;
}
[role="alertdialog"] #alertDesc {
  padding: 10px 20px;
	color: #333;
}
#alertCloser {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	border: 0;
	text-indent: -9999px;
	background: transparent url(./images/closer.svg) no-repeat center top;
	background-size: 100% auto;
}