
.data-check {
	/* TODO: 나중에 지울것 */
	color: red;
	font-size: 13px;
	word-break: break-all;
	line-height: 1.5;
	margin-bottom: 1rem;
}


.receipt_cont {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.receipt_cont > div:not(.receipt_wrap) {
	flex: 1;
}
.receipt_wrap {
	background-color: #f9f9f9;
	padding: 1rem;
	width: 360px;
	max-height: 560px;
	overflow-y: auto;
}
.receipt {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.07);
  background-color: #fff;
}
.receipt-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.receipt-container::after {
  content: "";
  position: absolute;
  inset: 0;
  top: -100px;
  background: url("../../images/h1_logo.png") center center/205px 54px no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
.receipt-container_header {
  text-align: center;
  padding: 1.5rem 0 1rem;
}
.receipt-container_header strong {
  font-weight: 500;
}
.receipt-container_footer {
  padding: 1rem;
  background-color: #f5f5f5;
  font-size: 0.75rem;
  font-weight: 200;
  color: #424242;
}
.receipt-container_footer ul li {
  padding-left: 0.375rem;
  position: relative;
}
.receipt-container_footer ul li span {
  font-size: 0.875rem;	
}
.receipt-container_footer ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.375rem;
  width: 3px;
  height: 3px;
  border-radius: 2px;
  background-color: #424242;
}
.receipt-items-ttl {
  display: block;
  background-color: rgba(0, 0, 0, 0.05);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  margin-bottom: 0.625rem;
}
.receipt-items dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 0;
  padding: 0 1rem;
}
.receipt-items dl dt {
  min-width: 100px;
  grid-column: 1;
  font-size: 0.8125rem;
  font-weight: 200;
  color: #424242;
}
.receipt-items dl dd {
  grid-column: 2;
  font-weight: 500;
  font-size: 0.875rem;
  text-align: right;
}
.receipt-items dl dd p {
	font-size: 0.875rem;
}
.receipt-items .total-price {
  color: #ef4444;
}
.receipt-items .price {
  color: #000000;
  font-weight: 200;
}
.receipt-items .unit {
  color: #757575;
  font-weight: 200;
}
.receipt .bookstore {
  display: flex;
  justify-content: center;
}
.receipt .bookstore-ttl {
  padding: 1.5rem 0 0.25rem;
  font-size: 1rem;
  font-weight: 500;
}
.receipt .bookstore-comnt {
  font-size: 1rem;
  font-weight: 200;
  margin-bottom: 1rem;
}

.contents.container {
	margin-top: 54px;
}

@media screen and (min-width: 1200px) {
	.contents.container {
		margin-top: 0;
	}
}