.hemlock_core_meta_box{
	display: grid;
	grid-template-columns: max-content 1fr;
	grid-row-gap: 10px;
	grid-column-gap: 50px;
}
.hemlock-description {
	margin-bottom:20px;
	color:#666;
	
}
.hemlock_core_meta_field{
	display: contents;
}
.hemlock-tooltip {
	width:15px;
	height:15px;
	display:inline-block;
	font-size:12px;
	font-weight:700;
	font-style:italic;
	color:#1A73AA;
	line-height:15px;
	text-align:center;
	border-radius:100%;
	margin-right:3px;
	border:1px solid #1A73AA;
	position:relative;
	
}
.hemlock-tooltip:before {
	position: absolute;
	top: -75px;
	left: -20px;
	background-color: #333;
	border-radius: 5px;
	color: #fff;
	content: attr(aria-label);
	padding: 12px;
	text-transform: none;
	
	width: 280px;
	
}
.hemlock-tooltip:after {
	position: absolute;
	top: -13px;
	left: 8px;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #333;
	content: " ";
	font-size: 0;
	line-height: 0;
	margin-left: -7px;
	width: 0;
	
}
.hemlock-tooltip:after, .hemlock-tooltip:before {
	 color: #efefef;
	font-weight:400;
	font-size: 14px;
	line-height:20px;
	font-style:normal;
	opacity: 0;
	pointer-events: none;
	text-align: left;
}
.hemlock-tooltip:focus::before,
.hemlock-tooltip:focus::after,
.hemlock-tooltip:hover::before,
.hemlock-tooltip:hover::after {
	opacity: 1;
	
}