/* ----------------------------
dataCards classes & ids
---------------------------- */
/*
:root {
	--nOfCards: 5;
	--cardWidth: 16.67vw;
	--theCardsMargin: calc(8.33vw - 15px);
	--fontSize: .9vw;
}
@media screen and (max-width:1440px) {
	:root {
		--nOfCards: 4;
		--cardWidth: 20vw;
		--theCardsMargin: calc(10vw - 15px);
		--fontSize: 1vw;
	}
}
@media screen and (max-width:1120px) {
	:root {
		--nOfCards: 3;
		--cardWidth: 25vw;
		--theCardsMargin: calc(12.5vw - 15px);
		--fontSize: 1.25vw;
	}
}
@media screen and (max-width:800px) {
	:root {
		--nOfCards: 2;
		--cardWidth: 45vw;
		--theCardsMargin: 5vw;
		--fontSize: 2vw;
	}
}
@media screen and (max-width:480px) {
	:root {
		--nOfCards: 1;
		--cardWidth: 96vw;
		--theCardsMargin: 2vw;
		--fontSize: 4vw;
	}
}
*/
#cards {  }

#cards [id*="card"] { border:none; }


.theCards {
	display: grid;
	grid-template-columns: repeat(var(--nOfCards),var(--cardWidth));
	gap: 10px;
	justify-content:center;
	padding: 0 .5vw 2vh .5vw;
/*	overflow-y:hidden !important;*/
}
.theCards>li {
	height: calc( 1.7 * var(--cardWidth) );
	width: var(--cardWidth);
}
.dataCard {
	position:relative;
	border: solid 1px #748da4;
	font-size: var(--fontSize);
	height: 100%;
	width: 100%;
}
.dataCard * {
	cursor:pointer!important;
}
.dataCardContent {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	overflow: hidden;
}
.dataCard .field {
	margin: 0 !important;
}
.dataCard .field span:first-child {
	display: none;
}
.dataCard .field span {
	width:100% !important;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}
.dataCard .field * {
	padding-top: 0 !important;
	margin-left: 0 !important;
	border: none !important;
}
.dataCard .field input[type], .dataCard.field textarea {
	width:100% !important;
}
.dataCard .field input[type]:hover, .dataCard.field textarea:hover {
	border: none !important;
}

.theTreeElm.dataCard {
	line-height: unset;
}
.theTreeElm.dataCard:hover .thumb, .theTreeElm.dataCard .dataCardContent:hover .thumb {
	opacity:1;
}

.dataCardContent>.thumb , .theTreeElm .dataCardContent>.thumb{
	display: flex;
	flex-direction: column;
	height: 58.8%;
	margin-bottom:.5em;
	opacity:1;
}
.dataCard .thumb .field span:last-child{
	display:flex;
	position: absolute;
	height:58.8%;
	width:100%;
	padding:.25em !important;
}

.dataCard .thumb .field .thumbImg{
/*	display:block;
	width:100%;
	margin:0 auto !important;*/
	height:100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
}

.dataCardText {
	margin: .5em;
}
@media screen and (max-width:480px) {
.theCards>li {
	height: calc( 1.6 * var(--cardWidth) );
	}
.dataCardContent>.thumb , .theTreeElm .dataCardContent>.thumb, .dataCard .thumb .field span:last-child{
	height: 66.66%;
	}
}

/*
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 2;
	bottom: 0;
	height: 50%;
}
*/
/*
.dataCard>ul:first-child {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;

}
/*
.dataCardText {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 2;
	bottom: 0;
	height: 30%;
	background: #3b556d;
	opacity: 0.6;
}
}	
.dataCardText:hover {
	opacity:1;
}
.dataCardText p{
	font-size:1.2em;
	text-align:center;
}
.dataCardText p.title{
	text-shadow:0px 0px 1px;
	font-size:1.5em;
}
.dataCardText p.resumee{
	font-size:1em;
	width:96%;
}
*/


