@charset "UTF-8";
/* sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
@import url("https://fonts.googleapis.com/css?family=Merriweather&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700,700i");

*,
::before,
::after {
	background-repeat: no-repeat;
	/* 1 */
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
	/* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before,
::after {
	text-decoration: inherit;
	/* 1 */
	vertical-align: inherit;
	/* 2 */
}

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* 1 */
	cursor: default;
	/* 2 */
	-ms-text-size-adjust: 100%;
	/* 3 */
	-webkit-text-size-adjust: 100%;
	/* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
	display: block;
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: .67em 0;
}

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
	/* 1 */
	display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
	margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	/* 1 */
	height: 0;
	/* 1 */
	overflow: visible;
	/* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
	list-style: none;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/* Text-level semantics (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
	background-color: transparent;
	/* 1 */
	-webkit-text-decoration-skip: objects;
	/* 2 */
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	/* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
	font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
	font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
	background-color: #ffff00;
	color: #000000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */

::selection {
	background-color: #b3d4fc;
	/* 1 */
	color: #000000;
	/* 1 */
	text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
	vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
	display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
	display: none;
	height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
	border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
	fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
	overflow: hidden;
}

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
	border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
	background-color: transparent;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	/* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	display: inline-block;
	/* 1 */
	vertical-align: baseline;
	/* 2 */
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
	overflow: auto;
	/* 1 */
	resize: vertical;
	/* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
	display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
	display: none;
}

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
	-ms-touch-action: manipulation;
	/* 1 */
	touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
	display: none;
}

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
	cursor: progress;
}

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
	cursor: pointer;
}

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden="false"][hidden]:not(:focus) {
	clip: rect(0, 0, 0, 0);
	display: inherit;
	position: absolute;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
	cursor: default;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	color: #000000;
	letter-spacing: 0;
	font-family: "Merriweather", serif;
}

h1 {
	font-size: 42px;
	line-height: 52px;
}

@media (max-width: 991px) {
	h1 {
		font-size: 24px;
		line-height: 32px;
	}
}

h2 {
	font-size: 30px;
	line-height: 40px;
}

h3 {
	font-size: 24px;
	line-height: 32px;
}

h4 {
	font-size: 20px;
	line-height: 30px;
}

strong,
b {
	font-weight: 700;
}

em,
i {
	font-style: italic;
}

html body {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.01em;
	font-family: "Lato", sans-serif;
}

html,
body {
	width: 100%;
	height: 100%;
}

*,
* > *,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	padding-top: 57px;
}

body a {
	text-decoration: underline;
	color: #000000;
	cursor: pointer;
	will-change: color;
	-webkit-transition: color 300ms;
	transition: color 300ms;
}

body a:active {
	color: #777777;
}

body a:hover {
	color: #777777;
	text-decoration: none;
}

body img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.wcag_hide {
	clip: rect(1px, 1px, 1px, 1px);
	display: block;
	position: absolute;
	left: -9000em;
}

.overflow-hidden {
	overflow: hidden;
}

ul {
	list-style-type: square;
}

.grid-helper {
	pointer-events: none;
}

.sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
}

.margin-0 {
	margin: 0 !important;
}

