:host {
	position: relative;
	height: 100%;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-overflow: ellipsis;
}
/*
	patch 후  제거
*/
:host(.selected-current) span::before {
	content: '';
	margin-right: 3px;
	display: inline-block;
	width: 0;
	height: 0;
	border-left: unset;
	border-top: unset;
	border-bottom: unset;
}
:host(.selected-current) span.ng-row::before {
	content: '';
	margin-right: 3px;
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid #333;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}
:host::after {
	content: '';
	position: absolute;
	top: 1px;
	right: 1px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
}
:host(.updated)::after {
	background: darkgoldenrod;
}
:host(.added)::after {
	background: blue;
}

div.wrap {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

div.wrap:hover div.icon {
	display: flex;
	justify-content: flex-end;
}

div.icon {
	display: none;
	width: 100%;
	height: 8px;
	position: absolute;
	bottom: 0;
}

svg {
	cursor: pointer;
	margin-right: 1px;
}
svg:hover {
	opacity: 0.7;
}
svg.dtl:active {
	stroke: red;
}
svg.dtl {
	stroke-width: 1.5px;
	stroke: #999;
	fill: none;
}
svg.pin {
	fill: #999;
}
svg.pin:active {
	fill: red;
}

span.ng-row {
	width: 100%;
	line-height: 100%;
}

span.ng-origin-row {
	color: #999;
	font-size: 9px;
	margin-left: 4px;
}

.row-resizer {
	--display: none;
	--background: red;
	position: absolute;
	left: 0;
	height: 3px;
	width: 100%;
	cursor: row-resize;
}
