/*<meta />*/

:root
{
	--cp-orange: #ff7a14;
	--cp-dark-orange: #e75516;
	--navy: #15324a;
	--navy-2: #1c3e5c;
	--ink: #1a1a1a;
	--gray-dark: #4c4c4c;
	--gray-med: #757575;
	--line: #ededed;
	--line-2: #e3e6e9;
	--faint: #f7f8f9;
	--blue-link: #0a6cbf;
	--bim-blue: #53abf6;
	--shadow: 0 1px 2px rgba(20,40,60,.05), 0 10px 24px -16px rgba(20,40,60,.25);
}

html
{
	scroll-behavior: smooth;
}

body
{
	margin: 2rem;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	color: #1a1a1a;
	background: #fff;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

/* Header section elements start */

.mast-head
{
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
}

.logo-container
{
	height: auto;
	width: auto;
	display: flex;
	align-items: center;
	justify-self: start;
}

.logo-container img
{
	height: auto;
	width: auto;
}

.logo-web
{
	display: block;
}

.logo-mobile
{
	display: none;
}

.site-title
{
	font-size: 2rem;
	text-align: center;
}

.language-selector
{
	position: relative;
	display: inline-flex;
	align-items: center;
	border-radius: 10px;
}

.language-selector:hover #languageFilter
{
	border-color: #15324a;
}

.language-selector .language-flag
{
	position: absolute;
	left: 12px;
	pointer-events: none;
	color: #fff;
	width: 24px;
	height: 22px;
	display: grid;
	place-items: center;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
	border-radius: 2px;
}

#languageFilter
{
	appearance: none;
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	color: #4c4c4c;
	border: 1px solid #e3e6e9;
	border-radius: 8px;
	padding: 9px 36px 9px 44px;
	background: #fff;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: right 12px center;
}

/* Header section elements end */
/* Main section elements start */

.main
{
	display: grid;
	grid-template-columns: minmax(0,1fr) 380px;
	gap: 40px;
	max-width: 1150px;
	margin: 0 auto;
	padding-top: 28px;
	padding-right: 40px;
	padding-bottom: 80px;
	padding-left: 40px;
	align-items: start;
}

.primary
{
	
}

.category-tabs,
.category-section
{
	grid-column: 1;
}

.category-tabs
{
	display: flex;
	gap: 16px;
	margin-bottom: 22px;
}

.category-tab
{
	flex: 1;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	padding: 18px 16px;
	border-radius: 10px;
	border: 1px solid #e3e6e9;
	background: #fff;
	color: #15324a;
	cursor: pointer;
	transition: all .15s ease;
}

.category-tab:hover
{
	border-color: #15324a;
}

.category-tab.active
{
	background: #15324a;
	border-color: #15324a;
	color: #fff;
	box-shadow: 0 8px 18px -10px rgba(21,50,74,.6);
}

.category-tab:focus-visible
{
	outline: 2px solid #ff7a14;
	outline-offset: 2px;
}

.category-section
{
	display: none;
}

.category-section.active
{
	display: block;
	animation: fade .25s ease;
}

.category-intro
{
	color: #4c4c4c;
	font-size: 15px;
	margin: 0 0 24px;
}

.category
{
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3,1fr);
}

.product-card
{
	font: inherit;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 0;
	cursor: pointer;
	background: none;
	border: 0;
	padding: 0;
	height: 100%;
}

.product-card:focus-visible
{
	outline: none;
}

.product-card:focus-visible .img-wrap
{
	outline: 2px solid #ff7a14;
	outline-offset: 2px;
}

