/* Animations */

@-webkit-keyframes notification-off {
	90% {
		opacity: 1.0;
	}
	100% {
		opacity: 0.0;
	}
}

@keyframes notification-off {
	90% {
		opacity: 1.0;
	}
	100% {
		opacity: 0.0;
	}
}

@-webkit-keyframes loading {
	0% {
		-webkit-transform: rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateZ(360deg);
	}
}

@keyframes loading {
	0% {
		transform: rotateZ(0deg);
	}
	100% {
		transform: rotateZ(360deg);
	}
}

/* Fonts */

@font-face {
	font-family: 'Ridley Grotesk';
	font-display: swap;
	font-weight: 400;
	font-style: normal;
	src: url('../fonts/ridley_grotesk_regular.eot');
	src: url('../fonts/ridley_grotesk_regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/ridley_grotesk_regular.woff') format('woff'),
		url('../fonts/ridley_grotesk_regular.ttf') format('truetype'),
		url('../fonts/ridley_grotesk_regular.svg#RidleyGrotesk') format('svg');
}

@font-face {
	font-family: 'Ridley Grotesk';
	font-display: swap;
	font-weight: 700;
	font-style: normal;
	src: url('../fonts/ridley_grotesk_bold.eot');
	src: url('../fonts/ridley_grotesk_bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/ridley_grotesk_bold.woff') format('woff'),
		url('../fonts/ridley_grotesk_bold.ttf') format('truetype'),
		url('../fonts/ridley_grotesk_bold.svg#RidleyGrotesk') format('svg');
}

@font-face {
	font-family: 'Ridley Grotesk';
	font-display: swap;
	font-weight: 800;
	font-style: normal;
	src: url('../fonts/ridley_grotesk_extra_bold.eot');
	src: url('../fonts/ridley_grotesk_extra_bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/ridley_grotesk_extra_bold.woff') format('woff'),
		url('../fonts/ridley_grotesk_extra_bold.ttf') format('truetype'),
		url('../fonts/ridley_grotesk_extra_bold.svg#RidleyGrotesk') format('svg');
}
@font-face {
	font-family: 'ridley_groteskmedium';
	font-display: swap;
	src: url('../fonts/radomir_tinkov_-_ridleygrotesk-medium.woff2') format('woff2'),
			 url('../fonts/radomir_tinkov_-_ridleygrotesk-medium.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}
@font-face {
	font-family: 'ridley_groteskregular';
	font-display: swap;
	src: url('../fonts/radomir_tinkov_-_ridleygrotesk-regular.woff2') format('woff2'),
			 url('../fonts/radomir_tinkov_-_ridleygrotesk-regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}
/* Common */

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	height: 100%;
	overflow-y: scroll;
}

html.no-scroll {
	overflow: hidden;
}

body {
	background: #fff;
	position: relative;
	min-height: 100%;
	width: 100%;
	font-family: 'Ridley Grotesk', sans-serif;
	font-style: normal;
	font-size: 10px;
	line-height: 1.2em; /* 12px / 10px */
	font-weight: 400;
	color: #111;
}

.container {
	position: relative;
	min-width: 320px;
}

section {
	position: relative;
	width: 100%;
	padding: 52px 0;
}

.wrapper {
	width: 100%;
	padding: 0 32px;
}

*::selection {
	background-color: #ed3024;
	color: #fff;
}

*::-moz-selection {
	background-color: #ed3024;
	color: #fff;
}

*::-webkit-selection {
	background-color: #ed3024;
	color: #fff;
}

::-webkit-input-placeholder {
	color: #c1c1c1;
	opacity: 1.0;
}

:-moz-placeholder {
	color: #c1c1c1;
	opacity: 1.0;
}

::-moz-placeholder {
	color: #c1c1c1;
	opacity: 1.0;
}

:-ms-input-placeholder {
	color: #c1c1c1 !important;
	opacity: 1.0;
}

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
/* disabled because this breaks accessibility */
/*
	outline: none;
*/
}

a::-moz-focus-inner,
input::-moz-focus-inner,
select::-moz-focus-inner,
textarea::-moz-focus-inner,
button::-moz-focus-inner {
	border: 0;
}

input, select, textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	-webkit-border-radius: 0;
	border-radius: 0;
}

img {
	max-width: 100%;
	height: auto;
}

iframe { max-width: 100% }

.hidden {
	display: none !important;
	visibility: hidden;
	height: 0;
}

/* Fixes */

.clearfix:after {
	display: table;
	clear: both;
	content: '';
}

/* Text */

h1:first-child, .h1:first-child,
h2:first-child, .h2:first-child,
h3:first-child, .h3:first-child,
h4:first-child, .h4:first-child,
h5:first-child, .h5:first-child,
h6:first-child, .h6:first-child,
p:first-child, .p:first-child,
ul:first-child,
ol:first-child,
blockquote:first-child
pre:first-child {
	margin-top: 0;
}

h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child,
h6:last-child, .h6:last-child,
p:last-child, .p:last-child,
ul:last-child,
ol:last-child,
blockquote:last-child,
pre:last-child {
	margin-bottom: 0;
}

h1, .h1 {
	font-size: 2em; /* 20px / 10px */
	line-height: 1.2em; /* 24px / 20px */
	font-weight: 800;
	margin: 0.8em 0; /* 16px / 20px */
}

h2, .h2 {
	font-size: 2em; /* 20px / 10px */
	line-height: 1.2em; /* 24px / 20px */
	font-weight: 400;
	margin: 0.8em 0; /* 16px / 20px */
}

h3, .h3 {
	font-size: 1.6em; /* 16px / 10px */
	line-height: 1.25em; /* 20px / 16px */
	font-weight: 700;
	margin: 0.75em 0; /* 12px / 16px */
}

h4, .h4 {
	font-size: 1.6em; /* 16px / 10px */
	line-height: 1.25em; /* 20px / 16px */
	font-weight: 400;
	margin: 0.75em 0; /* 12px / 16px */
}

h5, .h5 {
	font-size: 1.4em; /* 14px / 10px */
	line-height: 1.142857143em; /* 16px / 14px */
	font-weight: 700;
	margin: 0.571428571em 0; /* 8px / 14px */
}

h6, .h6 {
	font-size: 1.4em; /* 14px / 10px */
	line-height: 1.142857143em; /* 16px / 14px */
	font-weight: 400;
	margin: 0.571428571em 0; /* 8px / 14px */
}

p, .p {
	margin: 0.8em 0; /* 8px / 10px */
}

ul {
	padding: 0 0 0 16px;
	margin: 0.8em 0; /* 8px / 10px */
}

ul > li {
	position: relative;
	list-style-type: none;
	margin-top: 0.8em; /* 8px / 10px */
}

ul > li:first-child {
	margin-top: 0;
}

li > ul > li:first-child {
	margin-top: 0.8em; /* 8px / 10px */
}

ul > li:before {
	position: absolute;
	display: block;
	width: 4px;
	height: 4px;
	top: 2px;
	left: -16px;
	content: '';
	border: 2px solid #a9a9a9;
}

ol {
	padding: 0 0 0 16px;
	margin: 0.8em 0; /* 8px / 10px */
}

ol > li {
	margin-top: 0.8em; /* 8px / 10px */
}

ol > li:first-child {
	margin-top: 0;
}

li > ol > li:first-child {
	margin-top: 0.8em; /* 8px / 10px */
}

blockquote {
	position: relative;
	font-size: 1.2em; /* 12px / 10px */
	line-height: 1.333333333em; /* 16px / 12px */
	color: #808080;
	padding-top: 16px;
	margin: 1.333333333em 0; /* 16px / 12px */
}

blockquote:before {
	background: #808080;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 80px;
	height: 2px;
	content: '';
}

pre {
	background: #e8e8e8;
	font-family: monospace;
	padding: 4px 8px;
	margin: 0.8em 0; /* 8px / 10px */
}

del {
	text-decoration: line-through;
}

small {
	font-size: 0.8em; /* 8px / 10px */
	line-height: inherit;
}

em {
	font-style: italic;
}

strong {
	font-weight: 700;
}

a {
	color: #ed3024;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

a:active {
	border-color: #ed3024;
}

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

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

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

.btn {
	background: transparent;
	display: inline-block;
	height: 32px;
	width: auto;
	max-width: 100%;
	font-weight: 700;
	line-height: 28px;
	color: #111;
	text-transform: uppercase;
	padding: 0 20px;
	border: 2px solid #111;
}

.btn:active {
	background: #333;
	color: #fff;
	border-color: #333;
}

.btn.bold {
	font-weight: 800;
}

.btn.white {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

.btn.white:active {
	background: #ed3024;
	color: #fff;
	border-color: #ed3024;
}

.btn.dark {
	background: #333;
	color: #fff;
	line-height: 32px;
	border: 0 none;
}

.btn.dark:active {
	background: #808080;
	color: #fff;
}

.btn.link {
	background: transparent;
	color: #a9a9a9;
	font-weight: 400;
	line-height: 32px;
	padding: 0;
	border: 0 none;
}

.btn.link:active {
	background: transparent;
	color: #333;
}

.load-more {
	background: #fff;
	display: block;
	width: 64px;
	height: 64px;
	text-transform: uppercase;
	font-weight: 800;
	line-height: 1.6em; /* 16px / 10px */
	text-align: center;
	color: #111;
	padding-top: 14px; /* -2px for visual alignment */
	border: 2px solid #111;
	margin: 0 auto;
}

.load-more:active {
	background: #333;
	color: #fff;
	border-color: #333;
}

/* Grid */

.row {
	margin: 0 -10px;
}

.row:after {
	display: table;
	clear: both;
	content: '';
}

.row > * {
	width: 100%;
	min-height: 1px;
	float: left;
	padding: 0 10px;
}

.row > *.divider {
	margin-top: 20px;
}

.row > *.divider:before {
	background: #e8e8e8;
	display: block;
	width: 100%;
	height: 1px;
	content: '';
	margin: 0 0 20px 0;
}

/* Forms */

form {
	position: relative;
	width: 100%;
}

form input,
form select,
form button {
	margin-top: 12px;
}

form *.no-margin {
	margin-top: 0;
}

form input[type=text],
form input[type=email],
form input[type=password],
select {
	display: block;
	height: 32px;
	width: 100%;
	font-size: 1em;
	line-height: 28px;
	font-weight: 700;
	padding: 0 12px;
	border: 2px solid #e8e8e8;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus {
	border-color: #a9a9a9;
}

form input[type=text].error,
form input[type=email].error,
form input[type=password].error,
select.error {
	border-color: #ed3024;
}

select {
	background: #fff url(../img/svg/icon_arrow_down_small_dark.svg) right 12px top 50% no-repeat;
	background-size: 10px auto;
}

form button,
form input[type=submit] {
	position: relative;
	background: #333;
	height: 32px;
	width: 100%;
	font-size: 1em;
	line-height: 32px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	padding: 0 12px;
	border: 0 none;
}

form button:active,
form input[type=submit]:active {
	background: #808080;
}

form button.short,
form input[type=submit].short {
	width: auto;
	padding: 0 20px;
}

form button.loading:after,
form input[type=submit].loading:after {
	position: absolute;
	display: block;
	width: 16px;
	height: 16px;
	top: 8px;
	right: 12px;
	pointer-events: none;
	content: '';
	border: 2px solid #fff;
	border-color: #fff #fff #fff transparent;
	border-radius: 50%;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-animation: loading 1s linear infinite;
	animation: loading 1s linear infinite;
}

form button.short.loading:after,
form input[type=submit].short.loading:after {
	right: -24px;
	border-color: #333 #333 #333 transparent;
}

form .buttons-inline {
	margin-top: 12px;
}

form .buttons-inline > * {
	display: inline-block;
	vertical-align: top;
	margin: 0 16px;
}

form .buttons-inline > *:first-child {
	margin-left: 0;
}

form .buttons-inline > *:last-child {
	margin-right: 0;
}

form .buttons-inline > span {
	line-height: 32px;
}

form label {
	display: block;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 24px;
}

form .notification {
	position: absolute;
	display: none;
	max-width: 100%;
	height: 32px;
	left: 0;
	top: -40px;
	z-index: 1;
	color: #fff;
	padding: 0 16px;
}

form .notification.visible {
	display: block;

	-webkit-animation: notification-off 4s linear;
	animation: notification-off 4s linear;
}

form .notification:after {
	position: absolute;
	display: block;
	width: 12px;
	height: 12px;
	left: 16px;
	bottom: -5px;
	z-index: 0;
	content: '';

	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

form .notification.error,
form .notification.error:after {
	background: #ed3024;
}

form .notification.success,
form .notification.success:after {
	background: #99dc21;
}

form .notification span {
	display: block;
	line-height: 32px;
	font-weight: 700;
	text-transform: uppercase;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

/* Header */

header#header {
	background: #ed3024;
	position: fixed;
	height: 40px;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 20;

	-webkit-transition: background 0.4s linear, top 0.3s ease-in-out;
	transition: background 0.4s linear, top 0.3s ease-in-out;
}

header#header.search-on {
	top: 40px;
}

header#header.light {
	background: rgba(255, 255, 255, 0.9);
}

header#header > .wrapper {
	height: 40px;
}

/* Header - Search */

div.search {
	background: #111;
	position: absolute;
	width: 100%;
	height: 40px;
	top: -40px;
	left: 0;
	padding: 8px 32px;
}

div.search form input[type=text] {
	background: #333;
	height: 24px;
	color: #fff;
	line-height: 24px;
	font-weight: 400;
	padding-right: 36px;
	border: 0 none;
	margin: 0;
}

div.search form button {
	background: url(../img/svg/icon_search_white.svg) center center no-repeat;
	background-size: auto 12px;
	position: absolute;
	width: 24px;
	height: 24px;
	top: 0;
	right: 0;
	padding: 0;
	margin: 0;
}

/* Header - Logo */

header#header .logo {
	position: relative;
	display: block;
	float: left;
	height: 40px;
	width: 24px;
	border: 0 none;
}

header#header .logo img {
	position: absolute;
	display: block;
	height: 24px;
	width: auto;
	max-width: none;
	top: 8px;
	left: 0;

	-webkit-transition: opacity 0.4s linear;
	transition: opacity 0.4s linear;
}

header#header .logo img.light,
header#header.light .logo img.dark {
	opacity: 0;
}

header#header .logo img.dark,
header#header.light .logo img.light {
	opacity: 1;
}

header#header .logo strong {
	display: none;
}

/* Header - Nav */

header#header nav#nav {
	position: absolute;
	height: 40px;
	width: auto;
	top: 0;
	right: 32px;
}

.trans-icon {
	display: none;
}

/* Header - Nav - Menu */

header#header nav#nav ul.menu {
	background: #111;
	position: fixed;
	width: calc(100% - 32px);
	height: 100%;
	top: 0;
	right: calc(-100% + 32px);
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 30;
	padding: 0;
	margin: 0;

	-webkit-transition: right 0.3s ease-in-out;
	transition: right 0.3s ease-in-out;
}

header#header nav#nav ul.menu.on {
	right: 0;
}

header#header nav#nav ul.menu > li {
	display: block;
	height: 60px;
	list-style-type: none;
	margin: 0;
}

header#header nav#nav ul.menu > li:before {
	content: none;
}

header#header nav#nav ul.menu > li.with-submenu {
	background: url(../img/svg/icon_arrow_right_small_white.svg) right 32px top 50% no-repeat;
	background-size: auto 10px;
}

header#header nav#nav ul.menu > li > a {
	position: relative;
	display: block;
	height: 60px;
	line-height: 60px;
	text-transform: uppercase;
	color: #fff;
	padding: 0 32px;
	border: 0 none;
}

header#header nav#nav ul.menu > li > a:active {
	color: #ed3024;
}

header#header nav#nav ul.menu > li > a:after {
	position: absolute;
	background: #191919;
	width: calc(100% - 32px);
	height: 1px;
	content: '';
	bottom: 0;
	left: 0;
}

header#header nav#nav ul.menu > li.selected > a,
header#header nav#nav ul.menu > li.current-menu-item > a,
header#header nav#nav ul.menu > li.current-menu-parent > a {
	color: #ed3024;
}

header#header nav#nav ul.menu > li.shop > a {
	font-weight: 700;
}

header#header nav#nav ul.menu > li > a.user {
	background: #191919 url(../img/svg/icon_user_white.svg) left 32px top 50% no-repeat;
	background-size: auto 16px;
	padding-left: 60px;
}

header#header nav#nav ul.menu > li a.location {
	background-position: left 32px top 50%;
	background-repeat: no-repeat;
	background-size: auto 12px;
	padding-left: 60px;
}

header#header nav#nav ul.menu > li a.location.ca,
header#header nav#nav ul.menu > li a.location.en_CA { background-image: url(../img/flags/flag_canada.png); }
header#header nav#nav ul.menu > li a.location.en,
header#header nav#nav ul.menu > li a.location.us,
header#header nav#nav ul.menu > li a.location.en_US { background-image: url(../img/flags/flag_united-states.png); }
header#header nav#nav ul.menu > li a.location.gb,
header#header nav#nav ul.menu > li a.location.en_UK,
header#header nav#nav ul.menu > li a.location.en_GB { background-image: url(../img/flags/flag_uk.png); }
header#header nav#nav ul.menu > li a.location.eu,
header#header nav#nav ul.menu > li a.location.en_EU { background-image: url(../img/flags/flag_eu.png); }
header#header nav#nav ul.menu > li a.location.zz,
header#header nav#nav ul.menu > li a.location.int_INT { background-image: url(../img/flags/flag_earth.png); }

/* Header - Nav - Sub menu */

header#header nav#nav div.sub-menu {
	background: #111;
	position: fixed;
	width: calc(100% - 32px);
	height: 100%;
	top: 0;
	right: calc(-100% + 32px);
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 30;
	padding: 0;

	-webkit-transition: right 0.3s ease-in-out;
	transition: right 0.3s ease-in-out;
}

header#header nav#nav div.sub-menu.on {
	right: 0;
}

header#header nav#nav div.sub-menu .wrapper {
	padding: 0;
}

header#header nav#nav div.sub-menu .title,
header#header nav#nav span.back-title {
	background: #191919 url(../img/svg/icon_arrow_left_small_white.svg) left 32px top 50% no-repeat;
	background-size: auto 10px;
	position: relative;
	display: block;
	height: 60px;
	line-height: 60px;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	padding: 0 32px 0 60px;
}

header#header nav#nav div.sub-menu .title:active {
	color: #ed3024;
}

header#header nav#nav div.sub-menu ul {
	padding: 0;
	margin: 0;
}

header#header nav#nav div.sub-menu ul > li {
	display: block;
	height: 60px;
	list-style-type: none;
	margin: 0;
}

header#header nav#nav div.sub-menu ul > li:before {
	content: none;
}

header#header nav#nav div.sub-menu ul > li > a {
	position: relative;
	display: block;
	height: 60px;
	line-height: 60px;
	text-transform: uppercase;
	color: #fff;
	padding: 0 32px;
	border: 0 none;
}

header#header nav#nav div.sub-menu ul > li > a:active {
	color: #ed3024;
}

header#header nav#nav div.sub-menu ul > li > a:after {
	position: absolute;
	background: #191919;
	width: calc(100% - 32px);
	height: 1px;
	content: '';
	bottom: 0;
	left: 0;
}

header#header nav#nav div.sub-menu ul > li.selected > a,
header#header nav#nav div.sub-menu ul > li.current-menu-item > a {
	color: #ed3024;
}

/* Header - Nav - Shop menu */

header#header nav#nav ul.shop-menu {
	float: left;
	height: 40px;
	padding: 0;
	margin: 0;
}

header#header nav#nav ul.shop-menu > li {
	position: relative;
	float: left;
	display: block;
	width: 40px;
	height: 40px;
	list-style-type: none;
	margin: 0;
}

header#header nav#nav ul.shop-menu > li:active {
	background-color: rgba(0, 0, 0, 0.1);
}

header#header nav#nav ul.shop-menu > li:first-child {
	margin-left: 0;
}

header#header nav#nav ul.shop-menu > li:before {
	content: none;
}

header#header nav#nav ul.shop-menu > li.cart {
	background-image: url(../img/svg/icon_basket_white.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 16px;
}

header#header nav#nav ul.shop-menu > li.user {
	display: none;
}

header#header nav#nav ul.shop-menu > li.search {
	background-image: url(../img/svg/icon_search_white.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 16px;
}

header#header nav#nav ul.shop-menu > li.location {
	display: none;
}

header#header nav#nav ul.shop-menu > li.toggle i {
	background: #fff;
	position: absolute;
	display: block;
	width: 20px;
	height: 2px;
	left: 10px;

	-webkit-transition: background 0.4s linear;
	transition: background 0.4s linear;
}

header#header.light nav#nav ul.shop-menu > li.toggle i {
	background: #111;
}

header#header nav#nav ul.shop-menu > li.toggle a {
	opacity: 1;
}

header#header nav#nav ul.shop-menu > li.toggle i:nth-child(1) {
	top: 12px;
}

header#header nav#nav ul.shop-menu > li.toggle i:nth-child(2) {
	top: 19px;
}

header#header nav#nav ul.shop-menu > li.toggle i:nth-child(3) {
	top: 26px;
}

header#header nav#nav ul.shop-menu > li > a {
	display: block;
	width: 40px;
	height: 40px;
	opacity: 0;
	border: 0 none;

	-webkit-transition: opacity 0.4s linear;
	transition: opacity 0.4s linear;
}

header#header.light nav#nav ul.shop-menu > li > a {
	opacity: 1;
}

header#header nav#nav ul.shop-menu > li.cart > a {
	background: url(../img/svg/icon_basket_dark.svg) center center no-repeat;
	/*background-size: auto 16px;*/
	background-size: auto 20px;
}

header#header nav#nav ul.shop-menu > li.search > a {
	background: url(../img/svg/icon_search_dark.svg) center center no-repeat;
	/*background-size: auto 16px;*/
	background-size: auto 20px;
}

/* Header - Fade */

header#header div.fade {
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	width: 100%;
	height: 100%;
	top: -100%;
	left: 0;
	z-index: 22;
	opacity: 0;
	cursor: pointer;

	-webkit-transition: opacity 0.3s ease-in-out, top 0s linear 0.3s;
	transition: opacity 0.3s ease-in-out, top 0s linear 0.3s;
}

header#header div.fade.on {
	top: 0;
	opacity: 1;

	-webkit-transition: opacity 0.3s ease-in-out, top 0s linear;
	transition: opacity 0.3s ease-in-out, top 0s linear;
}

/* Header - Nav - Sup menu */

.sub-menu > .wrapper > ul > li{
	position: static;
}

header#header nav#nav div.sub-menu .wrapper .wrap{
	position: relative;
	padding: 0 32px;
	max-width: 1504px;
	margin: 0 auto
}
header#header nav#nav div.sub-menu .sup-menu + div{
	display: none;
	text-align: right;
	background: #000;

	position: absolute;
	left: 0; right: 0;
}
header#header nav#nav div.sub-menu .sup-menu + div div::before{
	content: 'COUNTRIES';
	height: 44px;
	position: absolute;
	left: 32px;
	font-weight: 700;
	line-height: 44px;
	font-size: 0.625em;
	color: #fff;
}
header#header nav#nav div.sub-menu  .sup-menu + div li{
	float: none;
	display: inline-block;
}
header#header nav#nav div.sub-menu  .sup-menu.active{ color: #ed3024 }

/* Footer */

footer#footer {
	background: #111;
	padding: 20px 0;
}

footer#footer .top {
	margin-bottom: 20px;
}

footer#footer .top > div {
	margin-top: 20px;
}

footer#footer .top > div:first-child {
	margin-top: 0;
}

footer#footer .top .logo {
	display: block;
	float: left;
	border: 0 none;
}

footer#footer .top .logo img {
	display: block;
	height: 24px;
	width: auto;
}

footer#footer .top .title {
	display: block;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 12px;
}

footer#footer .top ul {
	padding: 0;
	margin: 0;
}

footer#footer .top ul > li {
	line-height: 2em; /* 20px / 10px */
	margin: 0;
}

footer#footer .top ul > li:before {
	content: none;
}

footer#footer .top ul > li a {
	color: #fff;
	border: 0 none;
}

