/*
 * Aimeos elegance template CSS
 *
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
 * @copyright Aimeos (aimeos.org), 2014-2017
 */

@font-face {
	font-family: 'FontAwesome';
	src: url('fonts/fontawesome-webfont.eot');
	src: url('fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
		 url('fonts/fontawesome-webfont.woff2') format('woff2'),
		 url('fonts/fontawesome-webfont.woff') format('woff'),
		 url('fonts/fontawesome-webfont.ttf') format('truetype'),
		 url('fonts/fontawesome-webfont.svg#fontawesomeregular') format('svg');
}

/*----------------------------------------------------------------------------------------------------
General styling
----------------------------------------------------------------------------------------------------*/
@-webkit-keyframes fstAnimationEnter {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -1em, 0); }
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0); } }

@-moz-keyframes fstAnimationEnter {
	from {
		opacity: 0;
		-moz-transform: translate3d(0, -1em, 0); }
	to {
		opacity: 1;
		-moz-transform: translate3d(0, 0, 0); } }

@keyframes fstAnimationEnter {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -1em, 0);
		-moz-transform: translate3d(0, -1em, 0);
		-ms-transform: translate3d(0, -1em, 0);
		-o-transform: translate3d(0, -1em, 0);
		transform: translate3d(0, -1em, 0); }
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0); } }

