.wrl-app {
	--wrl-accent: #712F3D;
	--wrl-accent-2: #E9962D;
	--wrl-ink: #333132;
	--wrl-text: #353535;
	--wrl-muted: #555555;
	--wrl-line: #E6E6E6;
	--wrl-bg: #FAFAFA;
	--wrl-radius: 4px;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	color: var(--wrl-ink);
	display: block;
}
.wrl-app *,
.wrl-app *::before,
.wrl-app *::after {
	box-sizing: border-box;
}
.wrl-app button {
	font-weight: normal;
	letter-spacing: normal;
	text-transform: none;
	min-height: 0;
}
.wrl-app label {
	font-weight: normal;
}

.wrl-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #FFFFFF;
	border-top: 1px solid var(--wrl-line);
	border-bottom: 1px solid var(--wrl-line);
}
.wrl-nav .libs_navigation_items_row {
	margin-bottom: 0;
}
.wrl-nav .libs_navigation_items_row > .col {
	padding-top: 0;
	padding-bottom: 0;
}
ul.wrl-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.wrl-nav__list li.wrl-nav__item {
	margin: 0;
	padding: 0;
	list-style: none;
}
.wrl-nav__link {
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	padding: 20px 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--wrl-ink);
	cursor: pointer;
}
.wrl-nav__link:hover {
	border-color: var(--wrl-accent);
}
.wrl-nav__link.is-active {
	font-weight: 700;
	border-color: var(--wrl-accent);
}

.wrl-section {
	position: relative;
}
.wrl-section .section-bg.fill {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--wrl-bg);
}
.wrl-section__content {
	position: relative;
	z-index: 1;
	padding: 32px 0;
}
.wrl-tab-section + .wrl-tab-section {
	margin-top: 48px;
}

.wrl-docs.row {
	align-items: flex-start;
	margin-bottom: 0;
}
.wrl-docs__head {
	padding-bottom: 20px;
	margin-bottom: 4px;
	border-bottom: 1px solid var(--wrl-line);
}
.wrl-docs__title {
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
	color: var(--wrl-ink);
	margin: 0 0 8px;
}
.wrl-docs__sub {
	font-size: 16px;
	line-height: 1.5;
	color: var(--wrl-muted);
	margin: 0;
}
.wrl-docs--single .wrl-docs__head {
	border-bottom: none;
	padding-bottom: 8px;
}
.wrl-side {
	position: relative;
}
.wrl-filters {
	padding: 16px;
	border: 1px solid var(--wrl-line);
	background: #FFFFFF;
}
.wrl-main {
	position: relative;
}
.wrl-main.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

.wrl-search {
	position: relative;
	margin-bottom: 16px;
}
input[type=text].wrl-search__input {
	width: 100%;
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 0;
	padding: 19px;
	color: #808080;
	background-color: #FFFFFF;
	border: 1px solid #E6E6E6;
	box-shadow: unset;
	background-image: url("../img/icons/red-search-icon.svg");
	background-repeat: no-repeat;
	background-size: 16px auto;
	background-position: right 16px center;
}
ul.wrl-suggest {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 50;
	margin: 4px 0 0;
	padding: 4px 0;
	list-style: none;
	background: #FFFFFF;
	border: 1px solid var(--wrl-line);
	box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.35);
	max-height: 260px;
	overflow-y: auto;
}
ul.wrl-suggest li.wrl-suggest__item {
	margin: 0;
	padding: 8px 14px;
	list-style: none;
	font-size: 14px;
	cursor: pointer;
}
ul.wrl-suggest li.wrl-suggest__item:hover {
	background: #F5F5F5;
	color: var(--wrl-accent);
}

.wrl-acc {
	border-bottom: 1px solid var(--wrl-line);
	padding-bottom: 14px;
	margin-bottom: 14px;
}
button.wrl-acc__title {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	padding: 0;
	font-weight: 700;
	font-size: 14px;
	color: #000000;
	cursor: pointer;
}
.wrl-acc__toggle {
	width: 16px;
	height: 10px;
	background: url("../img/icons/accordion_arrow_top.svg") no-repeat center;
	background-size: 12px auto;
	transform: rotate(180deg);
	transition: transform 0.2s ease;
}
.wrl-acc.is-open .wrl-acc__toggle {
	transform: rotate(0deg);
}
.wrl-acc__body {
	margin-top: 12px;
}