footer#footer .top ul > li a:active {
	color: #ed3024;
}

footer#footer .top p {
	line-height: 2em; /* 20px / 10px */
	color: #fff;
}

footer#footer .top .support-centre,
footer#footer .top .support-email {
	height: 20px;
	line-height: 20px;
	padding-left: 32px;
	margin-top: 12px;
}

footer#footer .top .support-centre {
	background: url(../img/svg/icon_headphones_white.svg) center left no-repeat;
	background-size: 20px auto;
}

footer#footer .top .support-email {
	background: url(../img/svg/icon_email_white.svg) center left no-repeat;
	background-size: 20px auto;
}

footer#footer .top .support-centre a,
footer#footer .top .support-email a {
	color: #fff;
	border: 0 none;
}

footer#footer .top .support-centre a:active,
footer#footer .top .support-email a:active {
	color: #ed3024;
}

footer#footer .social {
	margin-bottom: 20px;
}

footer#footer .social > div {
	text-align: center;
	line-height: 0;
}

footer#footer .social a {
	position: relative;
	display: inline-block;
	width: auto;
	height: 16px;
	margin: 0 12px;
	border: 0 none;
}

footer#footer .social a img {
	height: 16px;
	opacity: 1;
	width: auto;
}

footer#footer .social a:active img {
	opacity: 0.7;
}

footer#footer .social a span {
	display: none;
}

footer#footer .bottom {
	position: relative;
	padding-top: 20px;
}

footer#footer .bottom:before {
	background: #333;
	display: block;
	position: absolute;
	width: calc(100% - 20px);
	height: 1px;
	top: 0;
	left: 10px;
	content: '';
}

footer#footer .bottom > div {
	text-align: center;
	margin-top: 20px;
}

footer#footer .bottom > div:first-child {
	margin-top: 0;
}

footer#footer .bottom p {
	line-height: 2em; /* 20px / 10px */
	color: #fff;
	margin: 0;
}

footer#footer .bottom ul.nav {
	padding: 0;
	margin: 0;
}

footer#footer .bottom ul.nav > li {
	display: inline-block;
	padding: 0 8px;
	margin: 0;
}

footer#footer .bottom ul.nav > li:after {
	background: #333;
	position: absolute;
	display: block;
	top: 1px;
	right: 0;
	height: 10px;
	width: 1px;
	content: '';
}

footer#footer .bottom ul.nav > li:before {
	content: none;
}

footer#footer .bottom ul.nav > li:first-child {
	padding-left: 0;
}

footer#footer .bottom ul.nav > li:last-child {
	padding-right: 0;
}

footer#footer .bottom ul.nav > li:last-child:after {
	content: none;
}

footer#footer .bottom ul.nav > li a {
	display: block;
	color: #fff;
	border: 0 none;
}

footer#footer .bottom ul.nav > li a:active {
	color: #ed3024;
}

footer#footer .bottom .partners p {
	display: inline-block;
}

footer#footer .bottom .partners a {
	display: inline-block;
	height: 16px;
	width: auto;
	vertical-align: middle;
	border: 0 none;
	margin-left: 12px;
}

footer#footer .bottom .partners a img {
	height: 16px;
	width: auto;
	opacity: 1;
}

footer#footer .bottom .partners a:active img {
	opacity: 0.7;
}

/* Sections */

/* Sections - Language */

section.language {
	padding: 40px 0;
}

section.language img.logo {
	display: block;
	width: auto;
	height: 24px;
	margin: 0 auto;
}

section.language h3 {
	text-transform: uppercase;
	text-align: center;
	margin: 16px 0 0 0;
}

section.language h3:before {
	background: #111;
	display: block;
	width: 24px;
	height: 2px;
	content: '';
	margin: 0 auto 16px auto;
}

section.language .continents {
	margin: 32px -32px 0 -32px;
}

section.language .continents > div {
	min-height: 64px;
	border-top: 1px solid #e8e8e8;
}

section.language .continents > div:last-child {
	border-bottom: 1px solid #e8e8e8;
}

section.language .continents > div .el {
	cursor: pointer;
	padding: 16px 32px;
}

section.language .continents > div .el .img {
	float: left;
	width: 32px;
	height: 32px;
}

section.language .continents > div .el .img svg {
	position: relative;
	max-width: 32px;
	max-height: 32px;
	top: 50%;
	left: 50%;

	fill-rule: evenodd;
	clip-rule: evenodd;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

section.language .continents > div .el span {
	display: block;
	float: left;
	font-size: 1.2em; /* 12px / 10px */
	line-height: 32px;
	text-transform: uppercase;
	margin-left: 16px;
}

section.language .continents > div .el:active span {
	color: #ed3024;
}

section.language .continents > div .countries {
	display: none;
}

section.language .continents > div.on .countries {
	display: block;
}

section.language .continents > div .countries > div {
	min-height: 64px;
	border-top: 1px solid #e8e8e8;
}

section.language .continents > div .countries > div > a,
section.language .continents > div .countries > div > span {
	position: relative;
	background-position: left 80px top 50%;
	background-repeat: no-repeat;
	background-size: auto 12px;
	display: block;
	font-size: 1.2em; /* 12px / 10px */
	line-height: 32px;
	color: #111;
	text-transform: uppercase;
	cursor: pointer;
	padding: 16px 32px 16px 112px;
	border: 0 none;
}

section.language .continents > div .countries > div > a:active,
section.language .continents > div .countries > div > span:active {
	color: #ed3024;
}

section.language .continents > div .countries > div.no-flag > a {
	padding-left: 80px;
}

section.language .continents > div .countries > div.at > a, section.language .continents > div .countries > div.at > span { background-image: url(../img/flags/flag_austria.png); }
section.language .continents > div .countries > div.be > a, section.language .continents > div .countries > div.be > span { background-image: url(../img/flags/flag_belgium.png); }
section.language .continents > div .countries > div.bg > a, section.language .continents > div .countries > div.bg > span { background-image: url(../img/flags/flag_bulgaria.png); }
section.language .continents > div .countries > div.ca > a, section.language .continents > div .countries > div.ca > span,
section.language .continents > div .countries > div.en_CA > a, section.language .continents > div .countries > div.en_CA > span { background-image: url(../img/flags/flag_canada.png); }
section.language .continents > div .countries > div.hr > a, section.language .continents > div .countries > div.hr > span { background-image: url(../img/flags/flag_croatia.png); }
section.language .continents > div .countries > div.cy > a, section.language .continents > div .countries > div.cy > span { background-image: url(../img/flags/flag_cyprus.png); }
section.language .continents > div .countries > div.cz > a, section.language .continents > div .countries > div.cz > span { background-image: url(../img/flags/flag_czech.png); }
section.language .continents > div .countries > div.dk > a, section.language .continents > div .countries > div.dk > span { background-image: url(../img/flags/flag_denmark.png); }
section.language .continents > div .countries > div.ee > a, section.language .continents > div .countries > div.ee > span { background-image: url(../img/flags/flag_estonia.png); }
section.language .continents > div .countries > div.fi > a, section.language .continents > div .countries > div.fi > span { background-image: url(../img/flags/flag_finland.png); }
section.language .continents > div .countries > div.fr > a, section.language .continents > div .countries > div.fr > span,
section.language .continents > div .countries > div.fr_FR > a, section.language .continents > div .countries > div.fr_FR > span { background-image: url(../img/flags/flag_france.png); }
section.language .continents > div .countries > div.de > a, section.language .continents > div .countries > div.de > span { background-image: url(../img/flags/flag_germany.png); }
section.language .continents > div .countries > div.gr > a, section.language .continents > div .countries > div.gr > span { background-image: url(../img/flags/flag_greece.png); }
section.language .continents > div .countries > div.hu > a, section.language .continents > div .countries > div.hu > span { background-image: url(../img/flags/flag_hungary.png); }
section.language .continents > div .countries > div.ie > a, section.language .continents > div .countries > div.ie > span { background-image: url(../img/flags/flag_ireland.png); }
section.language .continents > div .countries > div.it > a, section.language .continents > div .countries > div.it > span { background-image: url(../img/flags/flag_italy.png); }
section.language .continents > div .countries > div.lv > a, section.language .continents > div .countries > div.lv > span { background-image: url(../img/flags/flag_latvia.png); }
section.language .continents > div .countries > div.lt > a, section.language .continents > div .countries > div.lt > span { background-image: url(../img/flags/flag_lithuania.png); }
section.language .continents > div .countries > div.lu > a, section.language .continents > div .countries > div.lu > span { background-image: url(../img/flags/flag_luxembourg.png); }
section.language .continents > div .countries > div.mt > a, section.language .continents > div .countries > div.mt > span { background-image: url(../img/flags/flag_malta.png); }
section.language .continents > div .countries > div.nl > a, section.language .continents > div .countries > div.nl > span { background-image: url(../img/flags/flag_netherlands.png); }
section.language .continents > div .countries > div.pl > a, section.language .continents > div .countries > div.pl > span { background-image: url(../img/flags/flag_poland.png); }
section.language .continents > div .countries > div.pt > a, section.language .continents > div .countries > div.pt > span { background-image: url(../img/flags/flag_portugal.png); }
section.language .continents > div .countries > div.ro > a, section.language .continents > div .countries > div.ro > span { background-image: url(../img/flags/flag_romania.png); }
section.language .continents > div .countries > div.sk > a, section.language .continents > div .countries > div.sk > span { background-image: url(../img/flags/flag_slovak-republic.png); }
section.language .continents > div .countries > div.si > a, section.language .continents > div .countries > div.si > span { background-image: url(../img/flags/flag_slovenia.png); }
section.language .continents > div .countries > div.es > a, section.language .continents > div .countries > div.es > span { background-image: url(../img/flags/flag_spain.png); }
section.language .continents > div .countries > div.se > a, section.language .continents > div .countries > div.se > span { background-image: url(../img/flags/flag_sweden.png); }
section.language .continents > div .countries > div.en > a, section.language .continents > div .countries > div.en > span,
section.language .continents > div .countries > div.us > a, section.language .continents > div .countries > div.us > span,
section.language .continents > div .countries > div.en_US > a, section.language .continents > div .countries > div.en_US > span { background-image: url(../img/flags/flag_united-states.png); }
section.language .continents > div .countries > div.uk > a, section.language .continents > div .countries > div.uk > span,
section.language .continents > div .countries > div.en_UK > a, section.language .continents > div .countries > div.en_UK > span { background-image: url(../img/flags/flag_uk.png); }
section.language .continents > div .countries > div.eu > a, section.language .continents > div .countries > div.eu > span,
section.language .continents > div .countries > div.en_EU > a, section.language .continents > div .countries > div.en_EU > span { background-image: url(../img/flags/flag_eu.png); }
section.language .continents > div .countries > div.int > a, section.language .continents > div .countries > div.int > span,
section.language .continents > div .countries > div.int_INT > a, section.language .continents > div .countries > div.int_INT > span { background-image: url(../img/flags/flag_earth.png); }

section.language .continents > div .countries > div > span:after {
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	top: 27px;
	right: 32px;
	background: url(../img/svg/icon_arrow_right_small_dark.svg) center center no-repeat;
	background-size: auto 10px;
	content: '';
}

section.language .continents > div .countries > div > ul {
	display: none;
	background: #f8f8f8;
	padding: 0;
	border-top: 1px solid #e8e8e8;
	margin: 0;
}

section.language .continents > div .countries > div.on > ul {
	display: block;
}

section.language .continents > div .countries > div > ul > li {
	margin: 0;
}

section.language .continents > div .countries > div > ul > li:before {
	content: none;
}

section.language .continents > div .countries > div > ul > li a {
	background: url(../img/svg/icon_arrow_right_small_dark.svg) left 112px top 50% no-repeat;
	background-size: auto 10px;
	display: block;
	font-size: 1.2em; /* 12px / 10px */
	line-height: 28px;
	color: #111;
	padding: 12px 32px 12px 128px;
	border: 0 none;
}

section.language .continents > div .countries > div > ul > li a:active {
	color: #ed3024;
}

/* Sections - Slider wrap */

div#slider-wrap {
	width: 100%;
}

div#slider-wrap #slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

div#slider-wrap #slider .slide {
	width: 100%;
}

div#slider-wrap #slider #prevbutton,
div#slider-wrap #slider #nextbutton {
	background-size: auto 32px;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	display: block;
	height: 72px;
	width: 72px;
	bottom: 0;
	z-index: 3;
	overflow: hidden;
	opacity: 0.8;
	text-indent: -999px;
	border: 0;
	outline: none;
}

div#slider-wrap #slider #prevbutton:active,
div#slider-wrap #slider #nextbutton:active {
	opacity:1;
}

div#slider-wrap #slider #prevbutton {
	background-image: url(../img/svg/icon_arrow_left_big_white.svg);
	left: 0;
}

div#slider-wrap #slider #nextbutton {
	background-image: url(../img/svg/icon_arrow_right_big_white.svg);
	right: 0;
}

div#slider-wrap .sli-links {
	display:none;
}

/* Sections - Promo */

section.promo {
	background-position:  center center;
	background-repeat:  no-repeat;
	background-size: cover;
	color: #fff;
	padding: 116px 0 76px 0;
}

/* Sections - Products short */

section.products-short {
	padding: 0;
}

section.products-short .wrapper {
	padding: 0;
}

section.products-short .list {
	margin: 0;
}

section.products-short .list > a {
	position: relative;
	display: block;
	height: 156px;
	padding: 0;
	border: 0 none;
}

section.products-short .list > a > span {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	width: 33.333333333%;
	height: 100%;
}