.multiple-select {
	display: none;
}
.fstElement {
	display: inline-block;
	position: relative;
	width: 100%;
	min-height: 60px;
	border: 1px solid #D7D7D7;
	box-sizing: border-box;
	color: #232323;
	cursor: text;
	font-size: 1.1em;
	background-color: #fff; }
.fstElement > select,
.fstElement > input {
	position: absolute;
	left: -999em; }

.fstToggleBtn {
	font-size: 1.4em;
	display: block;
	position: relative;
	box-sizing: border-box;
	padding: 0.71429em 1.42857em 0.71429em 0.71429em;
	min-width: 14.28571em;
	cursor: pointer; }
.fstToggleBtn:after {
	position: absolute;
	content: "";
	right: 0.71429em;
	top: 50%;
	margin-top: -0.17857em;
	border: 0.35714em solid transparent;
	border-top-color: #cacaca; }

.fstQueryInput {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	outline: none;
	box-sizing: border-box;
	background: transparent;
	border: 0; }

.fstResults {
	position: absolute;
	left: -1px;
	top: 100%;
	right: -1px;
	max-height: 30em;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid #D7D7D7;
	border-top: 0;
	background-color: #FFF;
	display: none; }

.fstResultItem {
	font-size: 14px;
	display: block;
	border-bottom: 1px solid rgba(221, 221, 221, 0.3);
	padding: 0.5em 0.71429em;
	margin: 0;
	cursor: pointer;
	border-top: 0 solid #fff;
}
.fstResultItem.fstUserOption {
	color: #707070; }
.fstResultItem.fstFocused {
	color: #fff;
	background-color: #188fd8;
	border-color: #73baf6; }
.fstResultItem.fstSelected {
	color: #fff;
	background-color: #2694f1;
	border-color: #73baf6; }

.fstGroupTitle {
	font-size: 1.4em;
	display: block;
	padding: 0.5em 0.71429em;
	margin: 0;
	font-weight: bold; }

.fstGroup {
	padding-top: 1em; }
.fstGroup:first-child {
	padding-top: 0; }

.fstNoResults {
	font-size: 14px;
	display: block;
	padding: 0.71429em 0.71429em;
	margin: 0;
	color: #999; }

/*----------------------------------------------------------------------------------------------------
Single Mode
----------------------------------------------------------------------------------------------------*/
.fstSingleMode .fstControls {
	position: absolute;
	left: -1px;
	right: -1px;
	top: 100%;
	padding: 0.5em;
	border: 1px solid #D7D7D7;
	background-color: #fff;
	display: none; }

.fstSingleMode .fstQueryInput {
	font-size: 1.4em;
	display: block;
	width: 100%;
	padding: 0.5em 0.35714em;
	color: #999;
	border: 1px solid #D7D7D7; }

.fstSingleMode.fstActive {
	z-index: 100; }
.fstSingleMode.fstActive.fstElement,
.fstSingleMode.fstActive .fstControls,
.fstSingleMode.fstActive .fstResults {
	box-shadow: 0 0.2em 0.2em rgba(0, 0, 0, 0.1); }
.fstSingleMode.fstActive .fstControls {
	display: block; }
.fstSingleMode.fstActive .fstResults {
	display: block;
	z-index: 10;
	margin-top: -1px; }

/*----------------------------------------------------------------------------------------------------
Multiple mode
----------------------------------------------------------------------------------------------------*/
.fstChoiceItem {
	display: inline-block;
	font-size: 13px;
	position: relative;
	margin: 0 0.41667em 0.41667em 0;
	padding: 0.33333em 0.33333em 0.33333em 1.5em;
	float: left;
	border-radius: 0.25em;
	border: 1px solid #188fd8;
	cursor: auto;
	color: #fff;
	background-color: #188fd8;
	-webkit-animation: fstAnimationEnter 0.2s;
	-moz-animation: fstAnimationEnter 0.2s;
	animation: fstAnimationEnter 0.2s; }
.fstChoiceItem.mod1 {
	background-color: #F9F9F9;
	border: 1px solid #D7D7D7;
	color: #232323; }
.fstChoiceItem.mod1 > .fstChoiceRemove {
	color: #a4a4a4; }

.fstChoiceRemove {
	margin: 0;
	padding: 0;
	border: 0;
	cursor: pointer;
	background: none;
	font-size: 14px;
	position: absolute;
	left: 0;
	top: 50%;
	width: 1.28571em;
	line-height: 1.28571em;
	margin-top: -10px;
	text-align: center;
	color: #fff;
}
.fstChoiceRemove::-moz-focus-inner {
	padding: 0;
	border: 0; }

.fstMultipleMode .fstControls {
	box-sizing: border-box;
	padding: 0.5em 0.5em 0em 0.5em;
	overflow: hidden;
	width: 100%;
	cursor: text; }

.fstMultipleMode .fstQueryInput {
	font-size: 13px;
	float: left;
	border:0;
	padding: 0.28571em 0;
	margin: 0 0 0.35714em 0;
	width: 2em;
	color: #999;
}
.fstMultipleMode .fstQueryInputExpanded {
	float: none;
	width: 100%;
	height: 20px;
	padding: 0.28571em 0.35714em;
}


.fstMultipleMode .fstFakeInput {
	font-size: 1.4em; }

.fstMultipleMode.fstActive,
.fstMultipleMode.fstActive .fstResults {
	box-shadow: 0 0.2em 0.2em rgba(0, 0, 0, 0.1); }

.fstMultipleMode.fstActive .fstResults {
	display: block;
	z-index: 10;
	border-top: 1px solid #D7D7D7; }

.fa {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
	font-size: 1.33333333em;
	line-height: 0.75em;
	vertical-align: -15%;
}
.fa-2x {
	font-size: 2em;
}
.fa-3x {
	font-size: 3em;
}
.fa-4x {
	font-size: 4em;
}
.fa-5x {
	font-size: 5em;
}
.fa-fw {
	width: 1.28571429em;
	text-align: center;
}
.fa-ul {
	padding-left: 0;
	margin-left: 2.14285714em;
	list-style-type: none;
}
.fa-ul > li {
	position: relative;
}
.fa-li {
	position: absolute;
	left: -2.14285714em;
	width: 2.14285714em;
	top: 0.14285714em;
	text-align: center;
}
.fa-li.fa-lg {
	left: -1.85714286em;
}
.fa-border {
	padding: .2em .25em .15em;
	border: solid 0.08em #eeeeee;
	border-radius: .1em;
}
.fa-pull-left {
	float: left;
}
.fa-pull-right {
	float: right;
}
.fa.fa-pull-left {
	margin-right: .3em;
}
.fa.fa-pull-right {
	margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
	float: right;
}
.pull-left {
	float: left;
}
.fa.pull-left {
	margin-right: .3em;
}
.fa.pull-right {
	margin-left: .3em;
}
.fa-spin {
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
}
.fa-pulse {
	-webkit-animation: fa-spin 1s infinite steps(8);
	animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
.fa-rotate-90 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.fa-rotate-180 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.fa-rotate-270 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}
.fa-flip-horizontal {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
	-webkit-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
}
.fa-flip-vertical {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
	-webkit-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
	filter: none;
}
.fa-stack {
	position: relative;
	display: inline-block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
}
.fa-stack-1x {
	line-height: inherit;
}
.fa-stack-2x {
	font-size: 2em;
}
.fa-inverse {
	color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
	content: "\f000";
}
.fa-music:before {
	content: "\f001";
}
.fa-search:before {
	content: "\f002";
}
.fa-envelope-o:before {
	content: "\f003";
}
.fa-heart:before {
	content: "\f004";
}
.fa-star:before {
	content: "\f005";
}
.fa-star-o:before {
	content: "\f006";
}
.fa-user:before {
	content: "\f007";
}
.fa-film:before {
	content: "\f008";
}
.fa-th-large:before {
	content: "\f009";
}
.fa-th:before {
	content: "\f00a";
}
.fa-th-list:before {
	content: "\f00b";
}
.fa-check:before {
	content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
	content: "\f00d";
}
.fa-search-plus:before {
	content: "\f00e";
}
.fa-search-minus:before {
	content: "\f010";
}
.fa-power-off:before {
	content: "\f011";
}
.fa-signal:before {
	content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
	content: "\f013";
}
.fa-trash-o:before {
	content: "\f014";
}
.fa-home:before {
	content: "\f015";
}
.fa-file-o:before {
	content: "\f016";
}
.fa-clock-o:before {
	content: "\f017";
}
.fa-road:before {
	content: "\f018";
}
.fa-download:before {
	content: "\f019";
}
.fa-arrow-circle-o-down:before {
	content: "\f01a";
}
.fa-arrow-circle-o-up:before {
	content: "\f01b";
}
.fa-inbox:before {
	content: "\f01c";
}
.fa-play-circle-o:before {
	content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
	content: "\f01e";
}
.fa-refresh:before {
	content: "\f021";
}
.fa-list-alt:before {
	content: "\f022";
}
.fa-lock:before {
	content: "\f023";
}
.fa-flag:before {
	content: "\f024";
}
.fa-headphones:before {
	content: "\f025";
}
.fa-volume-off:before {
	content: "\f026";
}
.fa-volume-down:before {
	content: "\f027";
}
.fa-volume-up:before {
	content: "\f028";
}
.fa-qrcode:before {
	content: "\f029";
}
.fa-barcode:before {
	content: "\f02a";
}
.fa-tag:before {
	content: "\f02b";
}
.fa-tags:before {
	content: "\f02c";
}
.fa-book:before {
	content: "\f02d";
}
.fa-bookmark:before {
	content: "\f02e";
}
.fa-print:before {
	content: "\f02f";
}
.fa-camera:before {
	content: "\f030";
}
.fa-font:before {
	content: "\f031";
}
.fa-bold:before {
	content: "\f032";
}
.fa-italic:before {
	content: "\f033";
}
.fa-text-height:before {
	content: "\f034";
}
.fa-text-width:before {
	content: "\f035";
}
.fa-align-left:before {
	content: "\f036";
}
.fa-align-center:before {
	content: "\f037";
}
.fa-align-right:before {
	content: "\f038";
}
.fa-align-justify:before {
	content: "\f039";
}
.fa-list:before {
	content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
	content: "\f03b";
}
.fa-indent:before {
	content: "\f03c";
}
.fa-video-camera:before {
	content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
	content: "\f03e";
}
.fa-pencil:before {
	content: "\f040";
}
.fa-map-marker:before {
	content: "\f041";
}
.fa-adjust:before {
	content: "\f042";
}
.fa-tint:before {
	content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
	content: "\f044";
}
.fa-share-square-o:before {
	content: "\f045";
}
.fa-check-square-o:before {
	content: "\f046";
}
.fa-arrows:before {
	content: "\f047";
}
.fa-step-backward:before {
	content: "\f048";
}
.fa-fast-backward:before {
	content: "\f049";
}
.fa-backward:before {
	content: "\f04a";
}
.fa-play:before {
	content: "\f04b";
}
.fa-pause:before {
	content: "\f04c";
}
.fa-stop:before {
	content: "\f04d";
}
.fa-forward:before {
	content: "\f04e";
}
.fa-fast-forward:before {
	content: "\f050";
}
.fa-step-forward:before {
	content: "\f051";
}
.fa-eject:before {
	content: "\f052";
}
.fa-chevron-left:before {
	content: "\f053";
}
.fa-chevron-right:before {
	content: "\f054";
}
.fa-plus-circle:before {
	content: "\f055";
}
.fa-minus-circle:before {
	content: "\f056";
}
.fa-times-circle:before {
	content: "\f057";
}
.fa-check-circle:before {
	content: "\f058";
}
.fa-question-circle:before {
	content: "\f059";
}
.fa-info-circle:before {
	content: "\f05a";
}
.fa-crosshairs:before {
	content: "\f05b";
}
.fa-times-circle-o:before {
	content: "\f05c";
}
.fa-check-circle-o:before {
	content: "\f05d";
}
.fa-ban:before {
	content: "\f05e";
}
.fa-arrow-left:before {
	content: "\f060";
}
.fa-arrow-right:before {
	content: "\f061";
}
.fa-arrow-up:before {
	content: "\f062";
}
.fa-arrow-down:before {
	content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
	content: "\f064";
}
.fa-expand:before {
	content: "\f065";
}
.fa-compress:before {
	content: "\f066";
}
.fa-plus:before {
	content: "\f067";
}
.fa-minus:before {
	content: "\f068";
}
.fa-asterisk:before {
	content: "\f069";
}
.fa-exclamation-circle:before {
	content: "\f06a";
}
.fa-gift:before {
	content: "\f06b";
}
.fa-leaf:before {
	content: "\f06c";
}
.fa-fire:before {
	content: "\f06d";
}
.fa-eye:before {
	content: "\f06e";
}
.fa-eye-slash:before {
	content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
	content: "\f071";
}
.fa-plane:before {
	content: "\f072";
}
.fa-calendar:before {
	content: "\f073";
}
.fa-random:before {
	content: "\f074";
}
.fa-comment:before {
	content: "\f075";
}
.fa-magnet:before {
	content: "\f076";
}
.fa-chevron-up:before {
	content: "\f077";
}
.fa-chevron-down:before {
	content: "\f078";
}
.fa-retweet:before {
	content: "\f079";
}
.fa-shopping-cart:before {
	content: "\f07a";
}
.fa-folder:before {
	content: "\f07b";
}
.fa-folder-open:before {
	content: "\f07c";
}
.fa-arrows-v:before {
	content: "\f07d";
}
.fa-arrows-h:before {
	content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
	content: "\f080";
}
.fa-twitter-square:before {
	content: "\f081";
}
.fa-facebook-square:before {
	content: "\f082";
}
.fa-camera-retro:before {
	content: "\f083";
}
.fa-key:before {
	content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
	content: "\f085";
}
.fa-comments:before {
	content: "\f086";
}
.fa-thumbs-o-up:before {
	content: "\f087";
}
.fa-thumbs-o-down:before {
	content: "\f088";
}
.fa-star-half:before {
	content: "\f089";
}
.fa-heart-o:before {
	content: "\f08a";
}
.fa-sign-out:before {
	content: "\f08b";
}
.fa-linkedin-square:before {
	content: "\f08c";
}
.fa-thumb-tack:before {
	content: "\f08d";
}
.fa-external-link:before {
	content: "\f08e";
}
.fa-sign-in:before {
	content: "\f090";
}
.fa-trophy:before {
	content: "\f091";
}
.fa-github-square:before {
	content: "\f092";
}
.fa-upload:before {
	content: "\f093";
}
.fa-lemon-o:before {
	content: "\f094";
}
.fa-phone:before {
	content: "\f095";
}
.fa-square-o:before {
	content: "\f096";
}
.fa-bookmark-o:before {
	content: "\f097";
}
.fa-phone-square:before {
	content: "\f098";
}
.fa-twitter:before {
	content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
	content: "\f09a";
}
.fa-github:before {
	content: "\f09b";
}
.fa-unlock:before {
	content: "\f09c";
}
.fa-credit-card:before {
	content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
	content: "\f09e";
}
.fa-hdd-o:before {
	content: "\f0a0";
}
.fa-bullhorn:before {
	content: "\f0a1";
}
.fa-bell:before {
	content: "\f0f3";
}
.fa-certificate:before {
	content: "\f0a3";
}
.fa-hand-o-right:before {
	content: "\f0a4";
}
.fa-hand-o-left:before {
	content: "\f0a5";
}
.fa-hand-o-up:before {
	content: "\f0a6";
}
.fa-hand-o-down:before {
	content: "\f0a7";
}
.fa-arrow-circle-left:before {
	content: "\f0a8";
}
.fa-arrow-circle-right:before {
	content: "\f0a9";
}
.fa-arrow-circle-up:before {
	content: "\f0aa";
}
.fa-arrow-circle-down:before {
	content: "\f0ab";
}
.fa-globe:before {
	content: "\f0ac";
}
.fa-wrench:before {
	content: "\f0ad";
}
.fa-tasks:before {
	content: "\f0ae";
}
.fa-filter:before {
	content: "\f0b0";
}
.fa-briefcase:before {
	content: "\f0b1";
}
.fa-arrows-alt:before {
	content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
	content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
	content: "\f0c1";
}
.fa-cloud:before {
	content: "\f0c2";
}
.fa-flask:before {
	content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
	content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
	content: "\f0c5";
}
.fa-paperclip:before {
	content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
	content: "\f0c7";
}
.fa-square:before {
	content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
	content: "\f0c9";
}
.fa-list-ul:before {
	content: "\f0ca";
}
.fa-list-ol:before {
	content: "\f0cb";
}
.fa-strikethrough:before {
	content: "\f0cc";
}
.fa-underline:before {
	content: "\f0cd";
}
.fa-table:before {
	content: "\f0ce";
}
.fa-magic:before {
	content: "\f0d0";
}
.fa-truck:before {
	content: "\f0d1";
}
.fa-pinterest:before {
	content: "\f0d2";
}
.fa-pinterest-square:before {
	content: "\f0d3";
}
.fa-google-plus-square:before {
	content: "\f0d4";
}
.fa-google-plus:before {
	content: "\f0d5";
}
.fa-money:before {
	content: "\f0d6";
}
.fa-caret-down:before {
	content: "\f0d7";
}
.fa-caret-up:before {
	content: "\f0d8";
}
.fa-caret-left:before {
	content: "\f0d9";
}
.fa-caret-right:before {
	content: "\f0da";
}
.fa-columns:before {
	content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
	content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
	content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
	content: "\f0de";
}
.fa-envelope:before {
	content: "\f0e0";
}
.fa-linkedin:before {
	content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
	content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
	content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
	content: "\f0e4";
}
.fa-comment-o:before {
	content: "\f0e5";
}
.fa-comments-o:before {
	content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
	content: "\f0e7";
}
.fa-sitemap:before {
	content: "\f0e8";
}
.fa-umbrella:before {
	content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
	content: "\f0ea";
}
.fa-lightbulb-o:before {
	content: "\f0eb";
}
.fa-exchange:before {
	content: "\f0ec";
}
.fa-cloud-download:before {
	content: "\f0ed";
}
.fa-cloud-upload:before {
	content: "\f0ee";
}
.fa-user-md:before {
	content: "\f0f0";
}
.fa-stethoscope:before {
	content: "\f0f1";
}
.fa-suitcase:before {
	content: "\f0f2";
}
.fa-bell-o:before {
	content: "\f0a2";
}
.fa-coffee:before {
	content: "\f0f4";
}
.fa-cutlery:before {
	content: "\f0f5";
}
.fa-file-text-o:before {
	content: "\f0f6";
}
.fa-building-o:before {
	content: "\f0f7";
}
.fa-hospital-o:before {
	content: "\f0f8";
}
.fa-ambulance:before {
	content: "\f0f9";
}
.fa-medkit:before {
	content: "\f0fa";
}
.fa-fighter-jet:before {
	content: "\f0fb";
}
.fa-beer:before {
	content: "\f0fc";
}
.fa-h-square:before {
	content: "\f0fd";
}
.fa-plus-square:before {
	content: "\f0fe";
}
.fa-angle-double-left:before {
	content: "\f100";
}
.fa-angle-double-right:before {
	content: "\f101";
}
.fa-angle-double-up:before {
	content: "\f102";
}
.fa-angle-double-down:before {
	content: "\f103";
}
.fa-angle-left:before {
	content: "\f104";
}
.fa-angle-right:before {
	content: "\f105";
}
.fa-angle-up:before {
	content: "\f106";
}
.fa-angle-down:before {
	content: "\f107";
}
.fa-desktop:before {
	content: "\f108";
}
.fa-laptop:before {
	content: "\f109";
}
.fa-tablet:before {
	content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
	content: "\f10b";
}
.fa-circle-o:before {
	content: "\f10c";
}
.fa-quote-left:before {
	content: "\f10d";
}
.fa-quote-right:before {
	content: "\f10e";
}
.fa-spinner:before {
	content: "\f110";
}
.fa-circle:before {
	content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
	content: "\f112";
}
.fa-github-alt:before {
	content: "\f113";
}
.fa-folder-o:before {
	content: "\f114";
}
.fa-folder-open-o:before {
	content: "\f115";
}
.fa-smile-o:before {
	content: "\f118";
}
.fa-frown-o:before {
	content: "\f119";
}
.fa-meh-o:before {
	content: "\f11a";
}
.fa-gamepad:before {
	content: "\f11b";
}
.fa-keyboard-o:before {
	content: "\f11c";
}
.fa-flag-o:before {
	content: "\f11d";
}
.fa-flag-checkered:before {
	content: "\f11e";
}
.fa-terminal:before {
	content: "\f120";
}
.fa-code:before {
	content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
	content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
	content: "\f123";
}
.fa-location-arrow:before {
	content: "\f124";
}
.fa-crop:before {
	content: "\f125";
}
.fa-code-fork:before {
	content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
	content: "\f127";
}
.fa-question:before {
	content: "\f128";
}
.fa-info:before {
	content: "\f129";
}
.fa-exclamation:before {
	content: "\f12a";
}
.fa-superscript:before {
	content: "\f12b";
}
.fa-subscript:before {
	content: "\f12c";
}
.fa-eraser:before {
	content: "\f12d";
}
.fa-puzzle-piece:before {
	content: "\f12e";
}
.fa-microphone:before {
	content: "\f130";
}
.fa-microphone-slash:before {
	content: "\f131";
}
.fa-shield:before {
	content: "\f132";
}
.fa-calendar-o:before {
	content: "\f133";
}
.fa-fire-extinguisher:before {
	content: "\f134";
}
.fa-rocket:before {
	content: "\f135";
}
.fa-maxcdn:before {
	content: "\f136";
}
.fa-chevron-circle-left:before {
	content: "\f137";
}
.fa-chevron-circle-right:before {
	content: "\f138";
}
.fa-chevron-circle-up:before {
	content: "\f139";
}
.fa-chevron-circle-down:before {
	content: "\f13a";
}
.fa-html5:before {
	content: "\f13b";
}
.fa-css3:before {
	content: "\f13c";
}
.fa-anchor:before {
	content: "\f13d";
}
.fa-unlock-alt:before {
	content: "\f13e";
}
.fa-bullseye:before {
	content: "\f140";
}
.fa-ellipsis-h:before {
	content: "\f141";
}
.fa-ellipsis-v:before {
	content: "\f142";
}
.fa-rss-square:before {
	content: "\f143";
}
.fa-play-circle:before {
	content: "\f144";
}
.fa-ticket:before {
	content: "\f145";
}
.fa-minus-square:before {
	content: "\f146";
}
.fa-minus-square-o:before {
	content: "\f147";
}
.fa-level-up:before {
	content: "\f148";
}
.fa-level-down:before {
	content: "\f149";
}
.fa-check-square:before {
	content: "\f14a";
}
.fa-pencil-square:before {
	content: "\f14b";
}
.fa-external-link-square:before {
	content: "\f14c";
}
.fa-share-square:before {
	content: "\f14d";
}
.fa-compass:before {
	content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
	content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
	content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
	content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
	content: "\f153";
}
.fa-gbp:before {
	content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
	content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
	content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
	content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
	content: "\f158";
}
.fa-won:before,
.fa-krw:before {
	content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
	content: "\f15a";
}
.fa-file:before {
	content: "\f15b";
}
.fa-file-text:before {
	content: "\f15c";
}
.fa-sort-alpha-asc:before {
	content: "\f15d";
}
.fa-sort-alpha-desc:before {
	content: "\f15e";
}
.fa-sort-amount-asc:before {
	content: "\f160";
}
.fa-sort-amount-desc:before {
	content: "\f161";
}
.fa-sort-numeric-asc:before {
	content: "\f162";
}
.fa-sort-numeric-desc:before {
	content: "\f163";
}
.fa-thumbs-up:before {
	content: "\f164";
}
.fa-thumbs-down:before {
	content: "\f165";
}
.fa-youtube-square:before {
	content: "\f166";
}
.fa-youtube:before {
	content: "\f167";
}
.fa-xing:before {
	content: "\f168";
}
.fa-xing-square:before {
	content: "\f169";
}
.fa-youtube-play:before {
	content: "\f16a";
}
.fa-dropbox:before {
	content: "\f16b";
}
.fa-stack-overflow:before {
	content: "\f16c";
}
.fa-instagram:before {
	content: "\f16d";
}
.fa-flickr:before {
	content: "\f16e";
}
.fa-adn:before {
	content: "\f170";
}
.fa-bitbucket:before {
	content: "\f171";
}
.fa-bitbucket-square:before {
	content: "\f172";
}
.fa-tumblr:before {
	content: "\f173";
}
.fa-tumblr-square:before {
	content: "\f174";
}
.fa-long-arrow-down:before {
	content: "\f175";
}
.fa-long-arrow-up:before {
	content: "\f176";
}
.fa-long-arrow-left:before {
	content: "\f177";
}
.fa-long-arrow-right:before {
	content: "\f178";
}
.fa-apple:before {
	content: "\f179";
}
.fa-windows:before {
	content: "\f17a";
}
.fa-android:before {
	content: "\f17b";
}
.fa-linux:before {
	content: "\f17c";
}
.fa-dribbble:before {
	content: "\f17d";
}
.fa-skype:before {
	content: "\f17e";
}
.fa-foursquare:before {
	content: "\f180";
}
.fa-trello:before {
	content: "\f181";
}
.fa-female:before {
	content: "\f182";
}
.fa-male:before {
	content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
	content: "\f184";
}
.fa-sun-o:before {
	content: "\f185";
}
.fa-moon-o:before {
	content: "\f186";
}
.fa-archive:before {
	content: "\f187";
}
.fa-bug:before {
	content: "\f188";
}
.fa-vk:before {
	content: "\f189";
}
.fa-weibo:before {
	content: "\f18a";
}
.fa-renren:before {
	content: "\f18b";
}
.fa-pagelines:before {
	content: "\f18c";
}
.fa-stack-exchange:before {
	content: "\f18d";
}
.fa-arrow-circle-o-right:before {
	content: "\f18e";
}
.fa-arrow-circle-o-left:before {
	content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
	content: "\f191";
}
.fa-dot-circle-o:before {
	content: "\f192";
}
.fa-wheelchair:before {
	content: "\f193";
}
.fa-vimeo-square:before {
	content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
	content: "\f195";
}
.fa-plus-square-o:before {
	content: "\f196";
}
.fa-space-shuttle:before {
	content: "\f197";
}
.fa-slack:before {
	content: "\f198";
}
.fa-envelope-square:before {
	content: "\f199";
}
.fa-wordpress:before {
	content: "\f19a";
}
.fa-openid:before {
	content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
	content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
	content: "\f19d";
}
.fa-yahoo:before {
	content: "\f19e";
}
.fa-google:before {
	content: "\f1a0";
}
.fa-reddit:before {
	content: "\f1a1";
}
.fa-reddit-square:before {
	content: "\f1a2";
}
.fa-stumbleupon-circle:before {
	content: "\f1a3";
}
.fa-stumbleupon:before {
	content: "\f1a4";
}
.fa-delicious:before {
	content: "\f1a5";
}
.fa-digg:before {
	content: "\f1a6";
}
.fa-pied-piper-pp:before {
	content: "\f1a7";
}
.fa-pied-piper-alt:before {
	content: "\f1a8";
}
.fa-drupal:before {
	content: "\f1a9";
}
.fa-joomla:before {
	content: "\f1aa";
}
.fa-language:before {
	content: "\f1ab";
}
.fa-fax:before {
	content: "\f1ac";
}
.fa-building:before {
	content: "\f1ad";
}
.fa-child:before {
	content: "\f1ae";
}
.fa-paw:before {
	content: "\f1b0";
}
.fa-spoon:before {
	content: "\f1b1";
}
.fa-cube:before {
	content: "\f1b2";
}
.fa-cubes:before {
	content: "\f1b3";
}
.fa-behance:before {
	content: "\f1b4";
}
.fa-behance-square:before {
	content: "\f1b5";
}
.fa-steam:before {
	content: "\f1b6";
}
.fa-steam-square:before {
	content: "\f1b7";
}
.fa-recycle:before {
	content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
	content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
	content: "\f1ba";
}
.fa-tree:before {
	content: "\f1bb";
}
.fa-spotify:before {
	content: "\f1bc";
}
.fa-deviantart:before {
	content: "\f1bd";
}
.fa-soundcloud:before {
	content: "\f1be";
}
.fa-database:before {
	content: "\f1c0";
}
.fa-file-pdf-o:before {
	content: "\f1c1";
}
.fa-file-word-o:before {
	content: "\f1c2";
}
.fa-file-excel-o:before {
	content: "\f1c3";
}
.fa-file-powerpoint-o:before {
	content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
	content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
	content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
	content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
	content: "\f1c8";
}
.fa-file-code-o:before {
	content: "\f1c9";
}
.fa-vine:before {
	content: "\f1ca";
}
.fa-codepen:before {
	content: "\f1cb";
}
.fa-jsfiddle:before {
	content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
	content: "\f1cd";
}
.fa-circle-o-notch:before {
	content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
	content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
	content: "\f1d1";
}
.fa-git-square:before {
	content: "\f1d2";
}
.fa-git:before {
	content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
	content: "\f1d4";
}
.fa-tencent-weibo:before {
	content: "\f1d5";
}
.fa-qq:before {
	content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
	content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
	content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
	content: "\f1d9";
}
.fa-history:before {
	content: "\f1da";
}
.fa-circle-thin:before {
	content: "\f1db";
}
.fa-header:before {
	content: "\f1dc";
}
.fa-paragraph:before {
	content: "\f1dd";
}
.fa-sliders:before {
	content: "\f1de";
}
.fa-share-alt:before {
	content: "\f1e0";
}
.fa-share-alt-square:before {
	content: "\f1e1";
}
.fa-bomb:before {
	content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
	content: "\f1e3";
}
.fa-tty:before {
	content: "\f1e4";
}
.fa-binoculars:before {
	content: "\f1e5";
}
.fa-plug:before {
	content: "\f1e6";
}
.fa-slideshare:before {
	content: "\f1e7";
}
.fa-twitch:before {
	content: "\f1e8";
}
.fa-yelp:before {
	content: "\f1e9";
}
.fa-newspaper-o:before {
	content: "\f1ea";
}
.fa-wifi:before {
	content: "\f1eb";
}
.fa-calculator:before {
	content: "\f1ec";
}
.fa-paypal:before {
	content: "\f1ed";
}
.fa-google-wallet:before {
	content: "\f1ee";
}
.fa-cc-visa:before {
	content: "\f1f0";
}
.fa-cc-mastercard:before {
	content: "\f1f1";
}
.fa-cc-discover:before {
	content: "\f1f2";
}
.fa-cc-amex:before {
	content: "\f1f3";
}
.fa-cc-paypal:before {
	content: "\f1f4";
}
.fa-cc-stripe:before {
	content: "\f1f5";
}
.fa-bell-slash:before {
	content: "\f1f6";
}
.fa-bell-slash-o:before {
	content: "\f1f7";
}
.fa-trash:before {
	content: "\f1f8";
}
.fa-copyright:before {
	content: "\f1f9";
}
.fa-at:before {
	content: "\f1fa";
}
.fa-eyedropper:before {
	content: "\f1fb";
}
.fa-paint-brush:before {
	content: "\f1fc";
}
.fa-birthday-cake:before {
	content: "\f1fd";
}
.fa-area-chart:before {
	content: "\f1fe";
}
.fa-pie-chart:before {
	content: "\f200";
}
.fa-line-chart:before {
	content: "\f201";
}
.fa-lastfm:before {
	content: "\f202";
}
.fa-lastfm-square:before {
	content: "\f203";
}
.fa-toggle-off:before {
	content: "\f204";
}
.fa-toggle-on:before {
	content: "\f205";
}
.fa-bicycle:before {
	content: "\f206";
}
.fa-bus:before {
	content: "\f207";
}
.fa-ioxhost:before {
	content: "\f208";
}
.fa-angellist:before {
	content: "\f209";
}
.fa-cc:before {
	content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
	content: "\f20b";
}
.fa-meanpath:before {
	content: "\f20c";
}
.fa-buysellads:before {
	content: "\f20d";
}
.fa-connectdevelop:before {
	content: "\f20e";
}
.fa-dashcube:before {
	content: "\f210";
}
.fa-forumbee:before {
	content: "\f211";
}
.fa-leanpub:before {
	content: "\f212";
}
.fa-sellsy:before {
	content: "\f213";
}
.fa-shirtsinbulk:before {
	content: "\f214";
}
.fa-simplybuilt:before {
	content: "\f215";
}
.fa-skyatlas:before {
	content: "\f216";
}
.fa-cart-plus:before {
	content: "\f217";
}
.fa-cart-arrow-down:before {
	content: "\f218";
}
.fa-diamond:before {
	content: "\f219";
}
.fa-ship:before {
	content: "\f21a";
}
.fa-user-secret:before {
	content: "\f21b";
}
.fa-motorcycle:before {
	content: "\f21c";
}
.fa-street-view:before {
	content: "\f21d";
}
.fa-heartbeat:before {
	content: "\f21e";
}
.fa-venus:before {
	content: "\f221";
}
.fa-mars:before {
	content: "\f222";
}
.fa-mercury:before {
	content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
	content: "\f224";
}
.fa-transgender-alt:before {
	content: "\f225";
}
.fa-venus-double:before {
	content: "\f226";
}
.fa-mars-double:before {
	content: "\f227";
}
.fa-venus-mars:before {
	content: "\f228";
}
.fa-mars-stroke:before {
	content: "\f229";
}
.fa-mars-stroke-v:before {
	content: "\f22a";
}
.fa-mars-stroke-h:before {
	content: "\f22b";
}
.fa-neuter:before {
	content: "\f22c";
}
.fa-genderless:before {
	content: "\f22d";
}
.fa-facebook-official:before {
	content: "\f230";
}
.fa-pinterest-p:before {
	content: "\f231";
}
.fa-whatsapp:before {
	content: "\f232";
}
.fa-server:before {
	content: "\f233";
}
.fa-user-plus:before {
	content: "\f234";
}
.fa-user-times:before {
	content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
	content: "\f236";
}
.fa-viacoin:before {
	content: "\f237";
}
.fa-train:before {
	content: "\f238";
}
.fa-subway:before {
	content: "\f239";
}
.fa-medium:before {
	content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
	content: "\f23b";
}
.fa-optin-monster:before {
	content: "\f23c";
}
.fa-opencart:before {
	content: "\f23d";
}
.fa-expeditedssl:before {
	content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
	content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
	content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
	content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
	content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
	content: "\f244";
}
.fa-mouse-pointer:before {
	content: "\f245";
}
.fa-i-cursor:before {
	content: "\f246";
}
.fa-object-group:before {
	content: "\f247";
}
.fa-object-ungroup:before {
	content: "\f248";
}
.fa-sticky-note:before {
	content: "\f249";
}
.fa-sticky-note-o:before {
	content: "\f24a";
}
.fa-cc-jcb:before {
	content: "\f24b";
}
.fa-cc-diners-club:before {
	content: "\f24c";
}
.fa-clone:before {
	content: "\f24d";
}
.fa-balance-scale:before {
	content: "\f24e";
}
.fa-hourglass-o:before {
	content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
	content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
	content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
	content: "\f253";
}
.fa-hourglass:before {
	content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
	content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
	content: "\f256";
}
.fa-hand-scissors-o:before {
	content: "\f257";
}
.fa-hand-lizard-o:before {
	content: "\f258";
}
.fa-hand-spock-o:before {
	content: "\f259";
}
.fa-hand-pointer-o:before {
	content: "\f25a";
}
.fa-hand-peace-o:before {
	content: "\f25b";
}
.fa-trademark:before {
	content: "\f25c";
}
.fa-registered:before {
	content: "\f25d";
}
.fa-creative-commons:before {
	content: "\f25e";
}
.fa-gg:before {
	content: "\f260";
}
.fa-gg-circle:before {
	content: "\f261";
}
.fa-tripadvisor:before {
	content: "\f262";
}
.fa-odnoklassniki:before {
	content: "\f263";
}
.fa-odnoklassniki-square:before {
	content: "\f264";
}
.fa-get-pocket:before {
	content: "\f265";
}
.fa-wikipedia-w:before {
	content: "\f266";
}
.fa-safari:before {
	content: "\f267";
}
.fa-chrome:before {
	content: "\f268";
}
.fa-firefox:before {
	content: "\f269";
}
.fa-opera:before {
	content: "\f26a";
}
.fa-internet-explorer:before {
	content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
	content: "\f26c";
}
.fa-contao:before {
	content: "\f26d";
}
.fa-500px:before {
	content: "\f26e";
}
.fa-amazon:before {
	content: "\f270";
}
.fa-calendar-plus-o:before {
	content: "\f271";
}
.fa-calendar-minus-o:before {
	content: "\f272";
}
.fa-calendar-times-o:before {
	content: "\f273";
}
.fa-calendar-check-o:before {
	content: "\f274";
}
.fa-industry:before {
	content: "\f275";
}
.fa-map-pin:before {
	content: "\f276";
}
.fa-map-signs:before {
	content: "\f277";
}
.fa-map-o:before {
	content: "\f278";
}
.fa-map:before {
	content: "\f279";
}
.fa-commenting:before {
	content: "\f27a";
}
.fa-commenting-o:before {
	content: "\f27b";
}
.fa-houzz:before {
	content: "\f27c";
}
.fa-vimeo:before {
	content: "\f27d";
}
.fa-black-tie:before {
	content: "\f27e";
}
.fa-fonticons:before {
	content: "\f280";
}
.fa-reddit-alien:before {
	content: "\f281";
}
.fa-edge:before {
	content: "\f282";
}
.fa-credit-card-alt:before {
	content: "\f283";
}
.fa-codiepie:before {
	content: "\f284";
}
.fa-modx:before {
	content: "\f285";
}
.fa-fort-awesome:before {
	content: "\f286";
}
.fa-usb:before {
	content: "\f287";
}
.fa-product-hunt:before {
	content: "\f288";
}
.fa-mixcloud:before {
	content: "\f289";
}
.fa-scribd:before {
	content: "\f28a";
}
.fa-pause-circle:before {
	content: "\f28b";
}
.fa-pause-circle-o:before {
	content: "\f28c";
}
.fa-stop-circle:before {
	content: "\f28d";
}
.fa-stop-circle-o:before {
	content: "\f28e";
}
.fa-shopping-bag:before {
	content: "\f290";
}
.fa-shopping-basket:before {
	content: "\f291";
}
.fa-hashtag:before {
	content: "\f292";
}
.fa-bluetooth:before {
	content: "\f293";
}
.fa-bluetooth-b:before {
	content: "\f294";
}
.fa-percent:before {
	content: "\f295";
}
.fa-gitlab:before {
	content: "\f296";
}
.fa-wpbeginner:before {
	content: "\f297";
}
.fa-wpforms:before {
	content: "\f298";
}
.fa-envira:before {
	content: "\f299";
}
.fa-universal-access:before {
	content: "\f29a";
}
.fa-wheelchair-alt:before {
	content: "\f29b";
}
.fa-question-circle-o:before {
	content: "\f29c";
}
.fa-blind:before {
	content: "\f29d";
}
.fa-audio-description:before {
	content: "\f29e";
}
.fa-volume-control-phone:before {
	content: "\f2a0";
}
.fa-braille:before {
	content: "\f2a1";
}
.fa-assistive-listening-systems:before {
	content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
	content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
	content: "\f2a4";
}
.fa-glide:before {
	content: "\f2a5";
}
.fa-glide-g:before {
	content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
	content: "\f2a7";
}
.fa-low-vision:before {
	content: "\f2a8";
}
.fa-viadeo:before {
	content: "\f2a9";
}
.fa-viadeo-square:before {
	content: "\f2aa";
}
.fa-snapchat:before {
	content: "\f2ab";
}
.fa-snapchat-ghost:before {
	content: "\f2ac";
}
.fa-snapchat-square:before {
	content: "\f2ad";
}
.fa-pied-piper:before {
	content: "\f2ae";
}
.fa-first-order:before {
	content: "\f2b0";
}
.fa-yoast:before {
	content: "\f2b1";
}
.fa-themeisle:before {
	content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
	content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
	content: "\f2b4";
}
.fa-handshake-o:before {
	content: "\f2b5";
}
.fa-envelope-open:before {
	content: "\f2b6";
}
.fa-envelope-open-o:before {
	content: "\f2b7";
}
.fa-linode:before {
	content: "\f2b8";
}
.fa-address-book:before {
	content: "\f2b9";
}
.fa-address-book-o:before {
	content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
	content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
	content: "\f2bc";
}
.fa-user-circle:before {
	content: "\f2bd";
}
.fa-user-circle-o:before {
	content: "\f2be";
}
.fa-user-o:before {
	content: "\f2c0";
}
.fa-id-badge:before {
	content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
	content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
	content: "\f2c3";
}
.fa-quora:before {
	content: "\f2c4";
}
.fa-free-code-camp:before {
	content: "\f2c5";
}
.fa-telegram:before {
	content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
	content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
	content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
	content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
	content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
	content: "\f2cb";
}
.fa-shower:before {
	content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
	content: "\f2cd";
}
.fa-podcast:before {
	content: "\f2ce";
}
.fa-window-maximize:before {
	content: "\f2d0";
}
.fa-window-minimize:before {
	content: "\f2d1";
}
.fa-window-restore:before {
	content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
	content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
	content: "\f2d4";
}
.fa-bandcamp:before {
	content: "\f2d5";
}
.fa-grav:before {
	content: "\f2d6";
}
.fa-etsy:before {
	content: "\f2d7";
}
.fa-imdb:before {
	content: "\f2d8";
}
.fa-ravelry:before {
	content: "\f2d9";
}
.fa-eercast:before {
	content: "\f2da";
}
.fa-microchip:before {
	content: "\f2db";
}
.fa-snowflake-o:before {
	content: "\f2dc";
}
.fa-superpowers:before {
	content: "\f2dd";
}
.fa-wpexplorer:before {
	content: "\f2de";
}
.fa-meetup:before {
	content: "\f2e0";
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}


body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    background: #fff;
    position: relative;
    min-width: 320px;
}

.aimeos .btn {
	vertical-align: top;
	font-weight: 500;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
}

.aimeos .btn-primary,
.aimeos .btn-primary:active {
	background-color: #188fd8;
	border: solid 1px #188fd8;
}

.aimeos .btn-primary:hover {
    background-color: #125e98;
	border: solid 1px #125e98;
}

.aimeos .btn:focus,
.aimeos .form-control:focus {
	outline-style: none;
	box-shadow: none;
}

.aimeos .form-control {
	border-radius: 0;
	box-shadow: none;
	vertical-align: top;
}

.aimeos .input-group .btn {
	width: calc(100% - 100px);
	border-radius: 0px 4px 4px 0px;
}

.aimeos .addbasket input {
	border: solid 1px #188fd8;
	text-align: center;
	width: 100px;
}

.aimeos .input-group {
	width: 100%;
}

.aimeos .input-lg {
	height: auto;
}



.aimeos,
.aimeos h1, .aimeos h2,
.aimeos h3, .aimeos h4 {
	font-weight: normal;
	font-size: 100%;
	color: #555;
}

.aimeos h1, .aimeos h2 {
	text-transform: uppercase;
}

.aimeos h1 {
	font-size: 125%;
}

.aimeos h2 {
	font-size: 110%;
}

.aimeos a:link:not(.btn),
.aimeos a:visited:not(.btn) {
	color: #188fd8;
}

.aimeos input {
	border: solid 1px #D0D0D0;
	text-indent: 0.25em;
}

.aimeos input:disabled {
	border-color: #D0D0D0;
}

.aimeos .minibutton {
	color: #D0D0D0;
	font-size: 150%;
	font-weight: bold;
	vertical-align: middle;
	min-width: 1em;
	padding: 0;
	margin: 0;
}

.aimeos .minibutton::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.aimeos .button-group {
	text-align: center;
	padding: 1em 0;
}

.aimeos .button-group .btn {
	margin: 0.25em;
}

.aimeos .error-list {
	background-color: #ffeeee;
	border: solid 1px #FF3300;
	padding: 0.5em;
	padding-left: 2em;
	margin-bottom: 2em;
	list-style: disc;
}

.aimeos .error-item {
	padding: 0.25em;
}

.aimeos .attr-list,
.aimeos .form-list {
	padding: 0;
	margin: 0;
}

.aimeos li.attr-item,
.aimeos li.form-item {
	list-style: none;
	margin: 0.5em 0;
	padding: 0;
}

.aimeos .prototype {
	display: none;
}

.aimeos .pagination {
	display: inline-block;
	width: 100%;
	color: #555;
	margin: 0;
}

.aimeos .sort {
	display: inline-block;
	margin: 0;
	float: left;
}
.aimeos .sort span{
	float: left;
}
.aimeos .sort .dropdown {
	float: left;
}
.aimeos .sort ul {
	list-style: none outside none;
	display: inline;
	padding: 0;
	margin: 0;
}

.aimeos .sort ul li {
	display: inline;
}


.aimeos .browser {
	display: inline-block;
	white-space: nowrap;
	margin: 0;
	float: right;
}
.aimeos .browser span, .aimeos .browser a {
	display: inline-block;
	padding: 4px 10px;
	color: #555;
	text-align: center;
	text-decoration: none;
}

.aimeos .loading {
	background-image: url(media/progress.gif);
	background-repeat: no-repeat;
	background-position: center;
}

.aimeos-spinner {
	background-image: url(media/spinner.gif);
	background-repeat: no-repeat;
	background-position: center;
	position: fixed;
	z-index: 10000;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

.aimeos-overlay {
	background-color: #FFFFFF;
	position: fixed;
	z-index: 1000;
	height: 100%;
	width: 100%;
	opacity: 0;
	left: 0;
	top: 0;
}

.aimeos-container {
	position: absolute;
	z-index: 1001;
	opacity: 1;
	border: solid 1px #D0D0D0;
	background-color: #FFFFFF;
	max-width: 65em;
	width: 98%;
	padding: 1%;
}

.aimeos-container .btn-close {
	display: block;
	cursor: pointer;
	text-align: right;
	font-size: 0;
}
.aimeos-container .btn-close:after {

	font: normal normal normal 14px/1 FontAwesome;
	content: "\f00d";
}


.aimeos .price-list {
	font-weight: normal;
	color: #555;
	padding: 0;
	margin: 0;
}

.aimeos .price-item {
	display: none;
}

.aimeos .price-item:first-of-type {
	display: block;
}

.aimeos .price-item:first-of-type .quantity,
.aimeos .price-item:first-of-type .rebate,
.aimeos .price-item:first-of-type .costs,
.aimeos .price-item:first-of-type .taxrate {
	display: none;
}

.aimeos .price-item .rebatepercent {
	background-color: #A03030;
	padding: 0em 0.25em;
	margin-left: 1em;
	color: #FFF;
}


/* Locale selector */
.locale-select {
	display: inline-block;
}

.locale-select .header {
	display: none;
}

.locale-select ul.select-menu {
	text-transform: uppercase;
	position: relative;
	list-style: none;
	padding: 0em;
}

.locale-select li.select-dropdown {
	border: 1px solid transparent;
	display: inline-block;
	padding: 0;
}

.locale-select li.select-dropdown > a:before {
	content: "» ";
}

.locale-select ul.select-menu a {
	text-decoration: none;
	white-space: nowrap;
	display: block;
	color: #555;
	padding: 0.5em 1em;
}

.locale-select ul.select-menu a:hover {
	text-decoration: underline;
}

.locale-select ul.select-menu li.select-dropdown:hover > ul,
.locale-select ul.select-menu ul.active {
	border: solid 1px #D0D0D0;
	visibility: visible;
	opacity: 1;
}

.locale-select ul.select-menu ul {
	list-style: none outside none;
	background-color: #FFF;
	position: absolute;
	visibility: hidden;
	z-index: 99999;
	opacity: 0;
	padding: 0em;
	padding-left: 0.65em;
}

.locale-select-language,
.locale-select-currency {
	display: inline-block;
	min-width: 3em;
}

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

.catalog-filter form{
	position: relative;
}

.catalog-filter h1 {
	display: none !important;
}

.aimeos-content .col-md-3 .catalog-filter h1{
	font-size: 1.5em;
	font-weight: bold;
	padding: 25px 0;
	margin: 0;
	color: #555;
	text-align: left;
	display: block !important;
}

.aimeos-content .col-md-3 .catalog-filter section.catalog-filter-supplier{
	display: none;
}

.aimeos-content .col-md-3 .catalog-filter section.catalog-filter-price {
    height: auto;
    margin: 0;
}

.aimeos-content .col-md-3 .catalog-filter section.catalog-filter-price label { 
    margin-bottom: 0;
    font-weight: normal;
    padding-left: 5px;
}

.aimeos-content .col-md-3 .catalog-filter section.catalog-filter-price input{
    position: relative;
    margin: 0;
    top: 1px;
}
 
.catalog-filter-tree .catcode-home > a {
	white-space: nowrap;
}

.catalog-filter-tree .catcode-home > a:before {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 133%;
	content: "\f015";
	color: #188fd8;
	vertical-align: bottom;
}

.catalog-filter-tree .media-list {
	display: inline-block;
	vertical-align: top;
	margin: 0;
	height: auto;
}

.catalog-filter-tree .media-item img {
	height: auto;
	width: 100%;
}

.catalog-filter-tree .disabled > .cat-item,
.catalog-filter-tree .disabled > .cat-item:link,
.catalog-filter-tree .disabled > .cat-item:visited,
.catalog-filter-attribute .disabled .attr-name {
	color: #B0B0B0;
}

.catalog-filter-tree .cat-count:before,
.catalog-filter-attribute .attr-count:before {
	content: "(";
}

.catalog-filter-tree .cat-count:after,
.catalog-filter-attribute .attr-count:after {
	content: ")";
}

/* Catalog filter search section */
.catalog-filter-search > h2 {
	display: none;
}

.catalog-filter .search-hint {
	position: absolute;
	background-color: #ffeeee;
	border: solid 1px #FF3300;
	padding: 0.5em;
	color: #FF0000;
	z-index: 1000;
}

.catalog-filter-search .form-group {
	display: block;
}

.catalog-filter-search .value {
	background-color: #FFFFFF;
	border-right: none;
	min-width: 5em;
	width: 70%;
}

.catalog-filter-search .value {
	border-color: #188fd8;
	border-right: none;
	margin: 0;
}

.catalog-filter-search .reset {
	background-color: #FFFFFF;
	border-color: #188fd8;
	border-right: none;
	border-left: none;
	width: 10% !important;
	margin: 0;
}

.catalog-filter-search .reset .symbol {
	vertical-align: top;
	font-weight: bold;
	color: #AAAAAA;
}

.catalog-filter-search .value[value=''] + .reset .symbol {
	visibility: hidden;
}

.catalog-filter-search .reset .symbol:before {
	content: "⨯";
}

.catalog-filter-search .btn-primary {
	width: 20% !important;
	margin: 0;
}

.catalog-filter-search .ui-helper-hidden-accessible {
	display: none;
}

/* Catalog filter, tree section */

.catalog-filter-tree > h2 {
	border-bottom: solid 1px #188fd8;
	display: inline-block;
	font-size: 100%;
	cursor: pointer;
	float: none;
	width: 100%;
	padding: 0.5em;
	margin: 0 0 1em 0;
}

.catalog-filter-tree ul {
	text-align: left;
	list-style: none;
	padding-left: 10%;
}

.catalog-filter-tree > ul {
	padding: 0.5em 0;
	display: block;
	clear: both;
}

html.no-js .catalog-filter-tree:hover > ul {
	display: block;
}

.catalog-filter-tree li {
	padding: 0;
}

.catalog-filter-tree > ul > li {
	padding: 0.5em 0;
}

.catalog-filter-tree a.cat-item {
	padding: 0;
	color: #555;
}

.catalog-filter-tree a.cat-item:hover {
	text-decoration: underline;
	color: #555;
}

.catalog-filter-tree .category-selected {
	display: none;
	text-align: left;
	clear: both;
}

.catalog-filter-tree .category-selected .selected-intro:after {
	content: ":";
}

.catalog-filter-tree .category-selected .selected-category {
	border: solid 1px #D0D0D0;
	display: inline-block;
	margin: 0.5em;
	padding: 0 0.25em;
}

.catalog-filter-tree .category-selected .selected-category:after {
	content: " ×";
}

/* Catalog filter, attribute and supplier section */
.catalog-filter-supplier,
.catalog-filter-price,
.catalog-filter-attribute,
.catalog-filter-tree {
	margin: 1em 0;
	width: 100%;
	float: none;
}
.catalog-filter-price  > h2,
.catalog-filter-attribute > h2,
.catalog-filter-supplier > h2 {
	border-bottom: solid 1px #188fd8;
	display: inline-block;
	text-align: center;
	font-size: 100%;
	cursor: pointer;
	width: 100%;
	float: none;
	padding: 0.5em;
	margin: 0 0 1em 0;
}

.catalog-filter-price .price-lists,
.catalog-filter-attribute .attribute-lists,
.catalog-filter-supplier .supplier-lists {
	text-align: left;
	display: block;
	clear: both;
}

html.no-js .catalog-filter-price:hover .price-lists,
html.no-js .catalog-filter-attribute:hover .attribute-lists,
html.no-js .catalog-filter-supplier:hover .supplier-lists {
	display: block;
}
.catalog-filter-attribute .attribute-selected {
	clear: both;
	padding: 0;
	position: absolute;
	bottom: -5px;
	right: 0;
}
.catalog-filter-attribute .attribute-selected .selected-intro:after {
	content: ":";
}

.catalog-filter-attribute .attribute-selected .attr-list {
	display: inline-block;
}

.catalog-filter-attribute .attribute-selected .attr-item {
	display: inline-block;
}

.catalog-filter-attribute .attribute-selected .selected-all,
.catalog-filter-attribute .attribute-selected .attr-name {
	border: solid 1px #D0D0D0;
	display: inline-block;
	margin: 0.5em;
	padding: 0 0.25em;
}

.catalog-filter-attribute .attribute-selected .selected-all:after,
.catalog-filter-attribute .attribute-selected .attr-name:after {
	content: " ×";
}

.catalog-filter-attribute fieldset, .catalog-filter-supplier fieldset {
	border-left: 0;
	background-color: #FFF;
	display: inline-block;
	vertical-align: top;
	font-weight: normal;
	text-align: left;
	min-width: inherit;
	width: 100%;
	color: #555;
	line-height: 1;
	margin: 0;
	clear: both;
	display: block;
}
.catalog-filter-attribute fieldset,
.catalog-filter-supplier fieldset{
	margin-bottom: 15px;

}
.catalog-filter-attribute fieldset:last-child,
.catalog-filter-supplier fieldset:last-child{
	margin-bottom: 0;
}
.catalog-filter-attribute legend {
	border: none;
	border-left: 0;
	cursor: pointer;
	font-size: 100%;
	padding: 0;
	width: auto;
	margin: 0;
	left: 0;
	position: relative;
}
 
.catalog-filter-attribute .attribute-lists .attr-list,
.catalog-filter-supplier .supplier-lists .attr-list {
	overflow: visible;
	padding: 0;
	height: auto;
	display: block !important;
}

.catalog-filter-attribute .attribute-lists li.attr-item,
.catalog-filter-supplier .supplier-lists li.attr-item {
	display: block;
	padding: 0.4em 0;
	margin: 0;
}

.catalog-filter-attribute input.attr-item,
.catalog-filter-supplier input.attr-item {
	border: 1px solid #D0D0D0;
}

.catalog-filter-attribute input.attr-item[type=checkbox],
.catalog-filter-supplier input.attr-item[type=checkbox] {
	display: initial;
}

.catalog-filter-attribute input.attr-item[type=checkbox]:checked + label:before,
.catalog-filter-supplier input.attr-item[type=checkbox]:checked + label:before {
	content: "\2713";
}

.catalog-filter-attribute label:before,
.catalog-filter-supplier label:before {
	border: solid 1px #555;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	content: "";
	width: 1em;
	height: 1em;
	margin-right: 0.25em;
}

.catalog-filter-attribute label:before,
.catalog-filter-supplier label:before,
.catalog-filter-attribute input.attr-item[type=checkbox]:checked + label:before,
.catalog-filter-supplier input.attr-item[type=checkbox]:checked + label:before {
	display: none;
}

.catalog-filter-attribute .media-list,
.catalog-filter-supplier .media-list {
	display: inline-block;
}

.catalog-filter-attribute .media-item img,
.catalog-filter-supplier .media-item img {
	vertical-align: top;
	height: 1em;
	width: 1em;
}

.catalog-filter-attribute .attr-name,
.catalog-filter-attribute .attr-count,
.catalog-filter-supplier .attr-name,
.catalog-filter-supplier .attr-count {
	font-weight: normal;
	cursor: pointer;
}

.catalog-filter-attribute .attr-length li.attr-item,
.catalog-filter-attribute .attr-width li.attr-item,
.catalog-filter-supplier .attr-length li.attr-item,
.catalog-filter-supplier .attr-width li.attr-item {
	display: inline-block;
	min-width: 7.5em;
	width: 50%;
}


/* Product list, stage section */
.catalog-stage {
	color: #188fd8;
	clear: both;
	margin-bottom:20px;
}

.catalog-stage-image img {
	width: 100%;
}

.catalog-stage-breadcrumb {
	color: #555;
}

.catalog-stage-breadcrumb .breadcrumb {
	background-color: inherit;
	font-weight: normal;
	padding: 0;
	margin: 0;
}

.catalog-stage-breadcrumb ol {
	display: inline;
	list-style: none;
	padding-left: 0;
}

.catalog-stage-breadcrumb li {
	display: inline;
	white-space: nowrap;
}

.catalog-stage-breadcrumb li:after {
	content: ' / ';
}

.catalog-stage-breadcrumb li:last-child:after {
	content: '';
}

.catalog-stage-navigator {
	text-align: right;
	display: block;
	font-size: 90%;
	margin: 0.5em;
}

.catalog-stage-navigator a,
.catalog-stage-navigator a:focus,
.catalog-stage-navigator a:hover {
	text-decoration: none;
}

.catalog-stage-navigator a:before {
	content: '   |   ';
	white-space: pre;
}

.catalog-stage-navigator a:first-of-type:before {
	content: '';
}

.catalog-stage-navigator a.prev:before {
	content: '◀   ';
	white-space: pre;
}

.catalog-stage-navigator a.next:after {
	content: '   ▶';
	white-space: pre;
}


/* Suggested products */
.ui-autocomplete {
	overflow-y: auto;
	max-height: 25em;
	padding: 0;
}

.aimeos.catalog-suggest {
	border-bottom: solid 1px #CCC;
	background: #fff;
}

.aimeos.catalog-suggest:last-child {
	border: none;
}

.aimeos .suggest-item {
	text-decoration: none;
	padding: 0.5% 2.5%;
	display: table;
	width: 100%;
}

.aimeos .suggest-item .item-name {
	vertical-align: middle;
	display: inline-block;
	width: 40%;
	font-size: 13px;
	width: 100%;
}

.aimeos .suggest-item .item-price {
	vertical-align: middle;
	display: none;
	width: 25%;
}

.aimeos .suggest-item .item-image {
	background-image: url(media/aimeos.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	vertical-align: middle;
	display: none;
	height: 5em;
	width: 30%;
}


/* Product list */
.catalog-list a:focus {
	outline: none;
}

.aimeos .list-items {
	font-size: 90%;
	padding: 0;
}

.catalog-list .product {
	border-bottom: 1px solid #188fd8;
	display: inline-block;
	vertical-align: top;
	white-space: normal;
	position: relative;
	overflow: hidden;
	font-size: 90%;
	margin: 1em 1%;
	width: 240px;
}

.catalog-list .product a {
	display: inline-block;
	text-decoration: none;
}

.catalog-list a .media-list {
	background-color: #FFFFFF;
	background-image: url(media/aimeos.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: relative;
	text-align: center;
	overflow: hidden;
	height: 320px;
	width: 240px;
}
 
.catalog-list a .media-item {
	background-color: #FFFFFF;
	background-image: url(media/progress.gif);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border: 1px solid #d1d1d1;
	position: relative;
	height: 80px;
	width: 80px;
}

.catalog-list .catalog-list-items .product-grid-tem a .media-item {
	height: 300px;
	width: 300px;
}

.catalog-list .catalog-list-items .product-grid-tem.product {
	border-bottom: 0;
}

/* text list */
.aimeos .product .text-list {
	line-height: 1.1;
	overflow: hidden;
	color: #555;
	margin: 0.5em auto;
}

.catalog-detail .product .text-list,
.basket-related .product .text-list {
	margin: 0.5em 0;
}

.aimeos .product .text-list h2 {
	text-transform: uppercase;
	font-weight: normal;
	font-size: 100%;
	overflow: hidden;
	height: 2em;
	margin: 0;
    margin-bottom: 1rem;
}

.aimeos .product .text-list .text-item {
	overflow: hidden;
	height: 2em;
}

/* product offer part */
.catalog-list .offer {
	max-width: 15em;
	margin: auto;
}

/* price list */
.aimeos .product .price-list {
	box-sizing: content-box;
	display: inline-block;
	margin-bottom: 10px;
}

.catalog-detail .product .price-list .rebate {
	display: none;
}

/* Stock level */
.aimeos .product .stock-list {
	display: block;
}

.aimeos .list-items .product .stock-list {
	margin-top: 5px;
}

.aimeos .product .stockitem {
	display: none;
	margin: 0;
}

.aimeos .product .stock-actual .stockitem {
	display: inline-block;
}

.aimeos .product .stocklevel {
	display: inline-block;
	height: 10px;
	width: 10px;
	border-radius: 100%;
}

.aimeos .product .stocktext {
	display: inline-block;
}

.aimeos .product .stock-unlimited .stocklevel,
.aimeos .product .stock-high .stocklevel {
	background-color: #3ea93e;
}

.aimeos .product .stock-unlimited .stocktext,
.aimeos .product .stock-high .stocktext {
	color: #3ea93e;
}

.aimeos .product .stock-out .stocktext {
	color: #fb4343;
}

.aimeos .product .stock-low .stocklevel {
	background-color: #B06000;
}

.aimeos .product .stock-out .stocklevel {
	background-color: #fb4343;
}


/* List head section */
.catalog-list-head {
	padding: 1em 0;
}
.catalog-list-head h1 {
	font-size: 1.5em;
	font-weight: bold;
	padding: 0.5em 0;
	margin: 0;
}

.catalog-list-head .short {
	font-weight: bold;
	padding: 0.5em 0;
	color: #555;
}

.catalog-list-head .long {
	padding: 0.5em 0;
	color: #555;
}

.catalog-list .list-search {
	font-weight: bold;
}

.catalog-list .searchstring {
	font-size: 133%;
	color: #555;
}

/* Product list, promotion section */
.catalog-list-promo {
	text-align: center;
	margin: 2em 0;
}

.catalog-list-promo .header {
	text-align: left;
	border: 0 none;
	font-size: 1.25em;
	font-weight: bold;
	padding: 0.5em;
	color: #555;
}

.catalog-list-promo .list-items {
	white-space: nowrap;
	overflow: auto;
	font-size: 90%;
	padding: 0;
}

.catalog-list-promo .product {
	border: none 0;
}
 
.catalog-list-items {
	margin: 1em 0;
}

.catalog-list-items .selection,
.catalog-list-items .attribute {
	clear: both;
}

.catalog-list-items .addbasket .input-group {
	padding: 2.25em 0 0 0;
	margin: auto;
}

.catalog-list-items .list .product {
	border-left: solid 1px #188fd8;
	border-bottom: none;
	text-align: left;
	width: 481px;
}


.catalog-list-items .list .product a {
	vertical-align: top;
}

.catalog-list-items .list .text-list h2 {
	font-weight: bold;
	font-size: 13px;
	height: auto;
	margin-bottom: 0;
}
.catalog-list .offer, .catalog-list-items .list .text-list {
	padding: 0;
	height: auto;
	font-size: 13px;
	margin-bottom: 0;
	line-height: 1.1;
	margin: 0;
}

.catalog-detail  .tags {
	display: inline-block;
	width: 100%;
}

 .catalog-list-items .tags {
    margin-top: 0px;
}

.catalog-detail  .tags .badge,
 .catalog-list-items .tags .badge{
	 margin-right: 5px; margin-top: 5px;
 }

.aimeos .tags a.badge:link:not(.btn), 
.aimeos .tags a.badge:visited:not(.btn){
	color: #fff;
}

.aimeos .tags a.badge:hover{
	background: #188fd8;
}
 .catalog-list-items .list .text-list { 
    padding-left: 15px;
}

.catalog-list-items .list .text-item {
	color: #555;
}

.catalog-list-items .list .selection .select-value {
	margin: 0 !important;
}

/* Product list type switcher */
.catalog-list-type {
	text-align: right;
}

.catalog-list-type .type-item {
	padding: 0.5em;
}

.catalog-list-type .type-grid:after {
	font: normal normal normal 20px/1 FontAwesome;
	content: "\f00a";
}

.catalog-list-type .type-list:after {
	font: normal normal normal 20px/1 FontAwesome;
	content: "\f00b";
}


/* Product details */

/* Product images */
.catalog-detail-image {
	background-color: #ffffff;
}

.catalog-detail-image .image-single {
	background-image: url(media/aimeos.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-color: #FFFFFF;
	display: inline-block;
	position: relative;
	overflow: hidden;
	max-width: 400px;
	height: 533px;
	width: 100%;
}

.catalog-detail-image .image-single figcaption {
	display: none;
}

.catalog-detail-image .item {
	background-repeat: no-repeat;
	background-position: center;
	background-color: #FFFFFF;
	background-size: contain;
}

.catalog-detail-image .image-single .item {
	display: inline-block;
	max-width: 400px;
	height: 533px;
	width: 100%;
}

.catalog-detail-image .thumbs .item {
	display: inline-block;
	height: 105px;
	width: 80px;
	opacity: 0.7;
	margin: 0;
}

.catalog-detail-image .image-thumbs button {
	border: none;
	background: none;
	background-repeat: no-repeat;
	background-position: center;
	color: transparent;
	padding: 0;
}

.catalog-detail-image .thumbs-vertical {
	display: inline-block;
	overflow: hidden;
	height: 533px;
	width: 80px;
}

.catalog-detail-image .thumbs-vertical button {
	height: 40px;
	width: 80px;
}

.catalog-detail-image .thumbs-vertical .slick-prev {
	background-image: url('media/arrow_small_top.png');
}

.catalog-detail-image .thumbs-vertical .slick-next {
	background-image: url('media/arrow_small_bottom.png');
}

.catalog-detail-image .thumbs-horizontal {
	overflow: hidden;
	max-width: 400px;
	width: 100%;
	height: 105px;
}

.catalog-detail-image .thumbs-horizontal button {
	display: inline-block;
	vertical-align: top;
	height: 105px;
	width: 40px;
}

.catalog-detail-image .thumbs-horizontal .thumbs {
	display: inline-block !important;
	width: calc(100% - 80px);
}

.catalog-detail-image .thumbs-horizontal .item {
	width: 80px;
}

.catalog-detail-image .thumbs-horizontal .slick-prev {
	background-image: url('media/arrow_small_left.png');
}

.catalog-detail-image .thumbs-horizontal .slick-next {
	background-image: url('media/arrow_small_right.png');
}

.catalog-detail-image .thumbs .selected,
.catalog-detail-image .thumbs .item:hover {
	opacity: 1;
}

/* Product detail, basic section */
.catalog-detail-basic {
	margin: 0;
}

.catalog-detail-basic h1.name {
	text-transform: uppercase;
	font-size: 110%;
	color: #188fd8;
	margin: 0;
	padding: 0;
	padding-bottom: 0.5em;
}
 
.catalog-detail-basic .short {
	display: none;
}

.attribute-lists {
	border: 1px solid #ddd;
	padding: 15px;
}

.catalog-filter-tree h4,
.attribute-lists h4 {
	font-size: 13px;
	font-weight: bold;
	text-transform: none;
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
	text-align: left;
}

.catalog-filter-tree h4:before,
.attribute-lists h4:before {
	display: inline-block;
	margin-right: 5px;
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f0da";
}

span.invalid-feedback {
	font-size: 12px;
	color: #a94442;
	font-weight: normal;
}

body span.invalid-feedback strong,
body span.invalid-feedback b{
	font-weight: normal;
}

body .catalog-detail-basket .price-item.toggle-js:first-of-type:after{
	display: none;
}

body .catalog-detail-basket .price-item:first-of-type {
	display: inline-block;
	cursor: default;
}

body .catalog-detail-basket .price-item .quantity,
body .catalog-detail-basket .price-item .value,
body .catalog-detail-basket .price-item .costs,
body .catalog-detail-basket .price-item .rebate,
body .catalog-detail-basket .price-item .taxrate {
	margin: 0;
	min-width: 0;
}

body .catalog-detail-basket .price-item:first-of-type .taxrate {
	display: inline-block;
	padding: 0;
}
 
body .catalog-detail-basket .price-item .taxrate{
	font-size: 100%;
}

body .catalog-detail-basket .price-item:first-of-type .quantity,
body .catalog-detail-basket .price-item .rebate,
body .catalog-detail-basket .price-item .taxrate {
	display: inline-block;
}

body .aimeos .price-item {
    display: inline-block !important;
}

.empty-cart img{
	width: 500px;
	max-width: 100%;
	margin: 50px 0;
}

@media (max-width: 480px) {
	.catalog-detail-basic {
		clear: both;
	}
}

/* Product detail, social section */
.catalog-detail .catalog-social {
	float: right;
	margin: 1em 0;
}

.catalog-detail .catalog-social .social-button {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 150%;
	padding: 0 0.33em;
}

.catalog-detail .catalog-social .social-button-facebook:before {
	content: "\f082";
}

.catalog-detail .catalog-social .social-button-gplus:before {
	content: "\f0d5";
}

.catalog-detail .catalog-social .social-button-twitter:before {
	content: "\f099";
}

.catalog-detail .catalog-social .social-button-pinterest:before {
	content: "\f0d2";
}

/* Product detail, action buttions */
.catalog-detail .catalog-actions {
	float: left;
	margin: 1em 0;
}

.catalog-detail .catalog-actions .actions-button {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 150%;
	padding: 0 0.5em;
}

.catalog-detail .catalog-actions .actions-button-favorite:before {
	content: "\f004";
}

.catalog-detail .catalog-actions .actions-button-pin:before {
	content: "\f08d";
}

.catalog-detail .catalog-actions .actions-button-watch:before {
	content: "\f06e";
}

/* Product detail, basket section */
.catalog-detail-basket {
	margin: 0;
	clear: right;
}

.catalog-detail-basket .price-list {
	display: none;
	color: #555;
}

.catalog-list-items .price,
.catalog-detail-basket .price {
	display: none;
}

.catalog-list-items .price-actual,
.catalog-detail-basket .price-actual {
	display: inline-block;
}

.catalog-detail-basket .price-item:first-of-type {
	display: block;
	cursor: pointer;
}

.catalog-detail-basket .price-item:first-of-type:after {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f107";
}

.catalog-detail-basket .price-item.toggle-js:first-of-type:after {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f106";
}

.catalog-detail-basket .price-item:last-of-type:after {
	content: "";
}

.catalog-detail-basket .price-item .quantity,
.catalog-detail-basket .price-item .value,
.catalog-detail-basket .price-item .costs,
.catalog-detail-basket .price-item .rebate,
.catalog-detail-basket .price-item .taxrate {
	vertical-align: middle;
	display: inline-block;
	margin: 0.25em 0;
	min-width: 4em;
}

.catalog-detail-basket .price-item .rebatepercent {
	min-width: auto;
}

.catalog-detail-basket .price-item:first-of-type .taxrate {
	display: inline-block;
	padding: 0 1em;
}

.catalog-detail-basket .price-item:first-of-type .quantity,
.catalog-detail-basket .price-item .rebate,
.catalog-detail-basket .price-item .taxrate {
	display: none;
}

.catalog-detail-basket .price-item .taxrate {
	font-size: 80%;
}

/* add to basket */
.catalog-detail-basket .addbasket {
	margin-top: 1em;
}

.catalog-detail-basket .addbasket .input-group {
	margin: auto;
}

/* services */
.catalog-detail-basket .service-intro {
	cursor: pointer;
	color: #188fd8;
}

.catalog-detail-service .service-list {
	list-style: none;
	color: #999;
	padding: 0;
	max-width: 20em;
	max-height: 10em;
	overflow-y: auto;
}

.catalog-detail-service .service-name {
	display: inline-block;
	min-width: 8em;
}

.catalog-detail-service .service-item .price-item {
	display: inline-block;
	text-align: right;
	min-width: 4em;
}

.catalog-detail-service .service-item .price-item .costs {
	display: block;
}

.catalog-detail-service .service-item .price-item .value,
.catalog-detail-service .service-item .price-item .taxrate {
	display: none;
}

.catalog-detail-service .service-item .service-short {
	display: none;
}

/* product attributes */
.catalog-list-items .selection,
.catalog-detail-basket .selection,
.catalog-detail-basket-attribute {
	color: #555;
	padding: 0;
}

.catalog-list-items .selection,
.catalog-detail-basket .selection .selection,
.catalog-detail-basket-attribute .selection {
	padding: 0;
}

.catalog-list-items .selection .select-item,
.catalog-detail-basket .selection .select-item,
.catalog-detail-basket-attribute .select-item {
	margin-top: 1em;
	list-style: none;
}

.catalog-list-items .selection .select-name,
.catalog-detail-basket .selection .select-name,
.catalog-detail-basket-attribute .select-name {
	min-width: 5em;
}

.catalog-list-items .selection .select-hint,
.catalog-detail-basket .selection .select-hint,
.catalog-detail-basket-attribute .select-hint {
	font-size: 80%;
	min-width: 5em;
}

.catalog-list-items .selection ul.select-list,
.catalog-detail-basket .selection ul.select-list {
	padding: 0;
}

.catalog-list-items .selection li.select-entry,
.catalog-detail-basket .selection li.select-entry {
	list-style: none;
}

.catalog-list-items .selection .radio li.select-entry,
.catalog-detail-basket .selection .radio li.select-entry {
	display: inline-block;
	margin: 0;
}

.catalog-list-items .selection .radio input.select-option,
.catalog-detail-basket .selection .radio input.select-option {
	display: none;
}

.catalog-list-items .selection .select-label,
.catalog-detail-basket .selection .select-label {
	width: calc(100% - 4em);
	font-weight: normal;
}

.catalog-list-items .selection .color .select-label,
.catalog-detail-basket .selection .color .select-label {
	border: solid 1px #FFF;
	line-height: 0;
}

.catalog-list-items .selection .select-label > span,
.catalog-detail-basket .selection .select-label > span {
	padding: 0 0.25em;
	min-width: 1.5em;
}

.catalog-list-items .selection .select-option:checked + .select-label,
.catalog-detail-basket .selection .select-option:checked + .select-label {
	border: solid 1px #188fd8;
}

.catalog-list-items .selection .select-option:disabled + .select-label,
.catalog-detail-basket .selection .select-option:disabled + .select-label {
	opacity: 0.25;
}

.catalog-list-items .selection .input .select-entry,
.catalog-detail-basket .selection .input .select-entry {
	margin: 0.1em 0;
}

.catalog-list-items .selection input.select-option[type=number],
.catalog-detail-basket .selection input.select-option[type=number] {
	border: solid 1px #188fd8;
	text-align: center;
	padding: 0;
	width: 4em;
}

.catalog-list-items .selection .custom input[type=number],
.catalog-detail-basket .selection .custom input[type=number] {
	text-align: center;
}

.catalog-list-items .selection .media-item,
.catalog-detail-basket .selection .media-item {
	display: inline-block;
	line-height: 0;
	padding: 0;
	margin: 0;
}

.catalog-list-items .selection .media-item > img,
.catalog-detail-basket .selection .media-item > img {
	border: none;
	height: 1.33em;
	width: 1.33em;
}

.catalog-list-items .selection .media-item + span,
.catalog-detail-basket .selection .media-item + span {
	display: none;
}

.catalog-list-items .selection .error,
.catalog-detail-basket .selection .error {
	color: #FF3300;
}

.catalog-list-items .selection .error select,
.catalog-detail-basket .selection .error select {
	background-color: #ffeeee;
	border: solid 1px #FF3300;
}

/* Product detail, additional section */
.catalog-detail-additional {
	width: 100%;
	clear: both;
	padding: 1% 0;
}

.catalog-detail-additional .content {
	list-style: none;
	padding: 1%;
}

.catalog-detail-additional .item {
	padding: 1%;
}

/* Hide attributes and properties from sub-products*/
.catalog-detail-additional .subproduct {
	display: none;
}
.catalog-detail-additional .subproduct-actual {
	display: table-row;
}

/* Product detail, additional attributes/properties section */
.catalog-detail-additional table.attributes,
.catalog-detail-additional table.properties {
	margin: 1%;
	width: 98%;
}

.catalog-detail-additional .attributes td,
.catalog-detail-additional .properties td {
	padding: 1%;
	width: 48%;
}

.catalog-detail-additional .attributes .media-list {
	display: inline-block;
}

.catalog-detail-additional .attributes .media-item {
	display: inline-block;
}

.catalog-detail-additional .attributes img {
	height: 1em;
}

/* Product detail, additional download section */
.catalog-detail-additional .downloads .media-image {
	height: 3em;
}
.catalog-detail-additional .item.item-norm {
	column-count: 4;
}

.catalog-detail-basket .additional-box .item.item-brand .attr-name {
	display: inline-block;
}

.catalog-detail-basket .additional-box .item.item-brand .attr-name .media-item {
	height: 17px;
	position: relative;
	display: inline-block;
	width: 100px;
}

.catalog-detail-basket .additional-box .item.item-brand .attr-name .media-item img {
	max-width: 100%;
	max-height: 100%;
	position: relative;
	top: -2px;
	margin-left: 10px;
}

/* Stock level */
.aimeos .catalog-detail-basket .stock-list {
	text-align: center;
	padding: 0;
	width: 100%;
	margin-bottom: 10px
}

.aimeos .catalog-detail-basket .stock-actual .stockitem {
	display: block;
}

.aimeos .catalog-detail-basket .stocklevel ,
.aimeos .catalog-detail-basket .stocktext {
	display: inline-block;
}

.aimeos .catalog-detail-basket .stock-unlimited,
.aimeos .catalog-detail-basket .stock-high {
	color: inherit;
}

.aimeos .catalog-detail-basket .stock-low {
	color: inherit;
}

.aimeos .catalog-detail-basket .stock-out {
	color: inherit;
}


/* Watched, favorite, suggested products and session items */
.account-watch,
.account-favorite,
.basket-related-bought,
.catalog-detail-bought,
.catalog-detail-bundle,
.catalog-detail-suggest,
.catalog-session {
	clear: both;
	padding: 1em 0;
	text-align: left;
}

.account-watch,
.account-favorite,
.catalog-session-pinned,
.catalog-session-seen {
	margin-bottom: 0.5em;
	font-size: 90%;
}

.account-watch .watch-items,
.account-favorite .favorite-items,
.basket-related-bought .list-items,
.catalog-detail-bought .list-items,
.catalog-detail-bundle .list-items,
.catalog-detail-suggest .list-items,
.catalog-session-seen .seen-items,
.catalog-session-pinned .pinned-items {
	padding: 0;
}

.account-subscription .header,
.account-profile .header,
.account-invoices .header,
.account-history .header,
.account-watch .header,
.account-favorite .header,
.basket-related-bought .header,
.catalog-session .header,
.catalog-detail .header {
	border-bottom: solid 1px #188fd8;
	text-transform: uppercase;
	text-align: left;
	font-weight: normal;
	padding: 0.5em 0;
	color: #555;
}

.account-watch .watch-item,
.account-favorite .favorite-item,
.basket-related-bought .product,
.catalog-detail-bought .product,
.catalog-detail-bundle .product,
.catalog-detail-suggest .product,
.catalog-session-seen .seen-item,
.catalog-session-pinned .pinned-item {
	display: inline-block;
	vertical-align: top;
	position: relative;
	width: 160px;
	margin: 1%;
	padding: 0;
}

.account-watch a.watch-item {
	width: 160px;
	margin: 0;
}

.basket-related-bought .media-list,
.catalog-detail-bought .media-list,
.catalog-detail-bundle .media-list,
.catalog-detail-suggest .media-list,
.catalog-session-seen .media-list {
	background-color: #FFFFFF;
	background-image: url(media/aimeos.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	position: relative;
	text-align: center;
	overflow: hidden;
	height: 213px;
	width: 160px;
}

.account-watch .media-item,
.account-favorite .media-item,
.basket-related-bought .media-item,
.catalog-detail-bought .media-item,
.catalog-detail-bundle .media-item,
.catalog-detail-suggest .media-item,
.catalog-session-seen .media-item,
.catalog-session-pinned .media-item {
	background-color: #FFFFFF;
	background-image: url(media/aimeos.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 213px;
	width: 160px;
}

.account-watch .name,
.account-favorite .name,
.basket-related-bought .name,
.catalog-detail-bought .name,
.catalog-detail-bundle .name,
.catalog-detail-suggest .name,
.catalog-session-seen .name,
.catalog-session-pinned .name {
	margin: 0;
	padding: 0;
	height: 3em;
	font-size: 100%;
	font-weight: normal;
	text-align: center;
	overflow: hidden;
	text-transform: uppercase;
	max-width: 15em;
	margin: auto;
}

.account-watch .modify,
.account-favorite .modify,
.catalog-session-pinned .modify {
	position: absolute;
	font-weight: bold;
	font-size: 150%;
	color: #D0D0D0;
	right: 0;
}

.account-watch .watch-details {
	display: inline-block;
	text-align: center;
	width: auto;
	margin-top: 0;
}

.account-watch .form-list label {
	width: 114px;
}

.account-watch .form-list input {
	width: auto;
	height: auto;
}

.account-watch .form-list select {
	width: 114px;
	font-size: 100%;
}

.account-watch .button-group {
	padding: 0;
}

.account-watch .btn {
	width: 100%;
}

.catalog-session-seen .count:before,
.catalog-session-pinned .count:before {
	content: "(";
}

.catalog-session-seen .count:after,
.catalog-session-pinned .count:after {
	content: ")";
}


/* Basket */
.checkout-standard,
.checkout-confirm {
	min-width: 240px;
	margin: 0 auto;
}

.checkout-confirm-basic {
	padding: 0 1em 1em 1em;
	border: solid 1px #D0D0D0;
	margin: 0 0 8px 0;
}


/* Mini basket */
.basket-mini {
	background-color: #188fd8;
	color: #555;
}

.basket-mini h1 {
	display: none;
}


.basket-mini .icon{
	margin-right: 10px;
	position: relative;
}
.basket-mini .icon:before {
	font: normal normal normal 14px/1 FontAwesome;
	vertical-align: middle;
	content: "\f07a";
	font-size: 150%;
	color: #FFF;
}

.basket-mini-main {
	display: inline-block;
	color: #FFF;
}
.basket-mini .icon,
.basket-mini-main .quantity {
	display: inline-block;
	float: left;
}


.basket-mini-product {
	display: inline;
	position: absolute;
	top: 20px;
	right: 5px;
}

.basket-mini-product .basket-toggle {
	font: normal normal normal 14px/1 FontAwesome;
	vertical-align: middle;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	color: #188fd8;
	color: #FFF;
	padding: 1em;
}

.basket-mini-product .basket-toggle.toggle-close:after {
	content: "\f100";
}

.basket-mini-product .basket-toggle.toggle-open:after {
	content: "\f101";
}

.basket-mini-product .basket {
	background-color: #F8F8F8;
	position: absolute;
	display: none;
	opacity: 1.0;
	z-index: 2;
}

.basket-mini-product tr {
	border-left: 1em solid transparent;
	border-right: 1em solid transparent;
}

.basket-mini-product th,
.basket-mini-product td {
	padding: 1em 0;
}

.basket-mini-product th,
.basket-mini-product .basket .quantity,
.basket-mini-product .basket .unit{
	text-align: center;
}

.basket-mini-product .basket .name {
	text-align: left;
	width: 50%;
}

.basket-mini-product .basket .price {
	white-space: nowrap;
	text-align: right;
}

.basket-mini-product .basket .action {
	padding-left: 1em;
	font-weight: bold;
}

.basket-mini-product .basket .delete:after {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f014";
}
.basket-mini-product .basket-header thead{
	display: block;
}
.basket-mini-product .basket-header tr {
	 border-bottom: 1px solid #D0D0D0;
 }

.basket-mini-product tr.delivery,
.basket-mini-product tr.total {
	border-top: 1px solid #D0D0D0;
	font-weight: bold;
}

.basket-mini-product .delivery .name:before {
	content: "+ ";
}

.basket-mini-product .total .name:before {
	content: "= ";
}

.basket-mini-product .checkout .button {
	text-align: center;
}



/* Standard basket */
.basket-standard-main {
	border: solid 1px #D0D0D0;
	padding: 1em;
	margin: 0;
}

.basket-standard-main td.quantity a,
.basket-standard-main td.action a {
	text-decoration: none;
}

.basket-standard-coupon {
	padding: 1em !important;
	text-align: center;
	margin: 0;
	display: inline-block;
	width: 100%;
}

.basket-standard-coupon .header,
.basket-standard-coupon .content {
	display: inline-block;
	float: left;
	width: 50%;
}

.basket-standard-coupon .content {
	float: right;
}

.basket-standard-coupon .header h2 {
	font-size: 1em;
	margin: 10px;
	text-align: right;
}

.basket-standard-coupon .attr-list {
	display: inline-block;
	font-weight: bold;
	list-style: none;
	margin: 0.5em;
}

.basket-standard-coupon .attr-item .coupon-code,
.basket-standard-coupon .attr-item .change {
	font-weight: bold;
	font-size: 133%;
	padding: 0.5em;
}

.basket-standard-coupon .coupon-new .btn {
	width: 3em;
}

.basket-standard-coupon .coupon-new .coupon-code {
	border: 1px solid #188fd8;
	width: calc(100% - 3em);
}

.basket-standard-coupon .minibutton.delete:after {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 125%;
	content: "\f014";
	display: inline-block;
}

@media (max-width: 480px) {
	.basket-standard-coupon .header,
	.basket-standard-coupon .content {
		display: block;
		width: 100%;
	}
}

.basket-related h1 {
	display: none;
}


/* Checkout */
.checkout-standard .steps {
	font-weight: bold;
	text-align: center;
	counter-reset: step;
	padding: 0 0 3em 0;
}

.checkout-standard .steps a {
	text-decoration: none;
}

.checkout-standard .steps .active {
	color: #D0D0D0;
	border-bottom: solid 8px #D0D0D0;
}

.checkout-standard .steps .current {
	color: #555;
	border-bottom: solid 8px #555;
}

.checkout-standard .steps .order,
.checkout-standard .steps .process {
	display: none;
}

.checkout-standard .steps .active:after {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 125%;
	content: "\f00c";
	width: 1em;
	height: 1em;
	margin: 0 0.5em;
	display: inline-block;
}

.checkout-standard .step {
	display: inline-block;
	vertical-align: top;
	overflow: hidden;
	width: 19%;
	color: #d3dbde;
	border-bottom: solid 8px #d3dbde;
	vertical-align: baseline;
}

.checkout-standard .step:before {
	content: counter(step) ". ";
	counter-increment: step;
}

.checkout-standard .form-list .mandatory {
	font-weight: bold;
}

.checkout-standard .form-list .mandatory > label:after {
	content: "*";
}

.checkout-standard .item-service .description {
	display: inline-block;
	vertical-align: top;
	min-width: 240px;
	max-width: 480px;
	padding: 0.5em 0;
	width: 100%;
}

.checkout-standard .item-service .description h2 {
	font-size: 110%;
}

.checkout-standard .item-service .description .short {
	font-weight: bold;
	padding: 0.5em 0;
}

.checkout-standard .item-service .description .long {
	padding: 0.5em 0;
}

.checkout-standard .item-service .description h2,
.checkout-standard .item-service .description p {
	margin: 0 1em;
}

.checkout-standard .item-service .description h2,
.checkout-standard .item-service .icons {
	display: inline-block;
}

.checkout-standard .item-service .icons img {
	max-height: 4em;
	margin: 0 1em;
}

.checkout-standard .item-service .option {
	margin: 1em;
}

.checkout-standard .item-service .price-value {
	float: right;
	margin: 1em;
	font-size: 100%;
}

.checkout-standard .button-group {
	display: none;
}

.checkout-standard section:last-child .button-group {
	display: block;
}

/* Checkout address */
.checkout-standard-address h2 {
	padding: 1%;
}

.checkout-standard-address .item-address {
	padding: 1%;
}

.checkout-standard-address .item-address .header {
	background-color: #F0F0F0;
	padding: 1em 1%;
	position: relative;
}
section.catalog-filter-price {
	height: 25px;
}
.checkout-standard-address .item-address .header input {
	display: inline-block;
	vertical-align: middle;
	margin-right: 1em;
	border: none;
	margin: 0;
	position: absolute;
	top: 17px;
	left: 10px;
}

.checkout-standard .form-list .mandatory,
.checkout-standard .form-list .optional,
.checkout-standard .form-list .hidden,
.checkout-standard .form-list .error,
.checkout-standard .attr-list .mandatory,
.checkout-standard .attr-list .optional,
.checkout-standard .attr-list .hidden,
.checkout-standard .attr-list .error {
	clear: both;
}

.checkout-standard-address .form-list .form-item {
	display: none;
}

.checkout-standard-address .form-list .mandatory,
.checkout-standard-address .form-list .optional {
	display: list-item;
}

.checkout-standard-address .form-list .hidden {
	display: none;
}

.checkout-standard-address .form-list .mandatory label:after {
	content: "*";
}

.checkout-standard .form-list .error {
	color: #FF3300;
}

.checkout-standard .form-list .error a {
	color: #FF3300;
}

.checkout-standard .form-list .error input,
.checkout-standard .form-list .error select {
	background-color: #ffeeee;
	border: solid 1px #FF3300;
}

.checkout-standard .form-list .success input,
.checkout-standard .form-list .success select {
	background-color: #bbffbb;
}

.checkout-standard .form-item label {
	border-left: 2px solid transparent;
	padding-left: 1em;
	margin-bottom: 7px;
	margin-top: 7px;
}

.checkout-standard .item-service .icon {
	display: inline-block;
}

.checkout-standard .item-service li.form-item {
	padding-top: 0;
}

.checkout-standard .item-service .form-item-value input {
	display: none;
}

.checkout-standard .item-service .form-item-value input:checked + label {
	border-left: 2px solid #D0D0D0;
}

/* Checkout delivery/payment */
.checkout-standard-delivery .note,
.checkout-standard-payment .note {
	padding: 0 0 1em 0;
}

.checkout-standard-delivery h2,
.checkout-standard-payment h2 {
	font-size: 1em;
}

.checkout-standard-delivery .item,
.checkout-standard-payment .item {
	border: solid 1px #D0D0D0;
	margin: 1em 0.5em;
}

.checkout-standard-delivery .item-service .price-value,
.checkout-standard-payment .item-service .price-value {
	margin: 1.25em;
}

.checkout-standard-summary h3 {
	display: inline-block;
	font-size: 1em;
	margin: 0;
}

.checkout-standard-summary a:hover {
	text-decoration: underline;
}

.checkout-standard-summary .note {
	padding: 0 0 1em 0;
}

.checkout-standard-summary .modify {
	float: right;
}


.aimeos .common-summary .error,
.aimeos .common-summary-detail .error {
	background-color: #ffeeee;
	border-bottom: 1px solid #FF3300;
}

.aimeos .common-summary .item li {
	vertical-align: top;
	padding-top: 0.5em;
}

.aimeos .common-summary .content {
    margin: 0;
    padding: 0.5em 0;
}

.aimeos .common-summary .item .name {
	display: inline-block;
	vertical-align: top;
	color: #555;
	width: 50%;
}

.aimeos .common-summary .item .name:after {
	content: ":";
	left: -3px;
	position: relative;
}

.aimeos .common-summary .item .value {
	display: inline-block;
	vertical-align: top;
	width: 45%;
}

.aimeos .common-summary .item h4,
.aimeos .common-summary .item .item-icons {
	vertical-align: middle;
	display: inline-block;
	margin: 0;
}

.aimeos .common-summary .item .item-icons img {
	max-height: 4em;
}

.aimeos .common-summary .item .attr-list {
	list-style: none;
	margin: 0;
	margin-top: 0;
}

.aimeos .common-summary .header,
.aimeos .common-summary-detail .header {
	border-bottom: solid 1px #188fd8;
	padding: 0.5em 0;
	margin: 0.5em 0;
	margin-top: 0;
}
.aimeos .common-summary-detail .header {
	padding: 0.5em 7px;
}
.aimeos .common-summary-address h2,
.aimeos .common-summary-service h2,
.aimeos .common-summary-coupon h2 {
	display: none;
}

.aimeos .common-summary-service .item .item {
	margin: 0;
}

.aimeos .common-summary-service .item h4 {
	margin: 0;
	padding: 0;
	color: #555;
	font-size: 1em;
}

.aimeos .common-summary-detail .header {
	border-bottom: none;
}

.aimeos .common-summary-detail .basket {
	margin: 0;
	margin-top: 0;
}

.aimeos .common-summary-detail table {
	border-collapse: collapse;
	width: 100%;
}

.aimeos .common-summary-detail tbody tr {
	border-bottom: 1px solid #D0D0D0;
}

.aimeos .common-summary-detail thead {
	font-weight: bold;
	background-color: #F0F0F0;
}

.aimeos .common-summary-detail thead tr {
	border-bottom: 1px solid #D0D0D0;
	color: #555;
}

.aimeos .common-summary-detail tr.subtotal {
	color: #555;
}

.aimeos .common-summary-detail tr.total {
	border-top: 1px solid #D0D0D0;
	color: #555;
	background-color: #F0F0F0
}

.aimeos .common-summary-detail th,
.aimeos .common-summary-detail td {
	vertical-align: middle;
	padding: 0.5em;
}

.aimeos .common-summary-detail .details img {
	float: left;
	max-width: 6em;
	max-height: 8em;
	overflow: hidden;
	margin-right: 5%;
}

.aimeos .common-summary-detail .details .product-name {
	margin: 0.5em;
	display: block;
}

.aimeos .common-summary-detail .code {
    margin: 0.5em;
}

.aimeos .common-summary-detail .attr-list {
	color: #555;
	margin: 0.5em;
	vertical-align: top;
}

.aimeos .common-summary-detail .attr-list-variant li.attr-item {
	list-style: disc inside none;
}

.aimeos .common-summary-detail .attr-list-config .attr-item {
	font-weight: bold;
}

.aimeos .common-summary-detail .attr-item .name:after {
	content: ":";
}

.aimeos .common-summary-detail tfoot tr.quantity,
.aimeos .common-summary-detail tr.subtotal,
.aimeos .common-summary-detail tr.delivery,
.aimeos .common-summary-detail tr.payment,
.aimeos .common-summary-detail tr.total,
.aimeos .common-summary-detail tr.rebate,
.aimeos .common-summary-detail tr.tax,
.aimeos .common-summary-detail th.unitprice,
.aimeos .common-summary-detail th.price,
.aimeos .common-summary-detail td.unitprice,
.aimeos .common-summary-detail td.price {
	text-align: right;
	white-space: nowrap;
}

.aimeos .common-summary-detail th.price {
	width: 20%;
}

.aimeos .common-summary-detail th.quantity,
.aimeos .common-summary-detail td.quantity {
	white-space: nowrap;
	text-align: center;
}

.aimeos .common-summary-detail td.quantity input {
	text-align: center;
	display: inline;
	height: 40px;
}

.aimeos .common-summary-detail .action .delete:after {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 100%;
	content: "\f014";
}

.aimeos .common-summary-detail th.action,
.aimeos .common-summary-detail td.action {
	text-align: center;
}

.aimeos .common-summary-detail tr.delivery td:first-child:after,
.aimeos .common-summary-detail tr.payment td:first-child:after {
	content: " +";
}

.aimeos .common-summary-detail tfoot {
	vertical-align: bottom;
	font-weight: bold;
}

.aimeos .common-summary-detail tfoot .quantity,
.aimeos .common-summary-detail tfoot .delivery,
.aimeos .common-summary-detail tfoot .payment,
.aimeos .common-summary-detail tr.rebate,
.aimeos .common-summary-detail tr.tax {
	font-weight: normal;
}

.aimeos .common-summary-additional .coupon,
.aimeos .common-summary-additional .comment {
	vertical-align: top;
	height: auto;
}

.aimeos .common-summary-additional .comment .message{
	margin-bottom: 15px;
}

.aimeos .common-summary-additional .comment .message .message-head {
	font-weight: bold;
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
	margin-bottom: 1px;
}

.aimeos .common-summary-additional .comment .input-group {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
}

.aimeos .common-summary-additional .comment .input-group>.custom-file,
.aimeos .common-summary-additional .comment .input-group>.custom-select,
.aimeos .common-summary-additional .comment .input-group>.form-control {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 1%;
	margin-bottom: 0;
}

.aimeos .common-summary-additional .comment .input-group-append,
.aimeos .common-summary-additional .comment.input-group-prepend {
	display: -ms-flexbox;
	display: flex;
}
.aimeos .common-summary-additional .comment .input-group-append {
	margin-left: -1px;
}

.aimeos .common-summary-additional .comment .input-group-append .btn,
.aimeos .common-summary-additional .comment .input-group-prepend .btn {
	position: relative;
	z-index: 2;
}

.aimeos .common-summary-additional .comment .input-group .btn{
	width: auto;
}

@media (max-width: 480px) {
	.aimeos .common-summary-detail td.quantity .change {
		display: block;
	}

	.aimeos .common-summary-detail .unitprice {
		display: table-column;
		width: 0;
	}
}


/* Checkout summary option terms */
.checkout-standard-summary-option-account,
.checkout-standard-summary-option-terms {
	margin: 0;
}


 .checkout-standard-summary-option-terms {
	text-align: center;
}


.checkout-standard-summary-option h3 {
	margin: 0;
	padding: 0.5em;
	display: block;
}

.checkout-standard-summary-option p {
	display: inline;
	margin-left: 1em;
}

.checkout-standard-summary-option .single {
	padding: 0.5em 0;
}

.checkout-standard-summary-option label,
.checkout-standard-summary-option input {
	display: inline;
}

.checkout-standard-summary-option input[type="checkbox"] {
	margin-left: 0.5em;
}

/* Checkout order */
.checkout-standard-order {
	padding: 0 0 0 1em;
}

.checkout-standard-order .form-list .mandatory {
	font-weight: bold;
	display: list-item;
}

.checkout-standard-process {
	text-align: center;
}

.checkout-standard-process p {
	margin: 1em 0;
}

.checkout-standard-process .button-group {
	display: block;
}

/* Checkout confirm basic part */
.checkout-confirm-basic {
	margin-top: 1.5em;
}

.checkout-confirm-basic .attr-list .name,
.checkout-confirm-basic .attr-list .value {
	display: inline-block;
	width: 218px;
}

.checkout-confirm-basic .attr-list .name:after {
	content: ": ";
}

/* Account history */
.account-history,
.account-invoices{
	margin: 0 auto;
}

.account-history-list .history-list {
	padding: 0;
}

.account-history-list .history-item {
	border: solid 1px #D0D0D0;
	display: block;
	margin: 1em 0;
}

.account-history-list .attr-list {
	padding: 0.25em 0;
}

.account-history-list .attr-item {
	padding: 0.25em 1em;
}

.account-history-list li.attr-item .name:after {
	content: ": ";
}

.account-history-order {
	padding-top: 1em;
}

.account-history-order a:hover {
	text-decoration: underline;
}

.account-history-order .modify {
	float: right;
	margin: 0;
	min-width: auto;
}




.account-history-order h2 {
	margin: 0.5em 0;
}

.account-history-order h3 {
	display: inline-block;
	font-size: 1em;
	margin: 0;
}


.account-history-order li.attr-item .name,
.account-history-order li.attr-item .value {
	min-width: 0;
}

/* Account subscription */
.account-subscription {
	margin: 0 auto;
}

.account-subscription-list .subscription-list {
	padding: 0;
}

.account-subscription-list .subscription-item {
	border: solid 1px #D0D0D0;
	display: block;
	margin: 1em;
}

.account-subscription-list .attr-list {
	padding: 0.25em 0;
}

.account-subscription-list .attr-item {
	padding: 0.25em 1em;
}

.account-subscription-list .attr-item .name:after {
	content: ": ";
}

.account-subscription-list .subscription-cancel {
	text-align: center;
}

.account-subscription-list .subscription-cancel .delete {
	display: block;
	margin: 0.5em 0;
}

.account-subscription-list .subscription-cancel .delete:after {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f014";
}

.account-subscription-list .subscription-item {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
}

.account-subscription-detail {
	padding-top: 1em;
}

.account-subscription-detail a:hover {
	text-decoration: underline;
}

.account-subscription-detail .modify {
	float: right;
	margin: 0 1em;
}

.account-subscription-detail h2 {
	margin: 0.5em 0;
}

.account-subscription-detail h3 {
	display: inline-block;
	font-size: 1em;
	margin: 0;
}


.account-subscription-detail .attr-item .name,
.account-subscription-detail .attr-item .value {
	min-width: 0;
}


/*! jQuery UI - v1.10.0 - 2013-01-17
* http://jqueryui.com
* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers */
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	width: 1px;
	color: #000000;
	display: none;
}

/* Interaction Cues */
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}

.ui-autocomplete li {
	list-style: none;
	padding: 0 5px 2px 5px;
}

.ui-autocomplete li  a {
	cursor: pointer;
}

.ui-autocomplete-input {
	margin: 0;
}

/* Component containers */
.ui-widget {
	font-family: Verdana,Arial,sans-serif;
	font-size: 1.1em;
}





.ui-widget-header, .ui-widget-content {
	border: 0;
	background: transparent;
}
.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front {
	border: 1px solid #cccc;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
	border: 0;
	font-weight: normal;
	color: #168fd8;
}

.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
	margin: 0;
}


/* Datepicker */
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}



/* PhotoSwipe CSS */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%; 
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
 }
  .pswp * {
	-webkit-box-sizing: border-box;
		box-sizing: border-box; 
    }
  .pswp img {
	max-width: none; 
}

.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity; }

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

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
	  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
	  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; 
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
 }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
	  transition: opacity 0.2s;
  -webkit-box-shadow: none;
	  box-shadow: none; }
  .pswp__button:focus,
  .pswp__button:hover {
	opacity: 1; }
  .pswp__button:active {
	outline: none;
	opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
	padding: 0;
	border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(media/pswp.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
	background-image: url(media/pswp.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
	background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*
	2. Share modal/popup and links
 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
	  user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
	  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
	  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
	  -ms-transform: translateY(6px);
	  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
	  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
	display: block;
	padding: 8px 12px;
	color: #000;
	text-decoration: none;
	font-size: 14px;
	line-height: 18px; }
	.pswp__share-tooltip a:hover {
	  text-decoration: none;
	  color: #000; }
	.pswp__share-tooltip a:first-child {
	  /* round corners on the first/last list item */
	  border-radius: 2px 2px 0 0; }
	.pswp__share-tooltip a:last-child {
	  border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
		transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
	border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*
	3. Index indicator ("1 of X" counter)
 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*

	4. Caption
 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
	font-size: 11px;
	color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*
	5. Loading indicator (preloader)
	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR
 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
	  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
	/* We use .gif in browsers that don't support CSS animation */
	background: url(media/preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
	-webkit-animation: clockwise 500ms linear infinite;
		animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
	-webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
		animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /*
		The idea of animating inner circle is based on Polymer ("material") loading indicator
		 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
	*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
	  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
	position: relative;
	left: auto;
	top: auto;
	margin: 0;
	float: right; } }

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

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

@-webkit-keyframes donut-rotate {
  0% {
	-webkit-transform: rotate(0);
		transform: rotate(0); }
  50% {
	-webkit-transform: rotate(-140deg);
		transform: rotate(-140deg); }
  100% {
	-webkit-transform: rotate(0);
		transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
	-webkit-transform: rotate(0);
		transform: rotate(0); }
  50% {
	-webkit-transform: rotate(-140deg);
		transform: rotate(-140deg); }
  100% {
	-webkit-transform: rotate(0);
		transform: rotate(0); } }

/*

	6. Additional styles
 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
	  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
background: none; }



/* Slick slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;

	-webkit-user-select: none;
	   -moz-user-select: none;
	-ms-user-select: none;
		user-select: none;

	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	   -moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	 -o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;

	display: block;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.msg-success-dialog, .msg-error-dialog {
	margin: 15px 0 0 0;
	display:none;
}

#kontakt_form .p_name,
#kontakt_form .p_model{
	width: 100%;
}

.modal {
	display: none;
}
.stock-list span {
	display: inline-block;
}
.stock-list .stock-actual {
	display: inline-block;
}

.aimeos .catalog-detail-basket .stock-list {
	text-align: left;
}

.checkout-standard .form-list .mandatory.deliverydate-value > label:after {
	display:none;
}

.catalog-filter-price li.price-item {
	display: block;
}

.catalog-filter-price li.price-item .btn {
	margin-top: 10px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
	border-bottom-right-radius: 0;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
	border-bottom-left-radius: 0;
}

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
	border-top-right-radius: 0;
}

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
	border-top-left-radius: 0;
}

.ui-widget-header {
	border: 0 solid #b29f56;
	background: #b29f56;
	color: #ffffff;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
	border: 1px solid #b29f56;
	background: #fff;
	color: #c77405;
}

li.form-item.form-group.deliverydate-value.deliverydate {
	display: none !important;
	opacity: 0 !important;
}

.checkout-standard-address  .form-horizontal.form-list,
.checkout-standard-address  .form-horizontal.form-list .form-item{
	display: block;
}

.nav .input-group {
	margin: 8px 0;
}

.nav .input-group-btn:last-child>.btn,
.nav .input-group-btn:last-child>.btn-group {
	border-color: #ccc;
}

.navbar .product-order {
	padding: 15px 10px;
	min-width: 350px;
}
.navbar .product-order form.form-inline {
	padding: 10px 10px 0 10px;
}
.navbar .product-order td:first-child{
	padding: 5px 10px  5px 0px;
}

.navbar .product-order td:last-child{
	padding: 5px 0px  5px 10px;
}


.navbar .product-order input,
.navbar .product-order button{
	width: 100%;
}
.navbar .order-by-id{
    padding: 10px 10px 0 10px;
}
form#product-request em {
	color: red;
	font-style: normal;
}
 
.aimeos-container .btn-back.standard-cart,
.aimeos-container .btn-xls-import,
.aimeos-container .btn-pdf-export{
	display: none !important;
}

.basket-standard .btn-close.mini-cart{
	display: none;
}

.aimeos-container .btn-close.mini-cart{
    display: inline-block;
    font-size: 14px;
    position: relative;
}

.aimeos-container .standard-cart {
	display: none;
}
.aimeos-container .btn-close.mini-cart:after{
	display: none;
}

.deliverydate-value input{
	display: none;
}

.deliverydate-value span{
	padding-left: 1em;
	margin-bottom: 7px;
	margin-top: 7px;
	display: inline-block;
}

.footer-section {
	font-size: 16px;
	line-height: 1.55;
	color: #333;
	border-top: 1px solid #3C3C3C;
	color: #FFF;
	margin-top: 0px;
	padding: 25px 0px;
	background: none repeat scroll 0% 0% #333;
	clear: both;
	display: inline-block;
	width: 100%;
}

.footer-section ul {
	list-style: none;
	float: right;
	padding: 0;
	margin: 0;
}
.footer-section ul li {
	display: inline-block;
	margin-left:20px;
}

.footer-section ul li:first-child {
	margin-left:0;
}

.footer-section ul li a {
	text-transform: uppercase;
	color: #fff;
}

.main-content {
    min-height: 700px;
	display: inline-block;
	width: 100%;
    padding: 30px 0;
	margin: 0;
}
.main-content.transparent-bg {
	background: transparent;
}
.dropdown-toggle::after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 5px;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent;
	top: 2px;
	position: relative;
}

.dropdown-item {
	display: block;
	width: 100%;
	padding: 5px 20px;
	clear: both;
	font-size: 15px;
	font-weight: 400;
	color: #212529;
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: #fff;
}

.navbar-toggle {
	padding: 10px;
	margin-top: 20px;
	margin-right: 15px;
	margin-bottom: 0;
}

.navbar-default {
	background-color: #0181c6;
	border-color: #0181c6;
	border-radius: 0;
	min-height: 70px;
    margin-bottom:0;
    border: 0;
}

.navbar-brand {
    padding: 10px 0;
    height: auto;
	display: flex;
}

.navbar-brand .logo-partner{
	margin-left: 80px;
	margin-right: 30px;
}

.navbar-default .navbar-nav>li>a {
    color: #fff;
    text-transform: normal;
    font-size: 13px;
    font-weight: bold;
}

.navbar-nav>li>a {
    padding-top: 30px;
    padding-bottom: 25px;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
    color: #555;
    background-color: #ffffff;
}

.dropdown-menu {
    border-top: 0 !important;
    left: -1px;
    border-radius: 0;
}

 .navbar-default .navbar-nav>li>a:hover {
     color: #555;
     background-color: #ffffff;
}

.dropdown-item {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    color: #555;
}
.dropdown-item:hover{
    background: #000;
    color:#fff;
    text-decoration: none;
}

.navbar-nav {
	margin-left: 30px;
}


.basket-mini {
	 position: relative;
	 padding: 25px 50px 20px 30px;
 }


.basket-mini > a {
	display: inline-block;
	white-space: nowrap;
	padding: 0px;
}

.basket-mini-main .quantity {
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
	background: #e14a38;
	border: 1px solid #fff;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	height: 17px;
	line-height: 1.4;
	position: absolute;
	right: -6px;
	text-align: center;
	top: -6px;
	width: 17px;
}

.basket-mini-main .value {
	line-height: 26px;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	float: left;
	padding: 0px 4px 0px 13px;
}




.page--login {
	max-width: 600px;
	margin: 50px auto;
}
.login__logo {
	text-align: center;
}
.login__logo img {
	margin: auto;
}
.login__title {
	margin: 25px 0px;
	color: #fff;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 300;
	text-align: center;
}
.login__box {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 8px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 8px 0px rgba(50, 50, 50, 0.75);
	padding: 0px;
	background-color: #fff;
}
.login__box__tabs li {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	/* Firefox */

	width: 48%;
}
.login__box__content--top {
	padding: 20px 40px;
}
.login__box__content--top button {
	margin: 0 auto;
}
.login__box__content--bottom {
	padding: 20px 60px;
	border-top: 1px solid #e7e7e7;
	font-size: 14px;
	text-align: center;
}
.login__box__content label {
	display: block;
	font-size: 14px;
	color: #000;
	margin: 10px 0px 12px 0px;
}
.login__box__content select,
.login__box__content input[type="text"],
.login__box__content input[type="email"],
.login__box__content input[type="password"] {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	display: block;
	width: 100%;
	height: 40px;
	margin-bottom: 0;
	border: 1px solid #cecece;
	padding: 5px 30px;
}
.login__box__content .link--login {
	color: #188fd8;
	border: none;
	border-bottom: 1px dotted #188fd8;
	padding-bottom: 1px;
}
.login__box__content .link--login:hover {
	border-color: transparent;
	text-decoration: none;
}
.login__box__content .rshop_alert.error {
	border: 0px;
	background: none;
	font-size: 13px;
	text-transform: none;
	padding: 0px!important;
	text-align: center;
}




.btn {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.428571429;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: 4px;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}


.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 16px;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
	font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
	font-size: 1em;
}

.btn--green {
	background: #188fd8;
	color: #fff;
}


.btn--block {
	display: block;
}


.ui-tabs .ui-tabs-nav.login__box__tabs a {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	background: #fff;
	display: block;
	height: 45px;
	line-height: 29px;
	text-align: center;
	width: 100%;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 15px;
	color: #000;
}


.ui-tabs .ui-tabs-nav.login__box__tabs li.ui-state-active a {
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
	color: #188fd8;
	height: 52px;
}


.ui-tabs .ui-tabs-nav.login__box__tabs {
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-moz-border-radius-bottomright: 0px;
	-webkit-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
	background: #5595d9;
	background: -moz-linear-gradient(left, #5595d9 0%, #125e98 100%);
	background: -webkit-linear-gradient(left, #5595d9 0%, #125e98 100%);
	background: linear-gradient(to right, #5595d9 0%, #125e98 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5595d9', endColorstr='#125e98', GradientType=1);
	height: 70px;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 1px;
	margin: 0 .2em 1px 0;
	border-bottom: 0 !important;
	padding: 0;
	white-space: nowrap;
}

.ui-tabs .ui-tabs-nav.login__box__tabs li {
	background: none;
	border: none;
	margin: 18px 1% 0px 1%;
}


.ui-tabs .ui-tabs-nav.login__box__tabs a span {
	line-height: 29px;
}
.ui-tabs .ui-tabs-nav.login__box__tabs{
	height: auto;
}
.breaker {
	clear: both;
	margin: 0px;
	padding: 0px;
	font-size: 0px;
	height: 0px;
	line-height: 0px;
	overflow: hidden;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 0;
	background: none;
}
.form-inline .form-group {
	width: 100%;
}

.login__box__content .form-horizontal .control-label {
	padding-top: 0;
}

h1.cms-title {
	text-transform: uppercase;
}

li.nav-item.icon > a:before {
	position: relative;
	margin-right: 10px;
}

li.nav-item.icon-menu.dropdown > a:before {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f0c9";
}

li.nav-item.icon-order.dropdown > a:before {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f217";
}

li.nav-item.icon-11.dropdown > a:before {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f043";
	top: 1px;
}

li.nav-item.icon-user.dropdown > a:before {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f007";
}

article.tp-banner-boxed{
	margin-top: 0px;
	position: relative;
}

article.tp-banner-boxed .tp-banner img{
	width: 100%;
}

.dropdown:hover {
	background-color: #fff;
	color: #777;
}

.navbar-default .navbar-nav>li.dropdown:hover > a {
	color: #777;
}
.dropdown:hover .dropdown-menu {
	display: block;
}


.navbar-brand {
	padding: 18px 0; 
}

.navbar-brand  img {  
    height: 40px;
}
#header_wrapper .header__menu__item.border_right {
	border-right: 1px solid #393939;
}
.navbar .order-by-id .input-group,
.navbar .order-by-id .input-group button{
	width: 100%;
}

.navbar .header__submenu--search {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 20px 15px 15px 15px;
	position: relative;
}
.navbar  .header__submenu--search .search_input {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	height: 39px;
	border: none;
	width: 100%;
}
.navbar .header__submenu--search button.search_submit {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	background: #222222;
	position: absolute;
	right: 3px;
	top: 3px;
	z-index: 11;
	width: 33px;
	height: 33px;
	text-transform: uppercase;
	color: #fff;
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-align: center;
	border:0;
}

.navbar   .header__submenu--search .input-group {
	margin: 0;
}

.fa {
	font: normal normal normal 14px/1 FontAwesome;
}
 .fa-times:before {
	content: "\f00d";
}

.fa-search:before {
	content: "\f002";
}

.navbar-nav>li {
	border-right: 0 solid #fff;
}

.navbar-nav {
	margin-left: 0;
	float: right;
}
.navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
	margin-left: 0;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form { 
	padding-left: 0;
	padding-right: 0;
}
nav .basket-mini-product .basket{
	display: none !important;
}


.basket-mini-product .basket-toggle.toggle-minicart:after {
	content: "\f100";
}

.basket-mini-product .basket-toggle.toggle-minicart.open:after {
	content: "\f101";
}
.minicart, .mobile-menu {
	position: fixed;
	width: 320px;
	height: 100%;
	right: -320px;
	top: 0;
	border-left: 1px solid #e6e7ea;
	background: linear-gradient(to right, #e6e7ea 0%, #ffffff 2%);
	z-index: 60;
}
#wrapper {
	position: relative;
	left: 0;
}

.minicart {
	overflow: scroll;
	position: fixed;
	width: 320px;
	height: 100%;
	right: -320px;
	top: 0;
	border-left: 1px solid #e6e7ea;
	background: linear-gradient(to right, #e6e7ea 0%, #ffffff 2%);
	z-index: 60;
}

#wrapper.offcanvas:after {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: .8;
	z-index: 100;
}


aside.minicart .basket-mini h1 {
	display: block;
}

aside.minicart .basket-mini-main{
	display: none;
}

aside.minicart .basket-mini-product .basket{
	display: block;
}
aside.minicart  .basket-mini-product {
	display: inline-block;
	position: initial;
	top: 0;
	width: 100%;
	right: 0;
}

aside.minicart  .basket-mini {
	position: relative;
	padding: 0;
	background-color: transparent;
	color: #555;
}


aside.minicart  .basket-mini h1 {
	position: relative;
	padding: 25px 50px 20px 30px;
	background-color: #188fd8;
	margin:0;
	color: #fff;
}


aside.minicart .basket-mini-product .basket-toggle {
	position: absolute;
	top: 10px;
	right: 0;
}
aside.minicart .basket-mini-product .basket-toggle:after{
content: "\f00d";
}

aside.minicart  .basket-mini-product .basket {
	background-color: transparent;
	position: relative;
}


aside.minicart .basket-mini > a {
	display: none;
}


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

.basket-mini-product th, .basket-mini-product td {
    width: 20%;
}


.aimeos .sort .dropdown {
	float: left;
	top: -5px;
	margin-left: 15px;
}


.aimeos .sort  .dropdown .btn {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #fff;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	line-height: 1.5;
	width: auto;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


.aimeos .sort .dropdown .btn.btn-secondary {
	color: #6c757d;
	background-color: #fff;
	border-color: #ddd;
}

.aimeos .sort  .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 10rem;
	padding: .5rem 0;
	margin: .125rem 0 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.15) !important;
	border-radius: .25rem;
}

.aimeos .sort .dropdown-menu a.dropdown-item {
	text-transform: none;
	font-weight: normal;
	padding: 5px 10px;
	font-size: 14px;
}

.aimeos .sort .dropdown.open .dropdown-menu{
	display: block;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
	 color: #fff !important;
	background-color: #168fd8;
	border-color: #168fd8;
}

.aimeos .pagination>li>span,
.aimeos .pagination>li>a:link:not(.btn),
.aimeos .pagination>li>a:visited:not(.btn) {
color: #6c757d;
}



.catalog-list-items .list .product {
	border-left: 0;
	text-align: left;
	width: 100%; 
	margin: 1em 0;
	border-bottom: 1px solid #ddd;
	padding-bottom: 1em;
}
.catalog-list-items .list .product:nth-child(even) {
	background: transparent;
}

.orange {
	color: #f0ad4e;
}



.aimeos  .catalog-list-items .list .product .price-item:first-of-type .taxrate {
	display: inline-block;

}


.aimeos .catalog-list-items .list .product  .price-item:first-of-type {
	display: inline-block;
	font-weight: bold;
}

.aimeos .basket input.qty ,
.aimeos .catalog-detail-basket .addbasket input,
.aimeos .catalog-list-items .list .product .addbasket input {
	border: solid 1px #dddddd;
	text-align: center;
	width: 60px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	margin-right: 15px
}
.aimeos .basket .ui-spinner,
.aimeos .catalog-detail-basket .addbasket .ui-spinner,
.aimeos .catalog-list-items .list .product .addbasket .ui-spinner{
	margin-right: 15px;
}

.aimeos .basket  .ui-spinner input,
.aimeos .catalog-detail-basket .addbasket .ui-spinner input,
.aimeos .catalog-list-items .list .product .addbasket .ui-spinner input{
	margin-right: 0;
	margin:0;
	padding-right: 15px;
}


.aimeos .catalog-detail-basket .addbasket .ui-spinner input {
	height: 46px;
}

.aimeos .basket .ui-spinner input::-webkit-inner-spin-button,
.aimeos .basket .ui-spinner input::-webkit-outer-spin-button,
.aimeos .catalog-detail-basket .addbasket .ui-spinner input::-webkit-inner-spin-button,
.aimeos .catalog-detail-basket .addbasket .ui-spinner input::-webkit-outer-spin-button,
.aimeos .catalog-list-items .list .product .addbasket .ui-spinner input::-webkit-inner-spin-button,
.aimeos .catalog-list-items .list .product .addbasket .ui-spinner input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.aimeos .basket input,
.aimeos .catalog-detail-basket .addbasket input,
.aimeos .catalog-list-items .list .product   .col-item input {
	display: inline-block;
}

.aimeos .catalog-detail-basket .addbasket,
.aimeos .catalog-list-items .list .product   .col-item .addbasket{
	padding: 2em 0 0 0;
}

.aimeos .catalog-detail-basket .addbasket .btn,
.aimeos .catalog-list-items .list .product  .btn{
	width: calc(100% - 100px);
}

.aimeos .catalog-detail-basket .addbasket .btn {
	margin: 0;
}
.aimeos .basket .ui-spinner a.ui-spinner-button,
.aimeos .catalog-detail-basket .ui-spinner a.ui-spinner-button,
.aimeos .catalog-list-items .list .product .ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
	background: #ddd;
	z-index: 1;
	cursor: pointer;
}

.aimeos .basket .ui-spinner a.ui-spinner-button.ui-spinner-up,
.aimeos .catalog-detail-basket .ui-spinner a.ui-spinner-button.ui-spinner-up,
.aimeos .catalog-list-items .list .product  .ui-spinner a.ui-spinner-button.ui-spinner-up{
	border-top-right-radius: 4px;
}

.aimeos .basket  .ui-spinner a.ui-spinner-button.ui-spinner-down,
.aimeos .catalog-detail-basket .ui-spinner a.ui-spinner-button.ui-spinner-down,
.aimeos .catalog-list-items .list .product  .ui-spinner a.ui-spinner-button.ui-spinner-down{
	border-bottom-right-radius: 4px;
}

.aimeos .basket   .ui-spinner a.ui-spinner-button.ui-spinner-up::before,
.aimeos .catalog-detail-basket .ui-spinner a.ui-spinner-button.ui-spinner-up::before,
.aimeos .catalog-list-items .list .product  .ui-spinner a.ui-spinner-button.ui-spinner-up::before{
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f106";
	padding-top: 2px;
	display: inline-block;
}

.aimeos .basket   .ui-spinner a.ui-spinner-button.ui-spinner-down::before,
.aimeos .catalog-detail-basket .ui-spinner a.ui-spinner-button.ui-spinner-down::before,
.aimeos .catalog-list-items .list .product  .ui-spinner a.ui-spinner-button.ui-spinner-down::before{
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f107";
	display: inline-block;
}





.aimeos .catalog-detail-basket .ui-spinner a.ui-spinner-button.ui-spinner-up::before{
	padding-top: 3px;
}
.aimeos .catalog-detail-basket .ui-spinner a.ui-spinner-button.ui-spinner-down::before {
	padding-top: 5px;
}

.common-summary-additional textarea {
	width: 100%;
	display: inline-block;
	min-height: 70px;
}


.aimeos .basket  .ui-spinner a.ui-spinner-button.ui-spinner-down::before {
	padding-top: 2px;
}


.ui-icon, .ui-widget-content .ui-icon {
	display: none;
}
.aimeos .catalog-list-items  .ui-spinner-input {
	padding: 0;
	margin: 0;
	margin-left: 0;
	margin-right: 0;
}


.btn-lg{
	margin: 12px auto;
	padding: 12px 55px;
}
.modal-content {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	border: 0;
}

.modal-header {
	padding: 15px;
	border-bottom: 0;
	background: #188fd8;
	color: #fff;
}

.btn-primary {
	color: #fff;
	background-color: #188fd8;
	border-color: #188fd8;
}
.btn-default,
.btn-light {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #f8f9fa;
}
.btn-default:hover,
.btn-light:hover {
	color: #212529;
	background-color: #e2e6ea;
	border-color: #dae0e5;
}
.modal-header .close {
	margin-top: 0;
	color: #fff;
	opacity: 1;
}

 .index__categories {
    padding-top: 0px;
    padding-bottom: 0px;
    overflow: hidden;
}

.index__categories .index__categories__item {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0 0 35px;
    border: 1px solid #125e98;
    height: 180px;
    position: relative;
	margin-top:20px;
}

.index__categories .index__categories__item .cat-name {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	background-color: #188fd8;
	font-size: 14px;
	line-height: 40px;
	width: auto;
	text-align: center;
	display: block;
	margin: 0 15px;
	position: absolute;
	left: 0;
	right: 0;
	color: #fff;
	bottom: -20px;
}
.index__categories  .index__categories__item a {
	display: block;
	width: 100%;
	height: 100%;
}

.index__categories .index__categories__item.catid-3474 img {
	position: absolute;
	top: 0;
	right: 0;
	margin: auto;
	width: 111%;
}
.index__categories .index__categories__item.catid-3473 img {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	height: 109%;
}
.index__categories .index__categories__item.catid-3552 img {
	position: absolute;
	bottom: 0;
	right: 0;
	left: -16%;
	margin: auto;
	max-width: 125%;
}
.index__categories .index__categories__item.catid-3553 img {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	margin: auto;
	max-height: 100%;
	max-width: 100%;
}
.aimeos  .index__categories  .subcat {
	margin-bottom: 15px;
}
.aimeos  .index__categories  .subcat a:link:not(.btn) {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-weight: normal;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	padding: 5px 25px;
	height: 45px;
	background-color: #188fd8;
	font-size: 14px;
	line-height: 35px;
	text-align: center;
	display: block;
	color: #fff;
	position: relative;
	text-decoration: none;
}

.aimeos  .index__categories  .subcat a .cat-name{
	color: #fff;
}

.alert-primary {
	color: #004085;
	background-color: #cce5ff;
	border-color: #b8daff;
}

.mt-10 {
	margin-top: 10px;
}

.mb-10 {
	margin-bottom: 10px;
}

.catalog-list-items .list .product.has-checkbox h2 {
	padding-left: 0px;
}

.catalog-list-items .list .product.has-checkbox .media-list {
	padding-left: 25px;
	padding-right: 0;
}

.catalog-list-items .list .product.has-checkbox .media-list input {
	position: absolute;
	left: 0px;
	top: 50%;
	margin: 0;
	margin-top: -6px;
}

.catalog-list-items .list .product {
	margin: 1em 0;
}

.catalog-list .product  .col-item {
    display: table-cell;
    vertical-align: middle;
    float: none;
}

.catalog-list .product { 
    display: table;
    }
    
    
 
.error-page, .error-page h2, .error-page h3, .ty-btn, .woocommerce-MyAccount-login-info {
    text-align: center;
}
    .error-page {
	font-weight:700;
	font-size:20px;
	line-height:20px;
	padding:200px 0;
}

.error-page h2 {
	font-weight:700;
	font-size:90px;
	line-height:90px;
	margin:10px 0 0;
	color:#72b932;
}

.error-page>i {
	width:20px;
	height:20px;
	margin:18px 0 16px;
}

.error-page p {
	margin:0 auto 10px;
	font-size:15px;
	font-weight:400;
}

.quotation__content__wrapper{
	margin-top: 20px;
	margin-bottom: 20px;
}

.quotation__content__wrapper .quotation__content__img {
	height: 100%;
	overflow: hidden;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.quotation__content__wrapper .quotation__content__box.add .quotation__content__img{
	height: auto;
}

.quotation__content__wrapper .quotation__content__img img{
	width: 100%;
}

.quotation__content__wrapper .quotation__content__buttons {
	margin-bottom: 20px;
}

.quotation__content__wrapper .quotation__content__box {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	margin:0;
	border: 1px solid #ccc;
	padding: 10px;
	position: relative;
	text-align: left;
	margin-bottom: 30px;
	overflow: hidden;
}

.quotation__content__wrapper .quotation__content__box h2{
	font-size: 17px;
	color: #188fd8;
	margin-bottom: 10px;
	line-height: 1.3;
	font-weight: bold;
}

.quotation__content__wrapper .quotation__content__box h2:hover{
	text-decoration: none;
	color: #188fd8;
}

.quotation__content__wrapper .quotation__content__box i.add-quotation {
	font-size: 150px;
	opacity: 0.3;
	margin-top: 22%;
	top: 0;
	position: relative;
}

.quotation__content__wrapper .quotation__actions {
	display: none;
	position: absolute;
	right: 0;
	background: #fff;
	padding: 0 7px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 4p0x;
	border-bottom-left-radius: 4px;
}

.quotation__content__wrapper .quotation__actions a {
	margin: 0 1px;
}

.quotation__content__wrapper .quotation__actions a:hover{
	text-decoration: none;
	color:#000;
}

.quotation__content__wrapper .quotation__content__box:hover .quotation__actions {
	display: block;
}

#quotation-form table td { padding: 5px 15px; }
#quotation-form table td:first-child{
	padding-left: 0;
}

#quotation-form table td:last-child{
	padding-right: 0;
}

#quotation-form table tr:first-child td .btn-remove{
	display: none;
}

#quotation-form table tbody tr td input.autocomplete-code{
	padding-right: 30px;
}

#quotation-form table tbody tr td.validate-error input {
	border-color: red;
}

#quotation-form table tbody tr td.validate-success input {
	border-color: green;
}

#quotation-form table tbody tr td {
	position: relative;
}

#quotation-form table tbody tr td.validate-error:after,
#quotation-form table tbody tr td.validate-success:after {
	position: absolute;
	right: 25px;
	font: normal normal normal 14px/1 FontAwesome;
	top: 15px;
}

#quotation-form table tbody tr td.validate-error:after{
	color:red;
	content: "\f00d";
}

#quotation-form table tbody tr td.validate-success:after{
	color:green;
	content: "\f00c";
}

.quotation.catalog-list-head {
	padding: 1em 0 1em 0;
	margin-bottom: 2em;
	border-bottom: 4px solid #ddd;
	border-top: 4px solid #ddd;
}

.quotation.catalog-list-head .row{
	display: table;
}

.quotation.catalog-list-head .col{
	display: table-cell;
	float: none;
	vertical-align: middle;
}

.quotation.catalog-list-head h1{
    margin: 0;
    padding:0;
    padding-top: 0;
}

.quotation.catalog-list-head .col-md-9 h1 {
	margin-bottom: 10px;
}
 
.quotation.catalog-list-head ul{
	padding: 0;
	margin: 0;
	list-style: none;
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
}

.quotation__content__title {
	padding: 0;
}

.aimeos .catalog-detail-basket .addbasket, .aimeos .catalog-list-items .list .product .col-item .addbasket {
	padding: 0;
}

.catalog-list .product .col-item:last-child{
	padding-right: 0;
}

.catalog-list .product .col-item{
	height: auto;
}

.products-select-all__label span{
	padding-left: 8px;
}

.m-t-20{
	margin-top: 20px;
}

.catalog-list-image img {
	max-width: 100%;
	max-height: 150px;
}

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

body .catalog-detail-basket .price-item:first-of-type .taxrate,
.aimeos .catalog-list-items .list .product .price-item .taxrate {
	display: none !important;
}

.swal-footer {
	text-align: center !important;
}

span.red {
	color: red;
}

span.green {
	color: green;
}

.billing-info.readonly {
	border-left: 0.25rem solid #FFB070;
	opacity: 0.66 !important;
}

.m-b-0 {
	margin-bottom: 0;
}

.m-t-15 {
	margin-top: 15px;
}

.checkout-standard-address .item-address .header .change-address{
	position: absolute;
	right: 15px;
	top: 10px;
}

.checkout-standard-address .item-address .modify {
	float: none;
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: initial;
}

.checkout-standard-address .checkout-standard-address-delivery .item-address .header .change-address{
	right: 30px;
	top:11px;
}

.checkout-standard-address .item-address .header{
	margin-bottom: 0px;
}

.checkout-standard-address .form-list .form-item {
	margin-left: -15px;
	margin-right: -15px;
}

.checkout-standard .step {
	float: left;
	width: 20%;
}

.tp-bullets,
.tp-bannertimer{
	display: none !important;
}

.tp-caption a {
	color: #ffffff !important;
	text-transform: uppercase;
	width: 60%;
	display: inline-block;
	white-space: normal;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6) !important;
}

