/* CSS file */
/* ddc_charts.css */

.ddcchart_c {
	overflow:hidden;
}
.ddcchart {
	display:flex;
	flex-wrap:nowrap;
	width:100%;
	xwidth: 200px;
	height: 100%;
	align-content: stretch;

	overflow: hidden;
	border-radius: var(--lt-border-radius);
	border: var(--lt-border);
	box-shadow: 0 0 0px 3px var(--lt-border-color);
	outline: 1px solid #fff;
	position: relative;
}
.ddcline {
	display:inline-block;
	height: 200px;
	width:100%;
}
.ddct_i {
	height: 200px;
	display: block;
}
.thingerprint {
	display:flex;
	align-items: center;
	flex-direction: column;
	xmargin-bottom: -1em;
	position: relative;
}


.thingerprint .ddcchart {
	width: 100%;
	height: 75px;
}
.thingerprint .ddcchart.small {
	height: 40px;
}
.thingerprint .ddcchart.wide200 {
	width: 200px;
}
.thingerprint .ddcchart.wide100 {
	width: 100%;
}
.thingerprint .ddcchart a {
	filter: saturate(1.15) brightness(1.1);
}
.thingerprint .ddcchart a:hover {
	filter: saturate(2) brightness(1.5);
}

.thingerprint .tp_tphint {
}

.tp_tptitle {
	color: var(--lt-tint-light-d);
	font-size: 9px;
	font-variant: all-small-caps;
	position:absolute;
	bottom:-3px;
	text-align: left;
	margin-left: 5px;
	width: 100%;
	text-shadow: 0 0 5px #000;
	pointer-events: none;
	user-select: none;
}
.thingerprint .tp_tpt {
	xfont-size: 9px;
	color: var(--lt-white-color);
	user-select: none;
	position: absolute;
	right: 5px;
	bottom: 2px;
	display:none;
	cursor:pointer;
}
/* hovers */
.tp_tphovers {
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	display: flex;
	justify-content: center;
}
.tpht {
	display: none;
	position: absolute;
	top: 0;
	text-align: center;
	background: var(--lt-tint-dark-9);
	color: var(--lt-white-color);
	font-size: 0.8rem;
	border-radius: var(--lt-border-radius);
	border: 1px solid var(--lt-background-color);
	box-shadow: 0 2px 2px -1px #0002;
	padding: 2px 3px 3px;
	line-height: 1.3em;
	align-self: center;
	justify-self: center;
}
/*
.tpht:before {
	--triangle-size: 10px;
	position: absolute;
	left: calc(50% - calc(var(--triangle-size) * 0.5));
	top: calc(var(--triangle-size) * -1);
	content:"";
	height:var(--triangle-size);
	width: var(--triangle-size);
	background: var(--lt-tint-dark-9);
	border: 1px solid var(--lt-background-color);
}
*/


body.mobile .thingerprint .tp_tpt,
.thingerprint:hover .tp_tpt {
	display:block;
}
body.mobile .thingerprint .tp_tpt {
	top: 10px;
}
.thingerprint_desc {
	margin-top: var(--lt-padding-half);
	margin-bottom: var(--lt-padding-half);
}