section.products-short .list > a > span strong {
	position: absolute;
	display: block;
	width: 100%;
	top: 50%;
	left: 0;
	color: #fff;
	padding: 0 32px 0 calc(33.333333333% + 32px);

	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

section.products-short .list > a:active > span strong {
	color: #dcdcdc;
}

section.products-short .list > a > span strong span {
	position: relative;
	display: block;
}

section.products-short .list > a > span strong .h1:after {
	position: absolute;
	background: #fff;
	width: 64px;
	height: 2px;
	bottom: -9px;
	left: 0;
	content: '';
}

section.products-short .list > a:active > span strong .h1:after {
	background: #dcdcdc;
}

section.products-short .list > a > span strong .p {
	font-weight: 400;
}

/* Sections - Blog dealer */

section.blog-dealer .col-4-12 {
	text-align: center;
}

section.blog-dealer .row > div:nth-child(1) {
	margin-bottom: 52px;
}

section.blog-dealer .row > div:nth-child(2) {
	display: none;
}

section.blog-dealer strong {
	display: block;
	font-size: 2.4em; /* 24px / 10px */
	line-height: 1.166666667em; /* 28px / 24px */
	color: #909090;
	text-transform: uppercase;
}

section.blog-dealer .icon {
	position: relative;
	min-height: 20px;
	margin: 12px 0;
}

section.blog-dealer .icon img {
	width: auto;
	height: 20px;
}

section.blog-dealer .icon p {
	margin: 0;
}

section.blog-dealer .btn {
	text-align: center;
}

/* Sections - Promo img */

section.promo-img .bg {
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
section.promo-img .bg:after {
	background: rgba(236, 48, 36, 0.5);
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: '';
}

section.promo-img .img {
	display: none;
}

section.promo-img .content {
	text-align: center;
}

body:not(.page-template-home-page) section.promo-img .content {
	max-width: 344px;
}

section.promo-img .rate {
	margin: 12px 0;
}

section.promo-img .rate > div {
	display: block;
	background: #ed3024;
	color: #fff;
	text-align: center;
	padding: 16px 52px;
}

section.promo-img .rate h3 {
	margin-bottom: 0.5em; /* 8px / 16px */
}

section.promo-img .rate .stars {
	height: 16px;
}

section.promo-img .rate .stars i,
section.promo-img .rate .stars span {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 16px;
	width: 16px;
	margin: 0 2px;
}

section.promo-img .rate .stars i {
	background-image: url(../img/svg/icon_star_white.svg);
}

section.promo-img .rate .stars i.half {
	background-image: url(../img/svg/icon_star_white_dark.svg);
}

section.promo-img .rate .stars span {
	background-image: url(../img/svg/icon_star_dark.svg);
}

/* Sections - Promo img - Styles */

/* Sections - Support */

section.support {
	background: #111;
	overflow: hidden;
	text-align: center;
}

section.support a {
	background: url(../img/bg_13.jpg) center center no-repeat;
	background-size: cover;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	border: 0 none;

	-webkit-transition: transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out;
}

section.support:active a {
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

section.support .arrow {
	background: url(../img/svg/icon_arrow_right_big_white.svg) center center no-repeat;
	background-size: auto 12px;
	position: relative;
	display: inline-block;
	width: 28px;
	height: 28px;
	vertical-align: middle;
	pointer-events: none;
	border: 2px solid #fff;
}

section.support .text {
	position: relative;
	display: inline-block;
/*	z-index: 2; */
	color: #fff;
	text-align: left;
	vertical-align: middle;
	pointer-events: none;
	margin-left: 16px;
}

/* Sections - Newsletter */
section.newsletter {
	text-align: center;
}

section.newsletter h4 {
	margin: 0;
}

section.newsletter form button,
section.newsletter form input[type=submit] {
	background: #ed3024 url(../img/svg/icon_email_white.svg) left 12px top 50% no-repeat;
	background-size: auto 16px;
	text-align: left;
	padding-left: 48px;
	margin-top: 12px;
}

section.newsletter form button:active,
section.newsletter form input[type=submit]:active {
	background-color: #a9a9a9;
}

section.newsletter form .notification {
	top: -28px;
}

/* Sections - Newsletter1 */
section.newsletter1 {
	text-align: center;
}

section.newsletter1 h4 {
	margin: 0;
}

section.newsletter1 form button,
section.newsletter1 form input[type=submit] {
	background: #ed3024 url(../img/svg/icon_email_white.svg) left 12px top 50% no-repeat;
	background-size: auto 16px;
	text-align: left;
	padding-left: 48px;
	margin-top: 12px;
}

section.newsletter1 form button:active,
section.newsletter1 form input[type=submit]:active {
	background-color: #a9a9a9;
}

section.newsletter1 form .notification {
	top: -28px;
}

/* Sections - Title header */

section.title-header {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 116px 0 76px 0;
}

section.title-header:after {
	background: rgba(25, 25, 25, 0.5);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	content: '';
}

section.title-header h1 {
	position: relative;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	z-index: 2;
}

/* Sections - Vertical nav */

section.vertical-nav {
	/* height: 41px; */
	padding: 0;
	border-bottom: 1px solid #e8e8e8;
}

section.vertical-nav .wrapper {
	padding: 0;
}

section.vertical-nav .scrollable {
	/*
	height: 40px;
	overflow-x: auto;
	white-space: nowrap;
	*/
	padding: 8px 0;
}

section.vertical-nav .scrollable a {
	display: inline-block;
	height: 44px;
	color: #111;
	line-height: 40px;
	text-transform: uppercase;
	vertical-align: top;
	padding: 0 8px;
	border: 2px solid transparent;
	margin: 0 16px;

	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

section.vertical-nav .scrollable a:active {
	color: #a9a9a9;
}

section.vertical-nav .scrollable a.selected {
	font-weight: 700;
	border-color: #111;
}

section.vertical-nav .scrollable a.selected:active {
	color: #111;
}

/* Section - Downloads */

section.downloads .list {
	margin-top: -52px;
}

section.downloads .list > div {
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 20px 16px;
	margin-top: 52px;
}

section.downloads .list > div.hidden {
	display: none;
}

section.downloads .list > div:after {
	background: rgba(17, 17, 17, 0.7);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	content: '';
}

section.downloads .list > div * {
	position: relative;
	color: #fff;
	z-index: 2;
}

section.downloads .list > div h3 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

section.downloads .list > div h3:after {
	background: #fff;
	display: block;
	width: 60px;
	height: 2px;
	content: '';
	margin-top: 12px;
}

section.downloads .list > div a {
	position: relative;
	display: block;
	text-transform: uppercase;
	padding-left: 24px;
	border: 0 none;
	margin-top: 16px;
}

section.downloads .list > div a:active {
	color: #ed3024;
}

section.downloads .list > div a:before {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 10px;
	position: absolute;
	width: 12px;
	height: 12px;
	top: 0;
	left: 0;
	content: '';
}

section.downloads .list > div a.data-sheet:before {
	background-image: url(../img/svg/icon_download_white.svg);
}

section.downloads .list > div a.manuals:before {
	background-image: url(../img/svg/icon_file_white.svg);
}

section.downloads .list > div a.drivers:before {
	background-image: url(../img/svg/icon_gear_white.svg);
}

section.downloads .list > div a:after {
	background: url(../img/svg/icon_arrow_right_small_white.svg) center center no-repeat;
	background-size: auto 10px;
	position: absolute;
	width: 10px;
	height: 10px;
	top: 1px;
	right: 0;
	content: '';
}

section.downloads .load-more {
	margin-top: 52px;
}

section.downloads .load-more.hidden {
	display: none;
}

/* Sections - Simple text */

section.simple-text .facts {
	margin-top: 12px;
}

section.simple-text .facts > div {
	margin-top: 28px;
}

section.simple-text .facts > div span {
	display: block;
	text-transform: uppercase;
}

section.simple-text .facts > div strong {
	display: block;
	font-size: 2em; /* 20px / 10px */
	line-height: 1.2em; /* 24px / 20px */
	font-weight: 400;
	margin-top: 0.2em; /* 4px / 20px */
}

/* Sections - Brand */

section.brand .img {
	padding: 20px 0;
	border: 1px solid #e8e8e8;
	border-width: 1px 0;
	margin: 20px 0;
}

section.brand .img:first-child {
	margin-top: 0;
}

section.brand .img img {
	display: block;
	margin: 0 auto;
}

section.brand .background {
	position: relative;
	background: url(../img/bg_4.jpg) center center no-repeat;
	background-size: cover;
	height: 160px;
	margin-bottom: 20px;
}

section.brand .background img {
	position: absolute;
	background: #fff;
	top: 50%;
	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

section.brand a.arrow {
	background: url(../img/svg/icon_arrow_right_small_dark.svg) right 4px top 50% no-repeat;
	background-size: auto 10px;
	color: #111;
	text-transform: uppercase;
	font-weight: 700;
	padding-right: 20px;
	border: 0 none;
}

section.brand a.arrow:active {
	background-position: right 0 top 50%;
}

/* Sections - Brand logo colours */

section.brand-logo-colours {
	text-align: center;
}

section.brand-logo-colours .switch {
	position: relative;
	height: 104px;
	margin-top: 20px;
}

section.brand-logo-colours .switch div {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	cursor: pointer;
	padding: 40px 0;

	-webkit-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

section.brand-logo-colours .switch div.selected {
	opacity: 1;
}

section.brand-logo-colours .switch div.white {
	background-color: #fff;
}

section.brand-logo-colours .switch div.red {
	background-color: #ed3024;
}

section.brand-logo-colours .switch div.black {
	background-color: #111;
}

section.brand-logo-colours .switch div img {
	display: block;
	width: auto;
	height: 24px;
	margin: 0 auto;
}

/* Sections - Brand colour usage */

section.brand-colour-usage .logo-white-wide,
section.brand-colour-usage .logo-red-wide {
	position: relative;
	height: 160px;
	margin-top: 20px;
}

section.brand-colour-usage .logo-white-wide {
	background: #fff;
}

section.brand-colour-usage .logo-red-wide {
	background: #ed3024;
}

section.brand-colour-usage .logo-white-wide img,
section.brand-colour-usage .logo-red-wide img {
	position: absolute;
	top: 50%;
	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

section.brand-colour-usage p.desc {
	text-transform: uppercase;
}

section.brand-colour-usage .logo-black-tall,
section.brand-colour-usage .logo-red-tall {
	position: relative;
	height: 160px;
	margin-bottom: 20px;
}

section.brand-colour-usage .logo-black-tall {
	background: #111;
}

section.brand-colour-usage .logo-red-tall {
	background: #ed3024;
}

section.brand-colour-usage .logo-black-tall img,
section.brand-colour-usage .logo-red-tall img {
	position: absolute;
	top: 50%;
	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/* Sections - Brand palette */

section.brand-palette .colour {
	margin-top: 20px;
}

section.brand-palette .colour > div {
	position: relative;
	width: 180px;
	height: 180px;
}

section.brand-palette .colour > div img {
	position: absolute;
	top: 50%;
	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

section.brand-palette .colour > table {
	width: 200px;
	margin-top: 12px;
}

section.brand-palette .colour > table tr > td {
	line-height: 1.6em; /* 16px / 10px */
	vertical-align: top;
	padding: 0;
}

section.brand-palette .colour > table tr > td:nth-child(1),
section.brand-palette .colour > table tr > td:nth-child(3) {
	width: 24px;
	font-weight: 700;
}

section.brand-palette .colour table + p:before {
	background: #111;
	display: block;
	width: 112px;
	height: 2px;
	content: '';
	margin-bottom: 8px;
}

/* Sections - Press releases */

section.press-releases .top {
	height: 20px;
	margin-bottom: 12px;
}

section.press-releases .top h3 {
	float: left;
	text-transform: uppercase;
	margin: 0;
}

section.press-releases .top .sort {
	float: right;
}

section.press-releases .top .sort a {
	position: relative;
	display: block;
	line-height: 2em;
	color: #a9a9a9;
	padding-right: 20px;
	border-bottom: 0 none;
}

section.press-releases .top .sort a:after {
	position: absolute;
	background: url(../img/svg/icon_arrow_up_small_gray.svg) center center no-repeat;
	background-size: 10px auto;
	width: 10px;
	height: 10px;
	top: 5px;
	right: 0;
	content: '';

	-webkit-transition: transform 0.2s linear;
	transition: transform 0.2s linear;
}

section.press-releases .top .sort a.asc:after {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

section.press-releases .top .sort a.desc:after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

section.press-releases .list a {
	display: block;
	padding: 16px 0;
	border-bottom: 1px solid #e8e8e8;
}

section.press-releases .list a:active {
	border-bottom-color: #a9a9a9;
}

section.press-releases .list a span {
	display: block;
	font-weight: 700;
	font-size: 1.2em; /* 12px / 10px */
	line-height: 1.333333333em; /* 16px / 12px */
	color: #111;
}

section.press-releases .list a time {
	display: block;
	color: #808080;
	margin-top: 4px;
}

section.press-releases .load-more {
	margin-top: 52px;
}

/* Sections - Article */

section.article {
	padding-top: 92px;
}

/* Sections - Article - Article */

section.article article header {
	position: relative;
}

section.article article header time {
	display: block;
	color: #a9a9a9;
}

section.article article header nav {
	position: absolute;
	top: 0;
	right: 0;
}

section.article article header nav a {
	background: url(../img/svg/icon_arrow_right_small_gray.svg) right 4px top 50% no-repeat;
	background-size: auto 10px;
	color: #a9a9a9;
	text-transform: uppercase;
	font-weight: 700;
	padding-right: 20px;
	border: 0 none;
}

section.article article header nav a:active {
	background-position: right 0 top 50%;
}

section.article article header .social {
	padding-top: 12px;
	border-top: 1px solid #e8e8e8;
	margin-top: 16px;
}

section.article article header .social > * {
	float: left;
}

section.article article header .social span {
	display: block;
	line-height: 16px;
	color: #a9a9a9;
	font-weight: 700;
}

section.article article header .social a {
	display: block;
	width: auto;
	height: 16px;
	opacity: 1;
	border: 0 none;
	margin-left: 16px;
}

section.article article header .social a:active {
	opacity: 0.7;
}

section.article article header .social a img {
	height: 16px;
	width: auto;
}

section.article article .body {
	margin-top: 16px;
}

section.article article .body img {
	display: block;
	margin: 0.8em 0; /* 8px / 10px */
}

section.article article .body img:first-child {
	margin-top: 0;
}

section.article article .body img:last-child {
	margin-bottom: 0;
}

section.article article footer {
	margin-top: 20px;
}

section.article article footer .social {
	padding: 12px 0;
	border: 1px solid #e8e8e8;
	border-width: 1px 0;
}

section.article article footer .social > * {
	float: left;
}

section.article article footer .social span {
	display: block;
	line-height: 16px;
	color: #a9a9a9;
	font-weight: 700;
}

section.article article footer .social a {
	display: block;
	width: auto;
	height: 16px;
	opacity: 1;
	border: 0 none;
	margin-left: 16px;
}

section.article article footer .social a:active {
	opacity: 0.7;
}

section.article article footer .social a img {
	height: 16px;
	width: auto;
}

section.article article footer nav {
	margin-top: 12px;
}

section.article article footer nav a {
	background-size: auto 10px;
	color: #a9a9a9;
	text-transform: uppercase;
	font-weight: 700;
	border: 0 none;
}

section.article article footer nav a[rel='prev'] {
	float: left;
	background: url(../img/svg/icon_arrow_left_small_gray.svg) left 4px top 50% no-repeat;
	background-size: auto 10px;
	padding-left: 20px;
}

section.article article footer nav a[rel='prev']:active {
	background-position: left 0 top 50%;
}

section.article article footer nav a[rel='next'] {
	float: right;
	background: url(../img/svg/icon_arrow_right_small_gray.svg) right 4px top 50% no-repeat;
	background-size: auto 10px;
	padding-right: 20px;
}

section.article article footer nav a[rel='next']:active {
	background-position: right 0 top 50%;
}

/* Sections - Article - Related articles */

section.article div.related-articles {
	margin-top: 52px;
}

section.article div.related-articles h3 {
	text-transform: uppercase;
}

section.article div.related-articles .list a {
	display: block;
	padding: 16px 0;
	border-bottom: 1px solid #e8e8e8;
}

section.article div.related-articles .list a:active {
	border-bottom-color: #a9a9a9;
}

section.article div.related-articles .list a span {
	display: block;
	font-weight: 700;
	font-size: 1.2em; /* 12px / 10px */
	line-height: 1.333333333em; /* 16px / 12px */
	color: #111;
}

section.article div.related-articles .list a time {
	display: block;
	color: #a9a9a9;
	text-transform: uppercase;
	margin-top: 4px;
}

/* Sections - Aside sidebar */

aside.sidebar {
	margin-top: 52px;
}

aside.sidebar > div {
	padding-top: 36px;
	border-top: 1px solid #e8e8e8;
	margin-top: 36px;
}

aside.sidebar > div:first-child {
	padding-top: 0;
	border-top: 0 none;
	margin-top: 0;
}

aside.sidebar > div .more {
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	color: #111;
	border: 0 none;
	margin-top: 36px;
}

aside.sidebar > div .more:active {
	color: #ed3024;
}

/* Latest News widget */
.sidebar .featured ul {
	list-style-type: none;
	padding: 0;
}
.sidebar .featured li:before {
	content: none;
}
.sidebar .featured li {
	display: flex;
	flex-direction: column-reverse;
}
.sidebar .featured li a {
	font-weight: bold;
}
.sidebar .featured .post-date {
	color: #777;
	font-size: 75%;
}
/* end Latest News widget */


aside.sidebar .tabs nav {
	height: 32px;
}

aside.sidebar .tabs nav > a {
	background-color: #fff;
	background-position: left 8px center;
	background-repeat: no-repeat;
	background-size: auto 16px;
	display: block;
	float: left;
	height: 32px;
	width: 50%;
	color: #111;
	font-size: 1.6em; /* 16px / 10px */
	line-height: 32px;
	padding-left: 40px;
	border: 0 none;

	-webkit-transition: background 0.2s ease-in-out;
	transition: background 0.2s ease-in-out;
}

aside.sidebar .tabs nav > a.recent {
	background-image: url(../img/svg/icon_hamburger_small_dark.svg);
}

aside.sidebar .tabs nav > a.popular {
	background-image: url(../img/svg/icon_popular_small_dark.svg);
}

aside.sidebar .tabs nav > a.year {
	background-image: url(../img/svg/icon_calendar_small_dark.svg);
}

aside.sidebar .tabs nav > a.month {
	background-image: url(../img/svg/icon_clock_small_dark.svg);
}

aside.sidebar .tabs nav > a.selected {
	background-color: #f8f8f8;
	font-weight: 700;
}

aside.sidebar .tabs div {
	display: none;
	margin-top: 32px;
}

aside.sidebar .tabs div.selected {
	display: block;
}

aside.sidebar .tabs div a {
	display: block;
	color: #111;
	font-size: 1.2em; /* 12px / 10px */
	line-height: 1.333333333em; /* 16px / 12px */
	padding: 0 8px;
	border: 0 none;
	margin-top: 8px;
}

aside.sidebar .tabs div a:active {
	color: #ed3024;
}

aside.sidebar .tabs div a:first-child {
	margin-top: 0;
}

aside.sidebar .tabs div a i {
	color: #808080;
	font-style: normal;
}

aside.sidebar .tabs div ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

aside.sidebar .tabs div ul > li {
	color: #808080;
	font-size: 1.2em; /* 12px / 10px */
	line-height: 1.333333333em; /* 16px / 12px */
	margin-top: 8px;
}

aside.sidebar .tabs div ul > li:first-child {
	margin-top: 0;
}

aside.sidebar .tabs div ul > li:before {
	content: none;
}

aside.sidebar .tabs div ul > li a {
	display: inline;
	color: #111;
	font-size: inherit;
	line-height: inherit;
	padding: 0;
	margin: 0;
}

/* Sections - Articles */

section.articles {
	padding-top: 92px;
}

section.articles .list article {
	padding-top: 24px;
	border-top: 1px solid #e8e8e8;
	margin-top: 24px;
}

section.articles .list article:first-child {
	padding-top: 0;
	border-top: 0 none;
	margin-top: 0;
}

section.articles .list article header time {
	display: block;
	color: #a9a9a9;
	margin-bottom: -8px;
}

section.articles .list article header a {
	color: #111;
}

section.articles .list article header a:active {
	border-bottom-color: #111;
}

section.articles .list article .body {
	margin-top: 16px;
}

section.articles .list article .body img {
	display: block;
	margin: 0.8em 0; /* 8px / 10px */
}

section.articles .list article .body img:first-child {
	margin-top: 0;
}

section.articles .list article .body img:last-child {
	margin-bottom: 0;
}

section.articles .list article .body .more {
	background: url(../img/svg/icon_arrow_right_small_dark.svg) right 4px top 50% no-repeat;
	background-size: auto 10px;
	text-transform: uppercase;
	font-weight: 700;
	color: #111;
	padding-right: 20px;
	border: 0 none;
}

section.articles .list article .body .more:active {
	background-position: right 0 top 50%;
}

section.articles .list article footer {
	margin-top: 20px;
}

section.articles .list article footer .social {
	height: 16px;
}

section.articles .list article footer .social > * {
	float: left;
}

section.articles .list article footer .social span {
	display: block;
	line-height: 16px;
	color: #a9a9a9;
	font-weight: 700;
}

section.articles .list article footer .social a {
	display: block;
	width: auto;
	height: 16px;
	opacity: 1;
	border: 0 none;
	margin-left: 16px;
}

section.articles .list article footer .social a:active {
	opacity: 0.7;
}

section.articles .list article footer .social a img {
	height: 16px;
	width: auto;
}

section.articles .list .load-more {
	margin-top: 52px;
}

section.articles .list .posts-navigation {
	padding-top: 24px;
}

section.articles .list .posts-navigation:after {
	display: table;
	content: '';
	clear: both;
}

section.articles .list .posts-navigation h2 {
	display: none;
}

section.articles .list .posts-navigation a {
	font-weight: 700;
	color: #a9a9a9;
	text-transform: uppercase;
	border: 0 none;
}

section.articles .list .posts-navigation .nav-previous a {
	background: url(../img/svg/icon_arrow_left_small_gray.svg) left 4px top 50% no-repeat;
	background-size: auto 10px;
	float: left;
	padding-left: 20px;
}

section.articles .list .posts-navigation .nav-previous a:active {
	background-position: left 0 top 50%;
}

section.articles .list .posts-navigation .nav-next a {
	background: url(../img/svg/icon_arrow_right_small_gray.svg) right 4px top 50% no-repeat;
	background-size: auto 10px;
	float: right;
	padding-right: 20px;
}

section.articles .list .posts-navigation .nav-next a:active {
	background-position: right 0 top 50%;
}

/* Sections - Error */

section.error {
	padding-top: 92px;
}

/* Sections - About text */

section.about-text {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 76px 0 76px 0;
}

section.about-text:first-child {
	padding: 116px 0 76px 0;
}

section.about-text:after {
	background: rgba(25, 25, 25, 0.5);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	content: '';
}

section.about-text p,
section.about-text h6,
section.about-text h5,
section.about-text h4,
section.about-text h3,
section.about-text h2,
section.about-text h1 {
	position: relative;
	color: #fff;
	z-index: 2;
}

section.about-text .next {
	position: relative;
	margin-top: 24px;
	z-index: 2;
}

section.about-text .next span {
	display: block;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}

section.about-text .next a {
	background: transparent url(../img/svg/icon_arrow_down_small_white.svg) center center no-repeat;
	background-size: 12px auto;
	display: block;
	width: 24px;
	height: 24px;
	border: 2px solid #fff;
	margin: 8px auto 0 auto;
}

section.about-text .next a:active {
	background-color: rgba(255, 255, 255, 0.5);
}

/* Sections - About values */

section.about-values {
	background: #191919;
	padding: 0;
}

section.about-values .list {
	margin: 0 -32px;
}

section.about-values .list > div {
	padding: 0;
}

section.about-values .list > div .title {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	height: 120px;
	cursor: pointer;
}

section.about-values .list > div .title:after {
	background: rgba(25, 25, 25, 0.5);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	content: '';
}

section.about-values .list > div .title h2 {
	position: relative;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	line-height: 120px;
	z-index: 2;
}

section.about-values .list > div .body {
	display: none;
	color: #fff;
	padding: 24px 32px;
}

section.about-values .list > div.on .body {
	display: block;
}

section.about-values .list > div .body .close {
	display: none;
}

section.about-values .list > div .body .img {
	display: none;
}

section.about-values .list > div .body .con-2 {
	margin-top: 0.8em; /* 8px / 10px */
}

section.about-values .next {
	display: none;
}

/* Sections - About timeline */

section.about-timeline .list .line {
	padding-top: 24px;
	border-top: 1px solid #e8e8e8;
	margin-top: 24px;
}

section.about-timeline .list .line.hidden {
	display: none;
}

section.about-timeline .list .line:first-child {
	padding-top: 0;
	border-top: 0 none;
	margin-top: 0;
}

section.about-timeline .list .line > div {
	float: left;
	width: 50%;
	margin-top: 24px;
}

section.about-timeline .list .line > div:nth-child(2n+2) {
	clear: left;
	padding-right: 10px;
}

section.about-timeline .list .line > div:nth-child(2n+3) {
	padding-left: 10px;
}

section.about-timeline .list .line > div:first-child {
	width: 100%;
	padding-bottom: 24px;
	border-bottom: 1px solid #e8e8e8;
	margin-top: 0;
}

section.about-timeline .list .line > div strong {
	display: block;
	font-size: 2em; /* 20px / 10px */
	line-height: 1.2em; /* 24px / 20px */
	font-weight: 700;
	margin-bottom: 0.6em; /* 12px / 20px */
}

section.about-timeline .list .line > div:first-child strong {
	font-size: 2.4em; /* 24px / 10px */
	line-height: 1.166666667em; /* 28px / 24px */
	margin-bottom: 0.666666667em; /* 16px / 24px */
}

section.about-timeline .list .line > div strong:after {
	background: #111;
	display: block;
	width: 56px;
	height: 2px;
	content: '';
	margin-top: 0.6em; /* 12px / 20px */
}

section.about-timeline .list .line > div:first-child strong:after {
	width: 92px;
	margin-top: 0.666666667em; /* 16px / 24px */
}

section.about-timeline .list .line > div em {
	display: block;
	font-size: 1.4em; /* 14px / 10px */
	line-height: 1.142857143em; /* 16px / 14px */
	font-weight: 400;
	font-style: normal;
	margin: 0.571428571em 0; /* 8px / 14px */
}

section.about-timeline .list .line > div:first-child em {
	font-weight: 700;
}

section.about-timeline .load-more {
	margin-top: 52px;
}

section.about-timeline .load-more.hidden {
	display: none;
}

/* Sections - About share */

section.about-share {
	position: relative;
	background: url(../img/bg_1.jpg) center center no-repeat;
	background-size: cover;
	color: #fff;
}

section.about-share:after {
	background: rgba(25, 25, 25, 0.5);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	content: '';
}

section.about-share .row > div {
	position: relative;
	z-index: 2;
}

section.about-share .icon {
	position: relative;
	min-height: 24px;
	padding-left: 48px;
}

section.about-share .icon i {
	background: url(../img/icon_shareyourstory.png) center center no-repeat;
	background-size: 41px auto;
	position: absolute;
	width: 41px;
	height: 38px;
	top: -4px;
	left: 0;
}

@media (min--moz-device-pixel-ratio: 1.3),
         (-o-min-device-pixel-ratio: 2.6/2),
         (-webkit-min-device-pixel-ratio: 1.3),
         (min-device-pixel-ratio: 1.3),
         (min-resolution: 1.3dppx) {
    section.about-share .icon i {
		background-image: url(../img/icon_shareyourstory@2x.png);
		background-size: 83px auto;
	}
}

section.about-share h4 {
	margin-top: 0;
}

section.about-share h6,
section.about-share p {
	margin-left: 48px;
}

section.about-share h6 {
	margin-top: 0.571428571em; /* 8px / 14px */
}

section.about-share p.action {
	margin-top: 0.8em; /* 8px / 10px */
}

/* Sections - About contact */

/*section.about-contact .row > div {
	margin-top: 20px;
}

section.about-contact .row > div:first-child {
	margin-top: 0;
}

section.about-contact h5 {
	text-transform: uppercase;
}

section.about-contact .icon {
	position: relative;
	min-height: 36px;
	padding-left: 52px;
}

section.about-contact .icon i {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	width: 36px;
	height: 36px;
	top: 0;
	left: 0;
}

section.about-contact .icon i.support {
	background-image: url(../img/svg/icon_headphones_dark.svg);
}

section.about-contact .icon i.location {
	background-image: url(../img/svg/icon_location_2_dark.svg);
}

section.about-contact .icon i.press {
	background-image: url(../img/svg/icon_printer_dark.svg);
}
*/
section.about-contact .row > div {
	margin-top: 20px;
}

section.about-contact .row > div:first-child {
	margin-top: 0;
}

section.about-contact h5 {
	text-transform: uppercase;
	text-align: center;
}

section.about-contact .icon {
	position: relative;
	min-height: 36px;
	/* padding-left: 52px; */
	text-align: center;
	vertical-align: top;
}

section.about-contact .icon i {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	/* position: absolute; */
	width: 36px;
	height: 36px;
	/* top: 0;
	left: 0; */
	display: inline-block;
	vertical-align: top;
}

section.about-contact .icon p {
	 display: inline-block;
	 text-align: left;
	 vertical-align: top;
	 margin-top: 0;
	 padding-left: 15px;
}
section.about-contact .col-4-12:first-child  .icon p{
	line-height: 1.8;
}
section.about-contact .col-4-12:last-child .icon p {
	margin-top: 14px;
}

section.about-contact .icon i.support {
	background-image: url(../img/svg/icon_headphones_dark.svg);
}

section.about-contact .icon i.location {
	background-image: url(../img/svg/icon_location_2_dark.svg);
}

section.about-contact .icon i.press {
	background-image: url(../img/svg/icon_printer_dark.svg);
}

/* Section - Dealer */

section.dealer {
	overflow: hidden;
	padding: 0;

	-webkit-transition: max-height 0.4s ease-in-out;
	transition: max-height 0.4s ease-in-out;
}

/* Section - Dealer - Search top */

section.dealer .search-top {
	background: #191919;
	color: #fff;
	padding: 60px 0 20px 0;
}

section.dealer.distributor .search-top {
	padding: 20px 0;
}

section.dealer .search-top h3 {
	text-transform: uppercase;
}

section.dealer .search-top form label {
	font-weight: 400;
}

section.dealer .search-top form input,
section.dealer .search-top form select {
	line-height: 32px;
	border: 0 none;
}

section.dealer .search-top form button {
	background: transparent url(../img/svg/icon_search_white.svg) left 12px top 50% no-repeat;
	background-size: auto 16px;
	line-height: 28px;
	padding-left: 48px;
	border: 2px solid #fff;
}

section.dealer .search-top form button:active {
	background-color: rgba(255, 255, 255, 0.5);
}

section.dealer .search-top form button.loading:after {
	top: 6px;
	right: -26px;
	border-color: #fff #fff #fff transparent;
}

section.dealer .search-top .legend {
	color: #808080;
	margin-top: 20px;
}

section.dealer .search-top .legend > div {
	margin-top: 8px;
}

section.dealer .search-top .legend > div:first-child {
	margin-top: 0;
}

section.dealer .search-top .legend strong {
	font-weight: 700;
	color: #ed3024;
}

section.dealer .search-top .legend span {
	color: #e8e8e8;
	font-weight: 700;
}

section.dealer .search-top .legend span i {
	color: #ed3024;
	font-style: normal;
}

section.dealer.locator .search-top .results {
	position: relative;
	margin-top: 20px;
}

section.dealer.locator .search-top .results a.location {
	background: #ed3024 url(../img/svg/icon_location_full_white.svg) center center no-repeat;
	background-size: auto 16px;
	position: absolute;
	width: 32px;
	top: 10px;
	right: 10px;
	padding: 0;
	border-color: #ed3024;
}

section.dealer.locator .search-top .results a.location:active {
	background-color: #a9a9a9;
	border-color: #a9a9a9;
}

section.dealer.locator .search-top .results .map {
	background: #fff;
	height: 200px;
}

section.dealer.locator .search-top .results .list {
	margin-top: 20px;
}

section.dealer.locator .search-top .results .list .scrollable {
	height: 260px;
	overflow-y: scroll;
}

section.dealer.locator .search-top .results .list .scrollable > a {
	display: block;
	padding-top: 12px;
	border-top: 1px solid #333;
	border-bottom: 0 none;
	margin-top: 12px;
}

section.dealer.locator .search-top .results .list .scrollable > a:first-child {
	padding-top: 0;
	border-top: 0 none;
	margin-top: 0;
}

section.dealer.locator .search-top .results .list .scrollable > a strong,
section.dealer.locator .search-top .results .list .scrollable > a span {
	display: block;
	color: #fff;
}

section.dealer.locator .search-top .results .list .scrollable > a strong {
	text-transform: uppercase;
}

section.dealer.locator .search-top .results .list .scrollable > a:active strong {
	color: #ed3024;
}

section.dealer.locator .search-top .results .list .scrollable > a span {
	margin-top: 0.8em; /* 8px / 10px */
}

section.dealer.locator .search-top .results .list .scrollable > a i {
	display: block;
	float: left;
	font-style: normal;
}

section.dealer.locator .search-top .results .list .scrollable > a i.location {
	background: url(../img/svg/icon_location_full_white.svg) left center no-repeat;
	background-size: auto 10px;
	padding-left: 16px;
}

section.dealer.locator .search-top .results .list .scrollable > a i.marks {
	font-weight: 700;
	color: #ed3024;
	margin-left: 16px;
}

section.dealer.locator .search-top .results .list .scrollable > a i.marks > i{
	background: url(../img/ico-auth.png) left no-repeat;
	width: 24px; height: 27px;
	display: block;
}

section.dealer.distributor .search-top .alphabet-search {
	display: none;
}

/* Section - Dealer - Results */

section.dealer.distributor .results {
	margin: 20px 0;
}

section.dealer.distributor .results .list h3 {
	margin: 1.25em 0; /* 20px / 16px */
}

section.dealer.distributor .results .list h3:first-child {
	margin-top: 0;
}

section.dealer.distributor .results .list .letter > div {
	margin-top: 20px;
}

section.dealer.distributor .results .list .letter > div a {
	color: #808080;
}

section.dealer.distributor .results .list .letter > div a:active {
	border-bottom-color: #808080;
}

/* Section - Dealer - Info */

section.dealer .info {
	margin-top: 20px;
}

section.dealer .info .wrapper.online-dealers {
	display: block;
	margin-bottom: 20px;
}

section.dealer .info .wrapper.online-dealers.hidden {
	display: none;
}

section.dealer .info .wrapper.online-dealers .online-dealer-toggle {
    background: url('../img/svg/icon_arrow_right_small_dark.svg') no-repeat left 0 top 1px;
    background-size: auto 10px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    padding-left: 20px;
    margin: 8px 0;
}

section.dealer .info .wrapper.online-dealers .online-dealer-toggle .online-dealer-toggle-data {
	display: none;
	font-weight: 400;
    text-transform: none;
    margin-top: 8px;
}

section.dealer .info .wrapper.online-dealers .online-dealer-toggle .online-dealer-toggle-data.on {
	display: block;
}

section.dealer .info h3 {
	text-transform: uppercase;
}

section.dealer .info a.arrow {
	background: url(../img/svg/icon_arrow_right_small_dark.svg) right 4px top 50% no-repeat;
	background-size: auto 10px;
	color: #111;
	text-transform: uppercase;
	font-weight: 700;
	padding-right: 20px;
	border: 0 none;
}

section.dealer .info a.arrow:active {
	background-position: right 0 top 50%;
}

/* Section - Dealer - Action */

section.dealer .action .wrapper > div {
	padding: 20px 0;
	border-top: 1px solid #e8e8e8;
	margin-top: 20px;
}

section.dealer.distributor .action .wrapper > div {
	padding-top: 60px;
	border-top: 0 none;
	margin-top: 0;
}

section.dealer .action a.btn {
	width: 100%;
	text-align: center;
}

/* Section - Products top */

section.products-top {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 116px 0 76px 0;
}

section.products-top:after {
	background: rgba(25, 25, 25, 0.5);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	content: '';
}

section.products-top h1 {
	position: relative;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	z-index: 2;
}

section.products-top ul {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0;
	margin: -12px 0 0 0;
}

section.products-top ul > li, section.products-top ul.filter_subcat > li {
	display: inline-block;
	margin: 0;
}

section.products-top ul > li:before, section.products-top ul.filter_subcat > li:before {
	content: none;
}

section.products-top ul > li a, section.products-top ul.filter_subcat > li a {
	display: block;
	font-size: 1.2em; /* 12px / 10px */
	line-height: 1.333333333em; /* 16px / 12px */
	color: #fff;
	text-transform: uppercase;
	padding: 12px;
	border-bottom: 0 none;
}


section.products-top ul.filter_subcat > li a:active, section.products-top ul > li a:active {
	color: #a9a9a9;
}

section.products-top ul > li.selected a, section.products-top ul.filter_subcat > li.selected a {
	font-weight: 700;
}


/* Section - Products sort */

section.products-sort {
	height: 41px;
	padding: 0;
	border-bottom: 1px solid #e8e8e8;
}

section.products-sort .wrapper > * {
	float: left;
	height: 40px;
}

section.products-sort .wrapper .title {
	line-height: 40px;
	text-transform: uppercase;
}

section.products-sort .wrapper ul {
	padding: 0;
	margin: 0;
}

section.products-sort .wrapper ul > li {
	float: left;
	height: 40px;
	margin: 0 0 0 16px;
}

section.products-sort .wrapper ul:first-child > li:first-child {
	margin-left: 0;
}

section.products-sort .wrapper ul > li:before {
	content: none;
}

section.products-sort .wrapper ul > li a {
	display: block;
	height: 24px;
	color: #111;
	line-height: 20px;
	text-transform: uppercase;
	padding: 0 8px;
	border: 2px solid transparent;
	margin-top: 8px;

	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

section.products-sort .wrapper ul > li.selected a {
	font-weight: 700;
	border-color: #111;
}

section.products-sort .wrapper ul > li a:after {
	display: inline-block;
	background: url(../img/svg/icon_arrow_up_small_gray.svg) center center no-repeat;
	background-size: 10px auto;
	width: 10px;
	height: 10px;
	content: '';
	vertical-align: middle;
	margin-left: 10px;

	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);

	-webkit-transition: transform 0.2s linear;
	transition: transform 0.2s linear;
}

section.products-sort .wrapper ul > li.asc a:after {
	background: url(../img/svg/icon_arrow_up_small_dark.svg) center center no-repeat;
	background-size: 10px auto;

	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

section.products-sort .wrapper ul > li.desc a:after {
	background: url(../img/svg/icon_arrow_up_small_dark.svg) center center no-repeat;
	background-size: 10px auto;

	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

section.products-sort .wrapper ul > li label {
	display: block;
	height: 24px;
	line-height: 24px;
	color: #111;
	text-transform: uppercase;
	margin-top: 8px;
}

section.products-sort .wrapper ul > li input[type="checkbox"] {
	margin-right: 4px;

	-webkit-appearance: checkbox;
	appearance: checkbox;
}

/* Sections - Products */

section.products .list > div {
	margin-top: 24px;
}

section.products .list > div:first-child {
	margin-top: 0;
}

section.products .list > div a {
	display: block;
	border: 0 none;
}

section.products .list > div a .img {
	position: relative;
	display: block;
	height: 0;
	overflow: hidden;
	padding-bottom: 60%;
}

section.products .list > div a .img img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	top: 50%;
	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

section.products .list > div a .img img.hover {
	display: none;
}

section.products .list > div a:active .img img {
	display: none;
}

section.products .list > div a:active .img img.hover {
	display: block;
}

section.products .list > div a .h1 {
	position: relative;
	display: block;
	color: #111;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	margin-bottom: 0.4em; /* 8px / 20px */
}

section.products .list > div a .h1:after {
	background: #111;
	display: block;
	width: 56px;
	height: 2px;
	content: '';
	margin-top: 8px;
}

section.products .list > div a .h1.new {
	padding-right: 40px;
}

section.products .list > div a .h1.new span {
	/*position: absolute;*/
	display: block;
	top: 0;
	right: 0;
	color: #ed3024;
	text-transform: uppercase;
	font-weight: 400;
	font-size: 0.5em; /* 10px / 20px */
	line-height: inherit;
}

section.products .list > div a .p {
	display: block;
	color: #111;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

section.products .list > div a .price .discount {
	text-decoration: line-through;
}

section.products .list > div a .price .new {
	color: #ed3024;
	margin-left: 8px;
}

section.products .load-more {
	margin-top: 52px;
}

/* Sections - Products archive top */

section.products-archive-top {
	background: #111;
	color: #fff;
	padding: 60px 0 20px 0;
}

section.products-archive-top h3 {
	text-transform: uppercase;
}

section.products-archive-top label {
	font-weight: 400;
}

section.products-archive-top form input,
section.products-archive-top form select {
	line-height: 32px;
	border: 0 none;
}

section.products-archive-top form button {
	background: transparent url(../img/svg/icon_search_white.svg) left 12px top 50% no-repeat;
	background-size: auto 16px;
	line-height: 28px;
	padding-left: 48px;
	border: 2px solid #fff;
}

section.products-archive-top form button:active {
	background-color: rgba(255, 255, 255, 0.5);
}

/* Sections - Product top */

section.product-top {
	padding: 40px 0 0 0;
}

section.product-top .slider {
	position: relative;
	overflow: hidden;
	height: 360px;
}

section.product-top .slider .cluster {
	position: absolute;
	width: 100%; /* set by JS */
	height: 100%;
	top: 0;
	left: 0;
	cursor: move;
	overflow: hidden;

	-webkit-transition: left 0.2s ease-in-out;
	transition: left 0.2s ease-in-out;
}

section.product-top .slider .cluster.pan {
	-webkit-transition: none;
	transition: none;
}

section.product-top .slider .cluster > div {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	float: left;
	width: 100%; /* set by JS */
	height: 100%;
}

section.product-top .slider .cluster > div a {
	border: 0 none;
}

section.product-top .slider nav > a {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 32px;
	position: absolute;
	display: block;
	width: 72px;
	height: 72px;
	top: 50%;
	opacity: 0.8;
	border: 0 none;
	margin-top: -36px;

	-webkit-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

section.product-top .slider nav > a:active {
	opacity: 1;
}

section.product-top .slider nav > a.inactive,
section.product-top .slider nav > a.inactive:active {
	opacity: 0.3;
}

section.product-top .slider nav > a.prev {
	background-image: url(../img/svg/icon_arrow_left_big_white.svg);
	left: 0;
}

section.product-top .slider nav > a.next {
	background-image: url(../img/svg/icon_arrow_right_big_white.svg);
	right: 0;
}

section.product-top .slider nav > div {
	display: none; /* We're not using this element */
}

section.product-top .slider nav > div {
	position: absolute;
	width: calc(100% - 144px);
	height: 72px;
	left: 72px;
	top: 0;
	text-align: center;
}

section.product-top .slider nav > div span {
	display: inline-block;
	width: 24px;
	height: 24px;
	opacity: 0.3;
	cursor: pointer;
	margin-top: 24px;

	-webkit-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

section.product-top .slider nav > div span:after {
	background: #fff;
	display: block;
	width: 8px;
	height: 8px;
	margin: 8px 0 0 8px;
	content: '';
}

section.product-top .slider nav > div span.active {
	opacity: 0.8;
}

section.product-top .slider nav > div span:active {
	opacity: 1;
}

section.product-top .description {
	background: #111;
	color: #fff;
	padding: 24px 32px;
}

section.product-top .description .product-code {
	display: block;
	color: #808080;
}

section.product-top .description .price {
	font-size: 1.4em; /* 14px / 10px */
	line-height: 1.714285714em; /* 24px / 14px */
	margin: 20px 0;
}

section.product-top .description .price .discount {
	display: inline-block;
	text-decoration: line-through;
	vertical-align: middle;
}

section.product-top .description .price .new {
	display: inline-block;
	font-size: 1.428571429em; /* 20px / 14px */
	line-height: 1.2em; /* 24px / 20px */
	color: #ed3024;
	vertical-align: middle;
}

section.product-top .description .price .discount + .new {
	margin-left: 8px;
}

section.product-top .description .buy {
	margin: -20px 0 20px -32px;
}

section.product-top .description .buy > * {
	float: left;
	margin: 20px 0 0 32px;
}

section.product-top .description .buy .quantity input {
	background: #333;
	display: inline-block;
	height: 32px;
	width: 32px;
	font-size: 1em;
	line-height: 32px;
	text-align: center;
	color: #fff;
	padding: 0 4px;
	border: 0 none;
	margin-left: 16px;
}

section.product-top .description .buy .finishes > div {
	display: inline-block;
	height: 32px;
	vertical-align: middle;
	padding: 2px 0;
	margin-left: 16px;
}

section.product-top .description .buy .finishes > div > span {
	display: block;
	float: left;
	width: 28px;
	height: 28px;
	cursor: pointer;
	border: 1px solid #333;
	margin-left: 8px;

	-webkit-box-shadow: 0px 0px 2px 1px rgba(255,255,255,0);
	box-shadow: 0px 0px 2px 1px rgba(255,255,255,0);

	-webkit-transition: box-shadow 0.2s ease-in-out;
	transition: box-shadow 0.2s ease-in-out;
}

section.product-top .description .buy .finishes > div > span.selected {
	-webkit-box-shadow: 0px 0px 2px 1px rgba(255,255,255,0.5);
	box-shadow: 0px 0px 2px 1px rgba(255,255,255,0.5);
}

section.product-top .description .buy .finishes > div > span:first-child {
	margin-left: 0;
}

section.product-top .description .buy .finishes small {
	display: block;
	color: #808080;
	margin-top: 4px;
}

section.product-top .description .buy .action {
	width: calc(100% - 32px);
}

section.product-top .description .buy .action a + a {
	margin-left: 8px;
}

section.product-top .description .social {
	margin-top: 20px;
}

section.product-top .description .social > * {
	float: left;
}

section.product-top .description .social span {
	display: block;
	line-height: 16px;
	color: #808080;
	font-weight: 700;
}

section.product-top .description .social a {
	display: block;
	width: auto;
	height: 16px;
	opacity: 1;
	border: 0 none;
	margin-left: 16px;
}

section.product-top .description .social a:active {
	opacity: 0.7;
}

section.product-top .description .social a img {
	height: 16px;
	width: auto;
}

section.product-top .description .logos {
	padding-top: 8px;
	border-top: 1px solid #333;
	margin-top: 20px;
}

section.product-top .description .logos img {
	margin: 12px 12px 0 0;
	display: inline-block;
	vertical-align: middle;
	height: 20px;
    width: unset;
}

section.product-top .description .desc {
	margin-top: 20px;
}

section.product-top .description .desc .more {
	background: url(../img/svg/icon_arrow_right_small_white.svg) right 4px top 50% no-repeat;
	background-size: auto 10px;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	padding-right: 20px;
	border: 0 none;
}

section.product-top .description .desc .more:active {
	background-position: right 0 top 50%;
}

/* Sections - Product info */

section.product-info .wrapper > div {
	display: none;
}

section.product-info .wrapper > div.on {
	display: block;
}

/* Sections - Product info - Product story */

section.product-info .product-story h1 {
	text-transform: uppercase;
}

section.product-info .product-story .img {
	margin: 0.8em 0; /* 8px / 10px */
}

section.product-info .product-story .img img {
	display: block;
}

section.product-info .product-story > .excerpt {
	margin-bottom: 0.8em; /* 8px / 10px */
}

/* Sections - Product info - Design */

section.product-info .design h1 {
	text-transform: uppercase;
}

section.product-info .design img {
	display: block;
	margin: 0.8em auto; /* 8px / 10px */
}

section.product-info .design img:first-child {
	margin-top: 0;
}

section.product-info .design img:last-child {
	margin-bottom: 0;
}

/* Sections - Product info - Specifications */

section.product-info .specifications .row:first-child > div:first-child h1 {
	margin-top: 0;
}

section.product-info .specifications h1 {
	text-transform: uppercase;
	margin: 0.8em 0; /* 16px / 20px */
}

section.product-info .specifications ul {
	padding: 0;
}

section.product-info .specifications ul > li:before {
	content: none;
}

section.product-info .specifications .accessories {
	margin-top: -16px;
}

section.product-info .specifications .accessories > div {
	position: relative;
	float: left;
	min-width: 40px;
	text-align: center;
	padding-top: 48px; /* 40px + 8px */
	margin-top: 16px;
	margin-right: 16px;
}

section.product-info .specifications .accessories > div:before {
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	width: 40px;
	height: 40px;
	top: 0;
	left: 50%;
	content: '';

	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

section.product-info .specifications .accessories > div.3-5mm_cable:before { background-image: url(../img/accessories/ac_3-5mm_cable.svg); }
section.product-info .specifications .accessories > div.3v_cr2025:before { background-image: url(../img/accessories/ac_3v_cr2025.svg); }
section.product-info .specifications .accessories > div.aaa_batteries:before { background-image: url(../img/accessories/ac_aaa_batteries.svg); }
section.product-info .specifications .accessories > div.aa_batteries:before { background-image: url(../img/accessories/ac_aa_batteries.svg); }
section.product-info .specifications .accessories > div.amp_remote:before { background-image: url(../img/accessories/ac_amp_remote.svg); }
section.product-info .specifications .accessories > div.audyssey_mic:before { background-image: url(../img/accessories/ac_audyssey_mic.svg); }
section.product-info .specifications .accessories > div.banana_plug_termination:before { background-image: url(../img/accessories/ac_banana_plug_termination.svg); }
section.product-info .specifications .accessories > div.carabiner:before { background-image: url(../img/accessories/ac_carabiner.svg); }
section.product-info .specifications .accessories > div.cleaning_cloth:before { background-image: url(../img/accessories/ac_cleaning_cloth.svg); }
section.product-info .specifications .accessories > div.dvd_remote:before { background-image: url(../img/accessories/ac_dvd_remote.svg); }
section.product-info .specifications .accessories > div.ear_pads:before { background-image: url(../img/accessories/ac_ear_pads.svg); }
section.product-info .specifications .accessories > div.ethernet_cable:before { background-image: url(../img/accessories/ac_ethernet_cable.svg); }
section.product-info .specifications .accessories > div.eu_power_cord:before { background-image: url(../img/accessories/ac_eu_power_cord.svg); }
section.product-info .specifications .accessories > div.figure_8_power_cord:before { background-image: url(../img/accessories/ac_figure_8_power_cord.svg); }
section.product-info .specifications .accessories > div.hp20_headphone_case:before { background-image: url(../img/accessories/ac_hp20_headphone_case.svg); }
section.product-info .specifications .accessories > div.hp30_headphone_case:before { background-image: url(../img/accessories/ac_hp30_headphone_case.svg); }
section.product-info .specifications .accessories > div.hp50_accessories_case:before { background-image: url(../img/accessories/ac_hp50_accessories_case.svg); }
section.product-info .specifications .accessories > div.htrm_remote:before { background-image: url(../img/accessories/ac_htrm_remote.svg); }
section.product-info .specifications .accessories > div.mickey_mouse_power_cord:before { background-image: url(../img/accessories/ac_mickey_mouse_power_cord.svg); }
section.product-info .specifications .accessories > div.mini_jack_to_toslink_adapter:before { background-image: url(../img/accessories/ac_mini_jack_to_toslink_adapter.svg); }
section.product-info .specifications .accessories > div.phoenix_connectors:before { background-image: url(../img/accessories/ac_phoenix_connectors.svg); }
section.product-info .specifications .accessories > div.ac_rca_cables:before { background-image: url(../img/accessories/ac_ac_rca_cables.svg); }
section.product-info .specifications .accessories > div.ribbon_cable:before { background-image: url(../img/accessories/ac_ribbon_cable.svg); }
section.product-info .specifications .accessories > div.silicon_ear_tips:before { background-image: url(../img/accessories/ac_silicon_ear_tips.svg); }
section.product-info .specifications .accessories > div.sr_htr_remote:before { background-image: url(../img/accessories/ac_sr_htr_remote.svg); }
section.product-info .specifications .accessories > div.usb_flash_drive:before { background-image: url(../img/accessories/ac_usb_flash_drive.svg); }
section.product-info .specifications .accessories > div.us_power_cord:before { background-image: url(../img/accessories/ac_us_power_cord.svg); }
section.product-info .specifications .accessories > div.viso_remote:before { background-image: url(../img/accessories/ac_viso_remote.svg); }
section.product-info .specifications .accessories > div.wireless_antenna:before { background-image: url(../img/accessories/ac_wireless_antenna.svg); }

section.product-info .specifications a.show-more {
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	color: #111;
	font-weight: 700;
	padding-right: 20px;
	border: 0 none;
	margin-top: 20px; /* +4px for vertical flow */
}

section.product-info .specifications a.show-more:after {
	background: url(../img/svg/icon_arrow_right_small_dark.svg) right 4px top 50% no-repeat;
	background-size: auto 10px;
	position: absolute;
	width: 12px;
	height: 12px;
	top: 0;
	right: 0;
	content: '';

	-webkit-transform: rotate(0);
	transform: rotate(0);

	-webkit-transition: transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out;
}

section.product-info .specifications a.show-more.active:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

section.product-info .specifications .row.more {
	display: none;
}

section.product-info .specifications .row.more.on {
	display: block;
}

section.product-info .specifications .logos {
	margin-top: -16px;
}

section.product-info .specifications .logos img {
	float: left;
	height: 16px;
	width: auto;
	margin: 16px 16px 0 0;
}

section.product-info .specifications img {
	float: left;
	height: 16px;
	width: auto;
	margin: 0 16px 16px 0;
}

/* Sections - Product info - Downloads */

section.product-info .downloads h1 {
	text-transform: uppercase;
	margin-bottom: 0.8em; /* 16px / 20px */
}

section.product-info .downloads h3 {
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 12px;
	text-transform: uppercase;
	padding-left: 24px;
	margin: 0.75em 0; /* 12px / 16px */
}

section.product-info .downloads h3.data-sheets {
	background-image: url(../img/svg/icon_download_dark.svg);
	margin-top: 0;
}

section.product-info .downloads h3.manuals {
	background-image: url(../img/svg/icon_file_dark.svg);
}

section.product-info .downloads h3.drivers {
	background-image: url(../img/svg/icon_gear_dark.svg);
}

section.product-info .downloads h3.other {
	background-image: url(../img/svg/icon_download_dark.svg);
	
}

section.product-info .downloads ul {
	padding: 0;
}

section.product-info .downloads ul > li:before {
	content: none;
}

section.product-info .downloads ul > li a {
	background: url(../img/svg/icon_arrow_right_small_gray.svg) left 0 top 50% no-repeat;
	background-size: auto 10px;
	display: inline-block;
	color: #808080;
	padding-left: 20px;
	border: 0 none;
}

section.product-info .downloads ul > li a:active {
	background-position: left 4px top 50%;
}

/* Sections - Product logos */

section.product-logos {
	padding: 0;
}

section.product-logos:last-child {
	margin-bottom: 52px;
}

section.product-logos .list {
	position: relative;
	text-align: center;
	margin: 0 -16px;
}

section.product-logos .list:before,
section.product-logos .list:after {
	background: #e8e8e8;
	position: absolute;
	width: calc(100% - 32px);
	height: 1px;
	left: 16px;
	content: '';
}

section.product-logos .list:before {
	top: 0;
}

section.product-logos .list:after {
	bottom: 0;
}

section.product-logos .list>a,
section.product-logos .list>img {
	display: inline-block;
	vertical-align: middle;
	border: 0 none;
	margin: 16px;
}

section.product-logos img {
	/* height: 20px; */
	width: auto;
}

/* Sections - Products related */

section.products-related h1 {
	text-transform: uppercase;
}

section.products-related .list > div {
	margin-top: 24px;
}

section.products-related .list > div:first-child {
	margin-top: 0;
}

section.products-related .list > div .img {
	position: relative;
	display: block;
	height: 0;
	overflow: hidden;
	padding-bottom: 60%;
}

section.products-related .list > div .img img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	top: 50%;
	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

section.products-related .list > div .h1 {
	position: relative;
	display: block;
	color: #111;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	margin-bottom: 0.4em; /* 8px / 20px */
}

section.products-related .list > div .h1:after {
	background: #111;
	display: block;
	width: 56px;
	height: 2px;
	content: '';
	margin-top: 8px;
}

/* Media queries */

@media (max-width: 767px) {

	iframe { height: auto }

}

/* Media queries - Tablet */

@media (min-width: 768px) {
	/* Animations */

	/* Fonts */

	/* Common */

	body {
		font-size: 16px;
		line-height: 1.25em; /* 20px / 16px */
	}

	section {
		padding: 80px 0;
	}

	/* Fixes */

	/* Text */

	h1, .h1 {
		font-size: 2.5em; /* 40px / 16px */
		line-height: 1.2em; /* 48px / 40px */
		margin: 0.8em 0; /* 32px / 40px */
	}

	h2, .h2 {
		font-size: 2.5em; /* 40px / 16px */
		line-height: 1.2em; /* 48px / 40px */
		margin: 0.8em 0; /* 32px / 40px */
	}

	h3, .h3 {
		font-size: 1.875em; /* 30px / 16px */
		line-height: 1.2em; /* 36px / 30px */
		margin: 0.666666667em 0; /* 20px / 30px */
	}

	h4, .h4 {
		font-size: 1.875em; /* 30px / 16px */
		line-height: 1.2em; /* 36px / 30px */
		margin: 0.666666667em 0; /* 20px / 30px */
	}

	h5, .h5 {
		font-size: 1.5em; /* 24px / 16px */
		line-height: 1.166666667em; /* 28px / 24px */
		margin: 0.666666667em 0; /* 16px / 24px */
	}

	h6, .h6 {
		font-size: 1.5em; /* 24px / 16px */
		line-height: 1.166666667em; /* 28px / 24px */
		margin: 0.666666667em 0; /* 16px / 24px */
	}

	p, .p {
		margin: 1em 0;
	}

	ul {
		margin: 1em 0;
	}

	ul > li {
		margin-top: 1em;
	}

	ul > li:first-child {
		margin-top: 0;
	}

	li > ul > li:first-child {
		margin-top: 1em;
	}

	ul > li:before {
		top: 6px;
	}

	ol {
		margin: 1em;
	}

	ol > li {
		margin-top: 1em;
	}

	ol > li:first-child {
		margin-top: 0;
	}

	li > ol > li:first-child {
		margin-top: 1em;
	}

	blockquote {
		font-size: 1.125em; /* 18px / 16px */
		line-height: 1.333333333em; /* 24px / 18px */
		padding-top: 24px;
		margin: 1.333333333em 0; /* 24px / 18px */
	}

	blockquote:before {
		width: 116px;
	}

	pre {
		padding: 8px 12px;
		margin: 1em 0;
	}

	small {
		font-size: 0.75em; /* 12px / 16px */
	}

	.btn {
		height: 52px;
		line-height: 48px;
		padding: 0 24px;
	}

	.btn.dark {
		line-height: 52px;
	}

	.btn.link {
		line-height: 52px;
	}

	.load-more {
		width: 120px;
		height: 120px;
		line-height: 1.5em; /* 24px / 16px */
		padding: 32px 8px 0 8px; /* -4px for visual alignment */
	}

	/* Grid */

	.row > *.divider {
		margin-top: 40px;
	}

	.row > *.divider:before {
		margin: 0 0 40px 0;
	}

	.row > .col-1-12 {
		width: 50%;
	}

	.row > .col-2-12 {
		width: 50%;
	}

	.row > .col-3-12 {
		width: 50%;
	}

	.row > .col-4-12 {
		width: 50%;
	}

	.row > .col-5-12 {
		width: 50%;
	}

	.row > .col-6-12 {
		width: 50%;
	}

	.row > .col-7-12 {
		width: 100%;
	}

	.row > .col-8-12 {
		width: 100%;
	}

	.row > .col-9-12 {
		width: 100%;
	}

	.row > .col-10-12 {
		width: 100%;
	}

	.row > .col-11-12 {
		width: 100%;
	}

	.row > .col-12-12 {
		width: 100%;
	}

	/* Forms */

	form input,
	form select,
	form button {
		margin-top: 16px;
	}

	form input[type=text],
	form input[type=email],
	form input[type=password],
	select {
		height: 52px;
		line-height: 48px;
		padding: 0 16px;
	}

	select {
		background: #fff url(../img/svg/icon_arrow_down_small_dark.svg) right 16px top 50% no-repeat;
		background-size: 10px auto;
	}

	form button,
	form input[type=submit] {
		height: 52px;
		line-height: 48px;
		padding: 0 16px;
	}

	form button.short,
	form input[type=submit].short {
		padding: 0 24px;
	}

	form button.loading:after,
	form input[type=submit].loading:after {
		top: 18px;
		right: 16px;
	}

	form button.short.loading:after,
	form input[type=submit].short.loading:after {
		top: 18px;
		right: -32px;
	}

	form .buttons-inline {
		margin-top: 16px;
	}

	form .buttons-inline > * {
		margin: 0 24px;
	}

	form .buttons-inline > span {
		line-height: 52px;
	}

	form label {
		margin-top: 32px;
	}

	form .notification {
		height: 52px;
		top: -60px;
	}

	form .notification span {
		line-height: 52px;
	}

	/* Header */

	header#header {
		height: 60px;
	}

	header#header.search-on {
		top: 60px;
	}

	header#header > .wrapper {
		height: 60px;
	}

	/* Header - Search */

	div.search {
		height: 60px;
		top: -60px;
	}

	div.search form input[type=text] {
		height: 44px;
		line-height: 44px;
		padding-right: 60px;
	}

	div.search form button {
		background: url(../img/svg/icon_search_white.svg) center center no-repeat;
		background-size: auto 16px;
		width: 44px;
		height: 44px;
	}

	/* Header - Logo */

	header#header .logo {
		height: 60px;
		width: auto;
	}

	header#header .logo img {
		height: 44px;
		width: 44px;
	}

	header#header .logo strong {
		display: block;
		color: #fff;
		text-transform: uppercase;
		font-size: 0.75em; /* 12px / 16px */
		line-height: 44px;
		margin: 8px 0 0 76px;

		-webkit-transition: color 0.4s linear;
		transition: color 0.4s linear;
	}

	header#header.light .logo strong {
		color: #111;
	}

	/* Header - Nav */

	header#header nav#nav {
		height: 60px;
	}

	/* Header - Nav - Menu */

	header#header nav#nav ul.menu > li > a {
		font-size: 0.875em; /* 14px / 16px */
	}

	header#header nav#nav ul.menu > li > a.user {
		padding-left: 68px;
	}

	header#header nav#nav ul.menu > li > a.location {
		padding-left: 68px;
	}

	/* Header - Nav - Sub menu */

	header#header nav#nav div.sub-menu .title,
	header#header nav#nav span.back-title {
		font-size: 0.875em; /* 14px / 16px */
		padding: 0 32px 0 68px;
	}

	header#header nav#nav div.sub-menu ul > li > a {
		font-size: 0.875em; /* 14px / 16px */
	}

	/* Header - Nav - Shop menu */

	header#header nav#nav ul.shop-menu {
		height: 60px;
	}

	header#header nav#nav ul.shop-menu > li {
		width: 60px;
		height: 60px;
	}

	header#header nav#nav ul.shop-menu > li.toggle i {
		left: 20px;
	}

	header#header nav#nav ul.shop-menu > li.toggle i:nth-child(1) {
		top: 22px;
	}

	header#header nav#nav ul.shop-menu > li.toggle i:nth-child(2) {
		top: 29px;
	}

	header#header nav#nav ul.shop-menu > li.toggle i:nth-child(3) {
		top: 36px;
	}

	header#header nav#nav ul.shop-menu > li > a {
		width: 60px;
		height: 60px;
	}

	/* Header - Fade */

	/* Footer */

	footer#footer {
		padding: 40px 0;
	}

	footer#footer .top {
		margin-bottom: 40px;
	}

	footer#footer .top > div {
		margin-top: 40px;
	}

	footer#footer .top > div:first-child {
		width: 100%;
		margin-top: 0;
	}

	footer#footer .top > div:nth-child(4) {
		clear: left;
	}

	footer#footer .top .logo img {
		height: 44px;
	}

	footer#footer .top .title {
		margin-bottom: 16px;
	}

	footer#footer .top ul > li {
		font-size: 0.875em; /* 14px / 16px */
		line-height: 2em; /* 32px / 16px */
	}

	footer#footer .top p {
		font-size: 0.875em; /* 14px / 16px */
		line-height: 2em; /* 32px / 16px */
	}

	footer#footer .top .support-centre,
	footer#footer .top .support-email {
		height: 32px;
		font-size: 0.875em; /* 14px / 16px */
		line-height: 32px;
		padding-left: 52px;
		margin-top: 16px;
	}

	footer#footer .top .support-centre,
	footer#footer .top .support-email {
		background-size: 32px auto;
	}

	footer#footer .social {
		margin-bottom: 40px;
	}

	footer#footer .social a {
		height: 32px;
		margin: 0 24px;
	}

	footer#footer .social a img {
		height: 32px;
	}

	footer#footer .bottom {
		padding-top: 40px;
	}

	footer#footer .bottom > div {
		width: 100%;
	}

	footer#footer .bottom p {
		font-size: 0.875em; /* 14px / 16px */
		line-height: 2em; /* 32px / 16px */
	}

	footer#footer .bottom ul.nav > li a {
		font-size: 0.875em; /* 14px / 16px */
		line-height: 2em; /* 32px / 16px */
	}

	footer#footer .bottom ul.nav > li:after {
		top: 6px;
		height: 16px;
	}

	footer#footer .bottom .partners a {
		height: 32px;
		margin-left: 16px;
	}

	footer#footer .bottom .partners a img {
		height: 32px;
	}

	/* Sections */

	/* Sections - Language */

	section.language {
		padding: 80px 0;
	}

	section.language img.logo {
		height: 44px;
	}

	section.language h3 {
		margin: 32px 0 0 0;
	}

	section.language h3:before {
		width: 44px;
		margin: 0 auto 30px auto;
	}

	section.language .continents > div .el span {
		font-size: 0.875em; /* 14px / 16px */
		margin-left: 24px;
	}

	section.language .continents > div .countries > div > a,
	section.language .continents > div .countries > div > span {
		background-position: left 88px top 50%;
		font-size: 0.875em; /* 14px / 16px */
		padding: 16px 32px 16px 128px;
	}

	section.language .continents > div .countries > div.no-flag > a {
		padding-left: 88px;
	}

	section.language .continents > div .countries > div > ul > li a {
		background: url(../img/svg/icon_arrow_right_small_dark.svg) left 128px top 50% no-repeat;
		background-size: auto 10px;
		font-size: 0.875em; /* 14px / 16px */
		padding: 12px 32px 12px 152px;
	}

	/* Sections - Slider wrap */

	/* Sections - Promo */

	section.promo {
		padding: 240px 0 180px 0;
	}

	/* Sections - Products short */

	section.products-short .list > a {
		width: 100%;
		height: 240px;
	}

	section.products-short .list > a > span strong .h1:after {
		width: 112px;
		bottom: -15px;
	}

	/* Sections - Blog dealer */

	section.blog-dealer .row > div:nth-child(1) {
		margin-bottom: 0;
	}

	section.blog-dealer strong {
		font-size: 3.125em; /* 50px / 16px */
		line-height: 1.04em; /* 52px / 50px */
	}

	section.blog-dealer .icon {
		min-height: 32px;
		margin: 16px 0;
	}

	section.blog-dealer .icon img {
		height: 32px;
	}

	section.blog-dealer .btn {
		width: auto;
	}

	/* Sections - Promo img */

	section.promo-img .rate {
		margin: 16px 0;
	}

	section.promo-img .rate > div {
		padding: 20px 92px;
	}

	section.promo-img .rate h3 {
		font-size: 1.25em; /* 20px / 16px */
		line-height: 1.2em; /* 24px / 20px */
		margin-bottom: 0.8em; /* 16px / 20px */
	}

	section.promo-img .rate .stars {
		height: 24px;
	}

	section.promo-img .rate .stars i,
	section.promo-img .rate .stars span {
		height: 24px;
		width: 24px;
		margin: 0 4px;
	}

	/* Sections - Promo img - Styles */

	/* Sections - Support */

	section.support {
		padding: 120px 0;
	}

	section.support .arrow {
		background-size: auto 32px;
		width: 80px;
		height: 80px;
	}

	section.support .text {
		margin-left: 32px;
	}

	/* Sections - Newsletter */

	section.newsletter .wrapper > .row > div.col-3-12 {
		width: 25%;
	}

	section.newsletter .wrapper > .row > div.col-6-12 {
		width: 50%;
	}

	section.newsletter form .row > div {
		width: 100%;
	}

	section.newsletter form button,
	section.newsletter form input[type=submit] {
		background: #ed3024 url(../img/svg/icon_email_white.svg) left 16px top 50% no-repeat;
		background-size: auto 16px;
		padding-left: 52px;
		margin-top: 16px;
	}

	section.newsletter form .notification {
		top: -44px;
	}
	/* Sections - Newsletter */

	section.newsletter1 .wrapper > .row > div.col-3-12 {
		width: 25%;
	}

	section.newsletter1 .wrapper > .row > div.col-6-12 {
		width: 50%;
	}

	section.newsletter1 form .row > div {
		width: 100%;
	}

	section.newsletter1 form button,
	section.newsletter1 form input[type=submit] {
		background: #ed3024 url(../img/svg/icon_email_white.svg) left 16px top 50% no-repeat;
		background-size: auto 16px;
		padding-left: 52px;
		margin-top: 16px;
	}

	section.newsletter1 form .notification {
		top: -44px;
	}

	/* Sections - Title header */

	section.title-header {
		padding: 180px 0 120px 0;
	}

	/* Sections - Vertical nav */

	section.vertical-nav {
		/* height: 61px; */
	}

	section.vertical-nav .scrollable {
		/*
		height: 60px;
		overflow-x: auto;
		*/
	}

	section.vertical-nav .scrollable a {
		font-size: 0.75em; /* 12px / 16px */
		height: 44px;
		line-height: 40px;
		padding: 0 12px;
	}

	/* Section - Downloads */

	section.downloads .list {
		margin: -80px -10px 0 -10px;
	}

	section.downloads .list > div {
		float: left;
		width: 50%;
		padding: 60px 40px;
		border: 10px solid #fff;
		border-width: 0 10px;
		margin-top: 80px;
	}

	section.downloads .list > div h3:after {
		width: 120px;
		margin-top: 20px;
	}

	section.downloads .list > div a {
		padding-left: 40px;
		margin-top: 20px;
	}

	section.downloads .list > div a:before {
		background-size: auto 16px;
		width: 20px;
		height: 20px;
	}

	section.downloads .list > div a:after {
		top: 6px;
	}

	section.downloads .load-more {
		margin-top: 80px;
	}

	/* Sections - Simple text */

	section.simple-text .facts {
		margin-top: 20px;
	}

	section.simple-text .facts > div {
		margin-top: 32px;
	}

	section.simple-text .facts > div strong {
		font-size: 1.875em; /* 30px / 16px */
		line-height: 1.2em; /* 36px / 30px */
		margin-top: 0.133333333em; /* 4px / 30px */
	}

	/* Sections - Brand */

	section.brand .img {
		padding: 32px 0;
		margin: 32px 0;
	}

	section.brand .background {
		height: 200px;
		margin-bottom: 32px;
	}

	/* Sections - Brand logo colours */

	section.brand-logo-colours .switch {
		height: 160px;
		margin-top: 32px;
	}

	section.brand-logo-colours .switch div {
		padding: 58px 0;
	}

	section.brand-logo-colours .switch div img {
		height: 44px;
	}

	/* Sections - Brand colour usage */

	section.brand-colour-usage .logo-white-wide,
	section.brand-colour-usage .logo-red-wide {
		height: 200px;
		margin-top: 32px;
	}

	section.brand-colour-usage p.desc {
		font-size: 0.75em; /* 12px / 16px */
		line-height: 1.333333333em; /* 16px / 12px */
	}

	section.brand-colour-usage .logo-black-tall,
	section.brand-colour-usage .logo-red-tall {
		height: 200px;
		margin-bottom: 32px;
	}

	/* Sections - Brand palette */

	section.brand-palette .colour {
		margin-top: 32px;
		background: no-repeat center;
		-webkit-background-size: cover;
		background-size: cover;
	}

	section.brand-palette .colour > table {
		margin-top: 24px;
	}

	section.brand-palette .colour > table tr > td {
		line-height: 1.5em; /* 24px / 16px */
	}

	section.brand-palette .colour table + p:before {
		margin-bottom: 16px;
	}

	/* Sections - Press releases */

	section.press-releases .top {
		height: 36px;
		margin-bottom: 20px;
	}

	section.press-releases .top .sort a {
		line-height: 2.25em; /* 36px / 16px */
	}

	section.press-releases .top .sort a:after {
		top: 13px;
	}

	section.press-releases .list a {
		position: relative;
		padding: 32px 0;
	}

	section.press-releases .list a span {
		font-size: 1.5em; /* 24px / 16px */
		line-height: 1.166666667em; /* 28px / 24px */
		padding-right: 160px;
	}

	section.press-releases .list a time {
		position: absolute;
		top: 32px;
		right: 0;
		font-size: 0.75em; /* 12px / 16px */
		line-height: 2.333333333em; /* 28px / 12px */
		margin-top: 0;
	}

	section.press-releases .load-more {
		margin-top: 80px;
	}

	/* Sections - Article */

	section.article {
		padding-top: 140px;
	}

	/* Sections - Article - Article */

	section.article article header time {
		font-size: 0.875em; /* 14px / 16px */
		line-height: 1.428571429em; /* 20px / 14px */
	}

	section.article article header nav a {
		font-size: 0.75em; /* 12px / 16px */
		line-height: 1.666666667em; /* 20px / 12px */
	}

	section.article article header .social {
		padding-top: 32px;
		margin-top: 32px;
	}

	section.article article header .social span {
		font-size: 0.875em; /* 14px / 16px */
		line-height: 20px;
	}

	section.article article header .social a {
		height: 20px;
		margin-left: 36px;
	}

	section.article article header .social a img {
		height: 20px;
	}

	section.article article .body {
		margin-top: 32px;
	}

	section.article article .body img {
		margin: 1em 0;
	}

	section.article article footer {
		margin-top: 32px;
	}

	section.article article footer .social {
		padding: 32px 0;
	}

	section.article article footer .social span {
		font-size: 0.875em; /* 14px / 16px */
		line-height: 20px;
	}

	section.article article footer .social a {
		height: 20px;
		margin-left: 36px;
	}

	section.article article footer .social a img {
		height: 20px;
	}

	section.article article footer nav {
		margin-top: 32px;
	}

	section.article article footer nav a {
		font-size: 0.75em; /* 12px / 16px */
		line-height: 1.666666667em; /* 20px / 12px */
	}

	/* Sections - Article - Related articles */

	section.article div.related-articles {
		margin-top: 80px;
	}

	section.article div.related-articles .list a {
		position: relative;
		padding: 32px 0;
	}

	section.article div.related-articles .list a span {
		font-size: 1.125em; /* 18px / 16px */
		line-height: 1.333333333em; /* 24px / 18px */
		padding-right: 160px;
	}

	section.article div.related-articles .list a time {
		position: absolute;
		top: 32px;
		right: 0;
		font-size: 0.75em; /* 12px / 16px */
		line-height: 2em; /* 24px / 12px */
		margin-top: 0;
	}

	/* Sections - Aside sidebar */

	aside.sidebar {
		margin-top: 80px;
	}

	aside.sidebar > div {
		padding-top: 40px;
		margin-top: 40px;
	}

	aside.sidebar > div:first-child {
		padding-top: 0;
		border-top: 0 none;
		margin-top: 0;
	}

	aside.sidebar > div .more {
		font-size: 0.75em; /* 12px / 16px */
		line-height: 1.666666667em; /* 20px / 12px */
		margin-top: 40px;
	}

	aside.sidebar .tabs nav > a {
		font-size: 1.125em; /* 18px / 16px */
	}

	aside.sidebar .tabs div {
		margin-top: 20px;
	}

	aside.sidebar .tabs div a {
		font-size: 0.75em; /* 12px / 16px */
		line-height: 1.333333333em; /* 16px / 12px */
	}

	aside.sidebar .tabs div ul > li {
		font-size: 0.75em; /* 12px / 16px */
		line-height: 1.333333333em; /* 16px / 12px */
	}

	/* Sections - Articles */

	section.articles {
		padding-top: 140px;
	}

	section.articles .list article {
		padding-top: 40px;
		margin-top: 40px;
	}

	section.articles .list article header time {
		font-size: 0.875em; /* 14px / 16px */
		line-height: 1.428571429em; /* 20px / 14px */
		margin-bottom: 0;
	}

	section.articles .list article .body {
		margin-top: 20px;
	}

	section.articles .list article .body img {
		margin: 1em 0;
	}

	section.articles .list article footer {
		margin-top: 40px;
	}

	section.articles .list article footer .social span {
		font-size: 0.75em; /* 12px / 16px */
	}

	section.articles .list .load-more {
		margin-top: 80px;
	}

	section.articles .info-box form .row > div {
		width: 100%;
	}

	section.articles .list .posts-navigation {
		padding-top: 32px;
	}

	section.articles .list .posts-navigation a {
		font-size: 0.75em; /* 12px / 16px */
		line-height: 1.666666667em; /* 20px / 12px */
	}

	/* Sections - Error */

	section.error {
		padding-top: 140px;
	}

	/* Sections - About text */

	section.about-text {
		padding: 120px 0 204px 0;
	}

	section.about-text:first-child {
		padding: 180px 0 204px 0;
	}

	section.about-text .next {
		position: absolute;
		bottom: 36px;
		left: 50%;
		margin-top: 0;

		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}

	section.about-text .next span {
		font-size: 0.875em; /* 14px / 16px */
		line-height: 1.428571429em; /* 20px / 14px */
	}

	section.about-text .next a {
		background-size: 20px auto;
		width: 48px;
		height: 48px;
		margin: 16px auto 0 auto;
	}

	/* Sections - About values */

	section.about-values .list > div {
		width: 100%;
	}

	section.about-values .list > div .title {
		height: 160px;
	}

	section.about-values .list > div .title h2 {
		font-size: 1.875em; /* 30px / 16px */
		line-height: 160px;
	}

	section.about-values .list > div .body {
		padding: 36px 32px;
	}

	section.about-values .list > div .body .con-2 {
		margin-top: 1em;
	}

	/* Sections - About timeline */

	section.about-timeline .list .line {
		padding-top: 40px;
		margin-top: 40px;
	}

	section.about-timeline .list .line > div {
		margin-top: 40px;
	}

	section.about-timeline .list .line > div:first-child {
		padding-bottom: 40px;
	}

	section.about-timeline .list .line > div strong {
		font-size: 1.875em; /* 30px / 16px */
		line-height: 1.2em; /* 36px / 30px */
		margin-bottom: 0.933333333em; /* 28px / 30px */
	}

	section.about-timeline .list .line > div:first-child strong {
		font-size: 2.5em; /* 40px / 16px */
		line-height: 1.2em; /* 48px / 40px */
		margin-bottom: 0.7em; /* 28px / 40px */
	}

	section.about-timeline .list .line > div strong:after {
		width: 140px;
		margin-top: 0.933333333em; /* 28px / 30px */
	}

	section.about-timeline .list .line > div:first-child strong:after {
		width: 140px;
		margin-top: 0.7em; /* 28px / 40px */
	}

	section.about-timeline .list .line > div em {
		font-size: 1.5em; /* 24px / 16px */
		line-height: 1.166666667em; /* 28px / 24px */
		margin: 0.666666667em 0; /* 16px / 24px */
	}

	section.about-timeline .list .line > div:first-child em {
		font-size: 1.875em; /* 30px / 16px */
		line-height: 1.2em; /* 36px / 30px */
		margin: 0.533333333em 0; /* 16px / 30px */
	}

	section.about-timeline .load-more {
		margin-top: 80px;
	}

	/* Sections - About share */

	section.about-share {
		padding: 120px 0;
	}

	section.about-share .row > div:nth-child(3) {
		margin-left: 50%;
	}

	section.about-share .icon {
		min-height: 80px;
		padding-left: 108px;
	}

	section.about-share .icon i {
		background-size: 83px auto;
		width: 83px;
		height: 76px;
		top: 8px;
	}

	section.about-share h4 {
		padding-top: 4px;
	}

	section.about-share h6,
	section.about-share p {
		margin-left: 0;
	}

	section.about-share h6 {
		margin-top: 0;
	}

	section.about-share p.action {
		margin-top: 1em;
	}

	/* Sections - About contact */

	section.about-contact .row > div {
		margin-top: 0;
	}

	section.about-contact .row > div:nth-child(3) {
		clear: left;
		margin-top: 40px;
	}

	section.about-contact .icon {
		position: relative;
		min-height: 48px;
		/* padding-left: 72px; */
		margin-top: 32px;
	}

	section.about-contact .icon i {
		width: 48px;
		height: 48px;
		margin-top: 3px;
	}

	/* Section - Dealer */

	/* Section - Dealer - Search top */

	section.dealer .search-top {
		padding: 100px 0 40px 0;
	}

	section.dealer.distributor .search-top {
		padding: 40px 0;
	}

	section.dealer .search-top form input,
	section.dealer .search-top form select {
		line-height: 52px;
	}

	section.dealer .search-top form button {
		background: transparent url(../img/svg/icon_search_white.svg) left 16px top 50% no-repeat;
		background-size: auto 16px;
		line-height: 48px;
		padding-left: 52px;
	}

	section.dealer .search-top form button.loading:after {
		top: 16px;
		right: -34px;
	}

	section.dealer .search-top .legend {
		position: relative;
		margin-top: 40px;
	}

	section.dealer .search-top .legend > div {
		width: 50%;
		margin-left: 50%;
	}

	section.dealer .search-top .legend > div:first-child {
		position: absolute;
		width: auto;
		top: 50%;
		margin-left: 0;

		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}

	section.dealer .search-top .legend > div:nth-child(2) {
		margin-top: 0;
	}

	section.dealer.locator .search-top .results {
		margin-top: 40px;
	}

	section.dealer.locator .search-top .results a.location {
		width: 52px;
	}

	section.dealer.locator .search-top .results .map {
		height: 400px;
	}

	section.dealer.locator .search-top .results .list {
		margin-top: 40px;
	}

	section.dealer.locator .search-top .results .list .scrollable {
		height: 400px;
	}

	section.dealer.locator .search-top .results .list .scrollable > a {
		padding-top: 32px;
		margin-top: 32px;
	}

	section.dealer.locator .search-top .results .list .scrollable > a span {
		margin-top: 1em;
	}

	section.dealer.locator .search-top .results .list .scrollable > a i.location {
		background-size: auto 12px;
		padding-left: 20px;
	}

	section.dealer.locator .search-top .results .list .scrollable > a i.marks {
		margin-top: -7px;
		margin-left: 72px;
	}

	/* Section - Dealer - Results */

	section.dealer.distributor .results {
		margin: 40px 0;
	}

	section.dealer.distributor .results .list {
		padding: 0 22px;
	}

	section.dealer.distributor .results .list h3 {
		padding: 0 10px;
		margin: 1.333333333em 0 0 0; /* 40px / 30px */
	}

	section.dealer.distributor .results .list .letter > div {
		float: left;
		width: 50%;
		padding: 0 10px;
		margin: 40px 0 0 0;
	}

	section.dealer.distributor .results .list .letter > div:nth-child(2n+3) {
		clear: left;
	}

	/* Section - Dealer - Info */

	section.dealer .info {
		margin-top: 40px;
	}

	section.dealer .info .wrapper.online-dealers {
		margin-bottom: 40px;
	}

	section.dealer .info .wrapper.online-dealers .online-dealer-toggle {
	    background: url('../img/svg/icon_arrow_right_small_dark.svg') no-repeat left 0 top 5px;
	    background-size: auto 10px;
	    margin: 16px 0;
	}

	section.dealer .info .wrapper.online-dealers .online-dealer-toggle .online-dealer-toggle-data {
	    margin-top: 16px;
	}

	/* Section - Dealer - Action */

	section.dealer .action .wrapper > div {
		padding: 40px 0;
		margin-top: 40px;
	}

	section.dealer.distributor .action .wrapper > div {
		padding-top: 100px;
	}

	/* Section - Products top */

	section.products-top {
		padding: 180px 0 120px 0;
	}

	section.products-top ul {
		margin: -16px 0 0 0;
	}

	section.products-top ul > li a, section.products-top ul.filter_subcat > li a {
		font-size: 1em;
		line-height: 1.25em; /* 20px / 16px */
		padding: 16px 24px;
	}
	section.products-top ul.filter_subcat > li a{
		padding: 12px 24px;
	}

	/* Section - Products sort */

	section.products-sort {
		height: 61px;
	}

	section.products-sort .wrapper > * {
		height: 60px;
	}

	section.products-sort .wrapper .title {
		font-size: 0.75em; /* 12px / 16px */
		line-height: 60px;
	}

	section.products-sort .wrapper ul > li {
		height: 60px;
		margin: 0 0 0 32px;
	}

	section.products-sort .wrapper ul > li a {
		height: 44px;
		font-size: 0.75em; /* 12px / 16px */
		line-height: 40px;
		padding: 0 12px;
	}

	section.products-sort .wrapper ul > li label {
		font-size: 0.75em; /* 12px / 16px */
		height: 44px;
		line-height: 44px;
	}

	section.products-sort .wrapper ul > li input[type="checkbox"] {
		margin-right: 7px;
	}

	/* Sections - Products */

	section.products {
		padding: 40px 0 100px 0;
	}

	section.products .list {
		margin: 0 -32px;
	}

	section.products .list > div {
		margin-top: 48px;
		padding: 0 32px;
	}

	section.products .list > div:first-child {
		margin-top: 48px;
	}

	section.products .list > div:nth-child(-n+2) {
		margin-top: 0;
	}

	section.products .list > div:nth-child(2n+1) {
		clear: left;
	}

	section.products .list > div a .h1 {
		font-size: 1.875em; /* 30px / 16px */
		line-height: 1.2em; /* 36px / 30px */
		margin-bottom: 0.533333333em; /* 16px / 30px */
	}

	section.products .list > div a .h1:after {
		width: 112px;
		margin-top: 16px;
	}

	section.products .list > div a .h1.new span {
		font-size: 0.4em; /* 12px / 30px */
		line-height: inherit;
	}

	section.products .load-more {
		margin-top: 80px;
	}

	/* Sections - Products archive top */

	section.products-archive-top {
		padding: 100px 0 40px 0;
	}

	section.products-archive-top form input,
	section.products-archive-top form select {
		line-height: 52px;
	}

	section.products-archive-top form button {
		background: transparent url(../img/svg/icon_search_white.svg) left 16px top 50% no-repeat;
		background-size: auto 16px;
		line-height: 48px;
		padding-left: 52px;
	}

	/* Sections - Product top */

	section.product-top {
		padding: 60px 0 0 0;
	}

	section.product-top .slider {
		height: 440px;
	}

	section.product-top .description {
		padding: 32px;
	}

	section.product-top .description h5 {
		margin-bottom: 0.333333333em; /* 8px / 24px */
	}

	section.product-top .description .price {
		font-size: 1.25em; /* 20px / 16px */
		line-height: 3em; /* 48px / 16px */
		margin: 32px 0;
	}

	section.product-top .description .price .new {
		font-size: 2em; /* 40px / 20px */
		line-height: 1.2em; /* 48px / 40px */
	}

	section.product-top .description .price .discount + .new {
		margin-left: 16px;
	}

	section.product-top .description .buy {
		margin: 0 0 32px -48px;
	}

	section.product-top .description .buy > * {
		margin: 0 0 0 48px;
	}

	section.product-top .description .buy .quantity input {
		width: 52px;
		height: 52px;
		line-height: 52px;
		margin-left: 24px;
	}

	section.product-top .description .buy .finishes > div {
		height: 52px;
		padding: 6px 0;
		margin-left: 24px;
	}

	section.product-top .description .buy .finishes > div > span {
		width: 40px;
		height: 40px;
		margin-left: 16px;
	}

	section.product-top .description .buy .action {
		width: calc(100% - 48px);
		margin-top: 24px;
	}

	section.product-top .description .buy .action a + a {
		margin-left: 24px;
	}

	section.product-top .description .social {
		margin-top: 40px;
	}

	section.product-top .description .social span {
		font-size: 0.875em; /* 14px / 16px */
		line-height: 20px;
	}

	section.product-top .description .social a {
		height: 20px;
		margin-left: 36px;
	}

	section.product-top .description .social a img {
		height: 20px;
	}

	section.product-top .description .logos {
		padding-top: 16px;
		margin-top: 40px;
	}

	section.product-top .description .logos img {
		margin: 24px 36px 0 0;
	}

	section.product-top .description .desc {
		margin-top: 40px;
	}

	/* Sections - Product info */

	/* Sections - Product info - Product story */

	section.product-info .product-story .img {
		margin: 1em 0;
	}

	section.product-info .product-story > .excerpt {
		margin-bottom: 1em;
	}

	/* Sections - Product info - Design */

	section.product-info .design img {
		margin: 1em auto;
	}

	/* Sections - Product info - Specifications */

	section.product-info .specifications h1 {
		margin: 0.8em 0; /* 32px / 40px */
	}

	section.product-info .specifications .accessories {
		margin-top: -32px;
	}

	section.product-info .specifications .accessories > div {
		min-width: 80px;
		padding-top: 96px; /* 80px + 16px */
		margin-top: 32px;
		margin-right: 32px;
	}

	section.product-info .specifications .accessories > div:before {
		width: 80px;
		height: 80px;
	}

	section.product-info .specifications a.show-more {
		margin-top: 40px; /* +8px for vertical flow */
	}

	section.product-info .specifications a.show-more:after {
		top: 4px;
	}



	/* Sections - Product info - Downloads */

	section.product-info .downloads .row > div:nth-child(2n+2) {
		clear: left;
	}

	section.product-info .downloads h1 {
		margin-bottom: 1em;
	}

	section.product-info .downloads h3 {
		background-size: auto 24px;
		padding-left: 48px;
		margin: 0.666666667em 0; /* 20px / 30px */
	}

	section.product-info .downloads h3.data-sheets {
		margin-top: 0;
	}

	section.product-info .downloads h3.manuals {
		margin-top: 0;
	}

	/* Sections - Product logos */

	section.product-logos:last-child {
		margin-bottom: 80px;
	}

	section.product-logos .list {
		margin: 0 -32px;
	}

	section.product-logos .list:before,
	section.product-logos .list:after {
		width: calc(100% - 64px);
		left: 32px;
	}

	section.product-logos a {
	}

	section.product-logos .list>img,
	section.product-logos .list>a {
		margin: 64px 32px;
	}

	/* Sections - Products related */

	section.products-related .list {
		margin: 0 -32px;
	}

	section.products-related .list > div {
		padding: 0 32px;
		margin-top: 48px;
	}

	section.products-related .list > div:first-child {
		margin-top: 48px;
	}

	section.products-related .list > div:nth-child(-n+2) {
		margin-top: 0;
	}

	section.products-related .list > div .h1 {
		font-size: 1.875em; /* 30px / 16px */
		line-height: 1.2em; /* 36px / 30px */
		margin-bottom: 0.533333333em; /* 16px / 30px */
	}

	section.products-related .list > div .h1:after {
		width: 112px;
		margin-top: 16px;
	}

	section.products-related .list > div ul > li {
		font-size: 0.75em; /* 12px / 16px */
		line-height: inherit;
		margin: 0;
	}
}

