/*
 * This is a globally available SCSS project file.
 * It contains project specific utilities (variables, mixins, functions) that don't! output CSS by default.
 * We use it to be imported in a webpack loader to avoid having to import these in each separate file.
 *
 * This file is used next to "seng-scss" which is imported globally as well and contain the default mixins/vars/functions
 */
/**
 * Asset URL builder
 *
 * @param {String} $type - Asset type, matching folder name
 * @param {String} $file - Asset file name, including extension
 *
 * @return {URL} - A `url()` function leading to the asset
 */
/*
 * Font asset helper
 * @access public
 * @param {String} $file - Asset file name, including extension
 * @return {URL} - A `url()` function leading to the font
 * @require {function} asset
 */
/*
 * Get Font weight
 *
 * @param {String} $weight - The name of the weight you need
 *
 * @return {Number} - The CSS based font weight on the name
 */
/**
 * Z-Index function
 *
 * @param {string} $list (Array) - The list to find the current z-index in
 * @param {string} $element (String) - The name of the current element, must be in the $list
 *
 * @returns {number}
 */
/**
 * Get EM size of a value based on a base size
 *
 * @param {Number} $value - The value you need the EM value from
 * @param {Number} $base - The base value where the $value is calculated upon
 *
 * @return {EM Value} - The EM value based on $value and $base
 */
/**
 * Font Face
 *
 * @param {string} $fontName - Name of the font
 * @param {string} $folderName - Subfolder inside the fonts folder
 * @param {string} $fileName - Name of the font-file
 * @param {string} $fontWeight (normal) - Font weight value
 * @param {string} $fontStyle (normal) - Font style value
 */
/**
 * Respond To (Breakpoint)
 *
 * @param {string} $name - Name of the breakpoint used in $breakpoints
 */
/**
 * Aspect ratio, create a :before pseudo element for setting an aspect ratio on an element
 *
 * @param {number} $width (1) - Percentage width
 * @param {number} $height ($width) - Percentage height
 * @param {boolean} $relative (true) - Add relative position to element
 */
/**
 * Hover Mixin for applying :hover pseudo styles
 *
 * Add your own implementation for showing hovers
 * Example using Modernizr touch check: html.no-touch &:hover { @content; }
 * Leaving it to just :hover by default. But best practice to always use the mixin
 *
 * @param $extraSelector:string (optional) = an extra selector that can have the same styles as a hover (for mobile/active state)
 */
/**
 * Offset
 *
 * @param {number} $top (0) - Top Offset
 * @param {number} $left (0) - Left Offset
 */
/**
 * Position mixin for setting absolute position values
 *
 * The mixin can have multiple arguments providing a number
 * @param {number} $top (0) - Top Position
 * @param {number} $right ($top) - Right Position
 * @param {number} $bottom ($top) - Bottom Position
 * @param {number} $left ($right) - Left Position
 *
 * Or a map of multiple positions
 * @param {map} $args... - A map containing multiple positions (top: 1px, left: 1px)
 */
/**
 * Set pseudo elements styles that are used mostly (content, display, position)
 *
 * @param {display} $display (block)
 * @param {position} $position (absolute)
 * @param {string} $content ('')
 */
/**
 * Size an Element
 *
 * @param {number} $width (1em) - Width of the element
 * @param {number} $height ($width) - Height of the element
 */
.wb01-filter {
	z-index: 0;
	overflow: hidden;
	width: 100%;
}

.wb01-filter__row {
	display: block;
}

.wb01-filter__sidebar {
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	overflow-y: scroll;
	position: fixed;
	background: #fff;
	z-index: 2;
	display: none;
}

.wb01-filter__sidebar.is-active {
	display: block;
}

.wb01-filter__sidebar header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-bottom: 40px;
}

.wb01-filter__sidebar form {
	padding: 0 24px;
}

.wb01-filter__sidebar fieldset {
	border: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.wb01-filter__sidebar fieldset:not(:last-of-type) {
	margin-bottom: 48px;
}

.wb01-filter__title, .wb01-filter__actions {
	height: 7.2rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	border-bottom: 1px solid #f3f4f8;
}

.wb01-filter__title {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: #171717;
}

.wb01-filter__actions {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 16px;
	color: #858587;
}

.wb01-filter__actions .icon {
	display: none;
}

.wb01-filter__close {
	height: 2rem;
	width: 2rem;
	position: absolute;
	top: 2.6rem;
	right: 2.6rem;
}

.wb01-filter__active-filters {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin-top: 48px;
	margin-bottom: 40px;
	padding-left: 24px;
	padding-right: 24px;
}

.wb01-filter__active-filters > li {
	margin-bottom: 8px;
}

.wb01-filter__active-filters > li:not(:last-child) {
	margin-right: 8px;
}

.wb01-filter__active-filters a {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	height: 40px;
	padding: 0 16px;
	background: #171717;
	color: #fff;
	border-radius: 40px;
	-webkit-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	white-space: nowrap;
}

.wb01-filter__active-filters a:hover {
	background-color: #d9261c;
}

.wb01-filter__clear-filters {
	cursor: pointer;
	padding: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	color: #171717;
}

.wb01-filter__clear-filters .icon {
	height: 20px;
	width: 20px;
	font-size: 20px;
	margin-left: 2px;
}

.wb01-filter__filter-title {
	margin-bottom: 24px;
}

.wb01-filter__filter:not(:last-child) {
	margin-bottom: 16px;
}

.wb01-filter__submit {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 48px auto;
}

.wb01-filter__open {
	font-size: 16px;
}

.wb01-filter__open .font-ico-filter {
	position: relative;
	top: -2px;
}

.wb01-filter__content__title {
	color: #858587;
	font-size: 16px;
}

.wb01-filter__content > header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 24px;
	height: 7.2rem;
	border-bottom: 1px solid #f3f4f8;
}

