.woo-pictogram-wrapper {
    flex: 0 100%;
    background: #E4F4ED;
    padding: 45px 32px !important;
}
.woo-pictogram-block {
    max-width: 1250px;
    margin: 0 auto;
    border-bottom: var(--border-1px-grey);
	margin-bottom: 20px;
}

.woo-pictogram-block-last{
    border-bottom: unset;
	margin-bottom: 0;
}

.woo-pictogram-wrapper .woo-pictogram-list {
    padding: 0 !important;
    list-style: none;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 56px;
}

/* Kill any theme list-box styles */
.woo-pictogram-wrapper .woo-pictogram-list > li {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: none !important;
}
.woo-pictogram-wrapper .woo-pictogram-list > li:before,
.woo-pictogram-wrapper .woo-pictogram-list > li:after { display: none !important; content: none !important; }

.woo-pictogram-wrapper .woo-pictogram img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	background: transparent;
	border-radius: 10px;
	padding: 0;
	vertical-align: middle;
	margin-right: 14px;
}

.woo-pictogram-wrapper .woo-pictogram {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
	position: relative;
    cursor: help;
    display: flex;
    align-items: center;
}

.woo-pictogram-wrapper .woo-pictogram-tooltip {
  position: absolute;
  background: rgba(0,0,0,0.9);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 9999;
  display: none;
  font-size: var(--font-size-xs);
}

/* Text styles for label + description */
.woo-pictogram-wrapper .woo-pictogram-text {
	display: inline-block;
    line-height: 1.2;
}

.woo-pictogram-wrapper .woo-pictogram-label {
	display: block;
	font-weight: 700;
	color: #111827;
    font-size: 15px;
}

.woo-pictogram-wrapper .woo-pictogram-desc {
	display: block;
	color: #4B5563;
    font-size: 13px;
}

/* Responsive columns */
@media (max-width: 1024px) {
    .woo-pictogram-wrapper .woo-pictogram-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .woo-pictogram-wrapper .woo-pictogram-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
    .woo-pictogram-wrapper .woo-pictogram-list { grid-template-columns: 1fr; }
}

/* Heading look similar to screenshot */
.woo-pictogram-wrapper .woo-pictogram-heading {
	font-size: 35px;
	font-weight: 600;
	margin: 0 0 16px 0;
	padding-bottom: 12px;
	border-bottom: var(--border-1px-grey);
}

/* Admin taxonomy preview */
.wpict-preview {
    margin-top: 10px;
}

.wpict-preview img {
    max-width: 80px;
    height: auto;
}

/* Hide class for empty preview */
.wpict-preview.hide {
    display: none;
}

/* Group heading in product edit checklist */
.wpict-group-heading {
    margin-top: 8px;
    font-weight: 600;
}