/* Media queries - Tablet - Limited to tablet only */

@media (min-width: 768px) and (max-width: 1279px) {
	/* Fixes */

	.tablet-fullwidth-fix {
		width: 100% !important;
	}

	.tablet-hide-fix {
		display: none;
	}
}

	header#header nav#nav ul.menu li a.en_CA,
	header#header nav#nav ul.menu li a.en_UK,
	header#header nav#nav ul.menu li a.en_GB,
	header#header nav#nav ul.menu li a.en_EU,
	header#header nav#nav ul.menu li a.en_US,
	header#header nav#nav ul.menu li a.en_IE {
		background-position: left 31px top 50%;
		padding-left: 75px;
	}
	header#header nav#nav ul.menu li a.en_CA:before,
	header#header nav#nav ul.menu li a.en_UK:before,
	header#header nav#nav ul.menu li a.en_GB:before,
	header#header nav#nav ul.menu li a.en_EU:before,
	header#header nav#nav ul.menu li a.en_US:before {
		position: absolute;
	    left: 56px;
	    top: 50%;
	    line-height: 22px;
	    margin-top: -11px;
	    color: #fff;
	    font-size: 15px;
	    display: block !important;
	}
	header#header nav#nav ul.menu li a.en_CA:before {
		content: "$";
	}
	header#header nav#nav ul.menu li a.en_GB:before,
	header#header nav#nav ul.menu li a.en_UK:before {
		content: "£";
	}
	header#header nav#nav ul.menu li a.en_EU:before {
		content: "€";
	}
	header#header nav#nav ul.menu li a.en_US:before {
		content: "$";
	}

