
:root {
	--main-color: #b9cf3e;
	--gray: #5a5f5a;

	--meta-item-color : white;
	--meta-item-font-size : 16px;
}


.bnt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.5rem;
	border: 0;
	border-radius: 4px;
	font: inherit;
	cursor: pointer;
	background-color: var(--main-color);
	color: #fff;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.bnt:hover,
.bnt:focus {
	opacity: 0.9;
}

.bnt.second {
	background-color: var(--gray);
	color: #fff;
}

.bnt--icon {
	background: transparent;
	color: inherit;
	padding: 0.25rem;
	min-width: 0;
	line-height: 1;
}



.mwd-warenboerse-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.mwd-warenboerse-modal.is-visible {
	display: flex;
}

.mwd-warenboerse-modal__content {
	background: #fff;
	padding: 2rem;
	max-width: 640px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}

.mwd-warenboerse-modal__close {
	position: absolute;
	top: 0;
	right: 1rem;
	background: transparent;
	border: 0;
	font-size: 2.5rem;
	cursor: pointer;
}

/*
.mwd-warenboerse-form form {
	display: grid;
	gap: 1rem;
}
*/


.mwd-field {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.mwd-field--actions {
	flex-direction: row;
	justify-content: flex-end;
	align-items: end;
	gap: 0.5rem;
}

.mwd-warenboerse-form label {
	display: block;
	font-weight: 600;
}

.mwd-warenboerse-form small {
	display: block;
	margin-top: 0.25rem;
	color: #666;
	font-size: 0.8125rem;
}

.mwd-warenboerse-form input,
.mwd-warenboerse-form select,
.mwd-warenboerse-form textarea {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.mwd-warenboerse-form button {
	background: var(--gray);
	color: #fff;
	border: 0;
	border-radius: 4px;
	padding: 0.75rem 1.5rem;
	cursor: pointer;
}


.mwd-link {
	color: #0073aa;
	text-decoration: none;
}

.mwd-link:hover,
.mwd-link:focus {
	text-decoration: underline;
}

.mwd-warenboerse-form__actions {
	text-align: right;
}
/*
.mwd-warenboerse-submit__trigger {
	margin-top: 56px;
	cursor: pointer;

	font-weight: 700;
    font-size: 18px;
    color: white;
    background-color: var(--gray);
    border-radius: 100%;
    border: 1px solid #5a5f5a;
    text-align: center;
    display: inline-block;
    width: 90px !important;
    height: 90px !important;
}
*/

.mwd-warenboerse-listings .mwd-warenboerse-submit__trigger {
	background-color: var(--main-color);
	color: white;
	padding: 5px 35px;
}


.mwd-warenboerse-listings__filters {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

.mwd-filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.mwd-filter-row--types {
	align-items: center;
}

.mwd-filter-types {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.mwd-filter-type {
	background-color: #f4f6ef;
	color: var(--gray);
	border: 1px solid #d5d9c3;
	padding: 0.5rem 1.25rem;
}

.mwd-filter-type:hover,
.mwd-filter-type:focus {
	background-color: #e8ecd8;
	opacity: 1;
}

.mwd-filter-type.is-active {
	background-color: var(--main-color);
	border-color: var(--main-color);
	color: #fff;
}

.mwd-filter-row--search {
	align-items: stretch;
}

.mwd-filter-search {
	flex: 1 1 auto;
	position: relative;
}

.mwd-filter-search input {
	width: 100%;
	height: 100%;
	padding: 0.75rem 1rem 0.75rem 2.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.mwd-filter-search__icon {
	position: absolute;
	top: 50%;
	left: 1rem;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--gray);
	pointer-events: none;
}

.mwd-filter-search__icon::before {
	font-size: 1.125rem;
	line-height: 1;
}

.icon-search_tool::before {
	content: "\e90a";
	font-family: 'icomoon';
	font-weight: normal;
	font-style: normal;
	speak: never;
}

.mwd-filter-controls {
	display: flex;
	gap: 0.5rem;
	align-items: stretch;
	flex: 0 0 auto;
}

.mwd-filter-category select {
	padding: 0.65rem 0.85rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	min-width: 220px;
	height: 100%;
}

.mwd-filter-submit {
	white-space: nowrap;
}

@media (max-width: 900px) {
	.mwd-filter-category select {
		min-width: 180px;
	}
}

@media (max-width: 768px) {
	.mwd-filter-row--search {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
	}

	.mwd-filter-controls {
		width: 100%;
		justify-content: space-between;
	}

	.mwd-filter-category {
		flex: 1 1 auto;
	}

	.mwd-filter-category select {
		width: 100%;
		min-width: 0;
	}

	.mwd-filter-submit {
		flex: 0 0 auto;
	}
}

.mwd-warenboerse-listings__results {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr;
}

.mwd-warenboerse-listings__row {
	background: var(--main-color);
	/*box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);*/
}

.mwd-warenboerse-listings__row:hover {
	background: var(--gray);
}

.mwd-warenboerse-listings__trigger {
	width: 100%;
	border: 0;
	background: transparent;
	padding: 1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	text-align: left;
	cursor: pointer;
}

.mwd-warenboerse-listings__col {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: flex-start;
	gap: 1rem;
	width: 100%;
}

.mwd-warenboerse-listings__badge-wrap {
	display: flex;
	justify-content: flex-start;
}

.mwd-warenboerse-listings__content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.mwd-warenboerse-listings__excerpt {
	margin: 0;
	color: white;
	line-height: 1.5;
}

/*
@media (max-width: 600px) {
	.mwd-warenboerse-listings__col {
		grid-template-columns: 1fr;
	}
}
*/

/*
.mwd-warenboerse-listings__trigger:focus,
.mwd-warenboerse-listings__trigger:hover {
	background: #f7f9fc;
	outline: none;
}
*/

.mwd-warenboerse-listings__badge {
	margin-bottom: 0.25rem;
	align-self: flex-start;
}

.mwd-warenboerse-listings__title {
	margin: 0;
	font-size: 24px;
	color: white;
}

.mwd-warenboerse-listings__meta {
	margin: 0;
	color: var(--meta-item-color);
	font-size: var(--meta-item-font-size);
}

.mwd-warenboerse-modal__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
}

.mwd-warenboerse-modal__header h2 {
	margin: 0;
}

.mwd-warenboerse-modal__meta {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	color: #555;
	font-size: 0.9rem;
}

.mwd-warenboerse-modal__meta ul {
	list-style: none;
}

.mwd-warenboerse-modal__meta ul li {

}

.mwd-warenboerse-modal__body {
	margin-bottom: 1.5rem;
}

.mwd-warenboerse-modal__contact {
	border-top: 1px solid var(--gray);
	padding-top: 15px;
}

.mwd-warenboerse-modal__contact h4 {
	padding: 0;
	margin: 0;
    font-weight: 400;
}

.mwd-warenboerse-modal__contact h3 {
	margin-top: 0;
}

.mwd-warenboerse-modal__contact-list {
 list-style: none;
 padding: 0;
}


.post-nav {
	margin-top: 56px;
	margin-bottom: 56px;
}
/*
.post-nav .pager {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.post-nav .pager li a,
.post-nav .pager li span {
	display: inline-block;
	padding: 0.5rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	text-decoration: none;
	color: #0073aa;
	min-width: 2.25rem;
	text-align: center;
}

.post-nav .pager li.active span,
.post-nav .pager li a:hover,
.post-nav .pager li a:focus {
	background: #0073aa;
	border-color: #0073aa;
	color: #fff;
}

.post-nav .pager li span.active {
	color: inherit;
}
*/
.mwd-alert {
	padding: 0.75rem 1rem;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.mwd-alert--success {
	background: #ecf9f1;
	color: #276738;
	border: 1px solid #81c784;
}

.mwd-alert--error {
	background: #fdecea;
	color: #b71c1c;
	border: 1px solid #f5a199;
}


.mwd-badge {
	display: inline-block;
	padding: 0.3rem 0.6rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	background-color: #e1f5fe;
	color: #0277bd;
	border-radius: 100%;
    width: 60px;
    height: 60px;
	display: flex;
    justify-content: center;
    align-items: center;
}

.mwd-badge--request {
	background-color: #fce4ec;
	color: #ad1457;
}

@media (min-width: 991px) {
	.mwd-warenboerse-listings__results {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.mwd-warenboerse-modal__content {
		padding: 1.5rem;
	}

	.mwd-warenboerse-listings__filters {
		flex-direction: column;
	}
}


/* custom for website */
/*
.hero {
	height: 17vh;
}

.hero .slider {
	height: 17vh;
	background-position: bottom;
}
*/

@media(max-width: 992px){
	.languagehover {
		display: none;
	}
}