input[type=number] {
	-moz-appearance: textfield;
	margin: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

.img-placeholder {
	width: 100%;
	padding-bottom: 79%;
	background-color: #000000;
	background-size: 80%;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url("../images/nordesign_logo_white.svg");
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.no-padding-left {
	padding-left: 0 !important;
}

.no-padding-right {
	padding-right: 0 !important;
}

/*!
 * Bootstrap Grid v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
	width: device-width;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

.container-fluid {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}

.col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.col-auto {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
}

.col-1 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8.33333%;
	flex: 0 0 8.33333%;
	max-width: 8.33333%;
}

.col-2 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 16.66667%;
	flex: 0 0 16.66667%;
	max-width: 16.66667%;
}

.col-3 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.col-4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 33.33333%;
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.col-5 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 41.66667%;
	flex: 0 0 41.66667%;
	max-width: 41.66667%;
}

.col-6 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.col-7 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 58.33333%;
	flex: 0 0 58.33333%;
	max-width: 58.33333%;
}

.col-8 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 66.66667%;
	flex: 0 0 66.66667%;
	max-width: 66.66667%;
}

.col-9 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
}

.col-10 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 83.33333%;
	flex: 0 0 83.33333%;
	max-width: 83.33333%;
}

.col-11 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 91.66667%;
	flex: 0 0 91.66667%;
	max-width: 91.66667%;
}

.col-12 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.order-first {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
}

.order-last {
	-webkit-box-ordinal-group: 14;
	-ms-flex-order: 13;
	order: 13;
}

.order-0 {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0;
}

.order-1 {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.order-2 {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}

.order-3 {
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3;
}

.order-4 {
	-webkit-box-ordinal-group: 5;
	-ms-flex-order: 4;
	order: 4;
}

.order-5 {
	-webkit-box-ordinal-group: 6;
	-ms-flex-order: 5;
	order: 5;
}

.order-6 {
	-webkit-box-ordinal-group: 7;
	-ms-flex-order: 6;
	order: 6;
}

.order-7 {
	-webkit-box-ordinal-group: 8;
	-ms-flex-order: 7;
	order: 7;
}

.order-8 {
	-webkit-box-ordinal-group: 9;
	-ms-flex-order: 8;
	order: 8;
}

.order-9 {
	-webkit-box-ordinal-group: 10;
	-ms-flex-order: 9;
	order: 9;
}

.order-10 {
	-webkit-box-ordinal-group: 11;
	-ms-flex-order: 10;
	order: 10;
}

.order-11 {
	-webkit-box-ordinal-group: 12;
	-ms-flex-order: 11;
	order: 11;
}

.order-12 {
	-webkit-box-ordinal-group: 13;
	-ms-flex-order: 12;
	order: 12;
}

.offset-1 {
	margin-left: 8.33333%;
}

.offset-2 {
	margin-left: 16.66667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.33333%;
}

.offset-5 {
	margin-left: 41.66667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.33333%;
}

.offset-8 {
	margin-left: 66.66667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.33333%;
}

.offset-11 {
	margin-left: 91.66667%;
}

@media (min-width: 576px) {
	.col-sm {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-sm-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}

	.col-sm-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}

	.col-sm-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}

	.col-sm-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-sm-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

	.col-sm-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}

	.col-sm-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-sm-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}

	.col-sm-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}

	.col-sm-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-sm-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}

	.col-sm-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}

	.col-sm-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.order-sm-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}

	.order-sm-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}

	.order-sm-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}

	.order-sm-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.order-sm-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	.order-sm-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}

	.order-sm-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}

	.order-sm-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}

	.order-sm-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}

	.order-sm-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}

	.order-sm-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}

	.order-sm-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}

	.order-sm-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}

	.order-sm-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}

	.order-sm-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}

	.offset-sm-0 {
		margin-left: 0;
	}

	.offset-sm-1 {
		margin-left: 8.33333%;
	}

	.offset-sm-2 {
		margin-left: 16.66667%;
	}

	.offset-sm-3 {
		margin-left: 25%;
	}

	.offset-sm-4 {
		margin-left: 33.33333%;
	}

	.offset-sm-5 {
		margin-left: 41.66667%;
	}

	.offset-sm-6 {
		margin-left: 50%;
	}

	.offset-sm-7 {
		margin-left: 58.33333%;
	}

	.offset-sm-8 {
		margin-left: 66.66667%;
	}

	.offset-sm-9 {
		margin-left: 75%;
	}

	.offset-sm-10 {
		margin-left: 83.33333%;
	}

	.offset-sm-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 768px) {
	.col-md {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-md-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}

	.col-md-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}

	.col-md-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}

	.col-md-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-md-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

	.col-md-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}

	.col-md-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-md-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}

	.col-md-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}

	.col-md-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-md-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}

	.col-md-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}

	.col-md-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.order-md-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}

	.order-md-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}

	.order-md-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}

	.order-md-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.order-md-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	.order-md-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}

	.order-md-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}

	.order-md-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}

	.order-md-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}

	.order-md-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}

	.order-md-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}

	.order-md-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}

	.order-md-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}

	.order-md-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}

	.order-md-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}

	.offset-md-0 {
		margin-left: 0;
	}

	.offset-md-1 {
		margin-left: 8.33333%;
	}

	.offset-md-2 {
		margin-left: 16.66667%;
	}

	.offset-md-3 {
		margin-left: 25%;
	}

	.offset-md-4 {
		margin-left: 33.33333%;
	}

	.offset-md-5 {
		margin-left: 41.66667%;
	}

	.offset-md-6 {
		margin-left: 50%;
	}

	.offset-md-7 {
		margin-left: 58.33333%;
	}

	.offset-md-8 {
		margin-left: 66.66667%;
	}

	.offset-md-9 {
		margin-left: 75%;
	}

	.offset-md-10 {
		margin-left: 83.33333%;
	}

	.offset-md-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 992px) {
	.col-lg {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-lg-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}

	.col-lg-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}

	.col-lg-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}

	.col-lg-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-lg-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

	.col-lg-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}

	.col-lg-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-lg-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}

	.col-lg-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}

	.col-lg-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-lg-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}

	.col-lg-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}

	.col-lg-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.order-lg-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}

	.order-lg-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}

	.order-lg-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}

	.order-lg-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.order-lg-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	.order-lg-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}

	.order-lg-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}

	.order-lg-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}

	.order-lg-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}

	.order-lg-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}

	.order-lg-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}

	.order-lg-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}

	.order-lg-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}

	.order-lg-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}

	.order-lg-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}

	.offset-lg-0 {
		margin-left: 0;
	}

	.offset-lg-1 {
		margin-left: 8.33333%;
	}

	.offset-lg-2 {
		margin-left: 16.66667%;
	}

	.offset-lg-3 {
		margin-left: 25%;
	}

	.offset-lg-4 {
		margin-left: 33.33333%;
	}

	.offset-lg-5 {
		margin-left: 41.66667%;
	}

	.offset-lg-6 {
		margin-left: 50%;
	}

	.offset-lg-7 {
		margin-left: 58.33333%;
	}

	.offset-lg-8 {
		margin-left: 66.66667%;
	}

	.offset-lg-9 {
		margin-left: 75%;
	}

	.offset-lg-10 {
		margin-left: 83.33333%;
	}

	.offset-lg-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 1200px) {
	.col-xl {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.col-xl-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}

	.col-xl-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}

	.col-xl-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}

	.col-xl-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-xl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

	.col-xl-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}

	.col-xl-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-xl-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}

	.col-xl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}

	.col-xl-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-xl-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}

	.col-xl-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}

	.col-xl-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.order-xl-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}

	.order-xl-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}

	.order-xl-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}

	.order-xl-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.order-xl-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	.order-xl-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}

	.order-xl-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}

	.order-xl-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}

	.order-xl-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}

	.order-xl-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}

	.order-xl-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}

	.order-xl-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}

	.order-xl-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}

	.order-xl-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}

	.order-xl-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}

	.offset-xl-0 {
		margin-left: 0;
	}

	.offset-xl-1 {
		margin-left: 8.33333%;
	}

	.offset-xl-2 {
		margin-left: 16.66667%;
	}

	.offset-xl-3 {
		margin-left: 25%;
	}

	.offset-xl-4 {
		margin-left: 33.33333%;
	}

	.offset-xl-5 {
		margin-left: 41.66667%;
	}

	.offset-xl-6 {
		margin-left: 50%;
	}

	.offset-xl-7 {
		margin-left: 58.33333%;
	}

	.offset-xl-8 {
		margin-left: 66.66667%;
	}

	.offset-xl-9 {
		margin-left: 75%;
	}

	.offset-xl-10 {
		margin-left: 83.33333%;
	}

	.offset-xl-11 {
		margin-left: 91.66667%;
	}
}

.d-none {
	display: none !important;
}

.d-inline {
	display: inline !important;
}

.d-inline-block {
	display: inline-block !important;
}

.d-block {
	display: block !important;
}

.d-table {
	display: table !important;
}

.d-table-row {
	display: table-row !important;
}

.d-table-cell {
	display: table-cell !important;
}

.d-flex {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.d-inline-flex {
	display: -webkit-inline-box !important;
	display: -ms-inline-flexbox !important;
	display: inline-flex !important;
}

@media (min-width: 576px) {
	.d-sm-none {
		display: none !important;
	}

	.d-sm-inline {
		display: inline !important;
	}

	.d-sm-inline-block {
		display: inline-block !important;
	}

	.d-sm-block {
		display: block !important;
	}

	.d-sm-table {
		display: table !important;
	}

	.d-sm-table-row {
		display: table-row !important;
	}

	.d-sm-table-cell {
		display: table-cell !important;
	}

	.d-sm-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}

	.d-sm-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 768px) {
	.d-md-none {
		display: none !important;
	}

	.d-md-inline {
		display: inline !important;
	}

	.d-md-inline-block {
		display: inline-block !important;
	}

	.d-md-block {
		display: block !important;
	}

	.d-md-table {
		display: table !important;
	}

	.d-md-table-row {
		display: table-row !important;
	}

	.d-md-table-cell {
		display: table-cell !important;
	}

	.d-md-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}

	.d-md-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 992px) {
	.d-lg-none {
		display: none !important;
	}

	.d-lg-inline {
		display: inline !important;
	}

	.d-lg-inline-block {
		display: inline-block !important;
	}

	.d-lg-block {
		display: block !important;
	}

	.d-lg-table {
		display: table !important;
	}

	.d-lg-table-row {
		display: table-row !important;
	}

	.d-lg-table-cell {
		display: table-cell !important;
	}

	.d-lg-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}

	.d-lg-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 1200px) {
	.d-xl-none {
		display: none !important;
	}

	.d-xl-inline {
		display: inline !important;
	}

	.d-xl-inline-block {
		display: inline-block !important;
	}

	.d-xl-block {
		display: block !important;
	}

	.d-xl-table {
		display: table !important;
	}

	.d-xl-table-row {
		display: table-row !important;
	}

	.d-xl-table-cell {
		display: table-cell !important;
	}

	.d-xl-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}

	.d-xl-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media print {
	.d-print-none {
		display: none !important;
	}

	.d-print-inline {
		display: inline !important;
	}

	.d-print-inline-block {
		display: inline-block !important;
	}

	.d-print-block {
		display: block !important;
	}

	.d-print-table {
		display: table !important;
	}

	.d-print-table-row {
		display: table-row !important;
	}

	.d-print-table-cell {
		display: table-cell !important;
	}

	.d-print-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}

	.d-print-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

.flex-row {
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: row !important;
	flex-direction: row !important;
}

.flex-column {
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: column !important;
	flex-direction: column !important;
}

.flex-row-reverse {
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: row-reverse !important;
	flex-direction: row-reverse !important;
}

.flex-column-reverse {
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: column-reverse !important;
	flex-direction: column-reverse !important;
}

.flex-wrap {
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
}

.flex-nowrap {
	-ms-flex-wrap: nowrap !important;
	flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
	-ms-flex-wrap: wrap-reverse !important;
	flex-wrap: wrap-reverse !important;
}

.flex-fill {
	-webkit-box-flex: 1 !important;
	-ms-flex: 1 1 auto !important;
	flex: 1 1 auto !important;
}

.flex-grow-0 {
	-webkit-box-flex: 0 !important;
	-ms-flex-positive: 0 !important;
	flex-grow: 0 !important;
}

.flex-grow-1 {
	-webkit-box-flex: 1 !important;
	-ms-flex-positive: 1 !important;
	flex-grow: 1 !important;
}

.flex-shrink-0 {
	-ms-flex-negative: 0 !important;
	flex-shrink: 0 !important;
}

.flex-shrink-1 {
	-ms-flex-negative: 1 !important;
	flex-shrink: 1 !important;
}

.justify-content-start {
	-webkit-box-pack: start !important;
	-ms-flex-pack: start !important;
	justify-content: flex-start !important;
}

.justify-content-end {
	-webkit-box-pack: end !important;
	-ms-flex-pack: end !important;
	justify-content: flex-end !important;
}

.justify-content-center {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.justify-content-between {
	-webkit-box-pack: justify !important;
	-ms-flex-pack: justify !important;
	justify-content: space-between !important;
}

.justify-content-around {
	-ms-flex-pack: distribute !important;
	justify-content: space-around !important;
}

.align-items-start {
	-webkit-box-align: start !important;
	-ms-flex-align: start !important;
	align-items: flex-start !important;
}

.align-items-end {
	-webkit-box-align: end !important;
	-ms-flex-align: end !important;
	align-items: flex-end !important;
}

.align-items-center {
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
}

.align-items-baseline {
	-webkit-box-align: baseline !important;
	-ms-flex-align: baseline !important;
	align-items: baseline !important;
}

.align-items-stretch {
	-webkit-box-align: stretch !important;
	-ms-flex-align: stretch !important;
	align-items: stretch !important;
}

.align-content-start {
	-ms-flex-line-pack: start !important;
	align-content: flex-start !important;
}

.align-content-end {
	-ms-flex-line-pack: end !important;
	align-content: flex-end !important;
}

.align-content-center {
	-ms-flex-line-pack: center !important;
	align-content: center !important;
}

.align-content-between {
	-ms-flex-line-pack: justify !important;
	align-content: space-between !important;
}

.align-content-around {
	-ms-flex-line-pack: distribute !important;
	align-content: space-around !important;
}

.align-content-stretch {
	-ms-flex-line-pack: stretch !important;
	align-content: stretch !important;
}

.align-self-auto {
	-ms-flex-item-align: auto !important;
	align-self: auto !important;
}

.align-self-start {
	-ms-flex-item-align: start !important;
	align-self: flex-start !important;
}

.align-self-end {
	-ms-flex-item-align: end !important;
	align-self: flex-end !important;
}

.align-self-center {
	-ms-flex-item-align: center !important;
	align-self: center !important;
}

.align-self-baseline {
	-ms-flex-item-align: baseline !important;
	align-self: baseline !important;
}

.align-self-stretch {
	-ms-flex-item-align: stretch !important;
	align-self: stretch !important;
}

@media (min-width: 576px) {
	.flex-sm-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}

	.flex-sm-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.flex-sm-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}

	.flex-sm-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}

	.flex-sm-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}

	.flex-sm-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}

	.flex-sm-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}

	.flex-sm-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important;
	}

	.flex-sm-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important;
	}

	.flex-sm-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
	}

	.flex-sm-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important;
	}

	.flex-sm-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important;
	}

	.justify-content-sm-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	.justify-content-sm-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	.justify-content-sm-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.justify-content-sm-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}

	.justify-content-sm-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}

	.align-items-sm-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}

	.align-items-sm-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}

	.align-items-sm-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}

	.align-items-sm-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}

	.align-items-sm-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}

	.align-content-sm-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}

	.align-content-sm-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}

	.align-content-sm-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}

	.align-content-sm-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}

	.align-content-sm-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}

	.align-content-sm-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}

	.align-self-sm-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}

	.align-self-sm-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}

	.align-self-sm-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}

	.align-self-sm-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}

	.align-self-sm-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}

	.align-self-sm-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 768px) {
	.flex-md-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}

	.flex-md-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.flex-md-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}

	.flex-md-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}

	.flex-md-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}

	.flex-md-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}

	.flex-md-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}

	.flex-md-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important;
	}

	.flex-md-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important;
	}

	.flex-md-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
	}

	.flex-md-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important;
	}

	.flex-md-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important;
	}

	.justify-content-md-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	.justify-content-md-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	.justify-content-md-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.justify-content-md-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}

	.justify-content-md-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}

	.align-items-md-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}

	.align-items-md-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}

	.align-items-md-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}

	.align-items-md-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}

	.align-items-md-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}

	.align-content-md-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}

	.align-content-md-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}

	.align-content-md-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}

	.align-content-md-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}

	.align-content-md-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}

	.align-content-md-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}

	.align-self-md-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}

	.align-self-md-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}

	.align-self-md-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}

	.align-self-md-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}

	.align-self-md-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}

	.align-self-md-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 992px) {
	.flex-lg-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}

	.flex-lg-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.flex-lg-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}

	.flex-lg-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}

	.flex-lg-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}

	.flex-lg-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}

	.flex-lg-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}

	.flex-lg-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important;
	}

	.flex-lg-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important;
	}

	.flex-lg-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
	}

	.flex-lg-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important;
	}

	.flex-lg-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important;
	}

	.justify-content-lg-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	.justify-content-lg-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	.justify-content-lg-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.justify-content-lg-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}

	.justify-content-lg-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}

	.align-items-lg-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}

	.align-items-lg-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}

	.align-items-lg-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}

	.align-items-lg-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}

	.align-items-lg-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}

	.align-content-lg-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}

	.align-content-lg-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}

	.align-content-lg-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}

	.align-content-lg-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}

	.align-content-lg-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}

	.align-content-lg-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}

	.align-self-lg-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}

	.align-self-lg-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}

	.align-self-lg-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}

	.align-self-lg-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}

	.align-self-lg-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}

	.align-self-lg-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 1200px) {
	.flex-xl-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}

	.flex-xl-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.flex-xl-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}

	.flex-xl-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}

	.flex-xl-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}

	.flex-xl-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}

	.flex-xl-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}

	.flex-xl-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important;
	}

	.flex-xl-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important;
	}

	.flex-xl-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
	}

	.flex-xl-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important;
	}

	.flex-xl-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important;
	}

	.justify-content-xl-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	.justify-content-xl-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	.justify-content-xl-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.justify-content-xl-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}

	.justify-content-xl-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}

	.align-items-xl-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}

	.align-items-xl-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}

	.align-items-xl-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}

	.align-items-xl-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}

	.align-items-xl-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}

	.align-content-xl-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}

	.align-content-xl-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}

	.align-content-xl-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}

	.align-content-xl-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}

	.align-content-xl-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}

	.align-content-xl-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}

	.align-self-xl-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}

	.align-self-xl-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}

	.align-self-xl-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}

	.align-self-xl-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}

	.align-self-xl-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}

	.align-self-xl-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

.flex-row {
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: row !important;
	flex-direction: row !important;
}

.flex-column {
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: column !important;
	flex-direction: column !important;
}

.flex-row-reverse {
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: row-reverse !important;
	flex-direction: row-reverse !important;
}

.flex-column-reverse {
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: column-reverse !important;
	flex-direction: column-reverse !important;
}

.flex-wrap {
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
}

.flex-nowrap {
	-ms-flex-wrap: nowrap !important;
	flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
	-ms-flex-wrap: wrap-reverse !important;
	flex-wrap: wrap-reverse !important;
}

.flex-fill {
	-webkit-box-flex: 1 !important;
	-ms-flex: 1 1 auto !important;
	flex: 1 1 auto !important;
}

.flex-grow-0 {
	-webkit-box-flex: 0 !important;
	-ms-flex-positive: 0 !important;
	flex-grow: 0 !important;
}

.flex-grow-1 {
	-webkit-box-flex: 1 !important;
	-ms-flex-positive: 1 !important;
	flex-grow: 1 !important;
}

.flex-shrink-0 {
	-ms-flex-negative: 0 !important;
	flex-shrink: 0 !important;
}

.flex-shrink-1 {
	-ms-flex-negative: 1 !important;
	flex-shrink: 1 !important;
}

.justify-content-start {
	-webkit-box-pack: start !important;
	-ms-flex-pack: start !important;
	justify-content: flex-start !important;
}

.justify-content-end {
	-webkit-box-pack: end !important;
	-ms-flex-pack: end !important;
	justify-content: flex-end !important;
}

.justify-content-center {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.justify-content-between {
	-webkit-box-pack: justify !important;
	-ms-flex-pack: justify !important;
	justify-content: space-between !important;
}

.justify-content-around {
	-ms-flex-pack: distribute !important;
	justify-content: space-around !important;
}

.align-items-start {
	-webkit-box-align: start !important;
	-ms-flex-align: start !important;
	align-items: flex-start !important;
}

.align-items-end {
	-webkit-box-align: end !important;
	-ms-flex-align: end !important;
	align-items: flex-end !important;
}

.align-items-center {
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
}

.align-items-baseline {
	-webkit-box-align: baseline !important;
	-ms-flex-align: baseline !important;
	align-items: baseline !important;
}

.align-items-stretch {
	-webkit-box-align: stretch !important;
	-ms-flex-align: stretch !important;
	align-items: stretch !important;
}

.align-content-start {
	-ms-flex-line-pack: start !important;
	align-content: flex-start !important;
}

.align-content-end {
	-ms-flex-line-pack: end !important;
	align-content: flex-end !important;
}

.align-content-center {
	-ms-flex-line-pack: center !important;
	align-content: center !important;
}

.align-content-between {
	-ms-flex-line-pack: justify !important;
	align-content: space-between !important;
}

.align-content-around {
	-ms-flex-line-pack: distribute !important;
	align-content: space-around !important;
}

.align-content-stretch {
	-ms-flex-line-pack: stretch !important;
	align-content: stretch !important;
}

.align-self-auto {
	-ms-flex-item-align: auto !important;
	align-self: auto !important;
}

.align-self-start {
	-ms-flex-item-align: start !important;
	align-self: flex-start !important;
}

.align-self-end {
	-ms-flex-item-align: end !important;
	align-self: flex-end !important;
}

.align-self-center {
	-ms-flex-item-align: center !important;
	align-self: center !important;
}

.align-self-baseline {
	-ms-flex-item-align: baseline !important;
	align-self: baseline !important;
}

.align-self-stretch {
	-ms-flex-item-align: stretch !important;
	align-self: stretch !important;
}

@media (min-width: 576px) {
	.flex-sm-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}

	.flex-sm-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.flex-sm-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}

	.flex-sm-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}

	.flex-sm-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}

	.flex-sm-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}

	.flex-sm-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}

	.flex-sm-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important;
	}

	.flex-sm-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important;
	}

	.flex-sm-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
	}

	.flex-sm-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important;
	}

	.flex-sm-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important;
	}

	.justify-content-sm-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	.justify-content-sm-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	.justify-content-sm-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.justify-content-sm-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}

	.justify-content-sm-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}

	.align-items-sm-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}

	.align-items-sm-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}

	.align-items-sm-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}

	.align-items-sm-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}

	.align-items-sm-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}

	.align-content-sm-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}

	.align-content-sm-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}

	.align-content-sm-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}

	.align-content-sm-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}

	.align-content-sm-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}

	.align-content-sm-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}

	.align-self-sm-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}

	.align-self-sm-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}

	.align-self-sm-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}

	.align-self-sm-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}

	.align-self-sm-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}

	.align-self-sm-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 768px) {
	.flex-md-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}

	.flex-md-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.flex-md-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}

	.flex-md-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}

	.flex-md-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}

	.flex-md-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}

	.flex-md-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}

	.flex-md-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important;
	}

	.flex-md-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important;
	}

	.flex-md-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
	}

	.flex-md-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important;
	}

	.flex-md-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important;
	}

	.justify-content-md-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	.justify-content-md-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	.justify-content-md-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.justify-content-md-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}

	.justify-content-md-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}

	.align-items-md-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}

	.align-items-md-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}

	.align-items-md-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}

	.align-items-md-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}

	.align-items-md-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}

	.align-content-md-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}

	.align-content-md-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}

	.align-content-md-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}

	.align-content-md-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}

	.align-content-md-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}

	.align-content-md-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}

	.align-self-md-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}

	.align-self-md-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}

	.align-self-md-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}

	.align-self-md-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}

	.align-self-md-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}

	.align-self-md-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 992px) {
	.flex-lg-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}

	.flex-lg-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.flex-lg-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}

	.flex-lg-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}

	.flex-lg-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}

	.flex-lg-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}

	.flex-lg-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}

	.flex-lg-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important;
	}

	.flex-lg-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important;
	}

	.flex-lg-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
	}

	.flex-lg-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important;
	}

	.flex-lg-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important;
	}

	.justify-content-lg-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	.justify-content-lg-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	.justify-content-lg-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.justify-content-lg-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}

	.justify-content-lg-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}

	.align-items-lg-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}

	.align-items-lg-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}

	.align-items-lg-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}

	.align-items-lg-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}

	.align-items-lg-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}

	.align-content-lg-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}

	.align-content-lg-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}

	.align-content-lg-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}

	.align-content-lg-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}

	.align-content-lg-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}

	.align-content-lg-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}

	.align-self-lg-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}

	.align-self-lg-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}

	.align-self-lg-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}

	.align-self-lg-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}

	.align-self-lg-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}

	.align-self-lg-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 1200px) {
	.flex-xl-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}

	.flex-xl-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}

	.flex-xl-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}

	.flex-xl-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}

	.flex-xl-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}

	.flex-xl-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}

	.flex-xl-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}

	.flex-xl-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important;
	}

	.flex-xl-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important;
	}

	.flex-xl-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important;
	}

	.flex-xl-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important;
	}

	.flex-xl-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important;
	}

	.justify-content-xl-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}

	.justify-content-xl-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}

	.justify-content-xl-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}

	.justify-content-xl-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}

	.justify-content-xl-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}

	.align-items-xl-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}

	.align-items-xl-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}

	.align-items-xl-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}

	.align-items-xl-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}

	.align-items-xl-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}

	.align-content-xl-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}

	.align-content-xl-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}

	.align-content-xl-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}

	.align-content-xl-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}

	.align-content-xl-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}

	.align-content-xl-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}

	.align-self-xl-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important;
	}

	.align-self-xl-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}

	.align-self-xl-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}

	.align-self-xl-center {
		-ms-flex-item-align: center !important;
		align-self: center !important;
	}

	.align-self-xl-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}

	.align-self-xl-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important;
	}
}

.embed-responsive {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
}

.embed-responsive::before {
	display: block;
	content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.embed-responsive-21by9::before {
	padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
	padding-top: 56.25%;
}

.embed-responsive-4by3::before {
	padding-top: 75%;
}

.embed-responsive-1by1::before {
	padding-top: 100%;
}

/*!
 * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-family: sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
	width: device-width;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
	display: block;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
	background-color: #ffffff;
}

[tabindex="-1"]:focus {
	outline: 0 !important;
}

hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

dt {
	font-weight: 700;
}

dd {
	margin-bottom: .5rem;
	margin-left: 0;
}

blockquote {
	margin: 0 0 1rem;
}

dfn {
	font-style: italic;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

a {
	color: #007bff;
	text-decoration: none;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

a:hover {
	color: #0056b3;
	text-decoration: underline;
}

a:not([href]):not([tabindex]) {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
	outline: 0;
}

pre,
code,
kbd,
samp {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-size: 1em;
}

pre {
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
	-ms-overflow-style: scrollbar;
}

figure {
	margin: 0 0 1rem;
}

img {
	vertical-align: middle;
	border-style: none;
}

svg {
	overflow: hidden;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
}

caption {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	color: #6c757d;
	text-align: left;
	caption-side: bottom;
}

th {
	text-align: inherit;
}

label {
	display: inline-block;
	margin-bottom: 0.5rem;
}

button {
	border-radius: 0;
}

button:focus {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
	-webkit-appearance: listbox;
}

textarea {
	overflow: auto;
	resize: vertical;
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: .5rem;
	font-size: 1.5rem;
	line-height: inherit;
	color: inherit;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}

output {
	display: inline-block;
}

summary {
	display: list-item;
	cursor: pointer;
}

template {
	display: none;
}

[hidden] {
	display: none !important;
}

button,
.button,
.pagination a,
.pagination span:not(.wcag_hide),
.woocommerce-pagination a,
.woocommerce-pagination span:not(.wcag_hide),
.nf-field-element input[type=button],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a,
body.page-template-page-woocommerce #customer_login form .lost_password a,
body.page-template-page-woocommerce #customer_login form .confirm-form a,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .wac-qty-button,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .wac-qty-button,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .wac-qty-button,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .wac-qty-button,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a,
body.page-template-page-checkout .woocommerce-checkout .lost_password a {
	text-transform: uppercase;
	background-color: #ffffff;
	border: 0 none;
	color: #000000;
	padding: 12px 20px;
	font-size: 14px;
	line-height: 17px;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	display: inline-block;
	will-change: box-shadow;
	-webkit-transition: -webkit-box-shadow 300ms;
	transition: -webkit-box-shadow 300ms;
	transition: box-shadow 300ms;
	transition: box-shadow 300ms, -webkit-box-shadow 300ms;
	-webkit-box-shadow: inset 0 0 0 2px #000000, 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 2px #000000, 0 0 1px rgba(0, 0, 0, 0);
}

button.with-icon,
.button.with-icon,
.pagination a.with-icon,
.pagination span.with-icon:not(.wcag_hide),
.woocommerce-pagination a.with-icon,
.woocommerce-pagination span.with-icon:not(.wcag_hide),
.nf-field-element input.with-icon[type=button],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.with-icon,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.with-icon,
body.page-template-page-woocommerce #customer_login form .lost_password a.with-icon,
body.page-template-page-woocommerce #customer_login form .confirm-form a.with-icon,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .with-icon.wac-qty-button,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .with-icon.wac-qty-button,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .with-icon.wac-qty-button,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .with-icon.wac-qty-button,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.with-icon,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.with-icon {
	padding-right: 60px;
}

button.with-icon img,
.button.with-icon img,
.pagination a.with-icon img,
.pagination span.with-icon:not(.wcag_hide) img,
.woocommerce-pagination a.with-icon img,
.woocommerce-pagination span.with-icon:not(.wcag_hide) img,
.nf-field-element input.with-icon[type=button] img,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.with-icon img,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.with-icon img,
body.page-template-page-woocommerce #customer_login form .lost_password a.with-icon img,
body.page-template-page-woocommerce #customer_login form .confirm-form a.with-icon img,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .with-icon.wac-qty-button img,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .with-icon.wac-qty-button img,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .with-icon.wac-qty-button img,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .with-icon.wac-qty-button img,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.with-icon img,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.with-icon img {
	max-height: 12px;
	display: inline-block;
	position: absolute;
	right: 15px;
	top: 50%;
	width: auto;
	height: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

button.with-icon.icon-left,
.button.with-icon.icon-left,
.pagination a.with-icon.icon-left,
.pagination span.with-icon.icon-left:not(.wcag_hide),
.woocommerce-pagination a.with-icon.icon-left,
.woocommerce-pagination span.with-icon.icon-left:not(.wcag_hide),
.nf-field-element input.with-icon.icon-left[type=button],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.with-icon.icon-left,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.with-icon.icon-left,
body.page-template-page-woocommerce #customer_login form .lost_password a.with-icon.icon-left,
body.page-template-page-woocommerce #customer_login form .confirm-form a.with-icon.icon-left,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .with-icon.icon-left.wac-qty-button,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .with-icon.icon-left.wac-qty-button,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .with-icon.icon-left.wac-qty-button,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .with-icon.icon-left.wac-qty-button,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.with-icon.icon-left,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.with-icon.icon-left {
	padding-left: 60px;
	padding-right: 20px;
}

button.with-icon.icon-left img,
.button.with-icon.icon-left img,
.pagination a.with-icon.icon-left img,
.pagination span.with-icon.icon-left:not(.wcag_hide) img,
.woocommerce-pagination a.with-icon.icon-left img,
.woocommerce-pagination span.with-icon.icon-left:not(.wcag_hide) img,
.nf-field-element input.with-icon.icon-left[type=button] img,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.with-icon.icon-left img,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.with-icon.icon-left img,
body.page-template-page-woocommerce #customer_login form .lost_password a.with-icon.icon-left img,
body.page-template-page-woocommerce #customer_login form .confirm-form a.with-icon.icon-left img,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .with-icon.icon-left.wac-qty-button img,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .with-icon.icon-left.wac-qty-button img,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .with-icon.icon-left.wac-qty-button img,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .with-icon.icon-left.wac-qty-button img,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.with-icon.icon-left img,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.with-icon.icon-left img {
	left: 15px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

button:hover, button:focus,
.button:hover,
.button:focus,
.pagination a:hover,
.pagination span:hover:not(.wcag_hide),
.woocommerce-pagination a:hover,
.woocommerce-pagination span:hover:not(.wcag_hide),
.nf-field-element input:hover[type=button],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a:hover,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a:hover,
body.page-template-page-woocommerce #customer_login form .lost_password a:hover,
body.page-template-page-woocommerce #customer_login form .confirm-form a:hover,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .wac-qty-button:hover,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .wac-qty-button:hover,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .wac-qty-button:hover,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .wac-qty-button:hover,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a:hover,
body.page-template-page-checkout .woocommerce-checkout .lost_password a:hover,
.pagination a:focus,
.pagination span:focus:not(.wcag_hide),
.woocommerce-pagination a:focus,
.woocommerce-pagination span:focus:not(.wcag_hide),
.nf-field-element input:focus[type=button],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a:focus,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a:focus,
body.page-template-page-woocommerce #customer_login form .lost_password a:focus,
body.page-template-page-woocommerce #customer_login form .confirm-form a:focus,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .wac-qty-button:focus,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .wac-qty-button:focus,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .wac-qty-button:focus,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .wac-qty-button:focus,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a:focus,
body.page-template-page-checkout .woocommerce-checkout .lost_password a:focus {
	color: #000000;
	-webkit-box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0);
}

button:visited, button:active,
.button:visited,
.button:active,
.pagination a:visited,
.pagination span:visited:not(.wcag_hide),
.woocommerce-pagination a:visited,
.woocommerce-pagination span:visited:not(.wcag_hide),
.nf-field-element input:visited[type=button],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a:visited,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a:visited,
body.page-template-page-woocommerce #customer_login form .lost_password a:visited,
body.page-template-page-woocommerce #customer_login form .confirm-form a:visited,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .wac-qty-button:visited,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .wac-qty-button:visited,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .wac-qty-button:visited,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .wac-qty-button:visited,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a:visited,
body.page-template-page-checkout .woocommerce-checkout .lost_password a:visited,
.pagination a:active,
.pagination span:active:not(.wcag_hide),
.woocommerce-pagination a:active,
.woocommerce-pagination span:active:not(.wcag_hide),
.nf-field-element input:active[type=button],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a:active,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a:active,
body.page-template-page-woocommerce #customer_login form .lost_password a:active,
body.page-template-page-woocommerce #customer_login form .confirm-form a:active,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .wac-qty-button:active,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .wac-qty-button:active,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .wac-qty-button:active,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .wac-qty-button:active,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a:active,
body.page-template-page-checkout .woocommerce-checkout .lost_password a:active {
	color: #000000;
}

button.reverse,
.button.reverse,
.pagination a.reverse,
.pagination span.reverse:not(.wcag_hide),
.woocommerce-pagination a.reverse,
.woocommerce-pagination span.reverse:not(.wcag_hide),
.nf-field-element input.reverse[type=button],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.reverse,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.reverse,
body.page-template-page-woocommerce #customer_login form .lost_password a.reverse,
body.page-template-page-woocommerce #customer_login form .confirm-form a.reverse,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .reverse.wac-qty-button,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .reverse.wac-qty-button,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .reverse.wac-qty-button,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .reverse.wac-qty-button,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.reverse,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.reverse {
	background: none;
	color: #ffffff;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	will-change: color;
	-webkit-transition: color 500ms;
	transition: color 500ms;
}

button.reverse:before, button.reverse:after,
.button.reverse:before,
.button.reverse:after,
.pagination a.reverse:before,
.pagination span.reverse:not(.wcag_hide):before,
.woocommerce-pagination a.reverse:before,
.woocommerce-pagination span.reverse:not(.wcag_hide):before,
.nf-field-element input.reverse[type=button]:before,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.reverse:before,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.reverse:before,
body.page-template-page-woocommerce #customer_login form .lost_password a.reverse:before,
body.page-template-page-woocommerce #customer_login form .confirm-form a.reverse:before,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .reverse.wac-qty-button:before,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .reverse.wac-qty-button:before,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .reverse.wac-qty-button:before,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .reverse.wac-qty-button:before,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.reverse:before,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.reverse:before,
.pagination a.reverse:after,
.pagination span.reverse:not(.wcag_hide):after,
.woocommerce-pagination a.reverse:after,
.woocommerce-pagination span.reverse:not(.wcag_hide):after,
.nf-field-element input.reverse[type=button]:after,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.reverse:after,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.reverse:after,
body.page-template-page-woocommerce #customer_login form .lost_password a.reverse:after,
body.page-template-page-woocommerce #customer_login form .confirm-form a.reverse:after,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .reverse.wac-qty-button:after,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .reverse.wac-qty-button:after,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .reverse.wac-qty-button:after,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .reverse.wac-qty-button:after,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.reverse:after,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.reverse:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

button.reverse:before,
.button.reverse:before,
.pagination a.reverse:before,
.pagination span.reverse:not(.wcag_hide):before,
.woocommerce-pagination a.reverse:before,
.woocommerce-pagination span.reverse:not(.wcag_hide):before,
.nf-field-element input.reverse[type=button]:before,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.reverse:before,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.reverse:before,
body.page-template-page-woocommerce #customer_login form .lost_password a.reverse:before,
body.page-template-page-woocommerce #customer_login form .confirm-form a.reverse:before,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .reverse.wac-qty-button:before,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .reverse.wac-qty-button:before,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .reverse.wac-qty-button:before,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .reverse.wac-qty-button:before,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.reverse:before,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.reverse:before {
	background: #000000;
}

button.reverse:after,
.button.reverse:after,
.pagination a.reverse:after,
.pagination span.reverse:not(.wcag_hide):after,
.woocommerce-pagination a.reverse:after,
.woocommerce-pagination span.reverse:not(.wcag_hide):after,
.nf-field-element input.reverse[type=button]:after,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.reverse:after,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.reverse:after,
body.page-template-page-woocommerce #customer_login form .lost_password a.reverse:after,
body.page-template-page-woocommerce #customer_login form .confirm-form a.reverse:after,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .reverse.wac-qty-button:after,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .reverse.wac-qty-button:after,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .reverse.wac-qty-button:after,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .reverse.wac-qty-button:after,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.reverse:after,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.reverse:after {
	background: #99d537;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	will-change: transform;
	-webkit-transition: -webkit-transform 500ms ease-out;
	transition: -webkit-transform 500ms ease-out;
	transition: transform 500ms ease-out;
	transition: transform 500ms ease-out, -webkit-transform 500ms ease-out;
}

button.reverse:hover,
.button.reverse:hover,
.pagination a.reverse:hover,
.pagination span.reverse:hover:not(.wcag_hide),
.woocommerce-pagination a.reverse:hover,
.woocommerce-pagination span.reverse:hover:not(.wcag_hide),
.nf-field-element input.reverse:hover[type=button],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.reverse:hover,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.reverse:hover,
body.page-template-page-woocommerce #customer_login form .lost_password a.reverse:hover,
body.page-template-page-woocommerce #customer_login form .confirm-form a.reverse:hover,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .reverse.wac-qty-button:hover,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .reverse.wac-qty-button:hover,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .reverse.wac-qty-button:hover,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .reverse.wac-qty-button:hover,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.reverse:hover,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.reverse:hover {
	color: #000000;
}

button.reverse:hover:after,
.button.reverse:hover:after,
.pagination a.reverse:hover:after,
.pagination span.reverse:not(.wcag_hide):hover:after,
.woocommerce-pagination a.reverse:hover:after,
.woocommerce-pagination span.reverse:not(.wcag_hide):hover:after,
.nf-field-element input.reverse[type=button]:hover:after,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.reverse:hover:after,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.reverse:hover:after,
body.page-template-page-woocommerce #customer_login form .lost_password a.reverse:hover:after,
body.page-template-page-woocommerce #customer_login form .confirm-form a.reverse:hover:after,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .reverse.wac-qty-button:hover:after,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .reverse.wac-qty-button:hover:after,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .reverse.wac-qty-button:hover:after,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .reverse.wac-qty-button:hover:after,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.reverse:hover:after,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.reverse:hover:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition: -webkit-transform 500ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition: -webkit-transform 500ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition: transform 500ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition: transform 500ms cubic-bezier(0.52, 1.64, 0.37, 0.66), -webkit-transform 500ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

button.disabled, button[disabled],
.button.disabled,
.button[disabled],
.pagination a.disabled,
.pagination span.disabled:not(.wcag_hide),
.woocommerce-pagination a.disabled,
.woocommerce-pagination span.disabled:not(.wcag_hide),
.nf-field-element input.disabled[type=button],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.disabled,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.disabled,
body.page-template-page-woocommerce #customer_login form .lost_password a.disabled,
body.page-template-page-woocommerce #customer_login form .confirm-form a.disabled,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .disabled.wac-qty-button,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .disabled.wac-qty-button,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .disabled.wac-qty-button,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .disabled.wac-qty-button,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.disabled,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.disabled,
.pagination a[disabled],
.pagination span[disabled]:not(.wcag_hide),
.woocommerce-pagination a[disabled],
.woocommerce-pagination span[disabled]:not(.wcag_hide),
.nf-field-element input[disabled][type=button],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a[disabled],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a[disabled],
body.page-template-page-woocommerce #customer_login form .lost_password a[disabled],
body.page-template-page-woocommerce #customer_login form .confirm-form a[disabled],
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .wac-qty-button[disabled],
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .wac-qty-button[disabled],
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .wac-qty-button[disabled],
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .wac-qty-button[disabled],
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a[disabled],
body.page-template-page-checkout .woocommerce-checkout .lost_password a[disabled] {
	pointer-events: none;
	background-color: #505050;
	opacity: 0.5;
	color: #ffffff;
}

button.disabled:before, button[disabled]:before,
.button.disabled:before,
.button[disabled]:before,
.pagination a.disabled:before,
.pagination span.disabled:not(.wcag_hide):before,
.woocommerce-pagination a.disabled:before,
.woocommerce-pagination span.disabled:not(.wcag_hide):before,
.nf-field-element input.disabled[type=button]:before,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a.disabled:before,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a.disabled:before,
body.page-template-page-woocommerce #customer_login form .lost_password a.disabled:before,
body.page-template-page-woocommerce #customer_login form .confirm-form a.disabled:before,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .disabled.wac-qty-button:before,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .disabled.wac-qty-button:before,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .disabled.wac-qty-button:before,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .disabled.wac-qty-button:before,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a.disabled:before,
body.page-template-page-checkout .woocommerce-checkout .lost_password a.disabled:before,
.pagination a[disabled]:before,
.pagination span:not(.wcag_hide)[disabled]:before,
.woocommerce-pagination a[disabled]:before,
.woocommerce-pagination span:not(.wcag_hide)[disabled]:before,
.nf-field-element input[type=button][disabled]:before,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a[disabled]:before,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a[disabled]:before,
body.page-template-page-woocommerce #customer_login form .lost_password a[disabled]:before,
body.page-template-page-woocommerce #customer_login form .confirm-form a[disabled]:before,
body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .wac-qty-button[disabled]:before,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .wac-qty-button[disabled]:before,
body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .wac-qty-button[disabled]:before,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .wac-qty-button[disabled]:before,
body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a[disabled]:before,
body.page-template-page-checkout .woocommerce-checkout .lost_password a[disabled]:before {
	background-color: #505050;
}

.btn-top {
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 9;
	border: 0 none;
	display: none;
}

.btn-top button {
	-webkit-appearance: none;
	background-color: #505050;
	border: 0 none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	padding: 0;
	position: relative;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.btn-top button:hover {
	background-color: #99d537;
}

.btn-top button:hover img {
	-webkit-filter: brightness(0);
	filter: brightness(0);
}

.btn-top button img {
	width: 20px;
	height: 20px;
	-webkit-transform: rotate(-90deg) translate(50%, -50%);
	transform: rotate(-90deg) translate(50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
}

.breadcrumbs-container {
	padding-top: 30px;
}

.breadcrumbs-container ol {
	padding: 0;
	margin: 0;
}

.breadcrumbs-container .breadcrumb-item {
	list-style-type: none;
	display: inline-block;
}

.woocommerce-increo-breadcrumb {
	font-size: 12px;
	position: relative;
	color: #3f3f3f;
}

.woocommerce-increo-breadcrumb:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 8px;
	top: 0;
	left: -60px;
	background-color: #99d537;
}

.woocommerce-increo-breadcrumb span,
.woocommerce-increo-breadcrumb a {
	font-size: 12px;
	text-decoration: none;
	color: #3f3f3f;
}

.woocommerce-increo-breadcrumb li.breadcrumb-separator {
	margin: 0 4px;
	display: inline-block;
}

input[type=search],
input[type=text],
input[type=number],
input[type=tel],
input[type=password],
input[type=email] {
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	color: #000000;
	border: 2px solid #707070;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
}

input[type=search]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder {
	font-size: 14px;
	line-height: 17px;
	color: #8b8b8b;
}

input[type=search]:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=email]:-moz-placeholder {
	font-size: 14px;
	line-height: 17px;
	color: #8b8b8b;
}

input[type=search]::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=email]::-moz-placeholder {
	font-size: 14px;
	line-height: 17px;
	color: #8b8b8b;
}

input[type=search]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder {
	font-size: 14px;
	line-height: 17px;
	color: #8b8b8b;
}

input[type=search][disabled=disabled],
input[type=text][disabled=disabled],
input[type=number][disabled=disabled],
input[type=tel][disabled=disabled],
input[type=password][disabled=disabled],
input[type=email][disabled=disabled] {
	cursor: not-allowed;
	background-color: rgba(0, 0, 0, 0.04);
}

input[type=search][readonly=readonly],
input[type=text][readonly=readonly],
input[type=number][readonly=readonly],
input[type=tel][readonly=readonly],
input[type=password][readonly=readonly],
input[type=email][readonly=readonly] {
	cursor: not-allowed;
	background-color: rgba(0, 0, 0, 0.04);
}

input[type=search].white,
input[type=text].white,
input[type=number].white,
input[type=tel].white,
input[type=password].white,
input[type=email].white {
	background-color: #ffffff;
	border: 2px solid #000000;
}

select {
	padding: 10px 30px 10px 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	color: #000000;
	border: 2px solid #707070;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	cursor: pointer;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAxMi4zNSI+ICAgIDxwYXRoIGZpbGw9IiMwMDAwMDAiIGQ9Ik04LjM1IDcuODRMMTYgMTUuNDczbDcuNjUtNy42MzNMMjYgMTAuMTlsLTEwIDEwLTEwLTEweiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTYgLTcuODQpIi8+PC9zdmc+);
	background-position: calc(100% - 10px) 50%;
	background-size: 14px 10px;
}

select::-webkit-input-placeholder {
	font-size: 14px;
	line-height: 17px;
	color: #8b8b8b;
}

select:-moz-placeholder {
	font-size: 14px;
	line-height: 17px;
	color: #8b8b8b;
}

select::-moz-placeholder {
	font-size: 14px;
	line-height: 17px;
	color: #8b8b8b;
}

select:-ms-input-placeholder {
	font-size: 14px;
	line-height: 17px;
	color: #8b8b8b;
}

select[readonly=readonly] {
	cursor: not-allowed;
	background-color: rgba(0, 0, 0, 0.04);
	background-image: none;
	padding: 10px 20px;
}

select[readonly=readonly]:hover, select[readonly=readonly]:focus {
	outline: none;
}

select[readonly=readonly] option {
	display: none;
}

select[disabled=disabled] {
	cursor: not-allowed;
	background-color: rgba(0, 0, 0, 0.04);
	background-image: none;
	padding: 10px 20px;
}

select[disabled=disabled]:hover, select[disabled=disabled]:focus {
	outline: none;
}

.site-footer {
	background-color: #3f3f3f;
	color: #ffffff;
}

.site-footer .container {
	padding-top: 90px;
	padding-bottom: 50px;
}

@media (max-width: 991px) {
	.site-footer .container {
		padding-top: 35px;
		padding-bottom: 35px;
	}
}

.site-footer .social-col a {
	display: block;
}

.site-footer .social-col a:hover svg path {
	fill: #99d537;
}

.site-footer .social-col svg {
	display: block;
	height: 30px;
}

.site-footer .social-col svg path {
	will-change: fill;
	-webkit-transition: fill 200ms ease-in;
	transition: fill 200ms ease-in;
}

@media (max-width: 991px) {
	.site-footer .social-col {
		margin-bottom: 35px;
	}

	.site-footer .social-col .col-6.text-left {
		text-align: center;
	}

	.site-footer .social-col .col-6.text-left svg {
		margin: 0 auto;
	}
}

.site-footer .info-col {
	font-size: 14px;
	font-weight: 400;
	line-height: 2em;
}

@media (max-width: 991px) {
	.site-footer .info-col {
		text-align: center;
	}

	.site-footer .info-col .row {
		margin-top: 35px;
	}

	.site-footer .info-col .row img {
		max-width: 70%;
	}
}

.site-footer .info-col a {
	color: #ffffff;
}

.site-footer .info-col a:hover {
	color: #99d537;
}

.site-footer .b-d {
	margin: 20px 0 30px;
}

.copyright-footer {
	background-color: #99d537;
	padding-top: 22px;
	padding-bottom: 25px;
	font-size: 14px;
}

@media (max-width: 991px) {
	.copyright-footer .copyright_text {
		text-align: center;
		padding-bottom: 15px;
	}

	.copyright-footer .copyright_increo {
		text-align: center;
	}
}

.copyright-footer nav,
.copyright-footer a,
.copyright-footer p {
	display: inline-block;
	margin: 0;
}

.copyright-footer nav ul {
	margin: 0;
	padding: 0;
}

.copyright-footer nav li {
	display: inline-block;
}

.copyright-footer nav li a:after {
	content: "|";
	display: inline-block;
	padding: 0 10px;
}

.copyright-footer svg {
	vertical-align: top;
	margin-top: 6px;
	margin-left: 8px;
}

.copyright-footer .separator {
	padding: 0 10px;
}

.footer-navigation ul {
	padding: 0;
	margin: -5px 0 0;
	text-align: right;
}

@media (max-width: 991px) {
	.footer-navigation ul {
		text-align: left;
	}
}

.footer-navigation li {
	width: 49%;
	display: inline-block;
}

.footer-navigation li a {
	color: #ffffff;
	display: inline-block;
	width: 100%;
	text-align: left;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.23;
	margin-bottom: 22px;
	padding: 10px 0;
	text-decoration: none;
}

.footer-navigation li a:hover {
	color: #99d537;
}

#masthead {
	position: -webkit-sticky;
	position: sticky;
	top: 57px;
	z-index: 10;
}

.increo_header {
	padding: 30px 55px;
	position: relative;
	background-color: #ffffff;
}

@media (max-width: 991px) {
	.increo_header {
		padding: 30px 60px 30px 15px;
	}
}

.increo_header .logo img {
	width: 100%;
	min-width: 200px;
	max-width: 200px;
}

@media (max-width: 767px) {
	.increo_header .logo img {
		min-width: 170px;
		max-width: 170px;
	}
}

@media (max-width: 991px) {
	.increo_header .desktop-navigation-container {
		display: none;
	}
}

@media (min-width: 992px) {
	.increo_header .mobile-navigation-container {
		display: none;
	}
}

.increo_header .mobile-navigation-container .actions {
	position: absolute;
	right: 5px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.increo_header .mobile-navigation-container .menu-toggle,
.increo_header .mobile-navigation-container .show-search {
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
	background: none;
	vertical-align: middle;
}

.increo_header .mobile-navigation-container .menu-toggle {
	width: 46px;
}

.increo_header .mobile-navigation-container .menu-toggle svg {
	padding: 10px;
	width: 46px;
	height: 46px;
}

.increo_header .mobile-navigation-container .show-search {
	width: 42px;
}

.increo_header .mobile-navigation-container .show-search img {
	padding: 10px;
	width: 42px;
}

.increo_header .mobile-navigation-container .mobile-navigation {
	position: absolute;
	right: 0;
	top: 100%;
	left: 0;
	background-color: #000000;
	z-index: 10;
	display: none;
}

.increo_header .mobile-navigation-container .mobile-navigation.active {
	display: block;
	overflow-y: auto;
	height: calc(100vh - 140px);
}

.increo_header .mobile-navigation-container .mobile-navigation .menu-primary-menu-container {
	padding-top: 17px;
}

.increo_header .mobile-navigation-container .mobile-navigation a {
	font-family: "Merriweather", serif;
	color: #ffffff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	width: 100%;
	padding: 17px 35px;
	display: block;
}

.increo_header .mobile-navigation-container .mobile-navigation ul {
	padding: 0;
	margin: 0;
}

.increo_header .mobile-navigation-container .mobile-navigation img {
	width: 20px;
}

.increo_header .mobile-navigation-container .mobile-navigation .mobile-header-cart {
	background-color: #3f3f3f;
	padding-top: 17px;
	padding-bottom: 17px;
	margin-top: 17px;
}

.increo_header .mobile-navigation-container .mobile-navigation .mobile-header-cart .cart-content-item {
	display: none;
}

.increo_header .mobile-navigation-container .mobile-navigation .mobile-header-cart img {
	display: none;
}

.increo_header .increo-primary-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.increo_header .increo-primary-navigation .site-search {
	margin-left: auto;
	position: relative;
	padding: 20px;
}

@media (max-width: 991px) {
	.increo_header .increo-primary-navigation .site-search {
		display: none;
		position: absolute;
		top: 80px;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 9999;
		background-color: rgba(255, 255, 255, 0.7);
	}
}

.increo_header .increo-primary-navigation .site-search .widget_product_search {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	background-color: #ffffff;
}

@media (max-width: 991px) {
	.increo_header .increo-primary-navigation .site-search .widget_product_search {
		width: calc(100% - 30px);
		position: absolute;
		top: 50%;
		left: 50%;
		right: initial;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}

.increo_header .primary-navigation ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 0 50px;
	padding: 0;
}

.increo_header .primary-navigation ul li a {
	margin-right: 20px;
	padding: 10px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 13px;
	text-decoration: none;
}

.increo_header_fixed {
	background: #000000;
	color: #ffffff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
}

.increo_header_fixed .secondary-navigation {
	display: inline-block;
	margin-right: -4px;
}

@media (max-width: 991px) {
	.increo_header_fixed .secondary-navigation {
		display: none;
	}
}

.increo_header_fixed .secondary-navigation ul {
	padding: 0;
	margin: 0;
	font-size: 0;
}

.increo_header_fixed .secondary-navigation ul li {
	font-size: 0;
	display: inline-block;
}

.increo_header_fixed .secondary-navigation ul li a {
	font-size: 11px;
	color: #ffffff;
	padding: 15px 20px 12px;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	border-bottom: 4px solid transparent;
	will-change: border-color, color;
	-webkit-transition: border-color 300ms, color 300ms;
	transition: border-color 300ms, color 300ms;
}

.increo_header_fixed .secondary-navigation ul li a:hover {
	color: #99d537;
	border-color: #99d537;
}

.increo_header_fixed .site-header-cart {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 0;
}

.increo_header_fixed .site-header-cart li {
	font-size: 0;
	display: inline-block;
}

.increo_header_fixed .site-header-cart li a {
	padding: 22px 20px;
	font-size: 11px;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
}

.increo_header_fixed .site-header-cart li.n-link a {
	padding: 16px 20px 12px;
	border-bottom: 4px solid transparent;
	will-change: border-color, color;
	-webkit-transition: border-color 300ms, color 300ms;
	transition: border-color 300ms, color 300ms;
}

.increo_header_fixed .site-header-cart li.n-link a.active, .increo_header_fixed .site-header-cart li.n-link a:hover {
	color: #99d537;
	border-color: #99d537;
}

.increo_header_fixed .site-header-cart li.login-item .logout-t {
	margin-right: 10px;
	display: inline-block;
}

.increo_header_fixed .site-header-cart li.login-item a {
	padding: 17px 20px 12px;
	margin-right: -1px;
	background-color: #3f3f3f;
	border-bottom: 4px solid #3f3f3f;
	will-change: border-color;
	-webkit-transition: border-color 300ms;
	transition: border-color 300ms;
}

.increo_header_fixed .site-header-cart li.login-item a:hover {
	border-color: #99d537;
}

.increo_header_fixed .site-header-cart li.login-item img {
	margin-top: 2px;
	height: 20px;
	margin-right: 10px;
}

.increo_header_fixed .site-header-cart li.shopping-list-item a {
	padding: 17px 20px 12px;
	margin-right: -1px;
	background-color: #505050;
	border-bottom: 4px solid #505050;
	will-change: border-color;
	-webkit-transition: border-color 300ms;
	transition: border-color 300ms;
}

.increo_header_fixed .site-header-cart li.shopping-list-item a:hover {
	border-color: #99d537;
}

.increo_header_fixed .site-header-cart li.shopping-list-item img {
	margin-top: 4px;
	height: 15px;
	margin-right: 10px;
}

@media (max-width: 991px) {
	.increo_header_fixed .site-header-cart li.loggout-item {
		display: none;
	}
}

.increo_header_fixed .site-header-cart li.cart-content-item a {
	background-color: #99d537;
	text-decoration: none;
	color: #000000;
	padding: 15px 0 18px;
	width: 57px;
	font-weight: 700;
	font-size: 16px;
	display: inline-block;
	text-align: center;
	will-change: background-color;
	-webkit-transition: background-color 300ms;
	transition: background-color 300ms;
}

@media (max-width: 991px) {
	.increo_header_fixed .site-header-cart li.cart-content-item a {
		width: 49px;
	}
}

.increo_header_fixed .site-header-cart li.cart-content-item a:hover {
	background-color: #ffffff;
}

body.admin-bar .increo_header_fixed {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .increo_header_fixed {
		top: 46px;
	}
}

form.woocommerce-product-search {
	position: relative;
}

@media (min-width: 992px) {
	form.woocommerce-product-search:hover input[type=search], form.woocommerce-product-search:focus input[type=search] {
		width: 380px;
		color: #000000;
		font-size: 14px;
		outline: none;
	}

	form.woocommerce-product-search:hover input[type=search]::-webkit-input-placeholder, form.woocommerce-product-search:focus input[type=search]::-webkit-input-placeholder {
		color: #8b8b8b;
		font-size: 14px;
	}

	form.woocommerce-product-search:hover input[type=search]:-moz-placeholder, form.woocommerce-product-search:focus input[type=search]:-moz-placeholder {
		color: #8b8b8b;
		font-size: 14px;
	}

	form.woocommerce-product-search:hover input[type=search]::-moz-placeholder, form.woocommerce-product-search:focus input[type=search]::-moz-placeholder {
		color: #8b8b8b;
		font-size: 14px;
	}

	form.woocommerce-product-search:hover input[type=search]:-ms-input-placeholder, form.woocommerce-product-search:focus input[type=search]:-ms-input-placeholder {
		color: #8b8b8b;
		font-size: 14px;
	}
}

form.woocommerce-product-search input[type=search] {
	color: #ffffff;
	font-size: 0;
	width: 130px;
	will-change: width, color;
	-webkit-transition: width 300ms, color 300ms;
	transition: width 300ms, color 300ms;
}

@media (max-width: 991px) {
	form.woocommerce-product-search input[type=search] {
		width: 100%;
		color: #000000;
		font-size: 14px;
		border: 2px solid #99d537;
	}

	form.woocommerce-product-search input[type=search]:hover, form.woocommerce-product-search input[type=search]:focus {
		width: 100%;
		outline: none;
	}

	form.woocommerce-product-search input[type=search]::-webkit-input-placeholder {
		color: #8b8b8b;
		font-size: 14px;
	}

	form.woocommerce-product-search input[type=search]:-moz-placeholder {
		color: #8b8b8b;
		font-size: 14px;
	}

	form.woocommerce-product-search input[type=search]::-moz-placeholder {
		color: #8b8b8b;
		font-size: 14px;
	}

	form.woocommerce-product-search input[type=search]:-ms-input-placeholder {
		color: #8b8b8b;
		font-size: 14px;
	}
}

@media (min-width: 992px) {
	form.woocommerce-product-search input[type=search]::-webkit-input-placeholder {
		color: #ffffff;
		font-size: 0;
		will-change: color;
		-webkit-transition: color 300ms;
		transition: color 300ms;
	}

	form.woocommerce-product-search input[type=search]:-moz-placeholder {
		color: #ffffff;
		font-size: 0;
		will-change: color;
		-webkit-transition: color 300ms;
		transition: color 300ms;
	}

	form.woocommerce-product-search input[type=search]::-moz-placeholder {
		color: #ffffff;
		font-size: 0;
		will-change: color;
		-webkit-transition: color 300ms;
		transition: color 300ms;
	}

	form.woocommerce-product-search input[type=search]:-ms-input-placeholder {
		color: #ffffff;
		font-size: 0;
		will-change: color;
		-webkit-transition: color 300ms;
		transition: color 300ms;
	}

	form.woocommerce-product-search input[type=search]:hover, form.woocommerce-product-search input[type=search]:focus {
		width: 380px;
		color: #000000;
		font-size: 14px;
		outline: none;
	}

	form.woocommerce-product-search input[type=search]:hover::-webkit-input-placeholder, form.woocommerce-product-search input[type=search]:focus::-webkit-input-placeholder {
		color: #8b8b8b;
		font-size: 14px;
	}

	form.woocommerce-product-search input[type=search]:hover:-moz-placeholder, form.woocommerce-product-search input[type=search]:focus:-moz-placeholder {
		color: #8b8b8b;
		font-size: 14px;
	}

	form.woocommerce-product-search input[type=search]:hover::-moz-placeholder, form.woocommerce-product-search input[type=search]:focus::-moz-placeholder {
		color: #8b8b8b;
		font-size: 14px;
	}

	form.woocommerce-product-search input[type=search]:hover:-ms-input-placeholder, form.woocommerce-product-search input[type=search]:focus:-ms-input-placeholder {
		color: #8b8b8b;
		font-size: 14px;
	}
}

form.woocommerce-product-search button {
	position: absolute;
	top: calc(50% - 10px);
	right: 10px;
	width: 18px;
	padding: 0;
	border: 0 none;
	margin: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

form.woocommerce-product-search button img {
	height: 18px;
}

.article-map {
	height: 500px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url("../images/bg_map.png");
}

@media (max-width: 991px) {
	.article-map {
		height: 260px;
	}
}

.article-map .container {
	max-width: 640px;
	height: 100%;
}

.article-map .row {
	height: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.article-map h2 {
	font-size: 42px;
	line-height: 56px;
}

@media (max-width: 991px) {
	.article-map h2 {
		font-size: 24px;
		line-height: 32px;
	}
}

.article-map .button {
	display: inline-block;
	margin-top: 20px;
	background: none;
	-webkit-box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0);
}

.article-map .button:hover {
	-webkit-box-shadow: inset 0 0 0 2px #000000, 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 2px #000000, 0 0 1px rgba(0, 0, 0, 0);
}

.frontpage-item {
	padding-bottom: 30px;
}

.frontpage-item h2 {
	font-size: 42px;
	line-height: 56px;
	margin-top: 0;
	margin-bottom: 40px;
}

@media (max-width: 991px) {
	.frontpage-item h2 {
		font-size: 24px;
		line-height: 32px;
	}
}

.frontpage-item p {
	font-size: 16px;
	line-height: 1.5;
	color: #3f3f3f;
	max-width: 70%;
}

@media (max-width: 991px) {
	.frontpage-item p {
		max-width: 100%;
	}
}

.frontpage-item .button.with-icon {
	margin-top: 35px;
}

@media (max-width: 991px) {
	.frontpage-item .button.with-icon {
		margin-top: 15px;
	}
}

.frontpage-item .fp-image {
	padding-left: 70px;
	padding-right: 15px;
}

@media (max-width: 991px) {
	.frontpage-item .fp-image {
		padding: 0;
	}
}

.frontpage-item .fp-image img {
	margin-top: 90px;
	margin-bottom: 70px;
	width: 100%;
}

@media (max-width: 991px) {
	.frontpage-item .fp-image img {
		margin-top: 10px;
		margin-bottom: 40px;
	}
}

.frontpage-item.even .fp-image {
	padding-right: 70px;
	padding-left: 15px;
}

@media (max-width: 991px) {
	.frontpage-item.even .fp-image {
		padding: 0;
	}
}

@media (max-width: 991px) {
	.frontpage-item.odd .container .row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}

.frontpage-ad {
	margin-top: 20px;
	margin-bottom: 20px;
}

.frontpage-ad .image {
	height: 550px;
	overflow: hidden;
}

.frontpage-ad .image img {
	width: 100%;
	-o-object-position: center center;
	object-position: center center;
	-o-object-fit: cover;
	object-fit: cover;
	height: 550px;
}

@media (max-width: 767px) {
	.frontpage-ad .image {
		height: 400px;
	}

	.frontpage-ad .image img {
		height: 400px;
	}
}

.frontpage-ad .row {
	position: relative;
	background-color: #000000;
}

.frontpage-ad iframe {
	pointer-events: none;
}

.frontpage-ad .content-container {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 85%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
}

.frontpage-ad .content-container h2,
.frontpage-ad .content-container .content,
.frontpage-ad .content-container .content * {
	color: #ffffff;
}

.frontpage-ad .content-container h2 {
	font-weight: 700;
	font-size: 52px;
	line-height: 56px;
}

@media (max-width: 767px) {
	.frontpage-ad .content-container h2 {
		font-size: 32px;
		line-height: 36px;
	}
}

.frontpage-ad .content-container .content p {
	font-size: 22px;
	line-height: 26px;
}

@media (max-width: 767px) {
	.frontpage-ad .content-container .content p {
		font-size: 16px;
		line-height: 22px;
	}
}

.news-list-item {
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.news-list-item img {
	width: 100%;
	will-change: transform;
	-webkit-transition: -webkit-transform 500ms ease-in-out;
	transition: -webkit-transform 500ms ease-in-out;
	transition: transform 500ms ease-in-out;
	transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out;
}

.news-list-item img.bg {
	height: 220px;
	-o-object-fit: cover;
	object-fit: cover;
}

.news-list-item .placeholder {
	width: 100%;
	padding-bottom: 62.8%;
	background-color: #000000;
	background-size: 80%;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url("../images/nordesign_logo_white.svg");
}

.news-list-item > a {
	display: block;
	position: relative;
	overflow: hidden;
	text-decoration: none;
}

.news-list-item > a:hover img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.news-list-item h4 {
	padding-top: 25px;
	padding-bottom: 15px;
	margin-bottom: 0;
}

.news-list-item time {
	font-size: 16px;
	line-height: 1.5;
	color: #505050;
	padding-bottom: 30px;
	display: inline-block;
}

.news-list-item .content {
	position: absolute;
	bottom: 40px;
}

@media (max-width: 767px) {
	.news-list-item.front-item h4 {
		font-size: 16px;
		line-height: 22px;
	}
}

@media (max-width: 767px) {
	.news-list-item.front-item time {
		font-size: 14px;
		padding-bottom: 15px;
	}
}

.pagination ul.page-numbers {
	padding-left: 0;
}

.pagination > .container {
	padding-top: 60px;
	padding-bottom: 40px;
}

.pagination li {
	display: inline-block;
	list-style-type: none;
	padding: 0 3px;
}

.pagination a,
.pagination span:not(.wcag_hide) {
	padding: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-bottom: 3px;
}

.pagination a.current,
.pagination span:not(.wcag_hide).current {
	cursor: default;
	-webkit-box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0);
}

.pagination a.dots,
.pagination span:not(.wcag_hide).dots {
	cursor: default;
	color: #777777;
	-webkit-box-shadow: inset 0 0 0 2px #777777, 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 2px #777777, 0 0 1px rgba(0, 0, 0, 0);
}

.woocommerce-pagination {
	width: 100%;
	text-align: center;
	padding: 60px 0 40px;
	display: none;
}

.woocommerce-pagination li {
	display: inline-block;
	list-style-type: none;
}

.woocommerce-pagination a,
.woocommerce-pagination span:not(.wcag_hide) {
	padding: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin-bottom: 3px;
}

.woocommerce-pagination a.current,
.woocommerce-pagination span:not(.wcag_hide).current {
	cursor: default;
	-webkit-box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0);
}

.woocommerce-pagination a.dots,
.woocommerce-pagination span:not(.wcag_hide).dots {
	cursor: default;
	color: #777777;
	-webkit-box-shadow: inset 0 0 0 2px #777777, 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 2px #777777, 0 0 1px rgba(0, 0, 0, 0);
}

.single-employee {
	margin-bottom: 30px;
}

.single-employee h4 {
	margin: 25px 0 5px;
}

.single-employee small {
	font-size: 16px;
	line-height: 1.5;
	color: #3f3f3f;
	margin-bottom: 25px;
	display: inline-block;
}

.single-employee .button {
	font-size: 12px;
	margin-bottom: 7px;
	margin-right: 2px;
}

.single-employee .button.with-icon.icon-left {
	padding-left: 40px;
}

.single-employee .button.with-icon.mail-icon {
	vertical-align: top;
}

@media (max-width: 991px) {
	.single-employee .button.with-icon.mail-icon {
		font-size: 0;
		padding-right: 0;
		padding-left: 0;
		width: 44px;
	}
}

.single-product-list-item {
	background-color: #ffffff;
	border-left: 2px solid #ffffff;
	margin-bottom: 2px;
	position: relative;
	text-align: center;
	padding: 0;
	list-style-type: none;
}

.single-product-list-item article {
	height: 100%;
}

.single-product-list-item article.product-type-bundle {
	-webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03), 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03), 0 0 1px rgba(0, 0, 0, 0);
}

.single-product-list-item .badge {
	margin-top: 3px;
}

.single-product-list-item a {
	padding: 20px;
	position: relative;
	width: 100%;
	height: 100%;
	display: inline-block;
	text-decoration: none;
	will-change: box-shadow;
	-webkit-transition: -webkit-box-shadow 300ms ease-in;
	transition: -webkit-box-shadow 300ms ease-in;
	transition: box-shadow 300ms ease-in;
	transition: box-shadow 300ms ease-in, -webkit-box-shadow 300ms ease-in;
}

.single-product-list-item a:hover, .single-product-list-item a:focus {
	outline: none;
	-webkit-box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(153, 213, 55, 0);
	box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(153, 213, 55, 0);
}

.single-product-list-item a:hover .button, .single-product-list-item a:focus .button {
	opacity: 1;
	bottom: 30px;
}

@media (max-width: 767px) {
	.single-product-list-item a:hover .button, .single-product-list-item a:focus .button {
		max-width: 95%;
	}
}

.single-product-list-item .color-layer {
	background: rgba(0, 0, 0, 0.03);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	pointer-events: none;
}

.single-product-list-item .entry-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
}

.single-product-list-item .entry-content .img-wrapper {
	width: 100%;
}

.single-product-list-item .product-simple .entry-header {
	z-index: 2;
	text-align: left;
	position: absolute;
	top: 20px;
	left: 20px;
	width: calc(100% - 40px);
}

.single-product-list-item .product-simple .entry-header h6 {
	font-family: "Lato", sans-serif;
	font-size: 14px;
	line-height: 1.33;
	text-transform: uppercase;
	color: #3f3f3f;
	margin-bottom: 0;
}

.single-product-list-item .product-simple .entry-header .price {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	color: #000000;
	text-transform: uppercase;
}

.single-product-list-item .product-simple .img-wrapper {
	padding: 30% 0;
}

@media (max-width: 991px) {
	.single-product-list-item .product-simple .img-wrapper {
		padding: 100px 0 85px;
	}
}

@media (max-width: 767px) {
	.single-product-list-item .product-simple .img-wrapper {
		padding: 75px 0 50px;
	}
}

.single-product-list-item .product-simple .img-wrapper img {
	max-width: 235px;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	height: 210px;
}

@media (max-width: 991px) {
	.single-product-list-item .product-simple .img-wrapper img {
		max-width: 175px;
		height: 180px;
	}
}

.single-product-list-item .product-bundle .entry-header {
	z-index: 2;
	position: relative;
	width: 100%;
}

.single-product-list-item .product-bundle .entry-header h5 {
	font-family: "Lato", sans-serif;
	font-size: 16px;
	line-height: 1.33;
	text-transform: uppercase;
	color: #000000;
}

.single-product-list-item .product-bundle .entry-header h6 {
	font-family: "Lato", sans-serif;
	font-size: 14px;
	line-height: 1.33;
	text-transform: uppercase;
	color: #3f3f3f;
}

.single-product-list-item .product-bundle .entry-header .icon {
	width: 38px;
	margin-top: 35px;
	margin-bottom: 35px;
}

.single-product-list-item .product-bundle .img-wrapper {
	padding: 0 0 20px;
}

@media (max-width: 767px) {
	.single-product-list-item .product-bundle .img-wrapper {
		padding: 0 0 20px;
	}
}

.single-product-list-item .product-bundle .img-wrapper img {
	max-width: 180px;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	height: 210px;
}

@media (max-width: 991px) {
	.single-product-list-item .product-bundle .img-wrapper img {
		max-width: 175px;
		height: 180px;
	}
}

@media (max-width: 767px) {
	.single-product-list-item .product-bundle .img-wrapper img {
		max-width: 150px;
		height: 160px;
	}
}

.single-product-list-item .button {
	width: 100%;
	max-width: 210px;
	text-align: left;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	position: absolute;
	opacity: 0;
	-webkit-transition: bottom 200ms ease-in, opacity 200ms ease-in;
	transition: bottom 200ms ease-in, opacity 200ms ease-in;
	will-change: bottom, opacity;
	-webkit-box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(153, 213, 55, 0);
	box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(153, 213, 55, 0);
}

.single-product-list-item.product-item-featured .img-wrapper img {
	max-width: 350px;
}

.single-product-list-item.product-item-featured .entry-header {
	top: initial;
	bottom: 20px;
	right: 20px;
	left: initial;
	padding-right: 20px;
	text-align: right;
	width: auto;
	padding-top: 10px;
	padding-bottom: 10px;
}

.single-product-list-item.product-item-featured .entry-header:after {
	content: "";
	position: absolute;
	height: 100%;
	width: 5px;
	top: 0;
	right: 0;
	background-color: #99d537;
}

.entry-title {
	position: relative;
	margin-bottom: 40px;
}

.entry-title:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 8px;
	top: 0;
	left: -60px;
	background-color: #99d537;
}

.category-aside {
	background-color: rgba(0, 0, 0, 0.02);
	padding: 40px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 300px;
	flex: 0 0 300px;
	max-width: 300px;
	position: relative;
}

@media (max-width: 991px) {
	.category-aside {
		max-width: 100%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		margin-bottom: 2px;
		display: none;
		padding: 35px 15px;
	}

	.category-aside.active {
		display: block;
	}
}

.category-aside .product-categories {
	margin-bottom: 45px;
}

.category-aside .product-categories li {
	display: block;
}

.category-aside.loader:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: block;
	content: '';
	background: rgba(255, 255, 255, 0.5) url(../images/ajax-loader.gif) no-repeat center 100px;
}

.category-aside .sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 190px;
}

@media (min-width: 992px) {
	.category-aside .sticky {
		max-height: 85vh;
		overflow-y: auto;
	}
}

@media (max-width: 991px) {
	.category-aside .sticky {
		position: relative;
		top: 0;
	}
}

.category-aside h3,
.category-aside h5 {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
	color: #3f3f3f;
}

.category-aside .widget_layered_nav {
	margin-bottom: 22px;
}

.category-aside .widget_layered_nav.active h5:after {
	display: none;
}

.category-aside .widget_layered_nav.active ul {
	display: inline-block;
}

.category-aside .widget_layered_nav h5 {
	cursor: pointer;
	position: relative;
}

.category-aside .widget_layered_nav h5:hover {
	background-color: #ececec;
}

.category-aside .widget_layered_nav h5:before {
	pointer-events: none;
	content: '';
	width: 10px;
	height: 2px;
	background-color: #000000;
	position: absolute;
	top: 7px;
	right: 5px;
}

.category-aside .widget_layered_nav h5:after {
	pointer-events: none;
	content: '';
	width: 2px;
	height: 10px;
	background-color: #000000;
	position: absolute;
	right: 9px;
	top: 3px;
}

.category-aside .widget_layered_nav ul {
	display: none;
}

.category-aside .widget_layered_nav a {
	vertical-align: top;
	position: relative;
	font-size: 13px;
	line-height: 18px;
	text-decoration: none;
	display: inline-block;
	margin: 0;
	width: 100%;
	cursor: pointer;
	padding: 6px;
	border: 1px solid #707070;
}

@media (max-width: 991px) {
	.category-aside .widget_layered_nav a {
		font-size: 15px;
		line-height: 21px;
		padding-top: 8px;
		padding-bottom: 8px;
	}
}

.category-aside .widget_layered_nav .chosen a {
	font-weight: 700;
	color: #000000;
	background-color: #ececec;
	padding-left: 5px;
}

.category-aside .berocket_aapf_widget .berocket_label_widgets {
	vertical-align: top;
	position: relative;
	font-size: 13px;
	line-height: 18px;
	text-decoration: none;
	display: inline-block;
	padding-top: 3px;
	padding-bottom: 3px;
	margin: 0;
	width: 100%;
	cursor: pointer;
}

.category-aside .berocket_aapf_widget .berocket_checked {
	font-weight: 700;
	color: #000000;
	background-color: #ececec;
	padding-left: 5px;
	margin-left: -5px;
	width: calc(100% + 5px);
}

.category-aside .berocket_aapf_widget .berocket_checked:before {
	display: none;
}

.category-aside .widget_berocket_aapf {
	margin-bottom: 35px;
}

.category-aside ul {
	padding: 0;
	margin: 0;
}

.category-aside ul .category-item a {
	padding-left: 20px;
	width: 100%;
}

.category-aside ul .category-item ul {
	padding: 7px 0 10px 20px;
}

.category-aside ul .category-item ul a {
	padding-right: 20px;
	width: 100%;
}

.category-aside ul .category-item ul a:hover {
	font-weight: 700;
	color: #000000;
	background-color: #ececec;
}

.category-aside .parent-item {
	position: relative;
}

.category-aside .parent-item .open {
	display: inline-block;
	position: absolute;
	z-index: 2;
	vertical-align: top;
	cursor: pointer;
	width: 10px;
	height: 15px;
}

.category-aside .parent-item .open:before {
	content: '';
	width: 10px;
	height: 2px;
	background-color: #000000;
	position: absolute;
	top: 11px;
	left: 0;
}

@media (max-width: 991px) {
	.category-aside .parent-item .open:before {
		top: 17px;
	}
}

.category-aside .parent-item .open:after {
	content: '';
	width: 2px;
	height: 10px;
	background-color: #000000;
	position: absolute;
	left: 4px;
	top: 7px;
}

@media (max-width: 991px) {
	.category-aside .parent-item .open:after {
		top: 13px;
	}
}

.category-aside .parent-item a.active {
	font-weight: 700;
	color: #000000;
	background-color: #ececec;
	padding-left: 20px;
}

.category-aside .parent-item.active .product-subcategories {
	display: block;
}

.category-aside .parent-item.active .product-subcategories li.active > a {
	font-weight: 700;
	color: #000000;
	background-color: #ececec;
}

.category-aside .parent-item.active .open:after {
	opacity: 0;
}

.category-aside li {
	list-style-type: none;
	display: inline-block;
	width: auto;
	margin: 0 3px 3px 0;
}

.category-aside li a {
	vertical-align: top;
	position: relative;
	font-size: 13px;
	line-height: 18px;
	text-decoration: none;
	display: inline-block;
	padding-top: 3px;
	padding-bottom: 3px;
}

@media (max-width: 991px) {
	.category-aside li a {
		font-size: 15px;
		line-height: 21px;
		padding-top: 8px;
		padding-bottom: 8px;
	}
}

.category-aside li a:hover, .category-aside li a:focus {
	color: #000000;
	background-color: #ececec;
}

.category-aside .product-subcategories {
	display: none;
}

.mobile-filter-btn-container {
	width: 100%;
	padding: 0 15px 30px;
	text-align: center;
}

@media (min-width: 992px) {
	.mobile-filter-btn-container {
		display: none;
	}
}

.mobile-filter-btn-container button {
	width: 100%;
}

.category-products-wrapper {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(100% - 300px);
	flex: 0 0 calc(100% - 300px);
	max-width: calc(100% - 300px);
}

@media (max-width: 991px) {
	.category-products-wrapper {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.category-products-wrapper .woocommerce-info {
	width: 100%;
	text-align: center;
	margin: 20px;
}

.category-products-wrapper ul.products {
	width: 100%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0;
	margin: 0;
	position: relative;
}

.category-products-wrapper ul.products .loader {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 100%;
	padding: 60px 0 40px;
	width: 100%;
	display: block;
	background: rgba(255, 255, 255, 0.5) url(../images/ajax-loader.gif) no-repeat center 100px;
}

.category-products-wrapper .berocket_aapf_widget_loading {
	z-index: 4;
	background: #ffffff url(../images/ajax-loader.gif) no-repeat center 100px;
}

.badge-container {
	display: block;
}

.new-badge {
	display: inline-block;
	margin-right: 5px;
}

.new-badge svg {
	width: 60px;
	height: auto;
}

.new-badge .cls-1 {
	fill: #99d537;
}

.new-badge .cls-2 {
	text-transform: uppercase;
	font-size: 12px;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	letter-spacing: .05em;
	color: #000000;
}

.outlet-badge {
	display: inline-block;
}

.outlet-badge svg {
	width: 60px;
	height: auto;
}

.outlet-badge .cls-1 {
	fill: #000000;
}

.outlet-badge .cls-2 {
	text-transform: uppercase;
	font-size: 11px;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	letter-spacing: .05em;
	color: #f4f4f4;
}

.discount-badge {
	display: inline-block;
	margin-bottom: 15px;
}

.discount-badge svg {
	height: auto;
}

.discount-badge .cls-1 {
	fill: #000000;
}

.discount-badge .cls-2 {
	text-transform: uppercase;
	font-size: 11px;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	letter-spacing: .05em;
	color: #f4f4f4;
}

.woocommerce-message,
.woocommerce-info {
	border-radius: 5px;
	padding: 20px 50px;
	color: #155724;
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	margin-top: 30px;
	margin-bottom: 50px;
}

.woocommerce-message a,
.woocommerce-info a {
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto 15px;
}

.woocommerce-error {
	color: #721c24;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 5px;
	margin: 30px auto 50px;
	width: 100%;
	max-width: none;
	text-align: center;
	padding: 30px 20px;
}

.woocommerce-error li {
	list-style-type: none;
}

.products-sidebar {
	margin-bottom: 35px;
}

.products-sidebar li {
	position: relative;
}

.products-sidebar li a {
	width: 100%;
	display: inline-block;
}

.products-sidebar li a:hover {
	font-weight: 700;
	color: #000000;
	background-color: #ececec;
}

.products-sidebar li span {
	display: none;
}

.order-item div {
	display: block;
	text-decoration: none;
	padding: 0 0 30px;
	border-bottom: 2px solid rgba(112, 112, 112, 0.5);
	margin: 0 0 30px;
	will-change: border-color;
	-webkit-transition: border-color 200ms ease-in;
	transition: border-color 200ms ease-in;
	cursor: pointer;
}

.order-item div:hover {
	color: #000000;
	border-color: #99d537;
}

.order-item strong {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #000000;
}

.order-item p {
	margin: 0;
}

.page-time {
	display: none;
}

.infinite-scroll-container .loader {
	padding: 60px 0 40px;
	width: 100%;
	display: block;
	background: url(../images/ajax-loader.gif) no-repeat center center;
}

.blockUI.blockOverlay {
	position: fixed !important;
	z-index: 10000 !important;
	display: block;
	top: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.55);
	left: 0;
	right: 0;
}

.blockUI.blockOverlay:before {
	content: url("../images/ajax-loader.gif");
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
}

.not-logged-in-cart-form {
	margin-bottom: 50px;
}

.not-logged-in-cart-form .required {
	top: -10px;
	margin-left: 5px;
}

.not-logged-in-cart-form input {
	width: 100%;
}

.custom-checkbox label {
	position: relative;
	display: inline-block;
	padding-left: 26px;
}

.custom-checkbox label:before, .custom-checkbox label:after {
	position: absolute;
	content: "";
	display: inline-block;
}

.custom-checkbox label:before {
	height: 16px;
	width: 16px;
	border: 1px solid;
	left: 0;
	top: 5px;
}

.custom-checkbox label:after {
	height: 5px;
	width: 9px;
	border-left: 2px solid;
	border-bottom: 2px solid;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: 4px;
	top: 9px;
}

.custom-checkbox input[type="checkbox"] {
	opacity: 0;
	display: none;
}

.custom-checkbox input[type="checkbox"] + label:after {
	content: none;
}

.custom-checkbox input[type="checkbox"]:checked + label:after {
	content: "";
}

.custom-checkbox span.required {
	line-height: 0;
	position: relative;
	top: -9px;
	left: 6px;
}

.single-go-back {
	top: -90px;
	right: 15px;
	position: absolute;
}

@media (max-width: 991px) {
	.single-go-back {
		position: relative;
		top: 0;
		right: 0;
		width: 100%;
		text-align: left;
		margin-bottom: 25px;
	}
}

.handlelist-list {
	padding: 0;
	margin: 0;
	list-style-type: none;
	border-top: 2px solid rgba(112, 112, 112, 0.2);
}

.handlelist-list .handlelist-list-item {
	cursor: pointer;
	border-bottom: 2px solid rgba(112, 112, 112, 0.2);
	padding: 20px 0;
	will-change: border-color;
	-webkit-transition: border-color 200ms ease-in;
	transition: border-color 200ms ease-in;
	position: relative;
}

.handlelist-list .handlelist-list-item.active, .handlelist-list .handlelist-list-item:hover {
	border-color: #99d537;
}

.handlelist-list .handlelist-list-item span {
	font-family: "Lato", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #000000;
	vertical-align: top;
	margin-left: 38px;
	display: block;
}

.handlelist-list .handlelist-list-item img {
	vertical-align: middle;
	width: 18px;
	position: absolute;
	top: 25px;
	left: 0;
}

@media (max-width: 1210px) {
	.hl-ajax-container {
		margin-top: 30px;
	}
}

.hl-ajax-container .form-actions .wishlist-add-to-cart {
	float: right;
	white-space: nowrap;
}

@media (max-width: 1210px) {
	.hl-ajax-container .form-actions .wishlist-add-to-cart {
		width: 100%;
	}

	.hl-ajax-container .form-actions .wishlist-add-to-cart button[type=submit] {
		float: none;
		width: 100%;
	}
}

.hl-ajax-container .form-actions .button.pdf, .hl-ajax-container .form-actions .button.share, .hl-ajax-container .form-actions .button.save, .hl-ajax-container .form-actions .button.del {
	text-align: left;
	margin-right: 8px;
}

.hl-ajax-container .form-actions .button.pdf img, .hl-ajax-container .form-actions .button.share img, .hl-ajax-container .form-actions .button.save img, .hl-ajax-container .form-actions .button.del img {
	max-height: 15px;
}

.hl-ajax-container .form-actions .button.pdf {
	width: 100%;
}

@media (max-width: 1210px) {
	.hl-ajax-container .form-actions .button.pdf {
		margin-bottom: 10px;
	}
}

@media (max-width: 1210px) {
	.hl-ajax-container .form-actions .button.share {
		width: 100%;
		margin-right: 8px;
		margin-bottom: 10px;
	}

	.hl-ajax-container .form-actions .button.share.full {
		width: 100%;
		margin-right: 0;
	}
}

@media (max-width: 1210px) {
	.hl-ajax-container .form-actions .button.del, .hl-ajax-container .form-actions .button.save {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
}

.hl-ajax-container .form-actions .with-icon {
	padding-right: 45px;
}

.hl-ajax-container .form-actions form {
	display: inline-block;
	margin: 0;
	vertical-align: top;
}

.hl-ajax-container .form-actions form button,
.hl-ajax-container .form-actions form a {
	text-align: left;
	vertical-align: top;
}

@media (max-width: 1210px) {
	.hl-ajax-container .form-actions form.wishlist-delete, .hl-ajax-container .form-actions form.wishlist-save {
		width: 100%;
	}
}

.hl-ajax-container .form-actions form.wishlist-pdf {
	margin-right: 11px;
}

@media (max-width: 1210px) {
	.hl-ajax-container .form-actions form.wishlist-pdf {
		width: 100%;
	}
}

.searchwp-live-search-results.searchwp-live-search-results-showing {
	border: 2px solid #707070;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	position: fixed;
	top: 140px !important;
}

@media (max-width: 991px) {
	.searchwp-live-search-results.searchwp-live-search-results-showing {
		top: 185px !important;
	}
}

.searchwp-live-search-results.searchwp-live-search-results-showing p {
	padding: 0;
}

.searchwp-live-search-results.searchwp-live-search-results-showing p a {
	padding: 1em;
}

.searchwp-live-search-results.searchwp-live-search-results-showing .spinner {
	height: 100%;
	position: relative;
	width: 100% !important;
	left: 0 !important;
	top: 0 !important;
}

.searchwp-live-search-results.searchwp-live-search-results-showing .spinner:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: block;
	content: '';
	background: rgba(255, 255, 255, 0.5) url(../images/ajax-loader.gif) no-repeat center center;
}

.searchwp-live-search-results.searchwp-live-search-results-showing.searchwp-live-search-no-min-chars .spinner {
	opacity: 1;
}

.searchwp-live-search-results.searchwp-live-search-results-showing.searchwp-live-search-no-min-chars:after {
	content: 'Fortsett å skrive';
}

.searchwp-live-search-results.searchwp-live-search-results-showing .searchwp-live-search-no-results {
	padding: 1em;
}

.catalog-ordering {
	padding-bottom: 20px;
}

@media (max-width: 991px) {
	.catalog-ordering select.orderby {
		width: 100%;
	}
}

.custom-radio {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: left;
}

.custom-radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.custom-radio .checkmark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 18px;
	width: 18px;
	background-color: #ffffff;
	border: 1px solid #000000;
	border-radius: 50%;
}

.custom-radio .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	top: 4px;
	left: 4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #000000;
}

.custom-radio:hover input ~ .checkmark {
	background-color: rgba(0, 0, 0, 0.03);
}

.custom-radio input:checked ~ .checkmark {
	background-color: #ffffff;
}

.custom-radio input:checked ~ .checkmark:after {
	display: block;
}

body.page-template-default .entry-content .alignnone,
body.post-template-default .entry-content .alignnone {
	float: none;
	display: block;
	margin: 0 0 30px 0;
}

body.page-template-default .entry-content .alignleft,
body.post-template-default .entry-content .alignleft {
	float: left;
	margin: 0 15px 30px 0;
}

body.page-template-default .entry-content .alignright,
body.post-template-default .entry-content .alignright {
	float: right;
	margin: 0 0 30px 15px;
}

body.page-template-default .entry-content .aligncenter,
body.post-template-default .entry-content .aligncenter {
	display: block;
	margin: 0 auto 30px auto;
}

body.page-template-default .entry-content .size-full,
body.post-template-default .entry-content .size-full {
	width: 100%;
	height: auto;
}

body.page-template-default .entry-content blockquote,
body.post-template-default .entry-content blockquote {
	border-left: 4px solid #99d537;
	padding: 15px 5px 15px 20px;
	margin: 0 0 30px 30px;
	font-style: italic;
	background: rgba(0, 0, 0, 0.03);
	position: relative;
	quotes: none;
}

body.page-template-default .entry-content table tr,
body.post-template-default .entry-content table tr {
	border-bottom: 1px solid #8b8b8b;
}

body.page-template-default .entry-content table tr:nth-child(odd),
body.post-template-default .entry-content table tr:nth-child(odd) {
	background-color: #ffffff;
}

body.page-template-default .entry-content table tr:nth-child(even),
body.post-template-default .entry-content table tr:nth-child(even) {
	background-color: rgba(0, 0, 0, 0.03);
}

body.page-template-default .entry-content table tr th,
body.page-template-default .entry-content table tr td,
body.post-template-default .entry-content table tr th,
body.post-template-default .entry-content table tr td {
	padding: 5px;
}

body.page-template-default .entry-content table tbody tr,
body.post-template-default .entry-content table tbody tr {
	will-change: border-bottom;
	-webkit-transition: border-bottom 200ms ease-in;
	transition: border-bottom 200ms ease-in;
}

body.page-template-default .entry-content table tbody tr:hover,
body.post-template-default .entry-content table tbody tr:hover {
	border-bottom: 1px solid #99d537;
}

.stock-badge {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	margin-right: 7px;
	vertical-align: middle;
	margin-top: -3px;
}

.stock-badge.green {
	background: #28c940;
}

.stock-badge.yellow {
	background: #ffbd2e;
}

.stock-badge.red {
	background: #ff5f57;
}

.nf-field-element input[type=button] {
	min-width: 150px;
}

@media (max-width: 767px) {
	.nf-field-element input[type=button] {
		min-width: 100%;
	}
}

.nf-field-element textarea {
	border: 2px solid #707070;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	resize: none;
	height: 150px;
}

.nf-before-form-content {
	display: none;
}

.nf-form-layout {
	margin-bottom: 50px;
}

.nf-form-layout .ninja-forms-req-symbol {
	color: #99d537;
}

.ref-category-list {
	padding: 0;
	margin: 25px 0;
}

.ref-category-list li {
	list-style-type: none;
	display: inline-block;
	font-size: 14px;
	line-height: 14px;
	padding: 0;
	margin-right: 10px;
	margin-bottom: 10px;
	cursor: pointer;
	color: #000000;
	text-transform: uppercase;
	background-color: #ffffff;
	border: 2px solid #000000;
	will-change: border-color;
	-webkit-transition: border-color 300ms;
	transition: border-color 300ms;
}

.ref-category-list li.active {
	color: #000000;
	background-color: #ececec;
}

.ref-category-list li:hover {
	border-color: #99d537;
}

.ref-category-list li a {
	padding: 12px 20px;
	display: inline-block;
	text-decoration: none;
}

body.home .categories {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 991px) {
	body.home .categories .col-mobile {
		width: 100%;
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
	}
}

@media (max-width: 991px) {
	body.home .categories {
		margin-bottom: 10px;
	}
}

body.home .title-row {
	margin-top: 85px;
	margin-bottom: 85px;
}

@media (max-width: 767px) {
	body.home .title-row {
		margin-top: 15px;
		margin-bottom: 15px;
	}
}

body.home .parent-categories-container .item,
body.home .sub-categories-container .item {
	margin-bottom: 25px;
}

@media (max-width: 767px) {
	body.home .parent-categories-container .item,
	body.home .sub-categories-container .item {
		margin-bottom: 10px;
	}
}

body.home .parent-categories-container .link,
body.home .sub-categories-container .link {
	text-decoration: none;
}

body.home .parent-categories-container .link:hover, body.home .parent-categories-container .link:focus,
body.home .sub-categories-container .link:hover,
body.home .sub-categories-container .link:focus {
	color: #777777;
	text-decoration: none;
}

body.home .parent-categories-container .link:hover h2,
body.home .parent-categories-container .link:hover h3, body.home .parent-categories-container .link:focus h2,
body.home .parent-categories-container .link:focus h3,
body.home .sub-categories-container .link:hover h2,
body.home .sub-categories-container .link:hover h3,
body.home .sub-categories-container .link:focus h2,
body.home .sub-categories-container .link:focus h3 {
	color: #777777;
}

body.home .parent-categories-container .link:hover h2 img,
body.home .parent-categories-container .link:hover h3 img, body.home .parent-categories-container .link:focus h2 img,
body.home .parent-categories-container .link:focus h3 img,
body.home .sub-categories-container .link:hover h2 img,
body.home .sub-categories-container .link:hover h3 img,
body.home .sub-categories-container .link:focus h2 img,
body.home .sub-categories-container .link:focus h3 img {
	left: 10px;
}

body.home .parent-categories-container .link > img,
body.home .sub-categories-container .link > img {
	width: 100%;
}

body.home .parent-categories-container .link h2,
body.home .parent-categories-container .link h3,
body.home .sub-categories-container .link h2,
body.home .sub-categories-container .link h3 {
	font-size: 17px;
	line-height: 21px;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	margin-top: 12px;
	-webkit-transition: color 300ms;
	transition: color 300ms;
	will-change: color;
}

body.home .parent-categories-container .link h2 img,
body.home .parent-categories-container .link h3 img,
body.home .sub-categories-container .link h2 img,
body.home .sub-categories-container .link h3 img {
	max-width: 16px;
	display: inline;
	top: 5px;
	position: relative;
	left: 5px;
	-webkit-transition: left 300ms;
	transition: left 300ms;
	will-change: left;
}

body.home .parent-categories-container .button,
body.home .sub-categories-container .button {
	margin-top: 20px;
}

body.home .categories-gallery-wrapper {
	opacity: 0;
	will-change: opacity, visibility;
	visibility: hidden;
	height: 0;
	background-color: #000000;
}

body.home .categories-gallery-wrapper.active {
	opacity: 1;
	visibility: visible;
	height: auto;
	position: relative;
}

body.home .categories-gallery-wrapper.active:after {
	content: '';
	width: 50%;
	height: 10px;
	background-color: #99d537;
	position: absolute;
	right: 0;
}

body.home .categories-gallery-wrapper.active .categories-gallery .col:not(.sp) {
	opacity: 1;
}

body.home .categories-gallery .row {
	margin: 0;
}

body.home .categories-gallery .col {
	padding: 0;
	-webkit-box-flex: 20%;
	-ms-flex: 20%;
	flex: 20%;
	overflow: hidden;
	opacity: 0;
	will-change: opacity;
	-webkit-transition: opacity 500ms ease-in;
	transition: opacity 500ms ease-in;
}

body.home .categories-gallery .col.sp {
	opacity: 1;
}

@media (max-width: 991px) {
	body.home .categories-gallery .col {
		-webkit-box-flex: 33%;
		-ms-flex: 33%;
		flex: 33%;
	}
}

body.home .categories-gallery img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: auto;
	max-height: 100%;
	will-change: transform;
	-webkit-transition: -webkit-transform 500ms ease-in-out;
	transition: -webkit-transform 500ms ease-in-out;
	transition: transform 500ms ease-in-out;
	transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out;
}

body.home .categories-gallery a {
	display: block;
	position: relative;
	overflow: hidden;
	will-change: transform;
	-webkit-transition: -webkit-transform 500ms ease-in-out;
	transition: -webkit-transform 500ms ease-in-out;
	transition: transform 500ms ease-in-out;
	transition: transform 500ms ease-in-out, -webkit-transform 500ms ease-in-out;
}

body.home .categories-gallery a:hover {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

body.home .categories-gallery .sp {
	position: relative;
}

@media (max-width: 991px) {
	body.home .categories-gallery .sp {
		display: none;
	}
}

body.home .categories-gallery .sp a {
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	background-color: #99d537;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

body.home .categories-gallery .sp a:hover img {
	bottom: 13%;
	-webkit-transform: scale(1);
	transform: scale(1);
}

body.home .categories-gallery .sp p {
	font-size: 18px;
	width: 70%;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.5;
	color: #000000;
}

body.home .categories-gallery .sp img {
	position: absolute;
	bottom: 15%;
	left: calc(50% - 22px);
	width: 44px;
	-o-object-fit: contain;
	object-fit: contain;
	will-change: bottom;
	-webkit-transition: bottom 300ms;
	transition: bottom 300ms;
}

body.home .parent-link {
	text-decoration: none;
	position: relative;
	display: block;
}

body.home .parent-link.active:before {
	content: "";
	position: absolute;
	height: calc(100% - 16px);
	width: 8px;
	top: 7px;
	left: 0;
	background-color: #99d537;
}

@media (max-width: 991px) {
	body.home .parent-link.active:before {
		height: calc(100% - 11px);
		width: 5px;
		top: 4px;
	}
}

body.home .parent-link.active h1, body.home .parent-link:hover h1 {
	color: #c1c1c1;
}

body.home .parent-link h1 {
	margin-top: 0;
	margin-left: 50px;
	will-change: color;
	-webkit-transition: color 300ms;
	transition: color 300ms;
}

@media (max-width: 991px) {
	body.home .parent-link h1 {
		margin-left: 30px;
		font-size: 30px;
		line-height: 42px;
	}
}

@media (max-width: 767px) {
	body.home .parent-link h1 {
		margin-left: 30px;
		font-size: 20px;
		line-height: 32px;
	}
}

body.home .subcategory-row {
	font-size: 17px;
	line-height: 1.75;
	text-transform: uppercase;
	margin-top: 8px;
	opacity: 0;
	will-change: opacity, visibility;
	-webkit-transition: opacity 500ms, -webkit-transform 500ms;
	transition: opacity 500ms, -webkit-transform 500ms;
	transition: opacity 500ms, transform 500ms;
	transition: opacity 500ms, transform 500ms, -webkit-transform 500ms;
	visibility: hidden;
	position: absolute;
	top: 0;
	-webkit-transform: translateX(-30px);
	transform: translateX(-30px);
}

@media (max-width: 991px) {
	body.home .subcategory-row {
		display: none;
	}
}

body.home .subcategory-row.active {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

body.home .subcategory-row .separator {
	margin: 0 5px;
}

body.home .subcategory-row a {
	text-decoration: none;
	color: #777777;
}

body.home .subcategory-row a:hover {
	text-decoration: underline;
}

body.home .news-list {
	padding-top: 75px;
	padding-bottom: 160px;
}

@media (max-width: 991px) {
	body.home .news-list {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}

body.home .news-list h2 {
	font-size: 42px;
	line-height: 56px;
	padding-left: 50px;
	position: relative;
	margin-bottom: 50px;
}

@media (max-width: 991px) {
	body.home .news-list h2 {
		font-size: 20px;
		line-height: 28px;
		padding-left: 20px;
	}
}

body.home .news-list h2:before {
	content: "";
	position: absolute;
	height: calc(100% - 16px);
	width: 8px;
	top: 7px;
	left: 0;
	background-color: #99d537;
}

@media (max-width: 991px) {
	body.home .news-list h2:before {
		height: calc(100% - 11px);
		width: 5px;
		top: 4px;
	}
}

body.home .frontitems-wrapper {
	padding-top: 100px;
	padding-bottom: 75px;
}

@media (max-width: 991px) {
	body.home .frontitems-wrapper {
		padding-top: 50px;
		padding-bottom: 10px;
	}
}

body.home .front-page-image-link {
	width: 100%;
}

body.home.admin-bar .categories {
	margin-bottom: -32px;
}

@media (max-width: 782px) {
	body.home.admin-bar .categories {
		margin-bottom: -46px;
	}
}

body.page-template-template-kontakt .breadcrumbs-container {
	background-color: rgba(0, 0, 0, 0.02);
}

body.page-template-template-kontakt .contact-section {
	background-color: rgba(0, 0, 0, 0.02);
	padding-bottom: 60px;
}

body.page-template-template-kontakt .contact-section h2 {
	position: relative;
	margin-bottom: 40px;
}

body.page-template-template-kontakt .contact-section h2:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 8px;
	top: 0;
	left: -60px;
	background-color: #99d537;
}

body.page-template-template-kontakt .contact-section .col {
	color: #505050;
	font-size: 20px;
	line-height: 1.5em;
	margin-bottom: 20px;
}

body.page-template-template-kontakt .contact-section .col:last-child {
	margin-bottom: 0;
}

body.page-template-template-kontakt .contact-section .col img {
	display: inline-block;
	margin-top: 6px;
}

body.page-template-template-kontakt .contact-section .col > div {
	display: inline-block;
	padding-left: 10px;
}

body.page-template-template-kontakt .contact-section .col p {
	margin: 0;
}

body.page-template-template-kontakt .contact-section .col a {
	color: #505050;
}

body.page-template-template-kontakt .employees-section {
	padding-top: 60px;
}

body.page-template-template-kontakt .employees-section h2 {
	position: relative;
	margin-bottom: 40px;
}

body.page-template-template-kontakt .employees-section h2:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 8px;
	top: 0;
	left: -60px;
	background-color: #99d537;
}

body.page-template-template-kontakt .employees-section .employee-row {
	margin-bottom: 35px;
}

body.page-template-default .content-area {
	padding-bottom: 50px;
}

body.page-template-default .mobile-menu-btn-container {
	width: 100%;
	margin-bottom: 15px;
}

@media (min-width: 992px) {
	body.page-template-default .mobile-menu-btn-container {
		display: none;
		margin-bottom: 0;
	}
}

body.page-template-default .mobile-menu-btn-container button {
	width: 100%;
}

@media (max-width: 991px) {
	body.page-template-default .children-menu {
		display: none;
		background-color: rgba(0, 0, 0, 0.03);
		margin-bottom: 30px;
	}

	body.page-template-default .children-menu.active {
		display: block;
	}

	body.page-template-default .children-menu li {
		padding: 10px 0;
	}
}

body.page-template-default aside ul {
	margin: 5px 0 0;
	padding: 0;
}

body.page-template-default aside ul a {
	margin-bottom: 7px;
	display: block;
	font-size: 13px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 19px;
	padding: 4px 0;
}

body.page-template-default .page-time {
	display: inline-block;
}

@media (min-width: 992px) {
	body.page-template-default .entry-content {
		padding-left: 100px;
	}
}

body.page-template-default .entry-content .row-header {
	margin-bottom: 75px;
}

@media (max-width: 767px) {
	body.page-template-default .entry-content .row-header {
		margin-bottom: 30px;
	}
}

body.page-template-default .entry-content .row-header h1 {
	margin-bottom: 10px;
}

body.page-template-default .entry-content .row-header .img-container {
	position: relative;
}

body.page-template-default .entry-content .row-header .img-container img {
	width: 100%;
}

body.page-template-default .entry-content .row-header .img-container:after {
	content: '';
	height: 8px;
	width: 50%;
	position: absolute;
	bottom: -8px;
	right: 0;
	background-color: #99d537;
}

body.page-template-default .entry-content .row-content {
	display: block;
	color: #3f3f3f;
	margin-bottom: 75px;
}

body.post-template-default .entry-content {
	margin-top: 50px;
}

body.post-template-default .entry-content .row-header {
	margin-bottom: 75px;
}

body.post-template-default .entry-content .row-header h1 {
	margin-bottom: 10px;
}

body.post-template-default .entry-content .row-header .img-container {
	position: relative;
}

body.post-template-default .entry-content .row-header .img-container img {
	width: 100%;
}

body.post-template-default .entry-content .row-header .img-container:after {
	content: '';
	height: 8px;
	width: 50%;
	position: absolute;
	bottom: -8px;
	right: 0;
	background-color: #99d537;
}

body.post-template-default .entry-content .row-content {
	display: block;
	color: #3f3f3f;
	margin-bottom: 75px;
}

body.single-product .product-icons-top .badge {
	display: inline-block;
	margin-right: 10px;
}

body.single-product .product-icons-top .klass-img,
body.single-product .product-icons-top .ip-img,
body.single-product .product-icons-top .ik-img,
body.single-product .product-icons-top .ce-img {
	margin-right: 10px;
	margin-bottom: 15px;
}

body.single-product .product-icons-top .ce-img {
	width: 43px;
}

body.single-product .woocommerce-message,
body.single-product .woocommerce-info,
body.single-product .woocommerce-error {
	margin-bottom: 0;
	margin-top: 0;
}

body.single-product .pswp__button--arrow--left,
body.single-product .pswp__button--arrow--right {
	height: 50px;
	width: 45px;
}

body.single-product .pswp__button--arrow--left:before,
body.single-product .pswp__button--arrow--right:before {
	top: 10px;
}

body.single-product .col-summary {
	border-left: 2px solid #ffffff;
	position: relative;
	padding: 100px 35px 35px;
}

@media (max-width: 991px) {
	body.single-product .col-summary {
		padding: 15px;
	}
}

body.single-product .col-summary .sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 95px;
}

body.single-product .col-summary .new-badge,
body.single-product .col-summary .outlet-badge {
	margin-bottom: 15px;
}

body.single-product .cart-add-right .full-width,
body.single-product .cart-add-right-simple .full-width {
	width: 100%;
	margin-top: 15px;
	text-align: left;
}

body.single-product .cart-add-right .remove-one-item,
body.single-product .cart-add-right-simple .remove-one-item {
	margin-right: -5px;
}

body.single-product .cart-add-right .add-one-item,
body.single-product .cart-add-right-simple .add-one-item {
	margin-left: -5px;
}

body.single-product .cart-add-right .remove-one-item,
body.single-product .cart-add-right .add-one-item,
body.single-product .cart-add-right-simple .remove-one-item,
body.single-product .cart-add-right-simple .add-one-item {
	background-color: rgba(0, 0, 0, 0.03);
	width: 41px;
	padding: 12px 0;
	font-size: 24px;
	-webkit-box-shadow: inset 0 0 0 2px #707070, 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 2px #707070, 0 0 1px rgba(0, 0, 0, 0);
}

body.single-product .cart-add-right .remove-one-item:hover,
body.single-product .cart-add-right .add-one-item:hover,
body.single-product .cart-add-right-simple .remove-one-item:hover,
body.single-product .cart-add-right-simple .add-one-item:hover {
	-webkit-box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0);
}

body.single-product .cart-add-right .input-wrapper,
body.single-product .cart-add-right-simple .input-wrapper {
	vertical-align: top;
	display: inline-block;
}

body.single-product .cart-add-right .input-wrapper input,
body.single-product .cart-add-right-simple .input-wrapper input {
	max-width: 90px;
	padding: 7px 20px 8px;
	font-size: 18px;
	border: 2px solid #707070;
	border-left: 0 none;
	border-right: 0 none;
	background-color: rgba(0, 0, 0, 0.03);
	min-height: 41px;
}

body.single-product .cart-add-right .f-click,
body.single-product .cart-add-right-simple .f-click {
	display: block;
	width: 100%;
	text-align: left;
	margin-top: 15px;
}

body.single-product .pr-image-desc-container {
	background-color: rgba(0, 0, 0, 0.03);
}

body.single-product .composites-container {
	margin-top: 2px;
	padding-left: 30px;
	padding-right: 70px;
	padding-top: 70px;
	padding-bottom: 100px;
	border-top: 2px solid #ffffff;
}

@media (max-width: 767px) {
	body.single-product .composites-container {
		padding-right: 30px;
	}
}

body.single-product .composites-container .composite_wrap {
	display: none;
}

body.single-product .composites-container h2 {
	position: relative;
	padding-left: 40px;
	margin-bottom: 15px;
}

body.single-product .composites-container h2:before {
	content: "";
	position: absolute;
	height: 100%;
	width: 8px;
	top: 0;
	left: 0;
	background-color: #99d537;
}

body.single-product .composites-container .component_inner {
	margin-left: 40px;
}

body.single-product .composites-container .component_description_wrapper .component_description {
	margin-bottom: 0;
}

body.single-product .composites-container .component_description_wrapper p {
	margin-bottom: 25px;
}

body.single-product .summary-from-tpl {
	margin-top: 20px;
}

body.single-product .summary-from-tpl .component_content.updating {
	height: auto !important;
}

body.single-product .summary-from-tpl .product.content.summary_content.populated {
	padding: 13px 20px 13px 50px;
	border: 2px solid #707070;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.33;
	text-align: left;
	color: #3f3f3f;
	position: relative;
	margin-bottom: 15px !important;
	display: block;
}

body.single-product .summary-from-tpl .product.content.summary_content.populated p {
	margin: 0;
}

body.single-product .summary-from-tpl .product.content.summary_content.populated:before {
	content: "+";
	font-size: 23px;
	display: block;
	position: absolute;
	left: 19px;
	top: 48%;
	font-weight: 400;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

body.single-product .summary-from-tpl .quantity_button {
	display: none;
}

body.single-product .composite_form .component_content .component_wrap {
	text-align: left;
	margin-top: 20px;
}

@media (max-width: 767px) {
	body.single-product .composite_form .component_content .component_wrap .component-quantity label {
		width: 100%;
		display: block;
		margin-bottom: 10px;
	}
}

body.single-product .composite_form .component_content .component_wrap .component-quantity button {
	vertical-align: top;
}

body.single-product .composite_form .component_content .component_wrap .component-quantity input {
	margin-left: -5px;
	margin-right: -5px;
	border-left: 0 none;
	border-right: 0 none;
}

body.single-product .composite_form .component_content .composited_product_title {
	display: none;
}

body.single-product .composite_form .component_content .price {
	display: none !important;
}

body.single-product .composite_form .component_content .component_data {
	text-align: center !important;
	float: none !important;
}

body.single-product .product .composites-container .component_option_thumbnails_container {
	width: 100%;
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container {
	padding: 0;
	margin: 0;
	max-width: 250px;
	width: 25%;
	background: #ffffff;
	float: none;
	border: 2px solid rgba(0, 0, 0, 0.03);
}

@media (max-width: 991px) {
	body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container {
		width: 50%;
	}
}

@media (max-width: 471px) {
	body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container {
		width: 100%;
	}
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container.out_of_stock {
	pointer-events: none;
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container.out_of_stock .component_option_thumbnail {
	opacity: 0.65;
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container.out_of_stock:after {
	position: absolute;
	content: '';
	background-color: #ff5f57;
	width: 8px;
	height: 8px;
	top: 11px;
	right: 10px;
	border-radius: 100%;
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container .component_option_thumbnail {
	height: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.03), 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.03), 0 0 1px rgba(0, 0, 0, 0);
	will-change: box-shadow;
	-webkit-transition: -webkit-box-shadow 300ms;
	transition: -webkit-box-shadow 300ms;
	transition: box-shadow 300ms;
	transition: box-shadow 300ms, -webkit-box-shadow 300ms;
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container .component_option_thumbnail:hover {
	-webkit-box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0);
	box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0);
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container .component_option_thumbnail.disabled {
	-webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.03), 0 0 1px rgba(0, 0, 0, 0) !important;
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.03), 0 0 1px rgba(0, 0, 0, 0) !important;
	opacity: 1;
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container .component_option_thumbnail.disabled .thumbnail_image,
body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container .component_option_thumbnail.disabled .thumbnail_description {
	opacity: 0.5;
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container .thumbnail_description {
	position: absolute;
	width: 100%;
	bottom: 20px;
	left: 0;
	padding: 0 10px;
	text-align: center;
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container .thumbnail_description h5 {
	font-family: "Lato", sans-serif;
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.33;
	color: #3f3f3f;
	text-transform: uppercase;
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container .selected {
	margin: 0;
	-webkit-box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0) !important;
	box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0) !important;
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container:hover {
	margin: 0;
	-webkit-box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0) !important;
	box-shadow: inset 0 0 0 2px #99d537, 0 0 1px rgba(0, 0, 0, 0) !important;
}


body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container .thumbnail_image {
	padding: 45px 15px 115px;
	width: 100%;
}

body.single-product .product .composites-container .component_option_thumbnails_container .component_option_thumbnail_container .thumbnail_image img {
	max-width: 100%;
	height: 140px;
	width: 170px;
	text-align: center;
	-o-object-fit: contain;
	object-fit: contain;
}

body.single-product .composite-price,
body.single-product .simple-price {
	margin-bottom: 30px;
}

body.single-product .pswp__caption__center {
	display: none;
}

body.single-product .close-cross {
	cursor: pointer;
	position: absolute;
	top: 30px;
	right: 30px;
	width: 14px;
	height: 14px;
}

@media (max-width: 991px) {
	body.single-product .close-cross {
		display: none;
	}
}

body.single-product .close-cross svg {
	vertical-align: top;
	width: 14px;
	height: 14px;
}

body.single-product .gallery-container {
	height: 700px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}

@media (max-width: 767px) {
	body.single-product .gallery-container {
		height: 400px;
	}
}

body.single-product .gallery-container .color-layer {
	background: rgba(0, 0, 0, 0.03);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	pointer-events: none;
}

body.single-product .gallery-container .woocommerce-product-gallery__trigger {
	display: none;
}

body.single-product .gallery-container .woocommerce-product-gallery {
	max-width: 100%;
}

body.single-product .gallery-container .woocommerce-product-gallery__image {
	mix-blend-mode: darken;
	float: left;
	display: block;
	margin-right: 0 !important;
	position: absolute !important;
	top: 50%;
	max-width: 90%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

body.single-product .gallery-container .flex-control-nav {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	left: 30px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
}

body.single-product .gallery-container .flex-control-nav li {
	list-style-type: none;
	width: 6px;
	height: 6px;
	cursor: pointer;
	margin: 10px 0;
}

@media (max-width: 991px) {
	body.single-product .gallery-container .flex-control-nav li {
		margin: 25px 0;
	}
}

body.single-product .gallery-container .flex-control-nav li a {
	font-size: 0;
	display: inline-block;
	width: 6px;
	height: 6px;
	background-color: #c4c4c4;
}

body.single-product .gallery-container .flex-control-nav li a.flex-active {
	background-color: #000000;
}

body.single-product .gallery-container .flex-control-nav img {
	width: 100%;
	height: 100%;
	opacity: 0;
}

body.single-product .gallery-container .flex-control-nav img:before {
	content: 'a';
	display: block;
}

body.single-product .tech-section {
	padding-top: 50px;
}

@media (max-width: 991px) {
	body.single-product .tech-section {
		padding-top: 25px;
	}
}

body.single-product .tech-section h3 {
	margin-bottom: 40px;
}

body.single-product .tech-section h3.m-l {
	margin-left: 15px;
}

@media (max-width: 991px) {
	body.single-product .tech-section h3.m-l {
		margin-bottom: 20px;
		margin-left: 0;
	}
}

body.single-product .tech-section h3 img {
	display: inline-block;
	width: 35px;
	margin-top: 9px;
	padding-right: 15px;
}

body.single-product .tech-section table {
	width: calc(100% - 30px);
	font-size: 16px;
	line-height: 1.5;
	margin-left: 15px;
	margin-bottom: 35px;
}

@media (max-width: 991px) {
	body.single-product .tech-section table {
		width: 100%;
		margin-left: 0;
	}
}

body.single-product .tech-section table tr {
	border-top: 2px solid rgba(112, 112, 112, 0.2);
}

body.single-product .tech-section table td {
	padding: 20px 0;
}

body.single-product .tech-section table td:first-child {
	text-align: left;
	padding-right: 30px;
	min-width: 180px;
}

body.single-product .tech-section table td:last-child {
	text-align: right;
}

body.single-product .n-t h3 {
	margin-left: 15px;
}

body.single-product .related-products h3 {
	margin-bottom: 40px;
}

@media (max-width: 991px) {
	body.single-product .related-products h3 {
		margin-left: 15px;
		margin-bottom: 20px;
	}
}

body.single-product .related-products h3 img {
	display: inline-block;
	width: 35px;
	margin-top: 9px;
	padding-right: 15px;
}

body.single-product .related-products .products {
	padding: 0;
	margin: 0 0 0 -2px;
	list-style-type: none;
	min-height: 0;
}

body.single-product .related-products .single-product-list-item {
	list-style-type: none;
	display: inline-block;
	vertical-align: top;
	float: left;
}

body.single-product .footer-section {
	margin-top: -1px;
	margin-bottom: -2px;
	background-color: rgba(0, 0, 0, 0.02);
}

body.single-product .footer-section .row.flex {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

@media (max-width: 991px) {
	body.single-product .footer-section .row.flex {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}

body.single-product .footer-section .col-text .wrapper {
	padding: 105px 0 95px;
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
}

@media (max-width: 991px) {
	body.single-product .footer-section .col-text .wrapper {
		padding: 50px 0;
	}
}

body.single-product .footer-section .col-text .wrapper p {
	margin-top: 35px;
	width: 100%;
}

body.single-product .footer-section .col-img {
	background-size: cover;
	background-position: center center;
}

@media (max-width: 991px) {
	body.single-product .footer-section .col-img {
		padding-bottom: 55%;
	}
}

body.single-product .woocommerce-product-gallery--with-images {
	width: 100%;
	mix-blend-mode: darken;
}

body.single-product .woocommerce-product-gallery--with-images figure,
body.single-product .woocommerce-product-gallery--with-images .woocommerce-product-gallery__image {
	width: 100%;
}

body.single-product .woocommerce-product-gallery--with-images .woocommerce-product-gallery__wrapper {
	mix-blend-mode: darken;
}

body.single-product .woocommerce-product-gallery--with-images .woocommerce-product-gallery__image a {
	pointer-events: none;
}

body.single-product .woocommerce-product-gallery--with-images .woocommerce-product-gallery__image img {
	max-height: 400px;
	width: auto;
}

@media (max-width: 767px) {
	body.single-product .woocommerce-product-gallery--with-images .woocommerce-product-gallery__image img {
		max-height: 350px;
	}
}

body.single-product .woocommerce-product-gallery--without-images {
	margin: 0 auto;
}

body.single-product .entry-summary .summary {
	margin-bottom: 20px;
}

body.single-product .thumbnail_description .price {
	margin-top: 7px;
	margin-bottom: -3px !important;
}

body.single-product .pdf-download {
	margin-top: 15px;
	width: 100%;
	text-align: left;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content,
body.page-template-page-woocommerce #customer_login {
	padding-bottom: 50px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .ajax-log,
body.page-template-page-woocommerce #customer_login .ajax-log {
	padding: 20px 40px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .ajax-log.ajax-error, body.page-template-page-woocommerce .woocommerce-MyAccount-content .ajax-log.ajax-success,
body.page-template-page-woocommerce #customer_login .ajax-log.ajax-error,
body.page-template-page-woocommerce #customer_login .ajax-log.ajax-success {
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 5px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .ajax-log.ajax-error,
body.page-template-page-woocommerce #customer_login .ajax-log.ajax-error {
	color: #721c24;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .ajax-log.ajax-success,
body.page-template-page-woocommerce #customer_login .ajax-log.ajax-success {
	color: #155724;
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .ajax-log p,
body.page-template-page-woocommerce #customer_login .ajax-log p {
	margin: 2px 0;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .entry-content,
body.page-template-page-woocommerce #customer_login .entry-content {
	margin-top: 0;
	width: 100%;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content h2,
body.page-template-page-woocommerce #customer_login h2 {
	position: relative;
	display: block;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content h2:after,
body.page-template-page-woocommerce #customer_login h2:after {
	content: "";
	position: absolute;
	height: 100%;
	width: 8px;
	top: 0;
	left: -60px;
	background-color: #99d537;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content h3,
body.page-template-page-woocommerce #customer_login h3 {
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	color: #000000;
	margin-bottom: 20px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content form,
body.page-template-page-woocommerce #customer_login form {
	margin-bottom: 50px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content form label,
body.page-template-page-woocommerce #customer_login form label {
	text-align: left;
	display: block;
	width: 100%;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content form button[type=submit],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form select,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form input[type=text],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form input[type=email],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form input[type=number],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form input[type=tel],
body.page-template-page-woocommerce .woocommerce-MyAccount-content form input[type=password],
body.page-template-page-woocommerce #customer_login form button[type=submit],
body.page-template-page-woocommerce #customer_login form select,
body.page-template-page-woocommerce #customer_login form input[type=text],
body.page-template-page-woocommerce #customer_login form input[type=email],
body.page-template-page-woocommerce #customer_login form input[type=number],
body.page-template-page-woocommerce #customer_login form input[type=tel],
body.page-template-page-woocommerce #customer_login form input[type=password] {
	width: 97%;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content form button[type=submit],
body.page-template-page-woocommerce #customer_login form button[type=submit] {
	text-align: left;
	max-width: none;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content form .woocommerce-form__label-for-checkbox,
body.page-template-page-woocommerce #customer_login form .woocommerce-form__label-for-checkbox {
	display: none;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content form .woocommerce-Button,
body.page-template-page-woocommerce #customer_login form .woocommerce-Button {
	width: 100%;
	max-width: 300px;
	display: inline-block;
	text-align: center;
	margin: 10px 5px 10px 0;
}

@media (min-width: 992px) {
	body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form,
	body.page-template-page-woocommerce #customer_login form .confirm-form {
		margin-left: 5px;
	}
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form,
body.page-template-page-woocommerce #customer_login form .lost_password,
body.page-template-page-woocommerce #customer_login form .confirm-form {
	display: inline-block;
	width: 100%;
	max-width: 300px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content form .lost_password a,
body.page-template-page-woocommerce .woocommerce-MyAccount-content form .confirm-form a,
body.page-template-page-woocommerce #customer_login form .lost_password a,
body.page-template-page-woocommerce #customer_login form .confirm-form a {
	width: 100%;
	text-align: center;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content form > div.form-row:not(.woocommerce-form-row),
body.page-template-page-woocommerce #customer_login form > div.form-row:not(.woocommerce-form-row) {
	display: inline-block;
	width: 100%;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .required,
body.page-template-page-woocommerce #customer_login .required {
	position: relative;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .required:after,
body.page-template-page-woocommerce #customer_login .required:after {
	position: absolute;
	right: -6px;
	font-size: 20px;
	top: 25px;
	line-height: 4px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: '*';
	color: #99d537;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .register-form-container,
body.page-template-page-woocommerce #customer_login .register-form-container {
	margin-top: 50px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-content .ajax-save-account-details button,
body.page-template-page-woocommerce #customer_login .woocommerce-MyAccount-content .ajax-save-account-details button {
	width: 100%;
	display: block;
	max-width: none;
	margin: 0;
	text-align: left;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-container,
body.page-template-page-woocommerce #customer_login .handleliste-container {
	margin-top: 50px;
	position: relative;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-container .loader,
body.page-template-page-woocommerce #customer_login .handleliste-container .loader {
	padding: 90px 0 90px;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background: rgba(255, 255, 255, 0.5) url(../images/ajax-loader.gif) no-repeat center 35%;
	right: 0;
	bottom: 0;
	z-index: 2;
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-container .aside,
	body.page-template-page-woocommerce #customer_login .handleliste-container .aside {
		padding-right: 0;
	}
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-container .entry-title p,
body.page-template-page-woocommerce #customer_login .handleliste-container .entry-title p {
	margin: 0;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-container .entry-title small,
body.page-template-page-woocommerce #customer_login .handleliste-container .entry-title small {
	font-family: "Lato", sans-serif;
	font-size: 14px;
	line-height: 14px;
	vertical-align: top;
	color: #000000;
	display: block;
	padding-top: 7px;
	padding-bottom: 5px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content .loader,
body.page-template-page-woocommerce #customer_login .handleliste-content .loader {
	padding: 90px 0 90px;
	width: 100%;
	display: block;
	background: url(../images/ajax-loader.gif) no-repeat center 35%;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content .hl-ajax-container,
body.page-template-page-woocommerce #customer_login .handleliste-content .hl-ajax-container {
	padding: 30px 15px;
	background-color: rgba(0, 0, 0, 0.03);
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content .hl-ajax-container .form-actions form,
body.page-template-page-woocommerce #customer_login .handleliste-content .hl-ajax-container .form-actions form {
	margin-top: 0;
	margin-bottom: 0;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table,
body.page-template-page-woocommerce #customer_login .handleliste-content table {
	width: 100%;
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table thead,
	body.page-template-page-woocommerce #customer_login .handleliste-content table thead {
		display: none;
	}
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table thead tr,
body.page-template-page-woocommerce #customer_login .handleliste-content table thead tr {
	border-top: 1px solid rgba(112, 112, 112, 0.35);
	border-bottom: 1px solid rgba(112, 112, 112, 0.35);
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table thead th,
body.page-template-page-woocommerce #customer_login .handleliste-content table thead th {
	padding: 15px 0;
	font-family: "Lato", sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-align: left;
	text-transform: uppercase;
	color: #3f3f3f;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table thead th.product-subtotal,
body.page-template-page-woocommerce #customer_login .handleliste-content table thead th.product-subtotal {
	text-align: right;
}

@media (min-width: 992px) {
	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody tr,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody tr {
		border-bottom: 1px solid rgba(112, 112, 112, 0.35);
	}
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody tr,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody tr {
		background-color: rgba(0, 0, 0, 0.03);
		margin-bottom: 2px;
		display: block;
		padding: 15px 35px 15px 15px;
		position: relative;
	}
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody tr.hidden,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody tr.hidden {
	display: none;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td {
	font-size: 16px;
	position: relative;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td.sum-total,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td.sum-total {
	padding: 20px 0;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td.product-quantity,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td.product-quantity {
	text-align: left;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td.product-quantity input[name=increo_qt],
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td.product-quantity input[name=increo_qt] {
	width: 70px;
	border: 2px solid #707070;
	pointer-events: initial;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td.product-quantity input[name=increo_qt].error,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td.product-quantity input[name=increo_qt].error {
	background-color: #f5c6cb;
	color: #721c24;
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td {
		margin-left: 50%;
		width: 50%;
		display: inline-block;
	}

	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td.product-thumbnail,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td.product-thumbnail {
		margin-left: 0;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		z-index: -1;
		left: 0;
	}

	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td.product-quantity,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td.product-quantity {
		margin-top: 15px;
		margin-bottom: 15px;
		text-align: left;
	}
}

@media (max-width: 991px) and (max-width: 991px) {
	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td.product-quantity:before,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td.product-quantity:before {
		vertical-align: top;
		content: 'Antall:';
	}
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td.product-subtotal,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td.product-subtotal {
		text-align: left;
	}

	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td.product-subtotal span,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td.product-subtotal span {
		font-weight: 700;
	}
}

@media (max-width: 991px) and (max-width: 991px) {
	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td.product-subtotal:before,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td.product-subtotal:before {
		margin-right: 12px;
		vertical-align: top;
		content: 'Sum:';
	}
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td.product-name,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td.product-name {
		padding-right: 0;
	}
}

@media (max-width: 471px) {
	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td {
		margin-left: 0;
		width: 100%;
	}

	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody td.product-thumbnail,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody td.product-thumbnail {
		top: 0;
		left: 0;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		position: relative;
	}
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-name,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-name {
	padding-right: 30px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-name small,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-name small {
	display: block;
	font-size: 12px;
	line-height: 14px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-name a,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-name a {
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-subtotal,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-subtotal {
	text-align: right;
	white-space: nowrap;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-subtotal input[name=increo_sum],
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-subtotal input[name=increo_sum] {
	width: 100px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-subtotal .woocommerce-Price-amount,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-subtotal .woocommerce-Price-amount {
	font-size: 0;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-subtotal .woocommerce-Price-amount span,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-subtotal .woocommerce-Price-amount span {
	font-size: 16px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-remove a,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-remove a {
	padding: 10px;
	margin-left: 30px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-remove img,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-remove img {
	width: 14px;
	height: 14px;
	margin-top: 6px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .wac-qty-button,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .wac-qty-button {
	border-radius: 0;
	padding: 0;
	background: none;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity .wac-qty-button a,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity .wac-qty-button a {
	text-decoration: none;
	padding: 13px 20px 15px;
	display: block;
	font-size: 17px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-quantity input.qty,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-quantity input.qty {
	text-align: center;
	width: 50px;
	padding: 12px 5px;
	border-color: #000000;
	background-color: #ffffff;
	margin-left: -5px;
	margin-right: -5px;
	border-left: none;
	border-right: none;
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .component_table_item .product-quantity,
	body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .component_table_item .product-quantity {
		display: none;
	}
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .component_table_item .product-quantity input,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .component_table_item .product-quantity input {
	background: none;
	border: 0 none;
	pointer-events: none;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .component_table_item .component_table_item_indent,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .component_table_item .component_table_item_indent {
	padding-left: 0;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .component_table_item .component_table_item_indent dt,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .component_table_item .component_table_item_indent dt {
	display: none;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .component_table_item .component_table_item_indent dd,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .component_table_item .component_table_item_indent dd {
	margin: 0;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .component_table_item .component_table_item_indent dd p,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .component_table_item .component_table_item_indent dd p {
	margin: 0;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .component_table_item .component_table_item_price:before,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .component_table_item .component_table_item_price:before {
	display: none;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .component_table_item .component_table_item_subtotal,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .component_table_item .component_table_item_subtotal {
	font-size: 0;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .component_table_item .component_table_item_subtotal:before,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .component_table_item .component_table_item_subtotal:before {
	display: none;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .component_table_item .component_table_item_subtotal span,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .component_table_item .component_table_item_subtotal span {
	font-size: 16px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-thumbnail,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-thumbnail {
	position: relative;
	text-align: center;
	padding: 10px 0;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-thumbnail a,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-thumbnail a {
	text-align: center;
	width: 100%;
	display: block;
	margin-right: 50px;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .product-thumbnail img,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .product-thumbnail img {
	width: 95px;
	height: 95px;
	-o-object-fit: contain;
	object-fit: contain;
	mix-blend-mode: darken;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .handleliste-content table tbody .color-layer,
body.page-template-page-woocommerce #customer_login .handleliste-content table tbody .color-layer {
	background: rgba(0, 0, 0, 0.03);
	position: absolute;
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
	z-index: 1;
	pointer-events: none;
	display: none;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .orders-container,
body.page-template-page-woocommerce #customer_login .orders-container {
	margin-top: 50px;
	position: relative;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .orders-container .loader,
body.page-template-page-woocommerce #customer_login .orders-container .loader {
	padding: 90px 0 90px;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background: rgba(255, 255, 255, 0.5) url(../images/ajax-loader.gif) no-repeat center 35%;
	right: 0;
	bottom: 0;
	z-index: 2;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .orders-container .entry-title p,
body.page-template-page-woocommerce #customer_login .orders-container .entry-title p {
	margin: 0;
}

body.page-template-page-woocommerce .woocommerce-MyAccount-content .orders-container .entry-title small,
body.page-template-page-woocommerce #customer_login .orders-container .entry-title small {
	font-family: "Lato", sans-serif;
	font-size: 14px;
	line-height: 14px;
	vertical-align: top;
	color: #000000;
	display: block;
	padding-top: 7px;
	padding-bottom: 5px;
}

body.page-template-page-woocommerce #customer_login .u-column1,
body.page-template-page-woocommerce #customer_login .u-column2 {
	padding-left: 0;
	padding-right: 0;
}

body.page-template-page-woocommerce #customer_login span.required {
	font-size: 0;
}

body.page-template-page-woocommerce #customer_login span.required:after {
	top: -1px;
	right: -9px;
}

body.page-template-page-woocommerce #customer_login form input[type=text],
body.page-template-page-woocommerce #customer_login form input[type=password],
body.page-template-page-woocommerce #customer_login form input[type=email] {
	width: 100%;
}

body.page-template-page-woocommerce #customer_login form .lost_password,
body.page-template-page-woocommerce #customer_login form .confirm-form {
	width: 100%;
	max-width: 300px;
	margin-bottom: 10px;
}

@media (max-width: 767px) {
	body.page-template-page-woocommerce #customer_login form .lost_password,
	body.page-template-page-woocommerce #customer_login form .confirm-form {
		width: 100%;
		max-width: none;
	}

	body.page-template-page-woocommerce #customer_login form .lost_password a,
	body.page-template-page-woocommerce #customer_login form .confirm-form a {
		margin: 0;
	}
}

body.page-template-page-woocommerce #customer_login form button[type=submit] {
	width: 100%;
	max-width: 300px;
	text-align: center;
}

@media (max-width: 767px) {
	body.page-template-page-woocommerce #customer_login form button[type=submit] {
		width: 100%;
		max-width: none;
	}
}

body.page-template-page-woocommerce .order-content table {
	width: 100%;
	margin-top: 40px;
	margin-bottom: 75px !important;
}

body.page-template-page-woocommerce .order-content table.order_details-products thead tr {
	border-top: 1px solid rgba(112, 112, 112, 0.35);
}

body.page-template-page-woocommerce .order-content table.order_details-products thead tr th {
	padding-top: 12px;
}

body.page-template-page-woocommerce .order-content table.order_details-products tbody td {
	text-align: left;
}

body.page-template-page-woocommerce .order-content table.order_details-products tbody td.text-right {
	text-align: right;
}

body.page-template-page-woocommerce .order-content table.order_details-products tbody td.product-name {
	padding-left: 0;
}

body.page-template-page-woocommerce .order-content table.order_details-products .component_table_item .component_table_item_subtotal {
	font-size: 0;
}

body.page-template-page-woocommerce .order-content table.order_details-products .component_table_item .component_table_item_subtotal:before {
	display: none;
}

body.page-template-page-woocommerce .order-content table.order_details-products .component_table_item .component_table_item_subtotal .amount {
	font-size: 16px;
}

body.page-template-page-woocommerce .order-content table .amount {
	white-space: nowrap;
}

body.page-template-page-woocommerce .order-content table tr {
	border-bottom: 1px solid rgba(112, 112, 112, 0.35);
}

body.page-template-page-woocommerce .order-content table tr th {
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
}

body.page-template-page-woocommerce .order-content table tr td {
	text-align: right;
	padding: 20px 0;
	font-size: 16px;
	text-transform: uppercase;
}

body.page-template-page-woocommerce .order-content table tr td.product-name {
	text-align: left;
	padding-left: 20px;
}

body.page-template-page-woocommerce .order-content table tr td p {
	margin: 0;
}

body.page-template-page-woocommerce .order-content table tr.shipping td {
	font-size: 0;
	line-height: 0;
}

body.page-template-page-woocommerce .order-content table tr.shipping td span,
body.page-template-page-woocommerce .order-content table tr.shipping td a {
	line-height: 24px;
	font-size: 16px;
}

body.page-template-page-woocommerce .order-content table tr.order-total td {
	font-size: 20px;
}

body.page-template-page-woocommerce .order-content table thead th {
	font-weight: 700;
	font-size: 12px;
	color: #3f3f3f;
	padding-bottom: 10px;
}

body.page-template-page-woocommerce .order-content table thead th:last-child {
	text-align: right;
}

body.page-template-page-woocommerce .order-content .order_details-products {
	margin-bottom: 0;
}

body.page-template-page-woocommerce .order-content .order_details-summary {
	margin-top: 0;
	float: right;
	width: 100%;
	max-width: 600px;
	margin-bottom: 100px;
}

body.tax-family .breadcrumbs-container,
body.page-template-template-outlet .breadcrumbs-container {
	display: none;
	visibility: hidden;
	opacity: 0;
}

body.tax-family ul.family-taxonomy-list,
body.page-template-template-outlet ul.family-taxonomy-list {
	width: 100%;
	padding: 0;
	margin: 0;
}

body.tax-family ul.family-taxonomy-list li,
body.page-template-template-outlet ul.family-taxonomy-list li {
	display: inline-block;
}

@media (max-width: 991px) {
	body.tax-family .site-main > .row.flex,
	body.page-template-template-outlet .site-main > .row.flex {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}

body.tax-family .family-products-wrapper,
body.page-template-template-outlet .family-products-wrapper {
	padding-left: 0;
	padding-right: 0;
}

body.tax-family aside,
body.page-template-template-outlet aside {
	border-left: 2px solid #ffffff;
	position: relative;
	background-color: rgba(0, 0, 0, 0.02);
	padding: 40px;
}

@media (max-width: 991px) {
	body.tax-family aside,
	body.page-template-template-outlet aside {
		margin-bottom: 2px;
	}
}

body.tax-family aside .sticky,
body.page-template-template-outlet aside .sticky {
	padding: 100px 0 50px;
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
}

@media (max-width: 991px) {
	body.tax-family aside .sticky,
	body.page-template-template-outlet aside .sticky {
		padding: 50px 0;
	}
}

body.tax-family aside .sticky h1,
body.page-template-template-outlet aside .sticky h1 {
	margin-bottom: 35px;
}

body.tax-family aside .close-cross,
body.page-template-template-outlet aside .close-cross {
	cursor: pointer;
	position: absolute;
	top: -20px;
	right: -20px;
	width: 34px;
	height: 34px;
	padding: 10px;
}

@media (max-width: 991px) {
	body.tax-family aside .close-cross,
	body.page-template-template-outlet aside .close-cross {
		display: none;
	}
}

body.tax-family aside .close-cross svg,
body.page-template-template-outlet aside .close-cross svg {
	vertical-align: top;
	width: 14px;
	height: 14px;
}

body.page-template-template-outlet aside .sticky {
	padding: 25px 0 50px;
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
}

@media (max-width: 991px) {
	body.page-template-template-outlet aside .sticky {
		padding: 25px 0 50px;
	}
}

body.page-template-template-outlet aside .sticky h1 {
	margin-bottom: 35px;
}

body.page-template-template-referanser .pagination {
	display: none;
}

body.page-template-template-referanser .news-list-item .image-container {
	overflow: hidden;
}

body.page-template-template-referanser .news-list-item a img {
	display: block;
}

body.page-template-template-referanser .news-list-item a img.bg {
	height: 220px;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

body.page-template-template-referanser .news-list-item a:hover .thumbnail img {
	-webkit-transform: scale(1);
	transform: scale(1);
}

body.page-template-template-referanser .news-list-item .thumbnails {
	width: calc(100% + 15px);
}

body.page-template-template-referanser .news-list-item .thumbnails figure,
body.page-template-template-referanser .news-list-item .thumbnails picture,
body.page-template-template-referanser .news-list-item .thumbnails div.no-thumb {
	width: calc(100% / 3);
	float: left;
	overflow: hidden;
	position: relative;
	border: 15px solid #ffffff;
	border-bottom: 0;
	border-left: 0;
}

body.page-template-template-referanser .news-list-item .thumbnails figure img,
body.page-template-template-referanser .news-list-item .thumbnails picture img,
body.page-template-template-referanser .news-list-item .thumbnails div.no-thumb img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	color: white;
	width: auto;
	max-width: none;
	height: 100%;
	text-align: center;
}

body.page-template-template-referanser .news-list-item .thumbnails figure:before,
body.page-template-template-referanser .news-list-item .thumbnails picture:before,
body.page-template-template-referanser .news-list-item .thumbnails div.no-thumb:before {
	content: "";
	display: block;
	padding-top: 100%;
}

body.page-template-template-referanser .news-list-item .thumbnails div.no-thumb {
	margin-bottom: 15px;
}

@media (max-width: 991px) {
	body.page-template-template-referanser .news-list-item .thumbnails div.no-thumb {
		display: none;
	}
}

body.increo_referanse-template-default .main-img img {
	width: 100%;
}

body.increo_referanse-template-default .image-content {
	margin-top: 25px;
	padding-bottom: 50px;
}

body.increo_referanse-template-default .image-content img {
	margin-bottom: 25px;
}

body.increo_referanse-template-default .image-content .post-content {
	margin-bottom: 25px;
}

body.page-template-page-woocommerce-cart .not-logged-actions {
	padding-top: 50px;
	padding-bottom: 50px;
}

@media (max-width: 576px) {
	body.page-template-page-woocommerce-cart .not-logged-actions {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce-cart .not-logged-actions {
		padding-top: 35px;
	}
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce-cart .not-logged-actions input,
	body.page-template-page-woocommerce-cart .not-logged-actions button {
		width: 100%;
	}

	body.page-template-page-woocommerce-cart .not-logged-actions button {
		text-align: left;
	}
}

body.page-template-page-woocommerce-cart .logged-actions {
	padding-top: 30px;
}

body.page-template-page-woocommerce-cart .logged-actions form {
	display: inline-block;
	margin-bottom: 30px;
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce-cart .logged-actions form {
		width: 100%;
	}

	body.page-template-page-woocommerce-cart .logged-actions form input,
	body.page-template-page-woocommerce-cart .logged-actions form button {
		width: 100%;
	}

	body.page-template-page-woocommerce-cart .logged-actions form button {
		text-align: left;
	}
}

body.page-template-page-woocommerce-cart .logged-actions .view-lists {
	vertical-align: top;
	margin-left: 30px;
	display: inline-block;
	height: 41px;
	line-height: 41px;
	padding-top: 0;
	padding-bottom: 0;
}

@media (min-width: 992px) and (max-width: 1210px) {
	body.page-template-page-woocommerce-cart .logged-actions .view-lists {
		font-size: 0;
		padding-right: 25px;
	}
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce-cart .logged-actions .view-lists {
		margin-left: 0;
		margin-top: 15px;
		width: 100%;
	}
}

body.page-template-page-woocommerce-cart .ajax-log,
body.page-template-page-checkout .ajax-log {
	padding: 20px 40px;
}

body.page-template-page-woocommerce-cart .ajax-log.ajax-error, body.page-template-page-woocommerce-cart .ajax-log.ajax-success,
body.page-template-page-checkout .ajax-log.ajax-error,
body.page-template-page-checkout .ajax-log.ajax-success {
	margin-bottom: 40px;
	border-radius: 5px;
}

body.page-template-page-woocommerce-cart .ajax-log.ajax-error,
body.page-template-page-checkout .ajax-log.ajax-error {
	color: #721c24;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
}

body.page-template-page-woocommerce-cart .ajax-log.ajax-success,
body.page-template-page-checkout .ajax-log.ajax-success {
	color: #155724;
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
}

body.page-template-page-woocommerce-cart .ajax-log p,
body.page-template-page-checkout .ajax-log p {
	margin: 2px 0;
}

body.page-template-page-woocommerce-cart .ajax-log p a,
body.page-template-page-checkout .ajax-log p a {
	word-break: break-all;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form,
body.page-template-page-checkout .woocommerce-cart-form {
	padding: 50px 0 0;
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce-cart .woocommerce-cart-form,
	body.page-template-page-checkout .woocommerce-cart-form {
		padding: 30px 0 0;
	}
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form table,
body.page-template-page-checkout .woocommerce-cart-form table {
	width: 100%;
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce-cart .woocommerce-cart-form thead,
	body.page-template-page-checkout .woocommerce-cart-form thead {
		display: none;
	}
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form thead tr,
body.page-template-page-checkout .woocommerce-cart-form thead tr {
	border-top: 1px solid rgba(112, 112, 112, 0.35);
	border-bottom: 1px solid rgba(112, 112, 112, 0.35);
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form thead th,
body.page-template-page-checkout .woocommerce-cart-form thead th {
	padding: 15px 0;
	font-family: "Lato", sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-align: left;
	text-transform: uppercase;
	color: #3f3f3f;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form thead th.product-subtotal,
body.page-template-page-checkout .woocommerce-cart-form thead th.product-subtotal {
	text-align: right;
}

@media (min-width: 992px) {
	body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody tr,
	body.page-template-page-checkout .woocommerce-cart-form tbody tr {
		border-bottom: 1px solid rgba(112, 112, 112, 0.35);
	}
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody tr,
	body.page-template-page-checkout .woocommerce-cart-form tbody tr {
		background-color: rgba(0, 0, 0, 0.03);
		margin-bottom: 2px;
		display: block;
		padding: 15px 35px 15px 15px;
		position: relative;
	}
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody tr.hidden,
body.page-template-page-checkout .woocommerce-cart-form tbody tr.hidden {
	display: none;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody td,
body.page-template-page-checkout .woocommerce-cart-form tbody td {
	font-size: 16px;
	position: relative;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody td.product-quantity,
body.page-template-page-checkout .woocommerce-cart-form tbody td.product-quantity {
	text-align: center;
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody td,
	body.page-template-page-checkout .woocommerce-cart-form tbody td {
		margin-left: 50%;
		width: 50%;
		display: inline-block;
	}

	body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody td.product-thumbnail,
	body.page-template-page-checkout .woocommerce-cart-form tbody td.product-thumbnail {
		margin-left: 0;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		z-index: -1;
		left: 0;
	}

	body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody td.product-remove,
	body.page-template-page-checkout .woocommerce-cart-form tbody td.product-remove {
		position: absolute;
		top: -3px;
		right: 0;
		margin-left: 0;
		display: block;
		width: auto;
	}

	body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody td.product-remove a,
	body.page-template-page-checkout .woocommerce-cart-form tbody td.product-remove a {
		margin-left: 0;
		display: block;
	}

	body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody td.product-quantity,
	body.page-template-page-checkout .woocommerce-cart-form tbody td.product-quantity {
		margin-top: 15px;
		margin-bottom: 15px;
		text-align: left;
	}

	body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody td.product-subtotal,
	body.page-template-page-checkout .woocommerce-cart-form tbody td.product-subtotal {
		text-align: left;
	}

	body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody td.product-subtotal span,
	body.page-template-page-checkout .woocommerce-cart-form tbody td.product-subtotal span {
		font-weight: 700;
	}

	body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody td.product-name,
	body.page-template-page-checkout .woocommerce-cart-form tbody td.product-name {
		padding-right: 0;
	}
}

@media (max-width: 471px) {
	body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody td,
	body.page-template-page-checkout .woocommerce-cart-form tbody td {
		margin-left: 0;
		width: 100%;
	}

	body.page-template-page-woocommerce-cart .woocommerce-cart-form tbody td.product-thumbnail,
	body.page-template-page-checkout .woocommerce-cart-form tbody td.product-thumbnail {
		top: 0;
		left: 0;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		position: relative;
	}
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-name,
body.page-template-page-checkout .woocommerce-cart-form .product-name {
	padding-right: 30px;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-name small,
body.page-template-page-checkout .woocommerce-cart-form .product-name small {
	display: block;
	font-size: 12px;
	line-height: 14px;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-name a,
body.page-template-page-checkout .woocommerce-cart-form .product-name a {
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-subtotal,
body.page-template-page-checkout .woocommerce-cart-form .product-subtotal {
	text-align: right;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-remove a,
body.page-template-page-checkout .woocommerce-cart-form .product-remove a {
	padding: 10px;
	margin-left: 30px;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-remove img,
body.page-template-page-checkout .woocommerce-cart-form .product-remove img {
	width: 14px;
	height: 14px;
	margin-top: 6px;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .wac-qty-button,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .wac-qty-button {
	border-radius: 0;
	padding: 0;
	background: none;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity .wac-qty-button a,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity .wac-qty-button a {
	text-decoration: none;
	padding: 13px 20px 15px;
	display: block;
	font-size: 17px;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-quantity input.qty,
body.page-template-page-checkout .woocommerce-cart-form .product-quantity input.qty {
	text-align: center;
	width: 50px;
	padding: 12px 5px;
	border-color: #000000;
	background-color: #ffffff;
	margin-left: -5px;
	margin-right: -5px;
	border-left: none;
	border-right: none;
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce-cart .woocommerce-cart-form .component_table_item .product-quantity,
	body.page-template-page-checkout .woocommerce-cart-form .component_table_item .product-quantity {
		display: none;
	}
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .component_table_item .product-quantity input,
body.page-template-page-checkout .woocommerce-cart-form .component_table_item .product-quantity input {
	background: none;
	border: 0 none;
	pointer-events: none;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .component_table_item .component_table_item_indent,
body.page-template-page-checkout .woocommerce-cart-form .component_table_item .component_table_item_indent {
	padding-left: 0;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .component_table_item .component_table_item_indent dt,
body.page-template-page-checkout .woocommerce-cart-form .component_table_item .component_table_item_indent dt {
	display: none;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .component_table_item .component_table_item_indent dd,
body.page-template-page-checkout .woocommerce-cart-form .component_table_item .component_table_item_indent dd {
	margin: 0;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .component_table_item .component_table_item_indent dd p,
body.page-template-page-checkout .woocommerce-cart-form .component_table_item .component_table_item_indent dd p {
	margin: 0;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .component_table_item .component_table_item_price:before,
body.page-template-page-checkout .woocommerce-cart-form .component_table_item .component_table_item_price:before {
	display: none;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .component_table_item .component_table_item_subtotal,
body.page-template-page-checkout .woocommerce-cart-form .component_table_item .component_table_item_subtotal {
	font-size: 0;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .component_table_item .component_table_item_subtotal:before,
body.page-template-page-checkout .woocommerce-cart-form .component_table_item .component_table_item_subtotal:before {
	display: none;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .component_table_item .component_table_item_subtotal span,
body.page-template-page-checkout .woocommerce-cart-form .component_table_item .component_table_item_subtotal span {
	font-size: 16px;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-thumbnail,
body.page-template-page-checkout .woocommerce-cart-form .product-thumbnail {
	position: relative;
	text-align: center;
	padding: 10px 0;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-thumbnail a,
body.page-template-page-checkout .woocommerce-cart-form .product-thumbnail a {
	text-align: center;
	width: 100%;
	display: block;
	padding: 10px 0;
	margin-right: 50px;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .product-thumbnail img,
body.page-template-page-checkout .woocommerce-cart-form .product-thumbnail img {
	width: 95px;
	height: 95px;
	-o-object-fit: contain;
	object-fit: contain;
	mix-blend-mode: darken;
}

body.page-template-page-woocommerce-cart .woocommerce-cart-form .color-layer,
body.page-template-page-checkout .woocommerce-cart-form .color-layer {
	background: rgba(0, 0, 0, 0.03);
	position: absolute;
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
	z-index: 1;
	pointer-events: none;
	display: none;
}

@media (min-width: 992px) {
	body.page-template-page-woocommerce-cart .entry-container,
	body.page-template-page-checkout .entry-container {
		background-color: rgba(0, 0, 0, 0.03);
	}
}

body.page-template-page-woocommerce-cart .woocommerce-additional-fields .custom-checkbox,
body.page-template-page-checkout .woocommerce-additional-fields .custom-checkbox {
	margin-bottom: 0;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order,
body.page-template-page-checkout .woocommerce-checkout-review-order {
	padding-bottom: 50px;
}

@media (max-width: 991px) {
	body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order > .row,
	body.page-template-page-checkout .woocommerce-checkout-review-order > .row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table,
body.page-template-page-checkout .woocommerce-checkout-review-order table {
	width: 100%;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table .amount,
body.page-template-page-checkout .woocommerce-checkout-review-order table .amount {
	white-space: nowrap;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table thead,
body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tbody,
body.page-template-page-checkout .woocommerce-checkout-review-order table thead,
body.page-template-page-checkout .woocommerce-checkout-review-order table tbody {
	display: none;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr,
body.page-template-page-checkout .woocommerce-checkout-review-order table tr {
	border-bottom: 1px solid rgba(112, 112, 112, 0.35);
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr th,
body.page-template-page-checkout .woocommerce-checkout-review-order table tr th {
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
	white-space: nowrap;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr td,
body.page-template-page-checkout .woocommerce-checkout-review-order table tr td {
	text-align: right;
	padding: 20px 0;
	font-size: 16px;
	text-transform: uppercase;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr td p,
body.page-template-page-checkout .woocommerce-checkout-review-order table tr td p {
	margin: 0;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr.shipping > th,
body.page-template-page-checkout .woocommerce-checkout-review-order table tr.shipping > th {
	vertical-align: top;
	padding-top: 20px;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr.shipping td ul,
body.page-template-page-checkout .woocommerce-checkout-review-order table tr.shipping td ul {
	padding: 0;
	margin: 0;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr.shipping td ul li,
body.page-template-page-checkout .woocommerce-checkout-review-order table tr.shipping td ul li {
	list-style-type: none;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr.shipping td ul li input[type=radio],
body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr.shipping td ul li input[type=checkbox],
body.page-template-page-checkout .woocommerce-checkout-review-order table tr.shipping td ul li input[type=radio],
body.page-template-page-checkout .woocommerce-checkout-review-order table tr.shipping td ul li input[type=checkbox] {
	margin-right: 7px;
	margin-top: 3px;
	vertical-align: top;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr.shipping td ul li:last-child label,
body.page-template-page-checkout .woocommerce-checkout-review-order table tr.shipping td ul li:last-child label {
	margin-bottom: 0;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr.shipping td span,
body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr.shipping td a,
body.page-template-page-checkout .woocommerce-checkout-review-order table tr.shipping td span,
body.page-template-page-checkout .woocommerce-checkout-review-order table tr.shipping td a {
	line-height: 24px;
	font-size: 16px;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order table tr.order-total td,
body.page-template-page-checkout .woocommerce-checkout-review-order table tr.order-total td {
	font-size: 20px;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order .shipping-calculator-form input,
body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order .shipping-calculator-form button[type=submit],
body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order .shipping-calculator-form select,
body.page-template-page-checkout .woocommerce-checkout-review-order .shipping-calculator-form input,
body.page-template-page-checkout .woocommerce-checkout-review-order .shipping-calculator-form button[type=submit],
body.page-template-page-checkout .woocommerce-checkout-review-order .shipping-calculator-form select {
	width: 100%;
	margin-top: 10px;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-review-order .shipping-calculator-form button[type=submit],
body.page-template-page-checkout .woocommerce-checkout-review-order .shipping-calculator-form button[type=submit] {
	text-align: left;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout h3,
body.page-template-page-checkout .woocommerce-checkout h3 {
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	color: #000000;
	margin-bottom: 20px;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout label,
body.page-template-page-checkout .woocommerce-checkout label {
	text-align: left;
	display: block;
	width: 100%;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout button[type=submit],
body.page-template-page-woocommerce-cart .woocommerce-checkout select,
body.page-template-page-woocommerce-cart .woocommerce-checkout input[type=text],
body.page-template-page-woocommerce-cart .woocommerce-checkout input[type=email],
body.page-template-page-woocommerce-cart .woocommerce-checkout input[type=number],
body.page-template-page-woocommerce-cart .woocommerce-checkout input[type=tel],
body.page-template-page-woocommerce-cart .woocommerce-checkout input[type=password],
body.page-template-page-checkout .woocommerce-checkout button[type=submit],
body.page-template-page-checkout .woocommerce-checkout select,
body.page-template-page-checkout .woocommerce-checkout input[type=text],
body.page-template-page-checkout .woocommerce-checkout input[type=email],
body.page-template-page-checkout .woocommerce-checkout input[type=number],
body.page-template-page-checkout .woocommerce-checkout input[type=tel],
body.page-template-page-checkout .woocommerce-checkout input[type=password] {
	width: 97%;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout button[type=submit],
body.page-template-page-checkout .woocommerce-checkout button[type=submit] {
	text-align: left;
	max-width: none;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout .woocommerce-form__label-for-checkbox,
body.page-template-page-checkout .woocommerce-checkout .woocommerce-form__label-for-checkbox {
}

body.page-template-page-woocommerce-cart .woocommerce-checkout .woocommerce-Button,
body.page-template-page-checkout .woocommerce-checkout .woocommerce-Button {
	width: 100%;
	max-width: 300px;
	display: inline-block;
	text-align: center;
	margin: 10px 5px 10px 0;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password,
body.page-template-page-checkout .woocommerce-checkout .lost_password {
	display: inline-block;
	width: 100%;
	max-width: 300px;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout .lost_password a,
body.page-template-page-checkout .woocommerce-checkout .lost_password a {
	width: 100%;
	text-align: center;
	margin-left: 5px;
	margin-right: 5px;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout > div.form-row:not(.woocommerce-form-row),
body.page-template-page-checkout .woocommerce-checkout > div.form-row:not(.woocommerce-form-row) {
	display: inline-block;
	width: 100%;
}

body.page-template-page-woocommerce-cart .required,
body.page-template-page-checkout .required {
	position: relative;
}

body.page-template-page-woocommerce-cart .required:after,
body.page-template-page-checkout .required:after {
	position: absolute;
	right: -6px;
	font-size: 20px;
	top: 25px;
	line-height: 4px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: '*';
	color: #99d537;
}

body.page-template-page-woocommerce-cart .bg-white,
body.page-template-page-checkout .bg-white {
	margin-left: -15px;
	margin-right: -15px;
	background-color: #ffffff;
}

body.page-template-page-woocommerce-cart .bg-white .entry-title p,
body.page-template-page-checkout .bg-white .entry-title p {
	margin: 0;
}

body.page-template-page-woocommerce-cart .bg-white .entry-title small,
body.page-template-page-checkout .bg-white .entry-title small {
	font-family: "Lato", sans-serif;
	font-size: 14px;
	line-height: 18px;
	vertical-align: top;
	color: #000000;
	display: block;
	padding-top: 7px;
	padding-bottom: 5px;
}

body.page-template-page-woocommerce-cart .bg-white .container,
body.page-template-page-checkout .bg-white .container {
	padding-top: 50px;
	padding-bottom: 50px;
}

body.page-template-page-woocommerce-cart .bg-white .wc_payment_methods.payment_methods,
body.page-template-page-checkout .bg-white .wc_payment_methods.payment_methods {
	padding: 0;
	margin: 0;
}

body.page-template-page-woocommerce-cart .bg-white .wc_payment_methods.payment_methods li,
body.page-template-page-checkout .bg-white .wc_payment_methods.payment_methods li {
	list-style-type: none;
	display: none;
}

body.page-template-page-woocommerce-cart .woocommerce-checkout-payment,
body.page-template-page-checkout .woocommerce-checkout-payment {
	margin-top: 10px;
}

body.page-template-page-woocommerce-cart .cart-empty,
body.page-template-page-checkout .cart-empty {
	display: block;
	text-align: center;
	padding: 75px 0 15px;
	font-size: 24px;
	line-height: 28px;
}

body.page-template-page-woocommerce-cart .return-to-shop,
body.page-template-page-checkout .return-to-shop {
	text-align: center;
	margin-bottom: 100px;
}

@media (max-width: 576px) {
	body.page-template-page-woocommerce-cart .cart-items-container,
	body.page-template-page-woocommerce-cart .cart-checkout-review-order,
	body.page-template-page-checkout .cart-items-container,
	body.page-template-page-checkout .cart-checkout-review-order {
		padding: 0;
	}
}

@media (max-width: 991px) {
	body.page-template-page-checkout .container-fluid {
		background-color: #ffffff;
	}
}

body.page-template-page-checkout .woocommerce-table {
	width: 100%;
}

body.page-template-page-checkout .woocommerce-table .amount {
	white-space: nowrap;
}

@media (max-width: 991px) {
	body.page-template-page-checkout .woocommerce-table thead {
		display: none;
	}
}

body.page-template-page-checkout .woocommerce-table tr {
	border-bottom: 1px solid rgba(112, 112, 112, 0.35);
}

body.page-template-page-checkout .woocommerce-table tr th {
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
}

body.page-template-page-checkout .woocommerce-table tr td {
	text-align: right;
	padding: 20px 0;
	font-size: 16px;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	body.page-template-page-checkout .woocommerce-table tr td {
		width: 100%;
		display: inline-block;
	}

	body.page-template-page-checkout .woocommerce-table tr td.product-thumbnail {
		margin-left: 0;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		z-index: -1;
		left: 0;
	}

	body.page-template-page-checkout .woocommerce-table tr td.product-remove {
		position: absolute;
		top: -3px;
		right: 0;
		margin-left: 0;
		display: block;
		width: auto;
	}

	body.page-template-page-checkout .woocommerce-table tr td.product-remove a {
		margin-left: 0;
		display: block;
	}

	body.page-template-page-checkout .woocommerce-table tr td.product-quantity {
		margin-top: 15px;
		margin-bottom: 15px;
		text-align: left;
	}

	body.page-template-page-checkout .woocommerce-table tr td.product-subtotal {
		text-align: left;
	}

	body.page-template-page-checkout .woocommerce-table tr td.product-subtotal span {
		font-weight: 700;
	}

	body.page-template-page-checkout .woocommerce-table tr td.product-name {
		padding-right: 0;
	}
}

body.page-template-page-checkout .woocommerce-table tr td p {
	margin: 0;
}

body.page-template-page-checkout .woocommerce-table tr.shipping td {
	font-size: 0;
	line-height: 0;
}

body.page-template-page-checkout .woocommerce-table tr.shipping td span,
body.page-template-page-checkout .woocommerce-table tr.shipping td a {
	line-height: 24px;
	font-size: 16px;
}

body.page-template-page-checkout .woocommerce-table tr.order-total td {
	font-size: 20px;
}

body.page-template-page-checkout .shipping-calculator-form input,
body.page-template-page-checkout .shipping-calculator-form button[type=submit],
body.page-template-page-checkout .shipping-calculator-form select {
	width: 100%;
	margin-top: 10px;
}

body.page-template-page-checkout .shipping-calculator-form button[type=submit] {
	text-align: left;
}

body.page-template-page-checkout .woocommerce-thankyou-order-received {
	font-size: 22px;
	line-height: 26px;
	padding-bottom: 15px;
}

body.page-template-page-checkout .woocommerce-order-details {
	margin-top: 75px;
	padding-bottom: 75px;
}

body.page-template-template-forhandlere .table--default {
	width: 100%;
	margin-top: 50px;
	margin-bottom: 65px;
}

@media (max-width: 767px) {
	body.page-template-template-forhandlere .table--default {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	body.page-template-template-forhandlere .table--default thead {
		display: none;
	}
}

body.page-template-template-forhandlere .table--default tr {
	border-bottom: 1px solid rgba(112, 112, 112, 0.35);
}

@media (min-width: 992px) {
	body.page-template-template-forhandlere .table--default tr.active {
		background-color: rgba(0, 0, 0, 0.03);
	}

	body.page-template-template-forhandlere .table--default tr.active td:last-child {
		position: relative;
	}

	body.page-template-template-forhandlere .table--default tr.active td:last-child:after {
		content: '';
		width: 8px;
		height: 100%;
		background-color: #99d537;
		position: absolute;
		right: 0;
		top: 0;
	}
}

@media (max-width: 991px) {
	body.page-template-template-forhandlere .table--default tr.active {
		background-color: #99d537;
	}
}

body.page-template-template-forhandlere .table--default tr th {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
	color: #3f3f3f;
	padding-bottom: 10px;
	text-align: left;
}

@media (min-width: 992px) {
	body.page-template-template-forhandlere .table--default tr th:first-child {
		padding-left: 10px;
	}
}

body.page-template-template-forhandlere .table--default tr th.text-center {
	text-align: center;
}

body.page-template-template-forhandlere .table--default tr td {
	text-align: left;
	padding: 20px 0;
	font-size: 16px;
	line-height: 1.5;
	color: #000000;
}

@media (min-width: 992px) {
	body.page-template-template-forhandlere .table--default tr td:first-child {
		padding-left: 10px;
		max-width: 200px;
	}
}

body.page-template-template-forhandlere .table--default tr td.text-center {
	text-align: center;
}

body.page-template-template-forhandlere .table--default tr a {
	text-decoration: none;
}

body.page-template-template-forhandlere .table--default tr a svg {
	width: 20px;
}

body.page-template-template-forhandlere .table--default tr a svg path {
	-webkit-transition: fill 200ms ease-in;
	transition: fill 200ms ease-in;
	will-change: fill;
}

body.page-template-template-forhandlere .table--default tr a:hover svg path {
	fill: #99d537;
}

@media (max-width: 767px) {
	body.page-template-template-forhandlere .table--default tr {
		border-bottom: 0 none;
		background-color: rgba(0, 0, 0, 0.03);
		margin-bottom: 2px;
		display: block;
		padding: 20px;
		position: relative;
	}

	body.page-template-template-forhandlere .table--default tr td {
		display: block;
		width: 100%;
		padding: 0 45px 0 0;
	}

	body.page-template-template-forhandlere .table--default tr td.mobile-title {
		font-weight: 700;
		padding-right: 0;
	}

	body.page-template-template-forhandlere .table--default tr td.mobile-website {
		top: 47px;
		right: 20px;
		position: absolute;
		width: 36px;
		padding-right: 0;
	}

	body.page-template-template-forhandlere .table--default tr td.mobile-website a {
		padding: 5px;
		border: 2px solid #000000;
		width: 36px;
		display: block;
		height: 35px;
		line-height: 18px;
	}

	body.page-template-template-forhandlere .table--default tr td.mobile-mail {
		top: 80px;
		right: 20px;
		position: absolute;
		width: 36px;
		padding-right: 0;
	}

	body.page-template-template-forhandlere .table--default tr td.mobile-mail a {
		padding: 5px;
		border: 2px solid #000000;
		width: 36px;
		display: block;
		height: 35px;
		line-height: 18px;
	}
}

body.page-template-template-forhandlere .table--default tbody tr:hover {
	border-bottom: 1px solid #99d537;
}

body.page-template-template-forhandlere .no-results h3 {
	margin: 0;
}

body.page-template-template-forhandlere .filter-container {
	padding: 30px 0;
	background-color: rgba(0, 0, 0, 0.03);
}

@media (max-width: 991px) {
	body.page-template-template-forhandlere .filter-container {
		padding: 15px 0;
	}
}

body.page-template-template-forhandlere .filter-container select {
	width: 100%;
	background-color: #ffffff;
}

@media (max-width: 991px) {
	body.page-template-template-forhandlere .filter-container select {
		margin-bottom: 5px;
	}
}

body.page-template-template-forhandlere .filter-container button.with-icon {
	padding-right: 45px;
}

@media (max-width: 991px) {
	body.page-template-template-forhandlere .filter-container button.current-location {
		width: 100%;
		text-align: left;
	}
}

@media (max-width: 991px) {
	body.page-template-template-forhandlere .filter-container .search-input-container {
		margin-bottom: 5px;
	}
}

body.page-template-template-forhandlere .filter-container .search-input-container input[type=text] {
	width: calc(100% - 92px);
	background-color: #ffffff;
	border-right: 0 none;
}

body.page-template-template-forhandlere .filter-container .search-input-container button.with-icon {
	margin-left: -7px;
}

body.page-template-template-forhandlere .map-container {
	position: relative;
}

body.page-template-template-forhandlere .map-container .collapse {
	position: absolute;
	top: 40px;
	left: 50%;
	z-index: 10;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

body.page-template-template-forhandlere .article-map {
	height: 120px;
}

body.page-template-template-forhandlere .article-map button {
	margin: 0;
}

body.page-template-page-checkout .container-fluid {
	background-color: rgba(0, 0, 0, 0.03);
}

@media (max-width: 991px) {
	body.page-template-page-checkout .container-fluid {
		background-color: #ffffff;
	}
}

body.page-template-page-checkout .woocommerce-thankyou-order-received {
	padding-top: 45px;
	font-size: 18px;
}

@media (max-width: 991px) {
	body.page-template-page-checkout .woocommerce-thankyou-order-received {
		padding-top: 0;
	}
}

body.page-template-page-checkout .thank-you-image {
	margin-top: 5px;
	margin-right: 15px;
	width: 20px;
}

@media (max-width: 991px) {
	body.page-template-page-checkout .thankyou-container {
		padding-left: 0;
		padding-right: 0;
	}
}

body.page-template-page-checkout .woocommerce-order-details {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 25px;
}

@media (max-width: 991px) {
	body.page-template-page-checkout .woocommerce-order-details {
		margin-bottom: 0;
		padding-bottom: 0;
		padding-left: 0;
		padding-right: 0;
	}
}

body.page-template-page-checkout .woocommerce-order-details.order_details-products thead tr {
	border-top: 1px solid rgba(112, 112, 112, 0.35);
}

body.page-template-page-checkout .woocommerce-order-details.order_details-products thead tr th {
	padding-top: 10px;
}

body.page-template-page-checkout .woocommerce-order-details.order_details-products tbody td {
	text-align: left;
}

body.page-template-page-checkout .woocommerce-order-details.order_details-products tbody td.text-right {
	text-align: right;
}

body.page-template-page-checkout .woocommerce-order-details.order_details-products tbody td.product-name {
	padding-left: 0;
}

body.page-template-page-checkout .woocommerce-order-details .amount {
	white-space: nowrap;
}

body.page-template-page-checkout .woocommerce-order-details tr {
	border-bottom: 1px solid rgba(112, 112, 112, 0.35);
}

body.page-template-page-checkout .woocommerce-order-details tr th {
	font-weight: 400;
	font-size: 16px;
	text-transform: uppercase;
}

body.page-template-page-checkout .woocommerce-order-details tr td {
	padding: 20px 0;
	font-size: 16px;
	text-transform: uppercase;
	text-align: right;
}

body.page-template-page-checkout .woocommerce-order-details tr td.text-left {
	text-align: left;
}

body.page-template-page-checkout .woocommerce-order-details tr td p {
	margin: 0;
}

body.page-template-page-checkout .woocommerce-order-details thead tr {
	border-top: 1px solid rgba(112, 112, 112, 0.35);
}

body.page-template-page-checkout .woocommerce-order-details thead th {
	font-weight: 700;
	font-size: 12px;
	color: #3f3f3f;
	padding-bottom: 10px;
	padding-top: 12px;
}

body.page-template-page-checkout .woocommerce-order-details thead th:last-child {
	text-align: right;
}

body.page-template-page-checkout .woocommerce-customer-details {
	background-color: #ffffff;
	margin-left: -15px;
	margin-right: -15px;
	padding-top: 50px;
	padding-bottom: 50px;
}

body.page-template-page-checkout .woocommerce-customer-details .woocommerce-column__title {
	font-family: "Lato", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1.5px;
	color: #000000;
	text-transform: uppercase;
}

body.page-template-page-checkout .woocommerce-customer-details .addresses {
	margin-bottom: 15px;
}

body.page-template-page-checkout .woocommerce-customer-details address {
	color: #3f3f3f;
	font-size: 14px;
}

@media (min-width: 576px) and (max-width: 991px) {
	body.page-template-page-checkout .woocommerce-customer-details section {
		padding-left: 0;
	}
}

body.page-template-page-checkout .woocommerce-customer-details ul {
	margin: 0 0 30px;
	padding: 0;
}

body.page-template-page-checkout .woocommerce-customer-details ul li {
	list-style-type: none;
	color: #3f3f3f;
	font-size: 14px;
}

body.page-template-page-checkout .print-container a {
	width: 100%;
	max-width: 230px;
}

@media (max-width: 991px) {
	body.page-template-page-checkout .order_details-products tr {
		border-bottom: 0 none;
		background-color: rgba(0, 0, 0, 0.03);
		margin-bottom: 2px;
		display: block;
		padding: 15px 35px 15px 15px;
		position: relative;
	}

	body.page-template-page-checkout .order_details-products tr td {
		padding: 5px 0;
		text-align: left;
		vertical-align: top;
		line-height: 22px;
	}

	body.page-template-page-checkout .order_details-products tr td:nth-child(1):before {
		padding-right: 5px;
		content: "ANTALL:";
	}

	body.page-template-page-checkout .order_details-products tr td:nth-child(2):before {
		padding-right: 5px;
		content: "PRODUKTNR:";
	}

	body.page-template-page-checkout .order_details-products tr td:nth-child(4):before {
		padding-right: 5px;
		content: "Enhetspris:";
	}

	body.page-template-page-checkout .order_details-products tr td:nth-child(5) {
		font-weight: 700;
	}

	body.page-template-page-checkout .order_details-products tr td:nth-child(5):before {
		padding-right: 5px;
		content: "Sum:";
	}
}

body.page-template-page-checkout .component_table_item .component_table_item_subtotal {
	font-size: 0;
}

body.page-template-page-checkout .component_table_item .component_table_item_subtotal:before {
	display: none;
}

body.page-template-page-checkout .component_table_item .component_table_item_subtotal span {
	font-size: 16px;
}

body.page-template-page-checkout .woocommerce .component_table_item dl.component dt {
	font-size: 12px;
	line-height: 14px;
}

body.page-template-page-checkout .woocommerce .component_table_item dl.component dd {
	margin-bottom: 0;
}

body.page-template-page-checkout .woocommerce .component_table_item .component_table_item_indent {
	padding-left: 0;
}

body.single-post .breadcrumbs-container {
	display: none;
}

body.single-post .single-go-back {
	position: relative;
	right: 0;
	top: 10px;
}

body.post-type-archive-product header.page-header .container,
body.post-type-archive-product .breadcrumbs-container .container,
body.tax-product_cat.post-type-archive header.page-header .container,
body.tax-product_cat.post-type-archive .breadcrumbs-container .container {
	max-width: calc(100% - 200px);
}

@media (max-width: 991px) {
	body.post-type-archive-product header.page-header .container,
	body.post-type-archive-product .breadcrumbs-container .container,
	body.tax-product_cat.post-type-archive header.page-header .container,
	body.tax-product_cat.post-type-archive .breadcrumbs-container .container {
		max-width: calc(100% - 125px);
	}
}

body.post-type-archive-product #main-infinite,
body.tax-product_cat.post-type-archive #main-infinite {
	width: 100%;
	margin: 0;
}

body.page-template-template-brochures .inc-title {
	margin-bottom: 75px;
}

body.page-template-template-brochures .brochure-list-item {
	margin-bottom: 30px;
}

body.page-template-template-brochures .brochure-list-item img {
	width: 100%;
	height: auto;
}

body.page-template-template-brochures .brochure-list-item a {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}

body.page-template-template-brochures .brochure-list-item a:after {
	width: 0;
	height: 6px;
	background-color: #99d537;
	content: '';
	position: absolute;
	bottom: -6px;
	right: 0;
	will-change: width;
	-webkit-transition: width 200ms ease-in;
	transition: width 200ms ease-in;
}

body.page-template-template-brochures .brochure-list-item a:hover:after {
	width: 50%;
}

@media only screen {
	body.page-handleliste .ajax-log {
		padding: 20px 40px;
	}

	body.page-handleliste .ajax-log.ajax-error, body.page-handleliste .ajax-log.ajax-success {
		margin-bottom: 40px;
		border-radius: 5px;
	}

	body.page-handleliste .ajax-log.ajax-error {
		color: #721c24;
		background-color: #f8d7da;
		border: 1px solid #f5c6cb;
	}

	body.page-handleliste .ajax-log.ajax-success {
		color: #155724;
		background-color: #d4edda;
		border: 1px solid #c3e6cb;
	}

	body.page-handleliste .ajax-log p {
		margin: 2px 0;
	}

	body.page-handleliste .ajax-log p a {
		word-break: break-all;
	}

	body.page-handleliste .woocommerce-increo-breadcrumb .breadcrumb-separator:after {
		content: 'Handleliste';
	}

	body.page-handleliste .table-wrapper {
		padding-top: 50px;
		padding-bottom: 35px;
	}

	body.page-handleliste table {
		width: 100%;
	}
}

@media only screen and (max-width: 991px) {
	body.page-handleliste table thead {
		display: none;
	}
}

@media only screen {
	body.page-handleliste table thead tr {
		border-top: 1px solid rgba(112, 112, 112, 0.35);
		border-bottom: 1px solid rgba(112, 112, 112, 0.35);
	}

	body.page-handleliste table thead th {
		padding: 15px 0;
		font-family: "Lato", sans-serif;
		font-size: 12px;
		font-weight: 700;
		text-align: left;
		text-transform: uppercase;
		color: #3f3f3f;
	}

	body.page-handleliste table thead th.product-subtotal {
		text-align: right;
	}
}

@media only screen and (min-width: 992px) {
	body.page-handleliste table tbody tr {
		border-bottom: 1px solid rgba(112, 112, 112, 0.35);
	}
}

@media only screen and (max-width: 991px) {
	body.page-handleliste table tbody tr {
		background-color: rgba(0, 0, 0, 0.03);
		margin-bottom: 2px;
		display: block;
		padding: 15px 35px 15px 15px;
		position: relative;
	}
}

@media only screen {
	body.page-handleliste table tbody tr.hidden {
		display: none;
	}

	body.page-handleliste table tbody td {
		font-size: 16px;
		position: relative;
	}

	body.page-handleliste table tbody td.sum-total {
		padding: 20px 0;
	}

	body.page-handleliste table tbody td.product-quantity {
		text-align: left;
	}

	body.page-handleliste table tbody td.product-quantity input[name=increo_qt] {
		width: 70px;
		border: 2px solid #707070;
		pointer-events: initial;
	}

	body.page-handleliste table tbody td.product-quantity input[name=increo_qt].error {
		background-color: #f5c6cb;
		color: #721c24;
	}
}

@media only screen and (max-width: 991px) {
	body.page-handleliste table tbody td.product-quantity:before {
		vertical-align: top;
		content: 'Antall:';
	}
}

@media only screen and (max-width: 991px) {
	body.page-handleliste table tbody td {
		margin-left: 50%;
		width: 50%;
		display: inline-block;
	}

	body.page-handleliste table tbody td.product-thumbnail {
		margin-left: 0;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		z-index: -1;
		left: 0;
	}

	body.page-handleliste table tbody td.product-remove {
		position: absolute;
		top: -3px;
		right: 0;
		margin-left: 0;
		display: block;
		width: auto;
	}

	body.page-handleliste table tbody td.product-remove a {
		margin-left: 0;
		display: block;
	}

	body.page-handleliste table tbody td.product-quantity {
		margin-top: 15px;
		margin-bottom: 15px;
		text-align: left;
	}

	body.page-handleliste table tbody td.product-subtotal {
		text-align: left;
	}

	body.page-handleliste table tbody td.product-subtotal span {
		font-weight: 700;
	}
}

@media only screen and (max-width: 991px) and (max-width: 991px) {
	body.page-handleliste table tbody td.product-subtotal:before {
		margin-right: 12px;
		vertical-align: top;
		content: 'Sum:';
	}
}

@media only screen and (max-width: 991px) {
	body.page-handleliste table tbody td.product-name {
		padding-right: 0;
	}
}

@media only screen and (max-width: 471px) {
	body.page-handleliste table tbody td {
		margin-left: 0;
		width: 100%;
	}

	body.page-handleliste table tbody td.product-thumbnail {
		top: 0;
		left: 0;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		position: relative;
	}
}

@media only screen {
	body.page-handleliste table tbody .product-name {
		padding-right: 30px;
	}

	body.page-handleliste table tbody .product-name small {
		display: block;
		font-size: 12px;
		line-height: 14px;
	}

	body.page-handleliste table tbody .product-name a {
		text-decoration: none;
		font-size: 16px;
		font-weight: 400;
	}

	body.page-handleliste table tbody .product-subtotal {
		text-align: left;
		white-space: nowrap;
	}

	body.page-handleliste table tbody .product-subtotal input[name=increo_sum] {
		width: 100px;
	}

	body.page-handleliste table tbody .product-subtotal .woocommerce-Price-amount {
		font-size: 0;
	}

	body.page-handleliste table tbody .product-subtotal .woocommerce-Price-amount span {
		font-size: 16px;
	}

	body.page-handleliste table tbody .product-subtotal.p-ow .woocommerce-Price-amount {
		font-size: 16px;
	}

	body.page-handleliste table tbody .product-sum {
		text-align: right;
		white-space: nowrap;
	}

	body.page-handleliste table tbody .product-remove a {
		padding: 10px;
		margin-left: 30px;
	}

	body.page-handleliste table tbody .product-remove img {
		width: 14px;
		height: 14px;
		margin-top: 6px;
	}
}

@media only screen and (max-width: 991px) {
	body.page-handleliste table tbody .component_table_item .product-quantity {
		display: none;
	}
}

@media only screen {
	body.page-handleliste table tbody .component_table_item .product-quantity input {
		background: none;
		border: 0 none;
		pointer-events: none;
	}

	body.page-handleliste table tbody .component_table_item .component_table_item_indent {
		padding-left: 0;
	}

	body.page-handleliste table tbody .component_table_item .component_table_item_indent dt {
		display: none;
	}

	body.page-handleliste table tbody .component_table_item .component_table_item_indent dd {
		margin: 0;
	}

	body.page-handleliste table tbody .component_table_item .component_table_item_indent dd p {
		margin: 0;
	}

	body.page-handleliste table tbody .component_table_item .component_table_item_price:before {
		display: none;
	}

	body.page-handleliste table tbody .component_table_item .component_table_item_subtotal {
		font-size: 0;
	}

	body.page-handleliste table tbody .component_table_item .component_table_item_subtotal:before {
		display: none;
	}

	body.page-handleliste table tbody .component_table_item .component_table_item_subtotal span {
		font-size: 16px;
	}

	body.page-handleliste table tbody .product-thumbnail {
		position: relative;
		text-align: center;
		padding: 10px 0;
	}

	body.page-handleliste table tbody .product-thumbnail a {
		text-align: center;
		width: 100%;
		display: block;
		margin-right: 50px;
	}

	body.page-handleliste table tbody .product-thumbnail img {
		width: 95px;
		height: 95px;
		-o-object-fit: contain;
		object-fit: contain;
		mix-blend-mode: darken;
	}

	body.page-handleliste table tbody .color-layer {
		background: rgba(0, 0, 0, 0.03);
		position: absolute;
		top: 1px;
		left: 1px;
		right: 1px;
		bottom: 1px;
		z-index: 1;
		pointer-events: none;
		display: none;
	}

	body.page-handleliste .form-actions {
		padding-bottom: 50px;
	}
}

body.template-dok {
	display: none;
}

@media only print {
	body.template-dok {
		width: 210mm;
		height: 297mm;
		padding-top: 0;
		padding-bottom: 120px;
		margin-top: 20px;
		margin-right: 10px;
	}

	body.template-dok footer,
	body.template-dok .close-cross,
	body.template-dok form.cart,
	body.template-dok #masthead,
	body.template-dok .flex-control-nav,
	body.template-dok .site-search,
	body.template-dok .mobile-navigation-container,
	body.template-dok .entry-header,
	body.template-dok .desktop-navigation-container,
	body.template-dok .main-navigation,
	body.template-dok .increo_header_fixed,
	body.template-dok .breadcrumbs-container,
	body.template-dok .related-products,
	body.template-dok .footer-section,
	body.template-dok .cart-add-right,
	body.template-dok .composited_product_details_wrapper,
	body.template-dok .form-actions {
		display: none;
	}

	body.template-dok .col-lg-8 {
		max-width: 100%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}

	body.template-dok .m-l img {
		display: none;
	}

	body.template-dok .product-thumbnail img {
		mix-blend-mode: normal;
		display: block;
	}

	body.template-dok .t-wrap {
		position: relative;
		height: 100%;
	}

	body.template-dok .component_content {
		margin-bottom: 10px;
		border: 2px solid #000000;
	}

	body.template-dok .woocommerce-product-gallery__image {
		margin-top: 100px;
		margin-bottom: 100px;
		text-align: center;
	}

	body.template-dok .woocommerce-product-gallery__image img {
		max-width: 400px;
		max-height: 400px;
		width: auto;
		margin: 0 auto;
	}

	body.template-dok .product-thumbnail {
		margin-top: 100px;
		margin-bottom: 100px;
	}

	body.template-dok .product-thumbnail img {
		max-width: 400px;
		max-height: 400px;
		width: auto;
		margin: 0 auto;
	}

	body.template-dok .cart-pdf-item {
		page-break-after: always;
		padding-top: 50px;
		padding-left: 20px;
		padding-right: 20px;
		position: relative;
	}

	body.template-dok .cart-pdf-item:last-child {
		page-break-after: avoid;
	}

	body.template-dok .foot {
		color: #c1c1c1;
		background-color: #000000;
		-webkit-print-color-adjust: exact;
		padding: 30px 15px;
		text-align: center;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin-left: -15px;
		margin-right: -15px;
		font-size: 13px;
		width: 210mm;
	}

	body.template-dok .print-site-branding {
		height: 82px;
	}

	body.template-dok .print-site-branding img {
		height: 100%;
		width: auto;
	}

	body.template-dok .product-title-wrapper {
		display: inline-block;
		margin-left: 40px;
	}

	body.template-dok .color-box {
		position: absolute;
		display: inline-block;
		width: 10px;
		height: 100%;
		background-color: #99d537;
	}

	body.template-dok .tech-section {
		padding: 0;
	}

	body.template-dok .tech-section .col-lg-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	body.template-dok .tech-section table {
		width: 100%;
		table-layout: auto;
	}

	body.template-dok .tech-section table tr {
		width: 100%;
	}

	body.template-dok .product-thumbnail .img-main {
		border: 1px solid #c1c1c1;
		margin: 0 auto;
		width: 350px;
		height: 350px;
		background-size: 65% auto;
		background-repeat: no-repeat;
		background-position: center center;
		margin-bottom: 5px;
	}

	body.template-dok .product-thumbnail .img-add {
		width: 166px;
		height: 166px;
		display: inline-block;
		margin: 10px 0 0 0;
		border: 1px solid #c1c1c1;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}

	body.template-dok .product-thumbnail .img-add:nth-child(2n + 1) {
		margin-left: 10px;
	}

	body.template-dok .t-i-row {
		margin-top: 50px;
	}

	body.template-dok .tech-data h4 {
		background-color: #000000;
		color: #ffffff;
		width: 100%;
		font-family: "Lato", sans-serif;
		font-weight: 400;
		padding: 4px 8px;
		font-size: 15px;
	}

	body.template-dok .tech-data table {
		width: 100%;
	}

	body.template-dok .tech-data tbody tr {
		border-bottom: 1px solid #c1c1c1;
	}

	body.template-dok .tech-data tbody td {
		font-size: 12px;
		color: #000000;
		padding: 3px 5px;
		width: 50%;
	}
}

body.woocommerce-lost-password .woocommerce-ResetPassword {
	padding-top: 50px;
}

body.woocommerce-lost-password .woocommerce-ResetPassword .required {
	color: #99d537;
}

body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-Input--text {
	width: 100%;
}

body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-password-strength {
	margin-top: 20px;
}

body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-password-strength.bad, body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-password-strength.short {
	color: #721c24;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 5px;
	padding: 15px 20px;
	font-size: 15px;
}

body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-password-strength.good {
	color: #856404;
	background-color: #fff3cd;
	border: 1px solid #ffeeba;
	border-radius: 5px;
	padding: 15px 20px;
	font-size: 15px;
}

body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-password-strength.strong {
	color: #155724;
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 5px;
	padding: 15px 20px;
	font-size: 15px;
}

body.woocommerce-lost-password .woocommerce-ResetPassword .woocommerce-password-hint {
	margin-top: 5px;
	display: inline-block;
	margin-bottom: 15px;
	line-height: 1.5em;
}

body.woocommerce-lost-password .entry-container {
	padding-bottom: 50px;
}

.maksimer-volume-discounts-wrapper {
	background: white;
	padding: 22px;
	margin-bottom: 30px;
}

.maksimer-volume-discounts-wrapper h3 {
	color: #000;
	font-family: Lato;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%; /* 18.2px */
	text-transform: uppercase;
	margin-bottom: 19px;
}

.maksimer-volume-discount-section {
	margin: 20px 0;
}

.maksimer-volume-discount-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.maksimer-volume-discount-title {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
}

.maksimer-tooltip {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 8px;
}

.maksimer-tooltip-icon {
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: #9CD342;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	text-align: center;
	font-family: Lato;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%; /* 13px */
	cursor: help;
	transition: background-color 0.3s ease;
}

.maksimer-tooltip-icon:hover {
	background-color: #88c426;
}

.maksimer-tooltip-content {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	background-color: #333;
	color: #fff;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 13px;
	line-height: 1.5;
	white-space: normal;
	width: 280px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 1000;
	pointer-events: none;
}

.maksimer-tooltip-content div + div {
	color: #FFF;
	font-family: Lato;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%; /* 22.4px */
	opacity: 0.8;
	text-transform: none;
}

.maksimer-tooltip-content::before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 8px solid transparent;
	border-bottom-color: #333;
}

.maksimer-tooltip-content-title {
	color: #FFF;
	font-family: Lato;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%; /* 20.8px */
	margin-bottom: 10px;
}

.maksimer-tooltip:hover .maksimer-tooltip-content {
	visibility: visible;
	opacity: 1;
}

.maksimer-volume-discounts {
	width: 100%;
	border-collapse: collapse;
}

.maksimer-volume-discounts tr {
	border-bottom: 1px solid #D6D6D6;
}

.maksimer-volume-discounts tr:last-child {
	border-bottom: none;
}

.maksimer-volume-discounts td {
	color: #000;
	font-family: Lato;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 18.2px */
	padding-block: 12px;
}

.maksimer-volume-discounts tr:first-of-type td {
	padding-block: 0 12px;
}

.maksimer-volume-discounts tr:last-of-type td {
	padding-block: 12px 0;
}

.maksimer-volume-discounts td:first-child {
	font-weight: 500;
}

.maksimer-volume-discounts td:last-child {
	color: #000;
	text-align: right;
	font-family: Lato;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%; /* 18.2px */
}