/* Media queries - Desktop */

@media (min-width: 1280px) {
	/* Animations */

	/* Fonts */

	/* Common */

	section {
		padding: 120px 0;
	}

	.wrapper {
		max-width: 1344px; /* 1280px + 64px for padding */
		margin-left: auto;
		margin-right: auto;
	}

	/* Fixes */

	/* Text */

	blockquote {
		line-height: 1.777777778em; /* 32px / 18px */
		padding-top: 32px;
		margin: 1.777777778em 0;
	}

	a {
		-webkit-transition: border 0.2s ease-in-out;
		transition: border 0.2s ease-in-out;
	}

	a:hover {
		border-color: #ed3024;
	}

	.btn {
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	.btn:hover {
		background: #111;
		color: #fff;
		border-color: #111;
	}

	.btn.white:hover {
		background: #fff;
		color: #111;
		border-color: #fff;
	}

	.btn.dark:hover {
		background: #ed3024;
		color: #fff;
	}

	.btn.link:hover {
		background: transparent;
		color: #333;
	}

	.load-more {
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	.load-more:hover {
		background: #111;
		color: #fff;
		border-color: #111;
	}

	/* Grid */

	.row > *.divider {
		margin-top: 60px;
	}

	.row > *.divider:before {
		margin: 0 0 60px 0;
	}

	.row > .col-1-12 {
		width: 8.333333333%;
	}

	.row > .col-2-12 {
		width: 16.666666667%;
	}

	.row > .col-3-12 {
		width: 25%;
	}

	.row > .col-4-12 {
		width: 33.333333333%!important; 
	}

	.row > .col-5-12 {
		width: 41.666666667%;
	}

	.row > .col-6-12 {
		width: 50%;
	}

	.row > .col-7-12 {
		width: 58.333333333%;
	}

	.row > .col-8-12 {
		width: 66.666666667%;
	}

	.row > .col-9-12 {
		width: 75%;
	}

	.row > .col-10-12 {
		width: 83.333333333%;
	}

	.row > .col-11-12 {
		width: 91.666666667%;
	}

	.row > .col-12-12 {
		width: 100%;
	}

	/* Forms */

	form button,
	form input[type=submit] {
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	form button:hover,
	form input[type=submit]:hover {
		background: #ed3024;
		color: #fff;
	}

	/* Header */

	header#header > .wrapper {
		max-width: 1504px; /* 1440px + 64px for padding */
	}

	/* Header - Search */

	div.search form {
		max-width: 1440px;
		margin: 0 auto;
	}

	/* Header - Logo */

	/* Header - Nav */

	header#header nav#nav {
		position: static;
		float: right;
		top: auto;
		right: auto;
	}

	/* Header - Nav - Menu */

	header#header nav#nav ul.menu {
		background: transparent;
		position: static;
		float: left;
		width: auto;
		height: 60px;
		top: auto;
		right: auto;
		overflow-y: visible;
		overflow-x: visible;
		z-index: 0;
	}

	header#header nav#nav ul.menu > li {
		float: left;
	}

	header#header nav#nav ul.menu > li.with-submenu {
		background: none;
	}

	header#header nav#nav ul.menu > li > a {
		background-color: rgba(0, 0, 0, 0);
		font-size: 0.75em; /* 12px / 16px */
		padding: 0 24px;

		-webkit-transition: background 0.2s ease-in-out, color 0.4s linear;
		transition: background 0.2s ease-in-out, color 0.4s linear;
	}

	header#header nav#nav ul.menu > li > a:hover {
		background-color: rgba(0, 0, 0, 0.1);
	}

	header#header nav#nav ul.menu > li > a:active {
		background-color: rgba(0, 0, 0, 0.1);
		color: #fff;
	}

	header#header.light nav#nav ul.menu > li > a {
		color: #111;
	}

	header#header nav#nav ul.menu > li > a:after {
		content: none;
	}

	header#header nav#nav ul.menu > li.selected > a,
	header#header nav#nav ul.menu > li.current-menu-item > a,
	header#header nav#nav ul.menu > li.current-menu-parent > a {
		background-color: rgba(0, 0, 0, 0.2);
		color: #fff;
	}

	header#header.light nav#nav ul.menu > li.selected > a {
		color: #111;
	}

	header#header nav#nav ul.menu > li > a.user,
	header#header nav#nav ul.menu > li > a.location {
		display: none;
	}

	/* Header - Nav - Sub menu */

	header#header nav#nav div.sub-menu {
		display: none;
		width: 100%;
		height: 60px;
		top: 60px;
		right: 0;
		overflow-y: visible;
		overflow-x: visible;
		padding: 8px 0;

		-webkit-transition: top 0.3s ease-in-out;
		transition: top 0.3s ease-in-out;
	}

	header#header.search-on nav#nav div.sub-menu {
		top: 120px;
	}

	header#header nav#nav div.sub-menu.on {
		display: block;
	}

	header#header nav#nav div.sub-menu .wrapper {
		max-width: 1504px; /* 1440px + 64px for padding */
		padding: 0 32px;
	}

	header#header nav#nav span.back-title {
		display: none;
	}

	header#header nav#nav div.sub-menu .title {
		background: transparent;
		display: block;
		float: left;
		height: 44px;
		font-weight: 700;
		line-height: 44px;
		font-size: 0.625em; /* 10px / 16px */
		cursor: default;
		padding: 0;
	}

	header#header nav#nav div.sub-menu .title:active {
		color: #fff;
	}

	header#header nav#nav div.sub-menu ul {
		float: right;
	}

	header#header nav#nav div.sub-menu ul > li {
		float: left;
		height: auto;
	}

	header#header nav#nav div.sub-menu ul > li > a {
		height: 44px;
		line-height: 40px;
		font-size: 0.625em; /* 10px / 16px */
		padding: 0 16px;
		border: 2px solid transparent;

		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	header#header nav#nav div.sub-menu ul > li > a:hover {
		color: #ed3024;
	}

	header#header nav#nav div.sub-menu ul > li > a:active {
		color: #ed3024;
	}

	header#header nav#nav div.sub-menu ul > li > a:after {
		content: none;
	}

	header#header nav#nav div.sub-menu ul > li.selected > a,
	header#header nav#nav div.sub-menu ul > li.current-menu-item > a {
		font-weight: 700;
		color: #fff;
		border-color: #fff;
	}

	/* Header - Nav - Shop menu */

	header#header nav#nav ul.shop-menu {
		float: left;
	}

	header#header nav#nav ul.shop-menu > li {
		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}

	header#header nav#nav ul.shop-menu > li:hover {
		background-color: rgba(0, 0, 0, 0.1);
	}

	header#header nav#nav ul.shop-menu > li.user {
		background-image: url(../img/svg/icon_user_white.svg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: auto 16px;
		display: block;
	}

	header#header nav#nav ul.shop-menu > li.user:before {
		background: #fff;
		position: absolute;
		display: block;
		width: 1px;
		height: 16px;
		top: 22px;
		left: -1px;
		content: '';
		border: 0 none;

		-webkit-transition: background 0.4s linear;
		transition: background 0.4s linear;
	}

	header#header.light nav#nav ul.shop-menu > li.user:before {
		background: #111;
	}

	header#header nav#nav ul.shop-menu > li.location {
		background-position: center center;
		background-repeat: no-repeat;
		background-size: auto 16px;
		display: block;
	}

	header#header nav#nav ul.shop-menu > li.location.at { background-image: url(../img/flags/flag_austria.png); }
	header#header nav#nav ul.shop-menu > li.location.be { background-image: url(../img/flags/flag_belgium.png); }
	header#header nav#nav ul.shop-menu > li.location.bg { background-image: url(../img/flags/flag_bulgaria.png); }
	header#header nav#nav ul.shop-menu > li.location.ca,
	header#header nav#nav ul.shop-menu > li.location.en_CA { background-image: url(../img/flags/flag_canada.png); }
	header#header nav#nav ul.shop-menu > li.location.hr { background-image: url(../img/flags/flag_croatia.png); }
	header#header nav#nav ul.shop-menu > li.location.cy { background-image: url(../img/flags/flag_cyprus.png); }
	header#header nav#nav ul.shop-menu > li.location.cz { background-image: url(../img/flags/flag_czech.png); }
	header#header nav#nav ul.shop-menu > li.location.dk { background-image: url(../img/flags/flag_denmark.png); }
	header#header nav#nav ul.shop-menu > li.location.ee { background-image: url(../img/flags/flag_estonia.png); }
	header#header nav#nav ul.shop-menu > li.location.fi { background-image: url(../img/flags/flag_finland.png); }
	header#header nav#nav ul.shop-menu > li.location.fr,
	header#header nav#nav ul.shop-menu > li.location.fr_FR { background-image: url(../img/flags/flag_france.png); }
	header#header nav#nav ul.shop-menu > li.location.de { background-image: url(../img/flags/flag_germany.png); }
	header#header nav#nav ul.shop-menu > li.location.gr { background-image: url(../img/flags/flag_greece.png); }
	header#header nav#nav ul.shop-menu > li.location.hu { background-image: url(../img/flags/flag_hungary.png); }
	header#header nav#nav ul.shop-menu > li.location.ie { background-image: url(../img/flags/flag_ireland.png); }
	header#header nav#nav ul.shop-menu > li.location.it { background-image: url(../img/flags/flag_italy.png); }
	header#header nav#nav ul.shop-menu > li.location.lv { background-image: url(../img/flags/flag_latvia.png); }
	header#header nav#nav ul.shop-menu > li.location.lt { background-image: url(../img/flags/flag_lithuania.png); }
	header#header nav#nav ul.shop-menu > li.location.lu { background-image: url(../img/flags/flag_luxembourg.png); }
	header#header nav#nav ul.shop-menu > li.location.mt { background-image: url(../img/flags/flag_malta.png); }
	header#header nav#nav ul.shop-menu > li.location.nl { background-image: url(../img/flags/flag_netherlands.png); }
	header#header nav#nav ul.shop-menu > li.location.pl { background-image: url(../img/flags/flag_poland.png); }
	header#header nav#nav ul.shop-menu > li.location.pt { background-image: url(../img/flags/flag_portugal.png); }
	header#header nav#nav ul.shop-menu > li.location.ro { background-image: url(../img/flags/flag_romania.png); }
	header#header nav#nav ul.shop-menu > li.location.sk { background-image: url(../img/flags/flag_slovak-republic.png); }
	header#header nav#nav ul.shop-menu > li.location.si { background-image: url(../img/flags/flag_slovenia.png); }
	header#header nav#nav ul.shop-menu > li.location.es { background-image: url(../img/flags/flag_spain.png); }
	header#header nav#nav ul.shop-menu > li.location.se { background-image: url(../img/flags/flag_sweden.png); }
	header#header nav#nav ul.shop-menu > li.location.en,
	header#header nav#nav ul.shop-menu > li.location.us,
	header#header nav#nav ul.shop-menu > li.location.en_US { background-image: url(../img/flags/flag_united-states.png); }
	header#header nav#nav ul.shop-menu > li.location.uk,
	header#header nav#nav ul.shop-menu > li.location.en_UK { background-image: url(../img/flags/flag_uk.png); }
	header#header nav#nav ul.shop-menu > li.location.eu,
	header#header nav#nav ul.shop-menu > li.location.en_EU { background-image: url(../img/flags/flag_eu.png); }
	header#header nav#nav ul.shop-menu > li.location.int,
	header#header nav#nav ul.shop-menu > li.location.int_INT { background-image: url(../img/flags/flag_earth.png); }



	header#header nav#nav ul.shop-menu > li.location.en_CA,
	header#header nav#nav ul.shop-menu > li.location.en_GB,
	header#header nav#nav ul.shop-menu > li.location.en_EU,
	header#header nav#nav ul.shop-menu > li.location.en_US {
		background-position: 4px center;
	}
	header#header nav#nav ul.shop-menu > li.location.en_CA:after,
	header#header nav#nav ul.shop-menu > li.location.en_GB:after,
	header#header nav#nav ul.shop-menu > li.location.en_EU:after,
	header#header nav#nav ul.shop-menu > li.location.en_US:after {
		position: absolute;
	    right: 17px;
	    top: 50%;
	    line-height: 22px;
	    margin-top: -11px;
	    color: #fff;
	    font-size: 15px;
	}
	header#header nav#nav ul.shop-menu > li.location.en_CA:after {
		content: "$";
	}
	header#header nav#nav ul.shop-menu > li.location.en_GB:after {
		content: "£";
	}
	header#header nav#nav ul.shop-menu > li.location.en_EU:after {
		content: "€";
	}
	header#header nav#nav ul.shop-menu > li.location.en_US:after {
		content: "$";
	}
	header#header nav#nav ul.shop-menu > li.toggle {
		display: none;
	}
	header#header nav#nav ul.shop-menu > li.user > a {
		background: url(../img/svg/icon_user_dark.svg) center center no-repeat;
		background-size: auto 16px;
	}

	/* Header - Fade */

	header#header div.fade {
		display: none;
	}

	/* Footer */

	footer#footer {
		padding: 72px 0 36px 0;
	}

	footer#footer .wrapper {
		max-width: 1504px; /* 1440px + 64px for padding */
	}

	footer#footer .top {
		margin-bottom: 72px;
	}

	footer#footer .top > div {
		margin-top: 0;
	}

	footer#footer .top > div:first-child {
		width: 25%;
		margin-top: 0;
	}

	footer#footer .top > div:nth-child(4) {
		clear: none;
	}

	footer#footer .top .logo img {
		height: 72px;
	}

	footer#footer .top .title {
		margin-bottom: 32px;
	}

	footer#footer .top ul > li a {
		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	footer#footer .top ul > li a:hover {
		color: #ed3024;
	}

	footer#footer .top .support-centre a,
	footer#footer .top .support-email a {
		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	footer#footer .top .support-centre a:hover,
	footer#footer .top .support-email a:hover {
		color: #ed3024;
	}

	footer#footer .social {
		margin-bottom: 72px;
	}

	footer#footer .social a img {
		-webkit-transform: translateY(0);
		transform: translateY(0);

		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	footer#footer .social a:hover img {
		-webkit-transform: translateY(8px);
		transform: translateY(8px);
	}

	footer#footer .social a:active img {
		opacity: 1;
	}

	footer#footer .social a span {
		display: block;
		position: absolute;
		bottom: -26px;
		left: 50%;
		font-size: 0.625em; /* 10px / 16px */
		line-height: 1.6em; /* 16px / 10px */
		color: #fff;
		opacity: 0;
		pointer-events: none;

		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);

		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	footer#footer .social a:hover span {
		opacity: 1;

		-webkit-transform: translate(-50%, 8px);
		transform: translate(-50%, 8px);
	}

	footer#footer .bottom {
		padding-top: 36px;
	}

	footer#footer .bottom > div {
		margin: 0;
	}

	footer#footer .bottom > div.col-3-12 {
		width: 25%;
	}

	footer#footer .bottom > div.col-6-12 {
		width: 50%;
	}

	footer#footer .bottom > div:nth-child(1) {
		text-align: left;
	}

	footer#footer .bottom > div:nth-child(2) {
		text-align: center;
	}

	footer#footer .bottom > div:nth-child(3) {
		text-align: right;
	}

	footer#footer .bottom ul.nav > li a {
		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	footer#footer .bottom ul.nav > li a:hover {
		color: #ed3024;
	}

	footer#footer .bottom .partners a img {
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}

	footer#footer .bottom .partners a:hover img {
		opacity: 0.7;
	}

	/* Sections */

	/* Sections - Language */

	section.language {
		padding: 120px 0;
	}

	section.language .continents {
		position: relative;
		margin: 52px -10px 0 -10px;
	}

	section.language .continents.on:before {
		background: #dcdcdc;
		position: absolute;
		height: 1px;
		width: calc(100% - 20px);
		left: 10px;
		bottom: -36px;
		content: '';
	}

	section.language .continents > div {
		float: left;
		width: 25%;
		min-height: 0;
		text-align: center;
		padding: 0 10px;
		border: 0 none;
	}

	section.language .continents > div:last-child {
		border: 0 none;
	}

	section.language .continents > div .el {
		position: relative;
		padding: 0;
	}

	section.language .continents > div.on .el:after {
		background: #fff;
		position: absolute;
		width: 16px;
		height: 16px;
		left: 50%;
		bottom: -44px;
		content: '';
		border: 1px solid #dcdcdc;
		border-color: #fff #fff #dcdcdc #dcdcdc;
		margin-left: -8px;

		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	section.language .continents > div .el .img {
		float: none;
		height: 88px;
		width: 100%;
	}

	section.language .continents > div .el .img svg {
		position: static;
		max-width: none;
		max-height: none;
		height: 88px;
		width: auto;
		top: 0;
		left: 0;
		margin: 0 auto;

		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	section.language .continents > div .el .img svg path,
	section.language .continents > div .el .img svg polygon {
		-webkit-transition: fill 0.2s ease-in-out;
		transition: fill 0.2s ease-in-out;
	}

	section.language .continents > div.on .el .img svg path,
	section.language .continents > div.on .el .img svg polygon {
		fill: #ed3024;
	}

	section.language .continents > div .el span {
		float: none;
		font-size: 1em;
		line-height: 1.25em; /* 20px / 16px */
		margin: 32px 0 0 0;

		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	section.language .continents > div.on .el span {
		color: #ed3024;
	}

	section.language .continents > div .el:active span {
		color: #111;
	}

	section.language .continents > div .countries {
		position: absolute;
		width: 100%;
		top: 212px; /* 140px + 72px */
		left: 0;
		text-align: left;
		padding-bottom: 140px;
	}

	section.language .continents > div .countries > div {
		position: relative;
		float: left;
		width: 20%;
		min-height: 0;
		padding: 0 10px;
		border: 0 none;
		margin-top: 12px;
	}

	section.language .continents > div .countries > div:nth-child(-n+5) {
		margin-top: 0;
	}

	section.language .continents > div .countries > div > a,
	section.language .continents > div .countries > div > span {
		background-position: left 0 top 50%;
		line-height: 40px;
		padding: 0 0 0 32px;

		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	section.language .continents > div .countries > div > a:hover,
	section.language .continents > div .countries > div > span:hover {
		color: #ed3024;
	}

	section.language .continents > div .countries > div > span:after {
		content: none;
	}

	section.language .continents > div .countries > div.no-flag > a,
	section.language .continents > div .countries > div.no-flag > span {
		padding-left: 0;
	}

	section.language .continents > div .countries > div ul,
	section.language .continents > div .countries > div.on ul {
		display: none;
		position: absolute;
		background: #111;
		left: 10px;
		top: 40px;
		padding: 8px 0;
	}

	section.language .continents > div .countries > div:hover ul {
		display: block;
	}

	section.language .continents > div .countries > div ul:before {
		position: absolute;
		display: block;
		width: 0;
		height: 0;
		top: 8px;
		left: 8px;
		content: '';
		border: 4px solid #ed3024;
		border-color: #ed3024 #111 #111 #ed3024;
	}

	section.language .continents > div .countries > div ul > li {
		margin: 0;
	}

	section.language .continents > div .countries > div ul > li:before {
		content: none;
	}

	section.language .continents > div .countries > div ul > li a {
		display: block;
		color: #fff;
		padding: 4px 32px;
		border: 0 none;

		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	section.language .continents > div .countries > div ul > li a:hover,
	section.language .continents > div .countries > div ul > li a:active {
		color: #ed3024;
	}

	/* Sections - Slider wrap */

	div#slider-wrap #slider #prevbutton,
	div#slider-wrap #slider #nextbutton {
		background-size: auto 88px;
		display: none;
		height: 168px;
		width: 168px;

		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}

	div#slider-wrap #slider:hover #prevbutton,
	div#slider-wrap #slider:hover #nextbutton {
		display: block;
	}

	div#slider-wrap #slider #prevbutton:hover,
	div#slider-wrap #slider #nextbutton:hover {
		opacity:1;
	}

	/* Sections - Promo */

	section.promo {
		/*padding: 460px 0 400px 0;*/
	}

	/* Sections - Products short */

	section.products-short {
		padding: 120px 0;
	}

	section.products-short .wrapper {
		 padding: 0 32px;
	}

	section.products-short .list {
		margin: 0 -10px;
	}

	section.products-short .list > a {
		background: transparent !important;
		width: 33.333333333%;
		height: 0;
		padding: 0 10px calc(33.333333333% - 20px) 10px;
	}

	section.products-short .list > a > span {
		position: relative;
		width: 100%;
		height: 0;
		padding-bottom: 100%;
	}

	section.products-short .list > a > span:after {
		position: absolute;
		background: rgba(25, 25, 25, 0.7);
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
		content: '';
		opacity: 0;

		-webkit-transition: opacity 0.4s ease-in-out;
		transition: opacity 0.4s ease-in-out;
	}

	section.products-short .list > a:hover > span:after {
		opacity: 1;
	}

	section.products-short .list > a > span strong {
		padding: 0 54px;
		z-index: 2;
	}

	section.products-short .list > a:active > span strong {
		color: #fff;
	}

	section.products-short .list > a > span strong .h1 {
		opacity: 0;

		-webkit-transform: translate3d(28px, 0, 0);
		transform: translate3d(28px, 0, 0);

		-webkit-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}

	section.products-short .list > a:hover > span strong .h1 {
		opacity: 1;

		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	section.products-short .list > a > span strong .h1:after {
		opacity: 0;

		-webkit-transform: translate3d(28px, 0, 0);
		transform: translate3d(28px, 0, 0);

		-webkit-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}

	section.products-short .list > a:hover > span strong .h1:after {
		opacity: 1;

		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	section.products-short .list > a > span strong .p {
		opacity: 0;

		-webkit-transform: translate3d(84px, 0, 0);
		transform: translate3d(84px, 0, 0);

		-webkit-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}

	section.products-short .list > a:hover > span strong .p {
		opacity: 1;

		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	/* Sections - Blog dealer */

	section.blog-dealer .row > div {
		text-align: center;
	}

	section.blog-dealer .row > div:nth-child(2) {
		/* display: block; */
	}

	section.blog-dealer strong {
		font-size: 4.375em; /* 70px / 16px */
		line-height: 1.2em; /* 84px / 70px */
	}

	section.blog-dealer .icon img {
		position: static;
		display: inline-block;
		height: 48px;
		width: auto;
		top: auto;
		left: auto;
	}

	section.blog-dealer .icon p {
		margin: 1em 0;
	}

	section.blog-dealer img.logo {
		width: 72px;
		height: auto;
	}

	section.blog-dealer p.slogan {
		color: #dcdcdc;
		text-transform: uppercase;
		font-weight: 700;
		margin: 32px 0 0 0;
	}

	section.blog-dealer p.slogan:after {
		display: block;
		background: #dcdcdc;
		width: 72px;
		height: 2px;
		content: '';
		margin: 52px auto;
	}

	/* Sections - Promo img */

	section.promo-img .wrapper {
		position: relative;
	}

	section.promo-img .img {
		position: relative;
		display: block;
		width: 50%;
	}

	section.promo-img .bg {
		position: absolute;
		top: 0;
		width: 50%;
		height: 100%;
	}

	section.promo-img.right .bg {
		right: 0;
	}

	section.promo-img.left .bg {
		left: 0;
	}

	section.promo-img .content {
		position: absolute;
		width: calc(50% - 42px); /* 32px + 10px */
		top: 50%;
		text-align: left;

		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}

	section.promo-img.left .content {
		left: calc(50% + 10px);
	}

	/* Sections - Promo img - Styles */

	section.promo-img.style-1 {
		padding: 0;
	}

	section.promo-img.style-1 .wrapper {
		height: 700px;
	}

	section.promo-img.style-1 .content {
		text-align: center;
	}

	/* Sections - Support */

	section.support {
		padding: 300px 0;
	}

	section.support:hover a {
		-webkit-transform: scale(1.1, 1.1);
		transform: scale(1.1, 1.1);
	}

	/* Sections - Newsletter */

	section.newsletter form .row > .col-8-12 {
		width: 66.666666667%;
	}

	section.newsletter form .row > .col-4-12 {
		width: 33.333333333%;
	}

	section.newsletter form button:hover,
	section.newsletter form input[type=submit]:hover {
		background-color: #333;
	}
	/* Sections - Newsletter */

	section.newsletter1 form .row > .col-8-12 {
		width: 66.666666667%;
	}

	section.newsletter1 form .row > .col-4-12 {
		width: 33.333333333%;
	}

	section.newsletter1 form button:hover,
	section.newsletter1 form input[type=submit]:hover {
		background-color: #333;
	}


	/* Sections - Title header */

	section.title-header {
		padding: 240px 0 180px 0;
	}

	/* Sections - Vertical nav */

	section.vertical-nav {
		height: auto;
	}

	section.vertical-nav .wrapper {
		padding: 0 32px;
	}

	section.vertical-nav .scrollable {
		height: auto;
		overflow: hidden;
		white-space: normal;
		padding-top: 0;
	}

	section.vertical-nav .scrollable a {
		margin: 8px 32px 0 0;
	}

	section.vertical-nav .scrollable a:hover {
		color: #a9a9a9;
	}

	section.vertical-nav .scrollable a.selected:hover {
		color: #111;
	}

	section.vertical-nav .scrollable a:first-child {
		margin-left: 0;
	}

	section.vertical-nav .scrollable a:last-child {
		margin-right: 0;
	}

	/* Section - Downloads */

	section.downloads .wrapper {
		overflow: hidden;
	}

	section.downloads .list {
		margin: -168px -84px 0 -84px;
	}

	section.downloads .list > div {
		width: 33.333333333%;
		border-width: 0 84px;
		margin-top: 168px;
	}

	section.downloads .list > div a {
		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	section.downloads .list > div a:hover {
		color: #ed3024;
	}

	section.downloads .load-more {
		margin-top: 120px;
	}

	/* Sections - Simple text */

	section.simple-text .two-column {
		margin: 0 -10px;
	}

	section.simple-text .two-column > p {
		float: left;
		width: 50%;
		padding: 10px;
	}

	section.simple-text .two-column > p:nth-child(-n+2) {
		margin-top: 0;
	}

	section.simple-text .facts {
		position: relative;
		margin: 120px -10px 0 -10px;
	}

	section.simple-text .facts > h3 {
		position: absolute;
		top: 0;
		left: 10px;
	}

	section.simple-text .facts > div {
		float: left;
		width: 33.333333333%;
		padding: 0 10px;
		margin-top: 60px;
	}

	section.simple-text .facts > div:nth-child(2n+2) {
		margin-left: 33.333333333%;
	}

	section.simple-text .facts > div:nth-child(-n+3) {
		margin-top: 0;
	}

	/* Sections - Brand */

	section.brand .img {
		padding: 0;
		border: 0 none;
		margin: 0;
	}

	section.brand h4 + .img {
		margin-top: 120px;
	}

	section.brand .background {
		height: 260px;
		margin: 0;
		border: 80px solid #fff;
		border-width: 0 80px;
	}

	section.brand a.arrow {
		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}

	section.brand a.arrow:hover {
		background-position: right 0 top 50%;
	}

	/* Sections - Brand logo colours */

	section.brand-logo-colours .switch {
		height: 200px;
	}

	section.brand-logo-colours .switch div {
		padding: 64px 0;
	}

	section.brand-logo-colours .switch div img {
		height: 72px;
	}

	/* Sections - Brand colour usage */

	section.brand-colour-usage .logo-white-wide,
	section.brand-colour-usage .logo-red-wide {
		height: 220px;
	}

	section.brand-colour-usage .logo-black-tall,
	section.brand-colour-usage .logo-red-tall {
		height: 336px;
	}

	/* Sections - Brand palette */

	section.brand-palette .colour {
		margin-top: 64px;
	}

	section.brand-palette .colour:first-child {
		margin-left: 33.333333333%;
	}

	section.brand-palette .colour > * {
		margin-left: calc(100% - 180px);
	}

	/* Sections - Press releases */

	section.press-releases .list a {
		padding: 48px 0;
	}

	section.press-releases .list a:hover {
		border-bottom-color: #a9a9a9;
	}

	section.press-releases .list a time {
		top: 48px;
	}

	section.press-releases .load-more {
		margin-top: 120px;
	}

	/* Sections - Article */

	section.article {
		padding-top: 180px;
	}

	/* Sections - Article - Article */

	section.article article header nav a {
		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}

	section.article article header nav a:hover {
		background-position: right 0 top 50%;
	}

	section.article article header .social a {
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}

	section.article article header .social a:hover {
		opacity: 0.7;
	}

	section.article article .body {
		margin-top: 60px;
	}

	section.article article footer {
		margin-top: 60px;
	}

	section.article article footer .social {
		padding: 32px 0;
	}

	section.article article footer .social a {
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}

	section.article article footer .social a:hover {
		opacity: 0.7;
	}

	section.article article footer nav a {
		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}

	section.article article footer nav a[rel='prev']:hover {
		background-position: left 0 top 50%;
	}

	section.article article footer nav a[rel='next']:hover {
		background-position: right 0 top 50%;
	}

	/* Sections - Article - Related articles */

	section.article div.related-articles {
		margin-top: 120px;
	}

	section.article div.related-articles .list a {
		padding: 48px 0;
	}

	section.article div.related-articles .list a:hover {
		border-bottom-color: #a9a9a9;
	}

	section.article div.related-articles .list a time {
		top: 48px;
	}

	/* Sections - Aside sidebar */

	aside.sidebar {
		padding-left: 120px;
		margin-top: 0;
	}

	aside.sidebar > div .more {
		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	aside.sidebar > div .more:hover {
		color: #ed3024;
	}

	aside.sidebar .tabs nav > a:hover {
		background-color: #f8f8f8;
	}

	aside.sidebar .tabs div a {
		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	aside.sidebar .tabs div a:hover {
		color: #ed3024;
	}

	/* Sections - Articles */

	section.articles {
		padding-top: 180px;
	}

	section.articles .list article {
		position: relative;
		padding-top: 80px;
		margin-top: 80px;
	}

	section.articles .list article header a:hover {
		border-bottom-color: #111;
	}

	section.articles .list article .body {
		margin-top: 40px;
	}

	section.articles .list article .body .more {
		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}

	section.articles .list article .body .more:hover {
		background-position: right 0 top 50%;
	}

	section.articles .list article footer .social a {
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}

	section.articles .list article footer .social a:hover {
		opacity: 0.7;
	}

	section.articles .list .load-more {
		margin-top: 120px;
	}

	section.articles .list .posts-navigation a {
		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}

	section.articles .list .posts-navigation .nav-previous a:hover {
		background-position: left 0 top 50%;
	}

	section.articles .list .posts-navigation .nav-next a:hover {
		background-position: right 0 top 50%;
	}

	/* Sections - Error */

	section.error {
		padding-top: 180px;
	}

	/* Sections - About text */

	section.about-text {
		padding: 240px 0 324px 0;
	}

	section.about-text:first-child {
		padding: 380px 0 404px 0;
	}

	section.about-text .next {
		 bottom: 60px;
	}

	section.about-text .next a {
		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}

	section.about-text .next a:hover {
		background-color: rgba(255, 255, 255, 0.5);
	}

	/* Sections - About values */

	section.about-values {
		overlow: hidden;
		padding: 280px 0 364px 0;
	}

	section.about-values .list {
		margin: 0 -10px;
	}

	section.about-values .list > div {
		width: 25%;
		padding: 0 10px;
	}

	section.about-values .list > div .title {
		height: 0;
		padding-bottom: 100%;
	}

	section.about-values .list > div .title:after {
		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}

	section.about-values .list > div .title:hover:after {
		background: rgba(25, 25, 25, 0.7);
	}

	section.about-values .list > div .title h2 {
		line-height: 1.2em; /* 36px / 30px */
		padding-top: calc(50% - 16px);
	}

	section.about-values .list > div .body {
		display: block;
		background: #111;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: -100%;
		z-index: 4;
		overflow: hidden;
		opacity: 0;
		padding: 160px 0;

		-webkit-transition: left 0.0s linear 0.4s, opacity 0.4s linear;
		transition: left 0.0s linear 0.4s, opacity 0.4s linear;
	}

	section.about-values .list > div.on .body {
		left: 0;
		opacity: 1;

		-webkit-transition: left 0.0s linear, opacity 0.4s linear;
		transition: left 0.0s linear, opacity 0.4s linear;
	}

	section.about-values .list > div .body .close {
		position: absolute;
		display: block;
		top: 40px;
		right: 40px;
		font-size: 0.875em; /* 14px / 16px */
		line-height: 32px;
		text-transform: uppercase;
		color: #fff;
		z-index: 2;
		border: 0 none;
		padding-right: 48px;
	}

	section.about-values .list > div .body .close:after {
		background: url(../img/svg/icon_x_white.svg) center center no-repeat;
		background-size: 32px auto;
		position: absolute;
		display: block;
		width: 32px;
		height: 32px;
		top: 0;
		right: 0;
		content: '';
		pointer-events: none;

		-webkit-transition: transform 0.2s ease-in-out;
		transition: transform 0.2s ease-in-out;
	}

	section.about-values .list > div .body .close:hover:after {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	section.about-values .list > div .body .img {
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		position: absolute;
		display: block;
		height: 100%;
		top: 0;
	}

	section.about-values .list > div.performance .body .img {
		width: calc(50% - 40px);
		left: 0;
	}

	section.about-values .list > div.value .body .img {
		width: calc(50% - 40px);
		right: 0;
	}

	section.about-values .list > div.simplicity .body .img {
		width: 33.333333333%;
		left: 33.333333333%;
	}

	section.about-values .list > div.performance .body .con {
		width: calc(50% - 80px);
		margin-left: calc(50% + 40px);
	}

	section.about-values .list > div.performance .body .con h3,
	section.about-values .list > div.performance .body .con h5,
	section.about-values .list > div.performance .body .con p {
		/* width: 41.666666667%; */
		width: 85%;
	}

	section.about-values .list > div.performance .body .con blockquote {
		width: 33.333333333%;
		margin-left: 50%;
		margin-top: -200px;
	}

	section.about-values .list > div.performance .body .con blockquote p {
		width: 100%;
		margin-left: 0;
	}

	section.about-values .list > div.value .body .con {
		width: calc(50% - 80px);
		margin-left: 40px;
	}

	section.about-values .list > div.value .body .con h3,
	section.about-values .list > div.value .body .con h5,
	section.about-values .list > div.value .body .con p {
		width: 85%;
		margin-left: 8.333333333%;
	}

	section.about-values .list > div.value .body .con blockquote {
		width: 33.333333333%;
		margin-left: 58.333333333%;
	}

	section.about-values .list > div.value .body .con blockquote p {
		width: 100%;
		margin-left: 0;
	}

	section.about-values .list > div.simplicity .body .con-1 {
		float: left;
		width: calc(33.333333333% - 120px);
		margin-left: 40px;
	}

	section.about-values .list > div.simplicity .body .con-1 h3,
	section.about-values .list > div.simplicity .body .con-1 h5,
	section.about-values .list > div.simplicity .body .con-1 p {
		margin-left: 25%;
	}

	section.about-values .list > div.simplicity .body .con-2 {
		float: left;
		width: calc(33.333333333% - 120px);
		margin-left: calc(33.333333333% + 160px);
		margin-top: 0;
	}

	section.about-values .list > div.simplicity .body .con-2 p {
		width: 75%;
	}

	section.about-values .list > div.simplicity .body .con-2 blockquote {
		width: 50%;
		margin-left: 25%;
		margin-top: 200px;
	}

	section.about-values .list > div.simplicity .body .con-2 blockquote p {
		width: 100%;
		margin-left: 0;
	}

	section.about-values .next {
		position: absolute;
		display: block;
		bottom: 60px;
		left: 50%;

		-webkit-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}

	section.about-values .next span {
		display: block;
		font-size: 0.875em; /* 14px / 16px */
		line-height: 1.428571429em; /* 20px / 14px */
		color: #fff;
		text-align: center;
		text-transform: uppercase;
	}

	section.about-values .next a {
		background: transparent url(../img/svg/icon_arrow_down_small_white.svg) center center no-repeat;
		background-size: 20px auto;
		display: block;
		width: 48px;
		height: 48px;
		border: 2px solid #fff;
		margin: 16px auto 0 auto;

		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}

	section.about-values .next a:active,
	section.about-values .next a:hover {
		background-color: rgba(255, 255, 255, 0.5);
	}

	/* Sections - About timeline */

	section.about-timeline {
		padding-top: 0;
	}

	section.about-timeline .wrapper {
		max-width: none;
		padding: 0 80px;
	}

	section.about-timeline .list .line {
		position: relative;
		padding: 0;
		border: 0 none;
		margin: 0;
	}

	section.about-timeline .list .line:before {
		background: #e8e8e8;
		display: block;
		position: absolute;
		width: calc(75% - 16px);
		height: 1px;
		bottom: 0;
		left: calc(25% + 16px);
		content: '';
	}

	section.about-timeline .list .line > div {
		width: 25%;
		padding: 60px 40px;
		margin-top: 0;
	}

	section.about-timeline .list .line > div:first-child {
		position: absolute;
		width: 25%;
		top: 0;
		left: 0;
		padding: 120px 40px;
		border: 0 none;
	}

	section.about-timeline .list .line > div:nth-child(2):before {
		background: #e8e8e8;
		display: block;
		position: absolute;
		width: 1px;
		height: calc(100% - 32px);
		top: 16px;
		left: 25%;
		content: '';
	}

	section.about-timeline .list .line > div:nth-child(2):after {
		background: #e8e8e8;
		display: block;
		position: absolute;
		width: calc(25% - 16px);
		height: 1px;
		bottom: 0;
		left: 0;
		content: '';
	}

	section.about-timeline .list .line > div:nth-child(2n+2) {
		clear: none;
		padding-right: 40px;
	}

	section.about-timeline .list .line > div:nth-child(2n+3) {
		padding-left: 40px;
	}

	section.about-timeline .list .line > div:nth-child(3n+2) {
		clear: left;
		margin-left: 25%;
	}

	section.about-timeline .load-more {
		margin-top: 120px;
	}

	/* Sections - About share */

	section.about-share {
		padding: 260px 0;
	}

	section.about-share .row > div:nth-child(3) {
		margin-left: 0;
	}

	section.about-share .icon {
		max-width: 420px;
	}

	section.about-share h6,
	section.about-share p {
		max-width: 300px;
	}

	section.about-share p.action {
		margin-top: 44px;
	}

	/* Sections - About contact */

	section.about-contact .row > div:nth-child(3) {
		clear: none;
		margin-top: 0;
	}

	/* Section - Dealer */

	/* Section - Dealer - Search top */

	section.dealer .search-top {
		padding: 140px 0 80px 0;
	}

	section.dealer.distributor .search-top {
		background: #fff;
		padding: 0;
	}

	section.dealer.distributor .search-top h3 {
		color: #111;
	}

	section.dealer .search-top form {
		margin-top: 32px;
	}

	section.dealer.distributor .search-top form {
		display: none;
	}

	section.dealer .search-top form input,
	section.dealer .search-top form select {
		float: left;
		width: 30%;
		margin: 0;
	}

	section.dealer .search-top form input.dealer-address-large {
		width: 70%;
	}

	section.dealer .search-top form label {
		float: left;
		width: 10%;
		line-height: 52px;
		margin: 0;
	}

	section.dealer .search-top form label:nth-of-type(2) {
		text-align: center;
	}

	section.dealer .search-top form button {
		float: left;
		width: calc(20% - 20px);
		margin-left: 20px;
		margin-top: 0;
	}

	section.dealer .search-top form button:hover {
		background-color: rgba(255, 255, 255, 0.5);
	}

	section.dealer .search-top .legend > div {
		float: left;
		width: 30%;
		margin-left: 10%;
	}

	section.dealer .search-top .legend > div:nth-child(2n+1) {
		margin-left: 0;
	}

	section.dealer .search-top .legend > div:nth-child(2n+2) {
		clear: left;
	}

	section.dealer .search-top .legend > div:nth-child(-n+3) {
		margin-top: 0;
	}

	section.dealer.locator .search-top .results {
		margin-top: 80px;
	}

	section.dealer.locator .search-top .results a.location {
		right: calc(25% + 50px);

		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	section.dealer.locator .search-top .results a.location:hover {
		background-color: #333;
		border-color: #333;
	}

	section.dealer.locator .search-top .results .map {
		float: left;
		width: calc(75% - 40px);
		height: 640px;
	}

	section.dealer.locator .search-top .results .list {
		float: left;
		width: 25%;
		height: 640px;
		margin-top: 0;
		margin-left: 40px;
	}

	section.dealer.locator .search-top .results .list .scrollable {
		height: 640px;
		margin-top: 0;
	}

	section.dealer.locator .search-top .results .list .scrollable > a strong {
		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	section.dealer.locator .search-top .results .list .scrollable > a:hover strong {
		color: #ed3024;
	}

	section.dealer.distributor .search-top .alphabet-search {
		display: block;
		padding: 0 16px;
		border: 1px solid #e8e8e8;
	}

	section.dealer.distributor .search-top .alphabet-search span {
		float: left;
		display: block;
		color: #111;
		text-transform: uppercase;
		padding: 16px 0 16px 8px;
	}

	section.dealer.distributor .search-top .alphabet-search ul {
		float: right;
		padding: 0;
		margin: 0;
	}

	section.dealer.distributor .search-top .alphabet-search ul > li {
		display: block;
		float: left;
		margin: 0;
	}

	section.dealer.distributor .search-top .alphabet-search ul > li:before {
		content: none;
	}

	section.dealer.distributor .search-top .alphabet-search ul > li a {
		display: block;
		color: #111;
		font-weight: 700;
		border: 0 none;
		padding: 16px 8px;

		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	section.dealer.distributor .search-top .alphabet-search ul > li a:active,
	section.dealer.distributor .search-top .alphabet-search ul > li a:hover {
		color: #ed3024;
	}

	/* Section - Dealer - Results */

	section.dealer.distributor .results {
		margin: 20px 0 80px 0;
	}

	section.dealer.distributor .results .list .letter > div {
		width: 33.333333333%;
	}

	section.dealer.distributor .results .list .letter > div:nth-child(2n+3) {
		clear: none;
	}

	section.dealer.distributor .results .list .letter > div:nth-child(3n+4) {
		clear: left;
	}

	section.dealer.distributor .results .list .letter > div a:hover {
		border-bottom-color: #808080;
	}

	/* Section - Dealer - Info */

	section.dealer .info {
		margin: 80px 0 160px 0;
	}

	section.dealer .info .wrapper {
		position: relative;
	}

	section.dealer .info .wrapper:after {
		background: #e8e8e8;
		position: absolute;
		width: calc(100% - 64px);
		height: 1px;
		bottom: -80px;
		left: 32px;
		content: '';
	}

	section.dealer .info .wrapper.online-dealers {
		margin-bottom: 80px;
	}

	section.dealer .info .wrapper.online-dealers:after {
		content: none;
	}

	section.dealer .info a.arrow {
		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}

	section.dealer .info a.arrow:hover {
		background-position: right 0 top 50%;
	}

	/* Section - Dealer - Action */

	section.dealer .action {
		display: none;
	}

	/* Section - Products top */

	section.products-top {
		padding: 240px 0 180px 0;
	}

	section.products-top ul > li a, section.products-top ul.filter_subcat > li a {
		-webkit-transition: color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out;
	}

	section.products-top ul > li a:hover, section.products-top ul.filter_subcat > li a:hover {
		color: #a9a9a9;
		cursor: pointer;
	}
	body section.products-top ul.filter_subcat > li a.selected
	{
		font-weight: normal;
		color: #fff;
		border:2px solid #fff;
	}
	section.vertical-nav .scrollable ul.filter_subcat a.selected:hover{
		font-weight: normal;
		color: #a9a9a9;
	}
	/* Section - Products sort */

	section.products-sort .wrapper ul > li.selected a:hover {
		color: #111;
	}

	section.products-sort .wrapper ul > li a:hover {
		color: #a9a9a9;
	}

	/* Sections - Products */

	section.products .list > div {
		/*margin-top: 80px;*/
	}

	section.products .list > div:nth-child(-n+2) {
		margin-top: 80px;
	}

	section.products .list > div:nth-child(-n+3) {
		margin-top: 0;
	}

	section.products .list > div:nth-child(2n+1) {
		clear: none;
	}

	section.products .list > div:nth-child(3n+1) {
		clear: left;
	}

	section.products .list > div a .img {
		padding-bottom: 100%;
	}

	section.products .list > div a:hover .img img {
		display: none;
	}

	section.products .list > div a:hover .img img.hover {
		display: block;
	}

	section.products .load-more {
		margin-top: 120px;
	}

	/* Sections - Products archive top */

	section.products-archive-top {
		padding: 140px 0 80px 0;
	}

	section.products-archive-top form {
		margin-top: 32px;
	}

	section.products-archive-top form input,
	section.products-archive-top form select {
		float: left;
		width: 25%;
		margin: 0;
	}

	section.products-archive-top form select {
		margin-left: 20px;
	}

	section.products-archive-top form label {
		float: left;
		width: calc(25% - 20px);
		line-height: 52px;
		margin: 0;
	}

	section.products-archive-top form button {
		float: left;
		width: calc(25% - 20px);
		margin-left: 20px;
		margin-top: 0;
	}

	section.products-archive-top form button:hover {
		background-color: rgba(255, 255, 255, 0.5);
	}

	/* Sections - Product top */

	section.product-top {
		position: relative;
	}

	section.product-top > * {
		float: left;
	}

	section.product-top .slider {
		position: absolute;
		width: 58.333333333%;
		height: calc(100% - 60px);
		top: 60px;
		left: 0;
	}

	section.product-top .slider nav > a {
		display: none;
		background-size: auto 88px;
		width: 168px;
		height: 168px;
		margin-top: -84px;
	}

	section.product-top .slider:hover nav > a {
		display: block;
	}

	section.product-top .slider nav > a:hover {
		opacity: 1;
	}

	section.product-top .slider nav > a.inactive:hover {
		opacity: 0.3;
	}

	section.product-top .slider nav > div {
		width: calc(100% - 336px);
		height: 168px;
		left: 168px;
	}

	section.product-top .slider nav > div span {
		width: 48px;
		height: 48px;
		margin-top: 60px;
	}

	section.product-top .slider nav > div span:after {
		width: 12px;
		height: 12px;
		margin: 18px 0 0 18px;
	}

	section.product-top .slider nav > div span:hover {
		opacity: 1;
	}

	section.product-top .description {
		width: 41.666666667%;
		padding: 60px;
		margin-left: 58.333333333%;
	}

	section.product-top .description > * {
		max-width: 520px;
	}

	section.product-top .description .buy {
		max-width: 568px;
		margin: -24px 0 32px -48px;
	}

	section.product-top .description .buy > * {
		margin: 24px 0 0 48px;
	}

	section.product-top .description .buy .action {
		max-width: 568px;
	}

	section.product-top .description .social a {
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}

	section.product-top .description .social a:hover {
		opacity: 0.7;
	}

	section.product-top .description .desc .more {
		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}

	section.product-top .description .desc .more:hover {
		background-position: right 0 top 50%;
	}

	/* Sections - Product info */

	/* Sections - Product info - Product story */

	section.product-info .product-story {
		position: relative;
	}

	section.product-info .product-story > h1 {
		width: 66.666666667%;
		padding-right: 60px;
	}

	/*section.product-info .product-story .img {
		position: absolute;
		width: 33.333333333%;
		top: 0;
		right: 0;
		margin: 0;
	}*/

	section.product-info .product-story > .excerpt,
	section.product-info .product-story > .text {
		float: left;
		width: 50%;
		padding-right: 60px;
	}

	/* Sections - Product info - Design */

	/* Sections - Product info - Specifications */

	section.product-info .specifications .row {
		margin-top: 120px;
	}

	section.product-info .specifications .row:first-child {
		margin-top: 0;
	}

	section.product-info .specifications h1 {
		margin: 0;
	}

	section.product-info .specifications ul > li {
		float: left;
		width: 50%;
	}

	section.product-info .specifications ul.separate > li {
		margin-top: 2em;
	}

	section.product-info .specifications ul > li:nth-child(-n+2) {
		margin-top: 0;
	}

	section.product-info .specifications ul > li:nth-child(2n+1) {
		clear: left;
		padding-right: 10px;
	}

	section.product-info .specifications ul > li:nth-child(2n+2) {
		padding-left: 10px;
	}

	section.product-info .specifications a.show-more {
		margin-top: 120px;
	}

	section.product-info .specifications a.show-more:after {
		top: 4px;
	}



	/* Sections - Product info - Downloads */

	section.product-info .downloads .row > div {
		/*margin-top: 120px;*/
	}

	
	section.product-info .downloads .row > div:nth-child(-n+3) {
		margin-top: 0;
	}

	section.product-info .downloads .row > div:nth-child(2n+2) {
		clear: none;
	}
	/*
	section.product-info .downloads .row > div:nth-child(2n+4) {
		clear: left;
		margin-left: 33.333333333%;
	}
	*/
	section.product-info .downloads h1 {
		margin-bottom: 1em;
	}

	section.product-info .downloads h3 {
		background-size: auto 24px;
		padding-left: 48px;
		margin-top: 0;
	}

	section.product-info .downloads ul > li a {
		-webkit-transition: background 0.2s ease-in-out;
		transition: background 0.2s ease-in-out;
	}

	section.product-info .downloads ul > li a:hover {
		background-position: left 4px top 50%;
	}



	/* Sections - Product logos */

	section.product-logos:last-child {
		margin-bottom: 120px;
	}

	/* Sections - Products related */

	section.products-related .list > div {
		margin-top: 0;
	}

	section.products-related .list > div .img {
		padding-bottom: 100%;
	}
}

/* Media queries - Desktop - Large */

@media (min-width: 1448px) { /* 1280 + (68 * 2) + 32 */
	/* Sections - Articles */

	section.articles .list article footer {
		position: absolute;
		top: 124px;
		left: -68px;
		margin-top: 0;
	}

	section.articles .list article:first-child footer {
		top: 44px;
	}

	section.articles .list article footer .social {
		width: 36px;
		height: auto;
		text-align: center;
	}

	section.articles .list article footer .social > * {
		float: none;
	}

	section.articles .list article footer .social span {
		text-align: center;
	}

	section.articles .list article footer .social a {
		margin: 20px 0 0 0;
	}
}
/* Switcher css */
header#header nav#nav ul.shop-menu > li.money-menu{
	background-image: url(../img/money-menu.png);
    background-position: 12px center;
    background-repeat: no-repeat;
    background-size: auto 26px;
    width: 66px;
}
header#header nav#nav ul.shop-menu > li.money-menu .cart-icon{
	position: absolute;
	top: 50%;
	right: 10px;
	width: 10px;
	height: 10px;
	background: url(../img/Toggle-down.png) no-repeat 50% 50%;
	display: inline-block;
	margin-top: -5px;
}
header#header nav#nav ul.shop-menu > li.translation-menu{
	background-image: url(../img/Translation-Icon.png);
    background-repeat: no-repeat;
    background-size: auto 30px;
    width: 66px;
}

header#header nav#nav ul.shop-menu > li.translation-menu .cart-icon{
	position: absolute;
	top: 50%;
	right: 6px;
	width: 10px;
	height: 10px;
	background: url(../img/Toggle-down.png) no-repeat 50% 50%;
	display: inline-block;
	margin-top: -5px;
}
.sub-menus-new{
	float: left;
	width: 100%;
	top: 60px;
	background: #000000;
	left: 0px;
	right: 0px;
}
.sub-menus-new ul{
	float: right;
	padding: 0;
	margin: 0;
}
.sub-menus-new ul li{
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;
}
.sub-menus-new ul li a{
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;
}

.sub-launguage-menu {
	float: left;
	width: 100%;
	top: 60px;
	background: #000000;
	left: 0;
	right: 0;
    position: absolute;
    height: 48px;
}
.sub-launguage-menu ul{
	float: none;
	padding: 0 10px 0 0;
	margin: 0;
	list-style: none;
	text-align: right;
	display: block;
}
.sub-launguage-menu ul li {
	float: none;
	padding: 0;
	margin: 0 0 0 20px;
	list-style: none;
	display: inline-block;
}
.sub-launguage-menu ul li:before {
	display: none;
}
.sub-launguage-menu ul li a {
	padding: 14px 4px;
	margin: 0;
	list-style: none;
	font-family: 'ridley_groteskmedium';
	font-size: 13px;
	color: #AAA;
	float: none;
	display: block;
	border-bottom: none;
}
.sub-launguage-menu ul li a:hover,
.sub-launguage-menu ul li a:focus {
	border-bottom: none;
}
.sub-launguage-menu ul li:last-child a {
	padding-right: 0;
}
.sub-launguage-menu ul li a span {
	color: #ffffff;
	font-family: 'ridley_groteskmedium';
}

.lang-lable {
	font-family: 'ridley_groteskmedium';
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    padding-left: 0;
    margin-right: 10px;
    float: left;
    padding-top: 15px;
}
header#header nav#nav div.sub-menu.sub-launguage-menu {
	height: 48px;
}
header#header nav#nav ul.shop-menu > li > a {
	/*width: 66px;*/
	position: relative;
	z-index: 1;
}

header#header nav#nav ul.shop-menu > li > a.jq_translation_menu{
	background-image: url(../img/Translation-Icon-Black.png);
	background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 30px;
    width: 66px;
}

header#header nav#nav ul.shop-menu > li span.cart-icon{
	    -webkit-transition: opacity 0.4s linear;
    transition: opacity 0.4s linear;
}

header#header nav#nav ul.shop-menu > li .cart-icon.dark{
    background: url(../img/Toggle-down-Black.png);
    opacity:0;
}

header#header.light nav#nav ul.shop-menu > li .cart-icon.dark{
    opacity:1;
}
/*header#header.light nav#nav .cart-icon{
    background: url(../img/Toggle-down-Black.png)
}*/

.sub-launguage-menu .wrapper {
	max-width: 1504px;
}
.sub-launguage-menu {
	display: none;
}
.sub-launguage-menu.on {
	display: block;
}
.jq_overlay_toogle {
	display:none;
	position:fixed;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-color:rgba(0,0,0,.55);
	z-index:10;
	transition:all .2s ease
}
.trans-toggle {
	width: 60px;
    height: 60px;
    display: none;
}
.trans-toggle i {
    background: #fff;
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    left: 10px;
    -webkit-transition: background 0.4s linear;
    transition: background 0.4s linear;
}
.trans-toggle i:nth-child(1) {
    top: 22px;
}
.trans-toggle i:nth-child(2) {
    top: 29px;
}
.trans-toggle i:nth-child(3) {
    top: 36px;
}
.trans-toggle i {
    left: 20px;
}
header#header nav#nav ul.shop-menu > li.location.en_IE {
    background-image: url(../img/MOney-Menu.png) !important;
    background-size: auto 26px;
    width: 65px;
}
header#header nav#nav ul.shop-menu > li.search {
        background-size: auto 20px;
}
header#header nav#nav ul.shop-menu > li.cart {
        background-size: auto 20px;
}
header#header nav#nav ul.shop-menu > li .cart-icon {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 10px;
    height: 10px;
    background: url(../img/Toggle-down.png) no-repeat 50% 50%;
    display: inline-block;
    margin-top: -5px;
}
.sub-menu.sub-launguage-menu .lang-lable {
	padding-top: 8px;
}
header#header nav#nav .flag-sec li a {
	    font-family: 'ridley_groteskmedium';
    font-size: 18px !important;
    color: #fff !important;
    height: auto !important;
    line-height: normal !important;
    padding-top: 4px !important;
}
header#header nav#nav .flag-sec li a img {
	vertical-align: -4px;
    margin-right: 0px;
    max-width: 30px;
}
header#header nav#nav div.sub-menu ul.flag-sec > li:last-child > a {
	padding-right: 0px;
}