.img-wrap
{
	display: flex;
	place-items: center;
	justify-content: center;
	height: 310px;
	padding: 22px;
	overflow: hidden;
	background: linear-gradient(180deg,#fafbfc,#f1f4f6);
	border: 1px solid #e3e6e9;
	border-radius: 14px;
	box-shadow: 0 1px 2px rgba(20,40,60,.05), 0 10px 24px -16px rgba(20,40,60,.25);
	transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.img-wrap img
{
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.product-card:hover .img-wrap
{
	transform: translateY(-4px);
	border-color: #ff7a14;
	box-shadow: 0 16px 30px -16px rgba(231,85,22,.45);
}

.product-card.active .img-wrap
{
	border-color: #ff7a14;
	box-shadow: 0 0 0 2px #ff7a14 inset, 0 1px 2px rgba(20,40,60,.05), 0 10px 24px -16px rgba(20,40,60,.25);
}

.product-card .name
{
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -.01em;
	margin-top: 14px;
}

.secondary
{
	grid-column: 2;
	grid-row: 1 / span 2;
	position: sticky;
	top: 20px;
	border: 1px solid #e3e6e9;
	border-radius: 14px;
	padding-right: 22px;
	padding-bottom: 24px;
	padding-left: 22px;
	box-shadow: 0 1px 2px rgba(20,40,60,.05), 0 10px 24px -16px rgba(20,40,60,.25);
	max-height: calc(100vh - 110px);
	width: 500px;
	overflow-y: auto;
}

.product-group-header
{
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	user-select: none;
	margin: 20px 0 10px;
	font-size: 18px;
	font-weight: 700;
	color: #15324a;
}

.product-group-header:hover
{
	color: #ff7a14;
}

.toggle-icon
{
	width: 16px;
	text-align: center;
	font-size: 12px;
}

.product-group-list
{
	display: block;
}

.product-group-list.collapsed
{
	display: none;
}

.link-panel h2
{
	margin-top: 0;
}

ul
{
	list-style: none;
	padding-left: 0;
}

li
{
	margin: 6px 0;
	padding: 5px;
	border-bottom: 1px solid #ededed;
	font-size: 14px;
}

a
{
	color: #0066cc;
	text-decoration: none;
}

a:hover
{
	text-decoration: underline;
}

.file-type-bim
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .03em;
	text-decoration: none;
	padding: 4px 9px;
	border-radius: 6px;
	border: 1px solid;
	white-space: nowrap;
	color: #53abf6;
	border-color: rgba(83,171,246,1);
	background: rgba(83,171,246,.06);
}

.file-type-cad
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .03em;
	text-decoration: none;
	padding: 4px 9px;
	border-radius: 6px;
	border: 1px solid;
	white-space: nowrap;
	color: #15324a;
	border-color: rgba(21,50,74,.3);
	background: rgba(21,50,74,.06);
}

.file-type-doc
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .03em;
	text-decoration: none;
	padding: 4px 9px;
	border-radius: 6px;
	border: 1px solid;
	white-space: nowrap;
	color: #2f6e2f;
	border-color: rgba(60,131,0,.35);
	background: rgba(60,131,0,.08);
}

.file-type-pdf
{
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .03em;
	text-decoration: none;
	padding: 4px 9px;
	border-radius: 6px;
	border: 1px solid;
	white-space: nowrap;
	color: #e75516;
	border-color: rgba(231,85,22,.35);
	background: rgba(255,122,20,.08);
}

.file-type-btn
{
	display: inline-block;
	margin-left: 8px;
	padding: 2px 8px;
	text-decoration: none;
	border: 1px solid #0078d4;
	border-radius: 4px;
	background: #0078d4;
	color: #fff;
	font-size: .85em;
}

.secondary ul li
{
	display: flex;
	align-items: center;
}

.secondary ul li span
{
	margin-right: auto;
}

.secondary ul li a
{
	margin-left: 8px;
}

/* Main section elements end */
/* Feedback section elements start */

.send-feedback
{
	position: fixed;
	left: 30px;
	bottom: 22px;
	z-index: 60;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 15px;
	border-radius: 999px;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(135deg,#ff7a14,#e75516);
	box-shadow: 0 10px 26px -8px rgba(231,85,22,.6);
	transition: transform .16s ease, box-shadow .16s ease;
}

.send-feedback:hover
{
	transform: translateY(-3px);
	box-shadow: 0 16px 32px -10px rgba(231,85,22,.75);
}

.send-feedback:focus-visible
{
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.send-feedback .label
{
	font-weight: 600;
	font-size: 14px;
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	opacity: 0;
	transition: max-width .22s ease, opacity .18s ease;
}

.send-feedback:hover .label,
.send-feedback:focus-visible .label
{
	max-width: 90px;
	opacity: 1;
}

/* Responsive elements start */

@media screen and (max-width: 768px)
{
	.mast-head
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.logo-web
	{
		display: none;
	}

	.logo-mobile
	{
		display: block;
	}

	.site-title
	{
		display: none;
	}

	.main
	{
		display: grid;
		grid-template-columns: 1fr;
		gap: 20px;
		padding-right: 0;
		padding-left: 0;
	}

	.category-intro
	{
		display: none;
	}

	.category
	{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 22px;
	}

	.img-wrap
	{
		display: none;
	}

	.product-card
	{
		font: inherit;
		text-align: center;
		justify-content: center;
		display: flex;
		flex-direction: column;
		gap: 0;
		cursor: pointer;
		background: none;
		border: 1px solid #e3e6e9;
		padding: 0;
		height: auto;
		width: auto;
		border-radius: 10px;
	}

	.product-card:hover
	{
		border: 1px solid #e3e6e9;
		border-color: #15324a;
	}

	.product-card.active
	{
		background: #15324a;
		border-color: #15324a;
		color: #fff;
		box-shadow: 0 8px 18px -10px rgba(21, 50, 74, .6);
	}

	.product-card .name
	{
		font-size: 19px;
		font-weight: 700;
		letter-spacing: -.01em;
		margin-top: 0px;
	}

	.secondary
	{
		grid-column: auto;
		grid-row: auto;
		position: static;
		width: auto;
		max-height: none;
	}

	.send-feedback
	{
		display: none;
	}
}

/* Responsive elements end */

