tr.card_img {
}
td.card_img {
}

tr.card_data {
	vertical-align: top;
}
td.card_data_term {
	width: 25%;
	vertical-align: top;
	/* white-space: nowrap; */
}
td.card_data_value {
}
td.card_data_colon {
	width: 5px;
}

div.cardkenmerken {
	background: #ffffff;
	border-radius: 8px;
	width: 100%
}

div.cardimgcol {
	background: #00bf93;
	padding: 0;
}
img.img-thumb {
	border-radius: 4px;
	padding: 0px;
	margin: 0px;
	margin-top: 4px;
	margin-bottom: 1px;
	border: 0px;
}
span.img-thumb {
	padding: 0px;
	margin:  0px;
	margin-left: 4px; /* some space between images */
	border: 0px;
}

div.carddeterminatie {
	background: #00df93;
	width: 100%;
	padding: 0;
	margin-bottom: 2px;
	border-radius: 15px;
	-moz-border-radius: 15px;
	border: 2px solid #FFF600;
}
div.cardimages {
	border-radius: 8px;
	background: #ffffff;
	padding: 0;
	margin-bottom: 0px;
}
div.cardvideos {
	background: #00bf93;
	padding: 0;
	margin-bottom: 2px;
}
div.cardbeschrijving {
	background: #00bf93;
	padding: 0;
	margin-bottom: 2px;
}

.urlwrap {
	/* These are technically the same, but use both */
	overflow-wrap: break-word;
	word-wrap: break-word;

	-ms-word-break: break-all;
	/* This is the dangerous one in WebKit, as it breaks things wherever */
	word-break: break-all;
	/* Instead use this non-standard one: */
	word-break: break-word;

	/* Adds a hyphen where the word breaks, if supported (No Blink) */
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
}
/* CSS voor Hover Tooltip : added 20230907*/
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
	visibility: hidden;
	background-color: black;
	color: #fff;
	width: 200px;
	text-align: left;
	padding: 3px 5px;
	border-radius: 6px;

	/* positioning */
	position: absolute;
	z-index: 1;
}
.tooltip:hover .tooltiptext {
	visibility: visible;
}

