html {
	position: relative;
	min-height: 100%;
}
body {
	margin-bottom: 60px;
}
footer {
	position: absolute;
	bottom: 0;
	height: 60px;
	line-height: 60px;
}
@media (max-width: 992px) {
	footer {
		display: none;
	}
	body {
		margin-bottom: 0px;
	}
}
.btn-sml {
	padding: 0.25em 0.4em;
	font-size: 75%;
	line-height: 1;
	border-radius: 0.25rem;
}
.image-nori {
	max-height: 50px;
}
.item-inv {
	display: inline-block;
	margin-left: 1px;
	margin-right: 1px;
	width: 38px;
	height: 38px;
	position: relative
}
.item-inv img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.item-inv span {
	position: absolute;
	height: 45px;
	color: red;
	bottom: 0px;
	right: 0px;
}
.item-cmt {
	display: inline-block;
	margin-left: 1px;
	margin-right: 1px;
	width: 70px;
	height: 70px;
	position: relative
}
.item-cmt img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 70%;
	margin: auto;
}
.item-cmt span {
	position: absolute;
	height: 70px;
	color: red;
	bottom: 0px;
	right: 0px;
}


.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}



/* Wider GM modal */
.modal-lg {
    max-width: 1050px !important;
}

#tbl_item input[type="number"],
#tbl_item input[type="text"],
#tbl_item select {
    width: 100%;
}


.autocomplete-items {
  max-height: 200px;
  overflow-y: auto;
}