.wb01-filter__content > ul {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.wb01-filter__result {
	width: 100%;
	position: relative;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	margin-bottom: 24px;
	display: none;
}

.wb01-filter__result.is-active {
	display: table;
}

.wb01-filter__result::before {
	content: "";
	display: block;
	position: absolute;
	width: calc(100% - 48px);
	height: calc(100% - 76px);
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	background: #858587;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 12px 0 #858587;
	        box-shadow: 0 0 12px 0 #858587;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.wb01-filter__result:hover::before {
	opacity: 1;
	display: none;
}

.wb01-filter__result > div {
	position: relative;
	height: auto;
	width: 100%;
	top: 0;
	left: 0;
	max-height: 456px;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	will-change: transform;
}

.wb01-filter__result > div::before {
	content: '';
	display: block;
	padding-top: 166.66667%;
}

.wb01-filter__result__image {
	height: 50%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
}

.wb01-filter__result__background {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
	overflow: hidden;
}

.wb01-filter__result__background img {
	-webkit-transform: scale(1.1) rotate(-180deg);
	        transform: scale(1.1) rotate(-180deg);
}

.wb01-filter__result__description {
	height: auto;
	width: 100%;
	position: absolute;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	padding: 32px 24px;
	bottom: 0;
	left: 0;
	color: #fff;
}

.wb01-filter__result__description .heading-05 {
	margin-bottom: 16px;
	min-height: 4.8rem;
}

.wb01-filter__result__description .secondary-button {
	margin-top: 16px;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
}

.wb01-filter__result__description .secondary-button [class*='font-ico'] {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-expanded .wb01-filter__result__description .secondary-button [class*='font-ico'] {
	-webkit-transform: rotate(0);
	        transform: rotate(0);
}

.wb01-filter__result__details {
	overflow: hidden;
	width: 100%;
}

.wb01-filter__result__details table {
	width: 100%;
}

.wb01-filter__result__details table a {
	text-decoration: underline;
	color: inherit;
}

.wb01-filter__result__details table a:hover {
	color: #d9261c;
}

.wb01-filter__result__details td {
	padding: 4px 0;
	vertical-align: top;
}

.wb01-filter__result__details td:first-of-type {
	white-space: nowrap;
	padding-right: 32px;
	color: #858587;
}

.wb01-filter__result-none {
	line-height: 1.5;
	margin-left: 12px;
	font-size: 20px;
	clear: both;
}

.wb01-filter__result-none-secondline {
	line-height: 1.5;
	margin-left: 12px;
	font-size: 20px;
	color: #ccc;
	margin-bottom: 80px;
}

.wb01-filter__pagination {
	height: 128px;
	width: 100%;
	background: #f3f4f8;
	margin-top: 48px;
	text-align: center;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.wb01-filter__pagination::before {
	content: "";
	display: block;
	position: absolute;
	height: 100%;
	width: calc(100% + 6.99%);
	top: 0;
	left: 0;
	-webkit-transform: translateX(-3.495%);
	        transform: translateX(-3.495%);
	background: #f3f4f8;
}

.wb01-filter__pagination .pagination-num-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.wb01-filter__pagination .pagination-num:not(.primary-button),
.wb01-filter__pagination .pagination-dot,
.wb01-filter__pagination .pagination-disabled:not(.primary-button) {
	height: 48px;
	width: 48px;
	line-height: 48px;
	border-radius: 10px;
	display: inline-block;
	text-decoration: none;
	text-align: center;
	color: #171717;
	font-size: 16px;
}

.wb01-filter__pagination .pagination-prev, .wb01-filter__pagination .pagination-next {
	line-height: 0;
	height: 48px;
	width: 48px;
}

.wb01-filter__pagination .pagination-prev span, .wb01-filter__pagination .pagination-next span {
	pointer-events: none;
}

.wb01-filter__pagination .pagination-prev {
	-webkit-transform: scaleX(-1);
	        transform: scaleX(-1);
	margin-right: 8px;
}

.wb01-filter__pagination .pagination-next {
	margin-left: 8px;
}

.wb01-filter__pagination .pagination-dot {
	background: none;
	border: 0;
	font-weight: bolder;
}

.wb01-filter__pagination .pagination-num-active {
	background-color: #fff;
}

.wb01-filter__pagination .pagination-disabled {
	background-color: #c7c8cb;
}

.wb01-filter__pagination .pagination-disabled:hover {
	background-color: #c7c8cb;
}

.wb01-filter__pagination .pagination-disabled:hover span {
	-webkit-animation: none;
	        animation: none;
}

@media (min-width: 480px) {
	.wb01-filter .wb01-filter__result > div {
		position: relative;
	}
	.wb01-filter .wb01-filter__result > div::before {
		content: '';
		display: block;
		padding-top: 146.15385%;
	}
}

@media (min-width: 768px) {
	.wb01-filter .wb01-filter__row {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
	.wb01-filter .wb01-filter__sidebar, .wb01-filter .wb01-filter__content {
		padding-top: 32px;
	}
	.wb01-filter .wb01-filter__sidebar {
		height: auto;
		width: auto;
		top: auto;
		left: auto;
		position: relative;
		border-right: 1px solid #f3f4f8;
		padding-right: 24px;
		display: block;
		overflow: visible;
	}
	.wb01-filter .wb01-filter__sidebar header {
		border-bottom: 0;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		    -ms-flex-direction: row;
		        flex-direction: row;
		margin-bottom: 0;
	}
	.wb01-filter .wb01-filter__sidebar form {
		padding: 0;
	}
	.wb01-filter .wb01-filter__sidebar::after {
		content: "";
		display: block;
		position: absolute;
		height: 30px;
		width: 200%;
		top: 100%;
		right: -1px;
		border-bottom: 1px solid #f3f4f8;
		border-right: 1px solid #f3f4f8;
		border-bottom-right-radius: 30px;
		-webkit-transform: rotate(-10deg);
		        transform: rotate(-10deg);
		-webkit-transform-origin: top right;
		        transform-origin: top right;
	}
	.wb01-filter .wb01-filter__active-filters {
		padding: 0;
		margin-top: 0;
	}
	.wb01-filter .wb01-filter__close, .wb01-filter .wb01-filter__open {
		display: none;
	}
	.wb01-filter .wb01-filter__title {
		height: auto;
		margin-bottom: 56px;
	}
	.wb01-filter .wb01-filter__title, .wb01-filter .wb01-filter__actions {
		border-bottom: 0;
		padding: 0;
	}
	.wb01-filter .wb01-filter__actions {
		height: 3.2rem;
	}
	.wb01-filter .wb01-filter__actions__title {
		display: none;
	}
	.wb01-filter .wb01-filter__actions .icon {
		display: block;
	}
	.wb01-filter .wb01-filter__submit {
		display: none;
	}
	.wb01-filter .wb01-filter__content header {
		border-bottom: 0;
		height: auto;
		margin-bottom: 48px;
	}
	.wb01-filter .wb01-filter__content > ul {
		min-height: calc(100vh + 24px);
	}
	.wb01-filter .wb01-filter__pagination {
		height: 230px;
		width: 100%;
		margin-top: 160px;
		position: relative;
	}
	.wb01-filter .wb01-filter__pagination::before, .wb01-filter .wb01-filter__pagination::after {
		content: "";
		display: block;
		position: absolute;
	}
	.wb01-filter .wb01-filter__pagination::before {
		height: 230px;
		width: 105px;
		top: 0;
		left: auto;
		right: 100%;
		background-color: transparent;
		background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20107.9%20217%22%3E%0A%20%20%3Cpath%20fill%3D%22%23F3F4F8%22%20d%3D%22M107.9%20216V0C91.1%200%2076.2%2010.4%2070.4%2026.1L0%20216h107.9z%22%2F%3E%0A%3C%2Fsvg%3E");
		background-size: cover;
		-webkit-transform: none;
		        transform: none;
	}
	.wb01-filter .wb01-filter__pagination::after {
		height: 100%;
		width: 4.12vw;
		top: 0;
		left: 100%;
		background: #f3f4f8;
	}
}

@media (min-width: 1024px) {
	.wb01-filter .wb01-filter__content > ul {
		margin-left: -12px;
		width: calc(100% + 24px);
	}
	.wb01-filter .wb01-filter__result {
		width: calc(50% - 24px);
		margin: 0 12px 24px;
	}
	.wb01-filter .wb01-filter__result > div {
		position: relative;
		max-height: none;
		min-height: 624px;
	}
	.wb01-filter .wb01-filter__result > div::before {
		content: '';
		display: block;
		padding-top: 147.39336%;
	}
	.wb01-filter .wb01-filter__result__description .heading-05 {
		margin-bottom: 32px;
		min-height: 6.4rem;
	}
	.wb01-filter .wb01-filter__result__description .secondary-button {
		margin-top: 16px;
	}
}

@media (min-width: 1440px) {
	.wb01-filter .wb01-filter__result {
		width: calc((100 / 3) * 1% - 24px);
		margin-left: 12px;
		margin-right: 12px;
	}
}