#loader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999999
}

.sk-folding-cube {
	margin: 0 auto;
	top: 50%;
	width: 50px;
	height: 50px;
	position: relative;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg)
}

.sk-folding-cube .sk-cube {
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.sk-folding-cube .sk-cube:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
	animation: sk-foldCubeAngle 2.4s infinite linear both;
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%
}

.sk-folding-cube .sk-cube:before {
	background-color: #72b831;
}

.sk-folding-cube .sk-cube2 {
	-webkit-transform: scale(1.1) rotateZ(90deg);
	transform: scale(1.1) rotateZ(90deg)
}

.sk-folding-cube .sk-cube3 {
	-webkit-transform: scale(1.1) rotateZ(180deg);
	transform: scale(1.1) rotateZ(180deg)
}

.sk-folding-cube .sk-cube4 {
	-webkit-transform: scale(1.1) rotateZ(270deg);
	transform: scale(1.1) rotateZ(270deg)
}

.sk-folding-cube .sk-cube2:before {
	-webkit-animation-delay: .3s;
	animation-delay: .3s
}

.sk-folding-cube .sk-cube3:before {
	-webkit-animation-delay: .6s;
	animation-delay: .6s
}

.sk-folding-cube .sk-cube4:before {
	-webkit-animation-delay: .9s;
	animation-delay: .9s
}