@media (max-width: 1279px) {
	.sub-launguage-menu {
		background: #111;
	    position: fixed;
	    width: calc(100% - 32px);
	    height: 100%;
	    top: 0;
	    right: calc(-100% + 32px);
	    overflow-y: auto;
	    overflow-x: hidden;
	    z-index: 30;
	    padding: 0;
	    margin: 0;
	    -webkit-transition: right 0.3s ease-in-out;
	    transition: right 0.3s ease-in-out;
	    float: none;
	    left: auto;
	    display: inherit;
	}
	.sub-launguage-menu ul li {
		display: block;
		text-align: left;
	}
	.jq_overlay_toogle.on {
		display:block;
	}
	.sub-launguage-menu.on {
	    right: 0;
	    display: inherit;
	}
	.trans-icon {
		display: none;
	}
	.trans-toggle {
		display: block;
	}
	header#header nav#nav ul.shop-menu > li.translation-menu {
		background-image: none;
	}
	.lang-lable {
		display: block;
		padding: 10px 5px;
		width: 100%;
	}
}


/* -*_*_*_*_*___Spotify_Popup_*_*_*_*_**_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*/
.spotify-popup {
	background: white;
    /* border: 1px solid black; */
    border-radius: 5px;
    display: none;
    /* font-size: 2rem; */
    line-height: 2.5rem;
    padding: 2rem 1rem 1rem;
    /* margin: 5rem 1rem 1rem 1rem; */
    max-width: 580px;
    text-align: center;
}
.spotify-popup .spotify-popup-close {
	position: absolute;
	top: 10px;
	right: 15px;
	color: white;
	z-index: 999;
	font-size: 1.8rem;
	line-height: 2rem;
	text-transform: uppercase;
}

