:root {
	--white: #ffffff;
	--yellow: #f0b310;
	--grey: #6d6e71;
	--lightgrey: rgba(109, 110, 113, 0.4);
	--darkgrey: rgba(109, 110, 113, 1);
}

.dokumentencenter_hinweis {
	font-size:15px;
	font-style:italic;
}

.m3_doc_leftside {
	font-size:18px;
	line-height:24px;
}

/* ── Search form ── */
.search {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	width: 100%;
}

.searchslot {
	width: 500px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 3px;
	padding-bottom: 3px;
	margin-right: 15px;
	border: 1px solid;
	border-color: var(--bs-black-rgb) !important;
	border-radius: 7px;
}

.button-width {
	padding-left: 15px;
}

/* ── Buttons ── */
.btn {
	width: 100%;
}

.btn-primary {
	background-color: var(--yellow) !important;
	border: 0px;
}

.m3button {
	border: 1px solid var(--yellow);
	padding: 10px;
	border-radius: 7px;
	background-color: var(--yellow);
	transition: 1s;
	color: #ffffff;
}

/* ── Dropdown / sparte filter ── */
.m3_doc_complete {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	width: 100%;
}

.m3_doc_leftside {
	width: 50%;
}

/* ── Product grid ── */
.allproducts {
	display: flex;
	flex-wrap: wrap;
}

.baseproduct,
.baseproduct:visited,
.baseproduct:active {
	color: var(--bs-black-rgb);
	text-decoration: none;
	padding-bottom: 10px;
}

.product_preview {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	justify-content: center;
	width: 368px;
	height: 100%;
	border: 1px solid;
	margin: 5px;
}

.product_preview:hover {
	cursor: pointer;
}

.product_preview:hover .product_name {
	color: var(--darkgrey) !important;
}

.product_image {
	text-align: center;
}

.product_image img {
	padding-top: 40px;
	max-width: 300px;
	max-height: 300px;
}

.fahne {
	position: absolute;
	background-color: var(--yellow);
	color: var(--white);
	font-weight: 500;
	left: 0px;
	top: 0px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.product_name {
	text-align: left;
	width: 270px;
	min-height: 69px;
	padding-left: 45px;
	padding-right: 5px;
	padding-bottom: 15px;
	color: var(--darkgrey);
	font-size: 27px;
	line-height: 27px;
	font-weight: 600;
	background-image: url("../img/product_arrow.png");
	background-repeat: no-repeat;
	background-position: left 2px;
}

.product_documents {
	width: 100%;
}

.product_documents a,
.product_documents a:hover,
.product_documents a:visited,
.product_documents a:active {
	color: var(--darkgrey);
	text-decoration: none !important;
}

/* ── File / download links ── */
.file_container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	min-height: 25px;
	padding-top: 5px;
	padding-bottom: 5px;
	position: relative;
}

.file_container:before {
	content: '';
	position: absolute;
	top: 0px;
	left: 5%;
	width: 90%;
	border-top: 1px solid var(--lightgrey);
}

.file_text {
	width: 60%;
	padding-left: 40px;
	padding-top: 3px;
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: 12px center;
	font-size: 80%;
}

.file_pdf {
	background-image: url("../img/pdf-icon.png");
}

.file_size {
	width: 26%;
	padding-top: 3px;
	font-size: 80%;
	padding-right: 10px;
	text-align: right;
}

/* ── Accordion (used via JS) ── */
.opened {
	display: block;
	height: auto;
}