.sk-folding-cube .sk-cube:before {
	content: '';
}

@-webkit-keyframes sk-foldCubeAngle {
	0%,
	10% {
		-webkit-transform: perspective(140px) rotateX(-180deg);
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0
	}
	25%,
	75% {
		-webkit-transform: perspective(140px) rotateX(0);
		transform: perspective(140px) rotateX(0);
		opacity: 1
	}
	100%,
	90% {
		-webkit-transform: perspective(140px) rotateY(180deg);
		transform: perspective(140px) rotateY(180deg);
		opacity: 0
	}
}

@keyframes sk-foldCubeAngle {
	0%,
	10% {
		-webkit-transform: perspective(140px) rotateX(-180deg);
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0
	}
	25%,
	75% {
		-webkit-transform: perspective(140px) rotateX(0);
		transform: perspective(140px) rotateX(0);
		opacity: 1
	}
	100%,
	90% {
		-webkit-transform: perspective(140px) rotateY(180deg);
		transform: perspective(140px) rotateY(180deg);
		opacity: 0
	}
}

.opacity-zero{
	opacity: 0 !important;
}


.checkout-standard-address .checkout-standard-address-billing .item-address .values,
.checkout-standard-address .item-address .values {
	display: inline-block;
	margin: 0;
	padding-left: 30px;
	font-weight: normal;
}


