.frame-type-dbaycontent_reference {
	width: 375px;
	height:250px;
}
.reference {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	width: 375px;
	height:250px;
	padding: 20px;
}

.reference .referenceBackground {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background-color: var(--color-anthrazit);
	z-index: 0;
	overflow: hidden;
}
.reference .referenceBackground .referenceBackgroundImage {
	max-width: 150px;
	max-height: 150px;
	object-fit: contain;
	filter: blur(5px);
	margin-top: 40px;
	margin-left: 30px;
	transition: filter 200ms linear;
}

.reference .referenceTag {
	padding: 2px 5px;
	border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
	color: white;
	display: flex;
	width: auto;
	align-self: end;
	z-index: 1;
	margin-right: -20px;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.reference .referenceTag::before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: white;
	align-self: center;
	margin-right: 5px;
	margin-left: 5px;
}

.reference .referenceTag.tagColor-,
.reference .referenceTag.tagColor-red {
	background-color: #C40005;
}
.reference .referenceTag.tagColor-blue {
	background-color: #1f4e75;
}
.reference .referenceTag.tagColor-green {
	background-color: #006a25;
}
.reference .referenceTag.tagColor-yellow {
	background-color: #e6ac00;
}

.reference .referenceName {
	font-size: 1.25rem;
	line-height: 1.125;
	font-weight: bold;
	color: white;
	z-index: 1;
}

@media (max-width: 1200px) {
	.frame-type-dbaycontent_reference,
	.reference {
		width: 325px;
		height: 200px;
	}
}