/* Accent feature list for product description content. */
/*
.asd-feature-list {
	padding-right: 40px;
}
*/
.asd-feature-list li {
	position: relative;
	margin-bottom: 8px;
	padding: 6px 15px;
	list-style: none;
	background: #f1f1f1;
}
.asd-feature-list li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 13px;
	height: 13px;
	border-radius: 2px;
	background: #ffc700;
	transform: translate(-50%, -50%);
}
.asd-feature-list li:hover {
	background: #f6f6f6;
}
/* Package list for product description content. */
.asd-package-list {
  max-width: 760px;
  margin: 0 auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  list-style: none;
  justify-content: center;
}

.asd-package-list li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.45;
  color: #202124;
}

.asd-package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f5c400;
  font-weight: 500;
}
@media (max-width: 767px) {
	.asd-feature-list,
	.asd-package-list {
		padding-right: 0;
		padding-left: 20px;
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
/* Side lines for product description headers. */
.product-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 10px 0 10px;
  line-height: 1;
  font-weight: 700;
  color: #202124;
  text-align: center;
}

.product-section-title::before,
.product-section-title::after {
  content: "";
  display: block;
  width: 35px;
  height: 1px;
  background-color: #f5c400;
  flex-shrink: 0;
}