.item-address ul.form-list.open {
	margin-top: 20px;
}

.catalog-session .seen-items,
.account-watch .watch-items,
.account-favorite .favorite-items{
	margin-left: -1%;
	margin-right: -1%;
}

.aimeos-container section.aimeos.catalog-session,
.aimeos-container section.aimeos.account-watch,
.aimeos-container section.aimeos.account-favorite {
	padding: 0;
}

.aimeos-container  .btn-close,
.aimeos-container .btn-close {
	position: absolute;
	right: 20px;
}

.aimeos-container section.aimeos.catalog-session h1,
.aimeos-container section.aimeos.account-watch h1,
.aimeos-container section.aimeos.account-favorite h1  {
	margin-top: 0px;
}

.aimeos-container .hidden {
	display: block!important;
}

.aimeos.catalog-session .name,
.account-watch .name,
.account-favorite .name {
	margin-top: 5px;
	font-weight: 500;
	line-height: 1.5;
}

.aimeos.catalog-session .price-list,
.aimeos.account-watch  .price-list,
.aimeos.account-favorite  .price-list {
	font-weight: 700;
	color: #555;
	text-align: center;
}

.aimeos.catalog-session .media-item,
.aimeos.account-watch .media-item,
.aimeos.account-favorite .media-item {
	height: 165px;
	width: 160px;
}