ul.wrl-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.wrl-checklist--child {
	margin: 12px 0 0 0;
	padding-left: 16px;
	border-left: 1px solid var(--wrl-line);
}
ul.wrl-checklist--child li:first-child {
	margin-top: 0;
}
ul.wrl-checklist li {
	margin: 0 0 12px;
	padding: 0;
	list-style: none;
}
ul.wrl-checklist li:last-child {
	margin-bottom: 0;
}
label.wrl-check {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 14px;
	color: #000000;
	cursor: pointer;
}
.wrl-check__input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.wrl-check__box {
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
	border: 1px solid #808080;
	background: #FFFFFF;
}
.wrl-check:hover .wrl-check__box {
	border-color: var(--wrl-accent);
}
.wrl-check.is-checked .wrl-check__box {
	background: var(--wrl-accent) url("../img/icons/checkmark-icon.svg") no-repeat center;
	background-size: 9px auto;
	border-color: var(--wrl-accent);
}
.wrl-side__clear {
	background: none;
	border: none;
	padding: 4px 0 4px 16px;
	font-size: 12px;
	color: var(--wrl-accent);
	cursor: pointer;
	background: url("../img/icons/red-x-icon.svg") no-repeat left center;
	background-size: 8px auto;
}
.wrl-filters__foot {
	margin-top: 2px;
}
.wrl-reset {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	color: #000000;
}
.wrl-reset__clear {
	background: url("../img/icons/red-x-icon.svg") no-repeat left center;
	background-size: 8px auto;
	border: none;
	border-bottom: 1px solid var(--wrl-accent);
	padding: 0 0 1px 12px;
	font-size: 10px;
	line-height: 1.2;
	color: var(--wrl-accent);
	cursor: pointer;
}
.wrl-filters__foot .wrl-chips {
	margin: 16px 0 0;
}

.wrl-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	font-size: 14px;
	color: var(--wrl-muted);
}
.wrl-head__clear {
	background: none;
	border: none;
	color: var(--wrl-accent);
	cursor: pointer;
	font-size: 14px;
}

.wrl-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}
.wrl-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	font-size: 12px;
	color: #000000;
	background: #FFFFFF;
	border: 1px solid #000000;
	cursor: pointer;
}
.wrl-chip:hover {
	background: #EFEFEF;
}
.wrl-chip__x {
	width: 8px;
	height: 8px;
	background: url("../img/icons/x-icon.svg") no-repeat center;
	background-size: 8px auto;
}

.wrl-groups {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.wrl-group__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 16px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--wrl-line);
}
.wrl-group__title {
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	color: var(--wrl-ink);
	margin: 0;
}
.wrl-group__all {
	background: none;
	border: none;
	padding-right: 22px;
	font-size: 14px;
	color: var(--wrl-accent);
	cursor: pointer;
	background: url("../img/icons/right_arrow.svg") no-repeat right center;
	background-size: 16px auto;
}

.wrl-main > .wrl-grid.row {
	margin-left: -6px;
	margin-right: -6px;
	margin-bottom: 0;
}
.wrl-grid.row > .col {
	padding: 0 6px 12px;
	margin: 0;
	display: flex;
}
.wrl-grid.row > .col > .col-inner {
	width: 100%;
	height: 100%;
}

