:root {
	--color-black: #000000;
	--color-white: #FFFFFF;
	--color-hover-dark: #333333;
	--color-border: var(--iw-color-border-light);
}

.iw---Presscenter {
	.item-control {
		margin-top: 40px;
		
		label {
			display: inline;
		}
		
		select {
			color: var(--iw-primary-text-color);
			/*font-size: 14px;*/
			line-height: 160%;
			border: none;
			font-weight: 700;
			border-radius: 0;
			background: none;
			appearance: auto;
			width: auto;
			padding: 0;

			@media(min-width: 768px) {
				/*font-size: 17px;*/
			}
		}
		
		svg {
			-webkit-transition: all .3s;
			transition: all .3s;
			color: var(--iw-primary-color);
		}
		
		a:hover {
			svg {
				color: var(--color-black);
			}
		}
		
		> .row {
			/*gap: 10px;*/
			/*font-size: 14px;*/
			
			@media(min-width: 768px) {
				/*font-size: 17px;*/
			}
		}
	}
	
	.upper {
		color: #666565;
		font-weight: 700;
		text-transform: uppercase;
	}
}

/* FILTER */
.iw---Presscenter__filterContainer {
	margin-top: 30px;
}

.iw---Presscenter__filterWrapper {
	gap: 20px;

	@media(min-width: 992px) {
		gap: 0;
	}
}

/* ITEMS */
/* ----- */
.iw---Presscenter__itemsContainer {
	.spinner-container {
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,.4);
		position: fixed;
		z-index: 1000;
		top: 0;
		left: 0;
		display: none;
	}
	
	.spinner-border {
		position: fixed;
		left: 50%;
		top: 50%;
		border: 4px solid var(--color-white);
		border-radius: 50%;
		border-top: 4px solid var(--iw-primary-color);
		width: 120px;
		height: 120px;
		margin: -60px 0 0 -60px;
		-webkit-animation: spinner 2s infinite;
		animation: spinner 2s infinite;
	}
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

.iw---Presscenter__itemsContainer--items {
	margin-top: 15px;
	scroll-margin-top: 300px;
	position: relative;
	
	#newsCount {
		position: absolute;
		top: -60px;
		
		@media(min-width: 768px) {
			top: -37px;
		}
		
		@media(min-width: 1200px) {
			top: -40px;
		}
	}
	
	.pressreleaseItem-metaContainer {
		gap: 10px;
	}
	
	.pressreleaseItem-tags {
		gap: 6px;
		flex-flow: wrap;
		
		span {
			&.box {
				padding: 8px 10px;
				gap: 10px;
				border-radius: 2px;
				background: #F3F3F3;
				font-size: 14px;
				line-height: 160%;
				cursor: default;
				overflow: hidden;
				white-space: nowrap;
				text-overflow: ellipsis;
				
				@media(min-width: 992px) {
					max-width: 145px;
				}
			}
		}
	}
}

.iw---Presscenter__itemsContainer--item {
	border-bottom: 1px solid transparent;
	-webkit-transition: all .3s;
	transition: all .3s;
	cursor: pointer;
	margin-bottom: -1px;
	margin-top: 35px;
	
	&:first-child {
		margin-top: 0;
	}

	@media(min-width: 768px) {
		border-top: 1px solid rgba(209, 220, 233, 1);
		padding: 20px 0;
		margin-top: 0;

		&:hover {
			border-color: var(--iw-primary-color);

			& + .iw---Presscenter__itemsContainer--item {
				border-top-color: transparent;
			}

			.hover-underline {
				background-size: 100% 1px;
				text-decoration: none;
			}
		}
	}
	
	@media(min-width: 992px) {
		padding: 25px 0;
	}
	
	.pressreleaseItem-image {
		margin: 0 -20px 20px -20px;

		@media(min-width: 768px) {
			margin: 0;
			height: 170px;
			overflow: hidden;
			display: flex;
			align-items: center;
		}

		img {
			width: 100%;
			height: auto;
		}
	}
	
	.item-content {
		gap: 10px;
		display: flex;
		flex-direction: column;
		
		&:hover {
			cursor: pointer;
		}
	}
	
	.item-headline {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		margin: 0;
		
		+ .item-text {
			margin-top: 8px;
		}
		
		+ .pressreleaseItem-tags {
			margin-top: 20px;
		}
	}
	
	.item-link {
		-webkit-transition: color .3s;
		transition: color .3s;
	}
	
	.item-content:hover .item-link-hr {
		color: var(--iw-primary-color);
	}
	
	.item-text {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		
		+ .pressreleaseItem-tags {
			margin-top: 20px;
		}
	}
}

.iw---Presscenter .row {
	&.g5 {
		gap: 5px;
	}
	&.m10 {
		--bs-gutter-x: 10px;
	}
	&.m30 {
		--bs-gutter-x: 30px;
	}
	&.m45 {
		--bs-gutter-x: 45px;
	}
}

#overlay-background {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(51, 51, 51, .8);
	
	display: none;
}

/* PRINT CSS */
/* --------- */
@media all {
	.only-print {
		display: none !important;
	}
}
@media print {
	@page {
		margin-top: 2cm;
		margin-bottom: 2cm;
	}
	.no-print {
		display: none !important;
	}
	.only-print {
		display: block !important;
	}
	#header {
		display: none !important;
	}
	.iw---StageContainer {
		display: none !important;
	}
	.iw---BreadcrumbContainer {
		display: none !important;
	}
	.iw---Footer {
		display: none !important;
	}
	#control-icons {
		display: none !important;
	}
	.item-back-button {
		display: none !important;
	}
	.item-sidebar-block {
		display: none !important;
	}
	.iw---Presscenter__latestContainer {
		display: none !important;
	}
	
	body {
		font-family: 'Roboto', Arial, Helvetica, sans-serif;
	}
	header, footer {
		font-family: inherit;
		display: none;
	}
	.section-landingpage {
		padding: 0;
	}
	
	.print-container {
		margin-top: 30px;
	}
}


#catFilterContainer {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.cat-chip {
	display: inline-flex;
	align-items: center;
	background: #e9ecef;
	border-radius: 20px;
	padding: 4px 10px;
	font-size: 14px;
	line-height: 1;
}

.cat-chip span {
	margin-right: 6px;
}

.cat-chip button {
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	padding: 0;
}

.cat-chip button:hover {
	color: #c00;
}