.account-watch .modify, .account-favorite .modify {
	position: absolute;
	font-weight: bold;
	font-size: 10px;
	color: #D0D0D0;
	right: 5px;
	background: #fff;
	border-radius: 100%;
	width: 18px;
	height: 18px;
	text-align: center;
	line-height: 19px;
	top: 8px;
	z-index: 1;
}

.account-watch .modify i, .account-favorite .modify i{
	font-size: 13px;
}

.aimeos.catalog-suggest.section{
	background: #000;
	color: #fff;
}

.aimeos.catalog-suggest.section .ui-state-active,
.ui-widget-content .aimeos.catalog-suggest.section .ui-state-active {
	color: #ffffff;
	background: #000;
	cursor: default;
}

li.product.product-list-headline {
	font-size: 18px;
	color: #000;
	background: #dddddd;
	padding: 10px 15px !important;
	font-weight: bold;
}

span.status-pay--1 {
	color: red;
}

span.status-pay-7 {
	color: orange;
}
 
span.status-invoice-pay--1 {
	color: red;
}

span.status-invoice-pay-7 {
	color: orange;
}

span.status-invoice-pay-6 {
	color: green;
}

label em {
	font-style: normal;
	color: red;
	margin-left:3px;
}

td.stock.stock-green {
    color: green;
}

