@charset "UTF-8";

/* Inline styles in history.aspx */
.noresult{
text-align:center;
padding:30px 0;
line-height:1.6;
}
.list-history {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px 16px;
}
.btn-history-clear {
  display: flex;
}
.common-item-list p.item-name {
  display: block;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}
@media screen and (max-width: 767px) {
	.list-history {
		grid-template-columns: 1fr 1fr;
	}
  .common-item-list:not(:has(.item-name)) {
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
  }
}