.spotify-popup .spotify-popup-footer {
	display: none;
}
.spotify-popup .spotify-popup-form input, .spotify-popup .spotify-popup-form select {
	color: black;
	font-size: 1.2rem;
	font-weight: bold;
	margin: 5px 0;
	padding: 8px;
	width: 100%;
}
.spotify-popup h2 {
	font-size: 22px;
}

.spotify-popup p{

	font-size: 16px;
    line-height: 24px;

    display: inline-block;
	text-align: left;
}

#spotify-exclamationmark{
	width: 120px;
	margin-right:auto;
	margin-left:auto;

}

.spotify-popup .centering{
	text-align: center;
	margin-right: 10px;
    margin-left: 10px;
}

.spotify-popup .flex-parent{
	display: flex;
	justify-content: space-around;
	padding-top: 20px;
}

.spotify-popup .continue-to-page{
	/*
	text-decoration: underline;
	*/
}




/* -*_*_*_*_*___canjam_Popup_*_*_*_*_**_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*/
.canJam-popup {
	background: black;
    /* border: 1px solid black; */
    border-radius: 5px;
    display: none;
    /* font-size: 2rem; */
    line-height: 2.5rem;
    padding: 2rem 1rem 1rem;
    /* margin: 5rem 1rem 1rem 1rem; */
    max-width: 580px;
    text-align: center;
}
.canJam-popup .canJam-popup-close {
	position: absolute;
	top: 10px;
	right: 15px;
	color: white;
	z-index: 999;
	font-size: 1.8rem;
	line-height: 2rem;
	text-transform: uppercase;
}