td.stock-red {
    color: red;
}

.aimeos .common-summary-detail .attr-list {
	margin: 0;
	padding: 0;
}

.product-name-content {
	padding-left: 100px;
	float: left;
	width: 100%;
	min-height: 6em;
}

.aimeos .common-summary-detail .details .product-img {
	max-width: 100px;
	max-height: 100px;
	position: absolute;
}

.aimeos .common-summary-detail .details .product-img img {
	max-width: 100%;
	max-height: 100%;
	margin-right: 0px;
}

.aimeos .common-summary-detail .details .product-name {
	margin: 0;
	display: block;
}

tr.product.machinery {
	background: #e6e6e6;
}

.aimeos .common-summary-detail .details .product-image {
	float: left;
	max-width: 6em;
	max-height: 8em;
	overflow: hidden;
	margin-right: 5%;
	width: 6em;
	height: 6em;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: #fff;
}

.aimeos .account-history-list .common-summary-detail .details .product-image {
	position: absolute;
}

.aimeos a.badge,
.aimeos a:link:not(.btn).badge,
.aimeos a:visited:not(.btn).badge{
	color: #fff;
}

.badge {
	display: inline-block;
	min-width: 10px;
	padding: 5px 15px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	background-color: #777;
	border-radius: 5px;
}