.wrl-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid var(--wrl-line);
	border-radius: var(--wrl-radius);
	padding: 16px;
	color: var(--wrl-text);
	text-decoration: none;
	transition: all 0.3s ease;
}
.wrl-card:hover {
	box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.5);
	border-color: var(--wrl-accent);
	color: var(--wrl-accent);
}
.wrl-card__photo {
	margin: -16px -16px 16px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--wrl-line);
	border-radius: var(--wrl-radius) var(--wrl-radius) 0 0;
}
.wrl-card__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.wrl-card--photo:hover .wrl-card__photo img {
	transform: scale(1.04);
}
.wrl-card__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}
.wrl-card__ico {
	width: 24px;
	height: 20px;
	background: url("../img/icons/spec-sheet-icon.svg") no-repeat center;
	background-size: auto 100%;
}
.wrl-card:hover .wrl-card__ico {
	filter: brightness(0) saturate(100%) invert(21%) sepia(10%) saturate(4262%) hue-rotate(300deg) brightness(93%) contrast(86%);
}
.wrl-ico--brochure .wrl-card__ico { background-image: url("../img/icons/brochure-icon.svg"); }
.wrl-ico--user_manuals .wrl-card__ico,
.wrl-ico--manual .wrl-card__ico,
.wrl-ico--brand_catalog .wrl-card__ico { background-image: url("../img/icons/manual-icon.svg"); }
.wrl-ico--parts_list .wrl-card__ico,
.wrl-ico--installation .wrl-card__ico { background-image: url("../img/icons/installation-icon.svg"); }
.wrl-ico--warranty .wrl-card__ico { background-image: url("../img/icons/warranty-icon.svg"); }
.wrl-ico--photofeature .wrl-card__ico,
.wrl-ico--product_images .wrl-card__ico { background-image: url("../img/icons/photo-lib-icon.svg"); }
.wrl-ico--alternate_photos .wrl-card__ico { background-image: url("../img/icons/alternate-photos-icon.svg"); }
.wrl-card__tag {
	padding: 5px 6px;
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--wrl-muted);
	background: var(--wrl-line);
	border-radius: 2px;
}
.wrl-card:hover .wrl-card__tag {
	color: #FFFFFF;
	background: var(--wrl-accent);
}
.wrl-card__title {
	font-weight: 700;
	font-size: 14px;
	line-height: 1.5;
	color: inherit;
	margin: 0;
}
.wrl-card__foot {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--wrl-line);
}
.wrl-card__view {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	width: 100%;
	font-weight: 600;
	font-size: 12px;
	color: inherit;
}
.wrl-card__view img {
	width: 16px;
	height: auto;
}
.wrl-card:hover .wrl-card__view img {
	filter: brightness(0) saturate(100%) invert(21%) sepia(10%) saturate(4262%) hue-rotate(300deg) brightness(93%) contrast(86%);
}

.wrl-video {
	display: flex;
	flex-direction: column;
}
.wrl-video__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #000000;
	overflow: hidden;
}
.wrl-video__preview {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	cursor: pointer;
}
.wrl-video__preview::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}
.wrl-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 48px;
	height: 48px;
	transform: translate(-50%, -50%);
	background: url("../img/icons/play_icon.svg") no-repeat center;
	background-size: contain;
	z-index: 2;
}
.wrl-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.8);
}
.wrl-lightbox__dialog {
	position: relative;
	width: 100%;
	max-width: 960px;
}
.wrl-lightbox__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #000000;
	overflow: hidden;
}
.wrl-lightbox__embed {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.wrl-lightbox__close {
	position: absolute;
	top: -44px;
	right: 0;
	width: 36px;
	height: 36px;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}
.wrl-lightbox__close::before,
.wrl-lightbox__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 2px;
	background: #ffffff;
}
.wrl-lightbox__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.wrl-lightbox__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.wrl-video__title {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
	color: var(--wrl-ink);
	margin: 12px 0 0;
}

.wrl-more {
	display: flex;
	justify-content: center;
	margin: 40px auto 0;
}
.wrl-more__btn,
.wrl-empty__clear {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #FFFFFF;
	background: var(--wrl-accent);
	border: none;
	box-shadow: none;
	margin: 0;
	min-height: 0;
	padding: 12px 44px;
	cursor: pointer;
}
.wrl-more__btn:hover,
.wrl-empty__clear:hover {
	background: var(--wrl-accent-2);
	box-shadow: none;
	color: #FFFFFF;
}

.wrl-empty {
	text-align: center;
	padding: 48px;
	background: #FFFFFF;
	border: 1px solid var(--wrl-line);
	border-radius: var(--wrl-radius);
}
.wrl-empty p {
	font-size: 16px;
	color: var(--wrl-muted);
	margin-bottom: 12px;
}

.wrl-loading {
	display: flex;
	justify-content: center;
	padding: 60px 0;
}
.wrl-spinner {
	width: 32px;
	height: 32px;
	border: 3px solid var(--wrl-line);
	border-top-color: var(--wrl-accent);
	border-radius: 50%;
	animation: wrl-spin 0.9s linear infinite;
}
@keyframes wrl-spin {
	to { transform: rotate(360deg); }
}

.wrl-sc {
	padding: 8px 0;
}

@media (max-width: 849px) {
	.wrl-docs.row > .col {
		padding-bottom: 16px;
	}
}

/* Responsive column counts are handled by Flatsome grid classes. */