.canJam-popup .canJam-popup-footer {
	display: none;
}
.canJam-popup .canJam-popup-form input, .canJam-popup .canJam-popup-form select {
	color: black;
	font-size: 1.2rem;
	font-weight: bold;
	margin: 5px 0;
	padding: 8px;
	width: 100%;
}
.canJam-popup h2 {
	font-size: 22px;
}

.canJam-popup p{

	font-size: 16px;
    line-height: 24px;

    display: inline-block;
	text-align: left;
}

#canJam-exclamationmark{
	width: 120px;
	margin-right:auto;
	margin-left:auto;

}

.canJam-popup .centering{
	text-align: center;
	margin-right: 10px;
    margin-left: 10px;
}

.canJam-popup .flex-parent{
	display: flex;
	justify-content: space-around;
	padding-top: 20px;
}

.canJam-popup .continue-to-page-canJam{
	text-decoration: underline;
	color: white;
	cursor: pointer;
}





/*international shop page */

#international-shop-outer-div{
	padding: 20px;

	text-align:  center;
}

 #international-shop-outer-div #international-shop-flex-container{
 	display: flex;
 	justify-content: center;
 	max-width: 1000px;
 	flex-wrap: wrap;

 	text-align: center;

 	margin:auto;
 }

 #international-shop-flex-container a div{
 	width: 200px;

 	height: 200px;

 	border: 1px solid lightgray;

 	text-align: center;

 	margin: 20px;
 }


#international-shop-flex-container a div h3{
	height: 85px;

	margin-top: 20px;
	color: black;
}

#international-shop-flex-container a div:hover{
	border: 3px solid #ed3024;
	padding: 2px;
}
/*@media screen and (min-width: 660px) {
	.spotify-popup-text {
		float: left;
		padding: 25px 25px 0px 25px;
	}
	.spotify-popup-image {
		float: right;
		width: 50%;
	}
	.spotifyandsave {
		font-size: 2em;
		margin-top: 0px;
	}
	.spotify-popup-image img {
		width: 100%;
		padding: 25px 45px 5px 15px;
	}
}
@media screen and (max-width: 659px) {
	.spotify-popup-text {
		width: 100%;
		padding: 25px 25px 0px 25px;
	}
	.spotify-popup-image {
		width: 100%;
	}
	.spotifyandsave {
		font-size: 1.5em;
		margin-top: 0px;
	}
	.spotify-popup-image img {
		width: 100%;
		padding: 25px 25px 25px 15px;
	}
}
*/