a.badge:hover, a.badge:focus {
	text-decoration: none;
}

.badge:empty {
	display: none;
}

.btn .badge {
	position: relative;
	top: -1px;
}

.badge-pill {
	padding-right: 0.6em;
	padding-left: 0.6em;
	border-radius: 10rem;
}

.badge-primary {
	color: #fff;
	background-color: #188fd8;
}

a.badge-primary:hover, a.badge-primary:focus {
	color: #fff;
	background-color: #0062cc;
}

a.badge-primary:focus, a.badge-primary.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.badge-secondary {
	color: #fff;
	background-color: #6c757d;
}

a.badge-secondary:hover, a.badge-secondary:focus {
	color: #fff;
	background-color: #545b62;
}

a.badge-secondary:focus, a.badge-secondary.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
	color: #fff;
	background-color: #28a745;
}

a.badge-success:hover, a.badge-success:focus {
	color: #fff;
	background-color: #1e7e34;
}

a.badge-success:focus, a.badge-success.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
	color: #fff;
	background-color: #17a2b8;
}

a.badge-info:hover, a.badge-info:focus {
	color: #fff;
	background-color: #117a8b;
}

a.badge-info:focus, a.badge-info.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
	color: #212529;
	background-color: #ffc107;
}

a.badge-warning:hover, a.badge-warning:focus {
	color: #212529;
	background-color: #d39e00;
}

a.badge-warning:focus, a.badge-warning.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
	color: #fff;
	background-color: #dc3545;
}

a.badge-danger:hover, a.badge-danger:focus {
	color: #fff;
	background-color: #bd2130;
}

a.badge-danger:focus, a.badge-danger.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
	color: #212529;
	background-color: #f8f9fa;
}

a.badge-light:hover, a.badge-light:focus {
	color: #212529;
	background-color: #dae0e5;
}

a.badge-light:focus, a.badge-light.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
	color: #fff;
	background-color: #343a40;
}

a.badge-dark:hover, a.badge-dark:focus {
	color: #fff;
	background-color: #1d2124;
}

a.badge-dark:focus, a.badge-dark.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.attribute-lists {
	padding: 0 15px;
}

#filter-tabs.nav-tabs>li {
	float: none;
	margin-bottom: 0;
	width: 100%;
}

#filter-tabs.nav-tabs>li.active>a,
#filter-tabs.nav-tabs>li.active>a:focus,
#filter-tabs.nav-tabs>li.active>a:hover {
	color: #fff;
	background-color: #198fd8;
	border:0;
	border-bottom: 1px solid #198fd8;
	border-right: 1px solid #198fd8;
}

#filter-tabs.nav-tabs>li>a {
	margin-right: 0;
	border:0;
	border-bottom: 1px solid #ddd;
	border-bottom-color: #ddd;
	border-right: 1px solid #ddd;
	border-radius: 0;
}

#filter-tabs-content {
	padding: 15px 0;
}

.catalog-filter-attribute .attribute-lists #filter-tabs-content .attr-list,
.catalog-filter-supplier .supplier-lists #filter-tabs-content .attr-list {
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
}

.aimeos .attr-list.attr-selected {
    text-align: left;
    margin-bottom: 10px;
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}

.attribute-selected{
	display: none;
}

.attribute-show-filters {
	width: 100%;
	cursor: pointer;
	text-align: center;
	background: #198fd8;
	color: #fff;
	padding: 10px;
}

.attribute-show-filters i {
	font: normal normal normal 12px/1 FontAwesome;
	width: 15px;
	height: 15px;
	display: inline-block;
	position: relative;
	top: -1px;
}

.attribute-show-filters i:before {
	content: "\f078";
}

.attribute-show-filters.open i:before{
	content: "\f077";
}

.catalog-filter-attribute .attribute-lists li.attr-item {
	position: relative;
}

.catalog-filter-attribute input.attr-item {
	border: 0 solid #D0D0D0;
	position: absolute;
}

.catalog-filter-attribute .attr-name {
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	margin-bottom: 0;
	line-height: 1.5;
	position: relative;
}

.catalog-filter-attribute .attr-name span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	width: 100%;
}

.catalog-filter-attribute .attr-count {
	position: absolute;
	top: 9px;
	right: 0;
}

.catalog-filter-attribute .nav-tabs {
    border-bottom: 0;
	padding-left: 15px;
	padding-right: 15px;
}

.attribute-lists {
	padding: 0;
}

.attribute-lists #filter-tabs-content {
	padding: 15px;
}

.attribute-lists fieldset.attribute-type-3,
.attribute-lists fieldset.attribute-type-0{
	overflow-y: scroll;
	max-height: 400px;
	padding-right: 0;
}

.attribute-lists fieldset.attribute-type-1 .fstElement {
	height: 400px;
}

.catalog-filter-attribute .attribute-lists #filter-tabs-content .attr-list
.attribute-lists fieldset.attribute-type-1{
	padding-right: 25px;
}

.g-recaptcha {
	display: inline-block;
}

.login__box__content--top button{
	min-width: 304px;
	max-width: 100%;
}

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

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

.modal-title {
	font-weight: bold;
	display: inline-block;
}

.float-right{
	float: right !important;
}

.account-files table tr td i{
	margin-right: 5px;
}

.aimeos.account-files table tr td {
	padding: 0;
}

.aimeos.account-files table tr td a{
	padding: 8px;
}

.aimeos.account-files table tr td a i{
	color:#000;
}

.aimeos.account-files table tr:hover td a{
	text-decoration: underline;
}

.aimeos.account-files table tr td a:link:not(.btn),
.aimeos.account-files table tr td a:visited:not(.btn){
	display: inline-block;
	width: 100%;
}

.aimeos.account-files table tr th a:link:not(.btn),
.aimeos.account-files table tr th a:visited:not(.btn){
	color:#000;
}

.aimeos.account-files .input-group {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
}

.aimeos.account-files .input-group>.form-control {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 1%;
	min-width: 0;
	margin-bottom: 0;
	border-radius: 4px;
}

.aimeos.account-files .input-group>.form-control:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.aimeos.account-files .input-group-append, .aimeos.account-files .input-group-prepend {
	display: -ms-flexbox;
	display: flex;
}

.aimeos.account-files .input-group-append {
	margin-left: -1px;
}

.aimeos.account-files .input-group-append .btn,
.aimeos.account-files .input-group-prepend .btn {
	position: relative;
	z-index: 2;
	width: 100%;
}

.aimeos.account-files .input-group>.input-group-append>.btn,
.aimeos.account-files .input-group>.input-group-append>.input-group-text,
.aimeos.account-files .input-group>.input-group-prepend:first-child>.btn:not(:first-child),
.aimeos.account-files .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),
.aimeos.account-files .input-group>.input-group-prepend:not(:first-child)>.btn,
.aimeos.account-files .input-group>.input-group-prepend:not(:first-child)>.input-group-text {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.aimeos.account-files .files-filter{
	margin: 10px 0;
}

.btn-sm {
	padding: 5px 5px;
	font-size: 12px;
	line-height: 1;
}

.product-grid-tem h2 { 
	text-align: center;
}
 
.pincode-input-container {
    text-align: center;
    margin: 30px 0;
}

.pincode-input-container .pincode-input-text {
	box-sizing: border-box;
	display: inline-block;
	width: 50px;
	height: 50px;
	padding: 5px;
	margin: 0 10px;
	border: 1px solid #ddd;
	background: #fafafa;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	text-align: center;
}
 
.pincode-input-container .pincode-input-text:focus,
.pincode-input-container .pincode-input-text:active { 
    border: 1px solid #ccc; 
    background: #fff;
}
 
.pincode-input-container .pincode-input-text::-webkit-outer-spin-button,
.pincode-input-container .pincode-input-text::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.pincode-input-container .pincode-input-text[type=number] {
	-moz-appearance: textfield;
    appearance: textfield;
}

section.aimeos-content .attribute-lists fieldset.attribute-type-0.aimeos.catalog-filter .catalog-filter-tree{
	display: none;
}

.attribute-lists {
	border: 0;
}

.catalog-filter-tree .panel-group .panel.panel-default,
.attribute-lists .panel-group .panel.panel-default {
	margin-bottom: 0;
	border-radius: 0;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.catalog-filter-tree .panel-group .panel h4,
.attribute-lists .panel-group .panel h4 {
	margin-bottom: 0;
}

.catalog-filter-attribute .attr-name {
	font-size: 12px;
}

.catalog-filter-tree .panel-default>.panel-heading+.panel-collapse>.panel-body,
.attribute-lists .panel-default>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: transparent;
	padding: 15px 0;
}

.catalog-filter-tree .panel-group .panel-heading {
	display: inline-block;
	width: 100%;
	padding: 6px 15px;
}
 
.catalog-filter-attribute .selected-intro {
	margin-bottom: 10px;
	display: inline-block;
	font-size: 15px;
	font-weight: bold;
	width: 100%;
}

.catalog-filter-attribute .selected-intro .badge{
	float:right;
	padding: 2px 10px;
}

.catalog-filter-attribute .selected-attributes .badge{
	text-align: left;
	color: #fff;
	width: 100%;
	margin-bottom: 10px;
}

.catalog-filter-attribute .selected-attributes .badge i{
	float:right;
}

section.catalog-filter-category.catalog-filter-count {
	margin-bottom: 15px;
}

.catalog-filter-tree ~ .panel-group:empty,
.catalog-filter-tree .panel-group:empty,
.catalog-filter-tree + .panel-group:empty{
	display: none;
}

.catalog-filter-tree {
	margin: 0;
}

.catalog-filter-tree > .panel-group {
	margin: 1em 0;
}

@media (min-width: 768px) {
	.container {
		width: 100%;
	}
}

@media (min-width: 992px) {
	.container {
		width: 100%;
	}
}

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

.export-products {
	display: none;
}

.export-delete{
	margin-top: 9px;
	display: inline-block;
}

.aimeos .export-products-list .btn{
	margin-top: 9px;
}

.aimeos .export-products-list input.form-control{
	border-radius: 5px;
	margin-top: 5px;
}

.aimeos section.checkout-standard-summary.common-summary button.btn.btn-action {
	position: relative;
}

.aimeos section.checkout-standard-summary.common-summary button.btn.btn-action span.aimeos-spinner {
	position: absolute;
	width: 30px;
	height: 30px;
	display: inline-block;
	z-index: 11111;
	right: -40px;
	left: inherit;
	top: 50%;
	background-size: contain;
	transform: translate(0, -50%);
	display: none;
}

.aimeos .common-summary-detail th {
	font-weight: 500;
	font-size: 12px;
}

.quotation-form .nav-tabs li.nav-item.products {
	position: relative;
}

.quotation-form .nav-tabs li.nav-item.products input {
	width: calc( 100% - 25px );
}

.quotation-form .nav-tabs li.nav-item.products i {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
}

.d-flex{
	display: flex;
}

nav.navbar.navbar-dark.bg-dark {
	background: #333333;
}

nav.navbar.navbar-dark.bg-dark .nav>li>a {
	color:#fff;
	padding-top: 15px;
	padding-bottom: 15px;
}

nav.navbar.navbar-dark.bg-dark .navbar-nav {
	float: none;
}

nav.navbar.navbar-dark.bg-dark .nav>li>a:focus,
nav.navbar.navbar-dark.bg-dark .nav>li>a:hover,
nav.navbar.navbar-dark.bg-dark .dropdown:hover {
	background-color: #0081c6;
}

.navbar {
	border-radius: 0;
}

nav.navbar.navbar-dark.bg-dark .navbar-collapse {
	margin-right: -15px;
	margin-left: -15px;
}

.navbar.navbar-default .nav-item.menu-item,
.navbar.navbar-default .show-mobile {
	display: none;
}

@media (max-width:991px) {
	.navbar.navbar-default .nav-item.menu-item,
	.navbar.navbar-default .show-mobile {
		display: block;
	}
	nav.navbar.navbar-dark.bg-dark{
		display: none;
	}
	.navbar-nav {
		float: none;
	}
	.navbar-nav>li>a {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	body .index__categories .index__categories__item img {
		position: relative !important;
		width: auto !important;
		height: auto !important;
		top: inherit !important;
		bottom: 0 !important;
		right: inherit !important;
		left: inherit !important;
		max-width:100% !important;
		margin: 0 auto !important;
		display: block !important;
	}
}
 
.product-benefits table>tbody>tr>td, 
.product-benefits table>tbody>tr>th, 
.product-benefits table>tfoot>tr>td, 
.product-benefits table>tfoot>tr>th, 
.product-benefits table>thead>tr>td, 
.product-benefits table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border: 1px solid #ddd;
}

.product-benefits table>thead>tr>th{ 
    background: #e9e9e9;
}
 
.product-properties table { 
    width: 100%;
}

.product-properties th:first-child,
.product-properties td:first-child{ 
    width: 40%;
}