/*
 * 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
 */
.search-panel {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: fixed;
	pointer-events: none;
	overflow-y: hidden;
	overflow-x: hidden;
	opacity: 0;
	visibility: hidden;
	background-color: #fff;
	width: 100%;
	max-width: 100vw;
	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;
}

.search-panel .ne03-sub-nav {
	overflow-x: scroll;
}

.search-panel .ne03-sub-nav .col-12 {
	display: block;
	-webkit-box-flex: 0;
	-webkit-flex: none;
	    -ms-flex: none;
	        flex: none;
	max-width: none;
	width: auto;
}

.search-panel .ne03-sub-nav__link {
	display: inline-block;
}

.search-panel .so06-product-cards .product.mobile-hide {
	display: block;
}

.search-panel.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	z-index: 5;
	overflow: scroll;
}

.search-panel__header {
	height: 72px;
	width: 100%;
	text-align: center;
	display: table;
	position: relative;
}

.search-panel__header h4 {
	line-height: 72px;
}

.search-panel__header span {
	position: absolute;
	right: 24px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.search-panel .search-panel__results {
	display: none;
}

.search-panel .search-panel__results .ne03-sub-nav__link:first-child {
	margin-left: 0;
}

.search-panel .search__pagination {
	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;
	margin-bottom: 40px;
}

.search-panel .pagination-num-wrap {
	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;
}

.search-panel .pagination-num:not(.primary-button),
.search-panel .pagination-dot,
.search-panel .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;
}

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

.search-panel .pagination-prev span, .search-panel .pagination-next span {
	pointer-events: none;
}

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

.search-panel .pagination-next {
	margin-left: 8px;
}

.search-panel .pagination-dot {
	background: none;
	border: 0;
	font-weight: bolder;
}

.search-panel .pagination-num-active {
	background-color: #f3f4f8;
}

.search-panel .pagination-disabled {
	background-color: #c7c8cb;
}

.search-panel .pagination-disabled:hover {
	background-color: #c7c8cb;
}

.search-panel .pagination-disabled:hover span {
	-webkit-animation: none;
	        animation: none;
}

@media (min-width: 768px) {
	.search-panel .search-panel__header {
		height: 0;
	}
	.search-panel .search-panel__header h4 {
		display: none;
	}
	.search-panel .search-panel__header span {
		position: absolute;
		right: 80px;
		top: 80px;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		z-index: 1;
	}
	.search-panel .search-panel__header span:hover {
		cursor: pointer;
	}
	.search-panel .ne03-sub-nav {
		overflow-x: hidden;
	}
	.search-panel .ne03-sub-nav .col-12 {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		    -ms-flex: 1;
		        flex: 1 1;
		max-width: 100%;
	}
	.search-panel .pagination-num-wrap .pagination-num:not(.primary-button),
	.search-panel .pagination-num-wrap .pagination-dot,
	.search-panel .pagination-num-wrap .pagination-disabled:not(.primary-button) {
		height: 56px;
		width: 56px;
		line-height: 56px;
	}
	.search-panel .pagination-num-wrap .pagination-prev, .search-panel .pagination-num-wrap .pagination-next {
		height: 56px;
		width: 56px;
	}
	.search-panel .pagination-num-wrap .pagination-prev {
		margin-right: 24px;
	}
	.search-panel .pagination-num-wrap .pagination-next {
		margin-left: 24px;
	}
}

@media (min-width: 1024px) {
	.search-panel {
		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;
		top: 100px;
		-webkit-transition: opacity 0.3s ease, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
		transition: opacity 0.3s ease, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
		transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
		transition: opacity 0.3s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	.search-panel .ne03-sub-nav .row {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.search-panel .ne03-sub-nav .row > .col-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 83.33333%;
		    -ms-flex: 0 0 83.33333%;
		        flex: 0 0 83.33333%;
		max-width: 83.33333%;
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
	.search-panel .ne03-sub-nav .row .ne03-sub-nav__link:first-child {
		margin-left: 0;
	}
}

@media (min-width: 1440px) {
	.search-panel .ne03-sub-nav .row > .col-12 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 66.66667%;
		    -ms-flex: 0 0 66.66667%;
		        flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
}

.search-result__container .search-panel {
	position: static;
	visibility: visible;
	opacity: 1;
	pointer-events: all;
}

.search-result__container .search-panel .search-panel__header {
	display: none;
}
