.aicl-positioned {
	position: relative;
}

.aicl-img-wrap {
	display: inline-block;
	position: relative;
	max-width: 100%;
	line-height: 0;
}

.aicl-label {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2147483000;
	margin: 6px;
	display: flex;
	align-items: center;
	padding: 4px 8px;
	background-color: rgba(0, 0, 0, 0.66);
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.4;
	border-radius: 4px;
	cursor: help;
}

.aicl-label-short {
	flex-shrink: 0;
	max-width: 30px;
	margin-right: 0;
	overflow: hidden;
	font-weight: 700;
	white-space: nowrap;
	transition: max-width 0.2s ease, opacity 0.2s ease, margin-right 0.2s ease;
}

.aicl-label-text {
	display: block;
	max-width: 0;
	overflow: hidden;
	opacity: 0;
	white-space: nowrap;
	transition: max-width 0.2s ease, opacity 0.2s ease;
}

.aicl-label:hover .aicl-label-text,
.aicl-label:focus .aicl-label-text,
.aicl-label:focus-within .aicl-label-text,
.aicl-label-expanded .aicl-label-text {
	max-width: 320px;
	opacity: 1;
}

.aicl-label:hover .aicl-label-short,
.aicl-label:focus .aicl-label-short,
.aicl-label:focus-within .aicl-label-short,
.aicl-label-expanded .aicl-label-short {
	max-width: 0;
	opacity: 0;
	margin-right: 0;
}
