/* ============================================ *
 * INITIAL STYLES
 * ============================================ */

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

*,
*:active,
*:focus,
*:visited {
	outline: 0 !important;
}

dt {
	font-weight: 600;
}

ol,
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

img {
	max-width: 100%;
}
.hidden{
	display: none;
}

/** APPLY BOOTSTRAP STYLE TO DYNAMICALLY CREATED SELECT BOXES **/
select {
	display: block;
	width: 100%;
	height: auto;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555555;
	background-color: #FFFFFF;
	background-image: none;
	border: 1px solid #CCCCCC;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
	-webkit-transition: border-color ease-in-out 0.15s,-webkit-box-shadow ease-in-out 0.15s;
	-moz-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s,-moz-box-shadow ease-in-out 0.15s;
	-o-transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s,-webkit-box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;
	transition: border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s,-webkit-box-shadow ease-in-out 0.15s,-moz-box-shadow ease-in-out 0.15s;
}

select:focus {
	border-color: #66AFE9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}
select.form-control {
    background-image: url("https://image.flaticon.com/icons/svg/60/60781.svg");
    background-position: 94% 50%;
    background-size: 8px 8px;
    background-repeat: no-repeat;
}

/** VERTICAL ALIGN MIDDLE ALL TABLES **/
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
	vertical-align: middle;
}

/** CONTACT PAGE MAP **/
#map_canvas {
	width: 100%;
	height: 304px;
	padding: 0;
	margin: 0;
	margin-bottom: 30px;
}

/* ============================================ *
 * COMPARE STYLES
 * ============================================ */
.compare-table{
	border-collapse: initial;
}
.compare-table .card{
	width: 280px;
}
.compare-table .card .remove-item {
	position: absolute;
	right: -10px;
	top: -15px;
	font-size: 20px;
	background-color: #fff;
}

/* ============================================ *
 * PRE-DEFINED INSPECT STYLES
 * ============================================ */
.block-title,
.card-title h1 {
	margin: 0 0 12px 0;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.5;
}

.card-title h2 {
	margin: 0;
	margin-bottom: 20px;
	font-size: 26px;
	line-height: 1.5;
}
.add-to-cart-panel .price-box {
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: bold;
}
.product-options select.form-control{
	background-position: 98% 50%;
}

.add-to-links .btn{
	font-size: .8rem;
}
#header-account li.dropdown-header {
	padding: 6px 13px;
	font-size: 14px;
	color: #333333;
	background-color: #F5F5F5;
	border-color: #DDDDDD;
	border-bottom: 1px solid transparent;
	-webkit-border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	border-top-right-radius: 3px;
}

/* ============================================ *
 * SUCCESS MESSAGES / VALIDATION / TOOLTIPS / NOTICES
 * ============================================ */
.validation-advice {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 1;
	display: block;
	max-width: 200px;
	padding: 5px 10px;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.42857143;
	color: #FFFFFF;
	text-align: center;
	background: #000000;
}
.validation-advice:before {
	position: absolute;
	top: -8px;
	left: 10px;
	width: 0;
	height: 0;
	content: "";
	border-right: 8px solid transparent;
	border-bottom: 8px solid #000000;
	border-left: 8px solid transparent;
}

ul.messages li ul li {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.opc-login ul.messages {
	float: right;
	margin: 0 0 6px 14px;
}
.opc-login ul.messages li.error-msg ul li {
	padding: 6px 12px 6px;
}
ul.messages li.success-msg ul li {
	color: #3C763D;
	background-color: #DFF0D8;
	border-color: #D6E9C6;
}
ul.messages li.error-msg ul li {
	color: #A94442;
	background-color: #F2DEDE;
	border-color: #EBCCD1;
}
.global-site-notice {
	font-size: 12px;
	color: #1B1B1B;
	background: #D9D9D9;
}
.global-site-notice .notice-inner {
	width: 100%;
	max-width: 1140px;
	min-height: 30px;
	padding: 5px 0;
	margin-right: auto;
	margin-left: auto;
	line-height: 11px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: left;
}
.global-site-notice p {
	margin-bottom: 0;
}
.global-site-notice a {
	color: #E84C3D;
}

/* ============================================ *
 * PAGE: CART
 * ============================================ */
.product-cart-info .table {
	margin-top: 10px;
	font-size: 75%;
	border: 1px solid #DDDDDD;
}
.product-cart-info {
	width: 33%;
}
.minicart-wrapper .alert-secondary{
	margin-bottom: 0;
	-webkit-border-radius: 0px; 
	-moz-border-radius: 0px; 
	border-radius: 0px;
}



/* ============================================ *
 * PAGE: PRODUCT
 * ============================================ */
.btn.btn-primary.link-facebook,
a.btn.btn-primary.link-facebook:focus {
	color: #FFFFFF;
	background-color: #3B5998;
	border-color: #2F4779;
}
.btn.btn-primary.link-facebook:hover {
	background-color: #2F4779;
}
.btn.btn-info.link-twitter,
a.btn.btn-info.link-twitter:focus {
	color: #FFFFFF;
	background-color: #5BC0DE;
	border-color: #46B8DA;
}
.btn.btn-info.link-twitter:hover {
	background-color: #46B8DA;
}
.validate-not-negative-number{ width: 70px; }

.required{
	display: block;
}
.required em{
	color: #dc3545;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.card .product-image{
	text-align: center;
}
.card-img-top{
	width: auto;
}
}


/* ============================================ *
 * BOOTSTRAP 4 COL5 STYLE
 * ============================================ */
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths,
.col-xl-5ths {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}
@media only screen and (min-width: 576px) {
	.col-sm-5ths {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}
@media only screen and (min-width: 768px) {
	.col-md-5ths {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media only screen and (min-width: 992px) {
	.col-lg-5ths {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}
@media only screen and (min-width: 1200px) {
	.col-xl-5ths {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}
@media only screen and (min-width: 1200px) {
	#header-search.skip-content {
		display: block;
	}
}

.skip-content {
	display: none;
}
.skip-content.skip-active {
	display: block;
}
.form-group {
	position: relative;
}

/* ============================================ *
 * PAGE: PRINT
 * ============================================ */
.items-ordered .table,
.order-items.order-details .table{
	margin-bottom: 0;
}

/* ============================================ *
 * PAGE: HOME
 * ============================================ */
.nav-tabs {
	border: none;
	margin-bottom: 1.5rem !important;
}
.nav-tabs > li{
	display: inline-block;
	padding: 0 10px;	
}
@media only screen and (max-width: 479px) {
	.nav-tabs > li{
		padding: 0 5px;
	}
}
.nav-tabs > li > a{
	font-size: 20px;
	line-height: 48px;
	display: block;
	font-weight: 500;
	color: #FFFFFF;
	padding-top: 0px; 
	padding-bottom: 0px;
	padding-left: 40px;
	padding-right: 40px;
	background-color: #007bff;
}
.nav-tabs > li > a:hover{
	background-color: #6c757d;
	text-decoration: none;
}
.nav-tabs > li.ui-tabs-active > a,
.nav-tabs > li.ui-tabs-active > a:focus,
.nav-tabs > li.ui-tabs-active > a:hover {
	outline: none;
	background-color: #6c757d;
}
.nav-tabs > li:focus {
	outline: none;
}

.owl-carousel .owl-stage{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.owl-carousel .owl-stage .item{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.item .label-sale {
	position: absolute;
	width: 60px;
	height: 60px;
	right: 10px;
	top: 10px;
	color: #ffffff;
	line-height: 51px;
}
.item .label-new {
	position: absolute;
	width: 60px;
	height: 60px;
	left: 10px;
	top: 10px;
	color: #ffffff;
	line-height: 51px;
}
.product-image-gallery .label-sale {
	position: absolute;
	width: 80px;
	height: 80px;
	right: 10px;
	top: 10px;
	color: #ffffff;
	line-height: 72px;
	font-size: 16px;
}
.product-image-gallery .label-new {
	position: absolute;
	width: 80px;
	height: 80px;
	left: 10px;
	top: 10px;
	color: #ffffff;
	line-height: 72px;
	font-size: 16px;
}
.item .add-to-links{
	text-align: center;
}
.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel .owl-nav button.owl-next{
	border: 1px solid rgba(0,0,0,.125);
}
@media only screen and (max-width: 576px){
.home-page-tabs .owl-carousel .owl-nav {
    display: inline-block;
}
}


/* ============================================ *
 * ACCOUNT AREA
 * ============================================ */

.box-account.box-info.box-addresses .box-head h2,
.box-account.box-recent .box-head h2 {
	margin-top: 0;
}

.box-account.box-info.box-addresses .box-head:after {
	display: table;
	clear: both;
	content: "";
}

.my-account .page-title:after {
	display: table;
	clear: both;
	content: "";
}

/** ACCOUNT DROPDOWN **/

#header-account li:nth-child(2) {
	padding-top: 4px;
}

#header-account li:last-child {
	padding-bottom: 4px;
}

#header-account {
	right: 15px;
	width: 200px;
	padding: 0;
	margin-left: auto;
}

#header-account ul {
	padding: 0;
	margin: 0;
}

#header-account li {
	display: block;
	padding: 0 10px;
	background: none;
}

#header-account a {
	display: block;
	line-height: 2;
	font-size: 14px;
	color: #727272;
	text-align: center;
}

/** LOGIN **/

.remember-me-popup {
	position: relative;
	display: none;
}

.remember-me-popup.show {
	display: block;
}

.remember-me-popup .remember-me-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 12px;
}

.remember-me-popup .remember-me-popup-close-button {
	display: none;
}

.my-account .contact-info .card-body,
.my-account .newsletters .card-body{
	min-height: 115px;
}
.my-account .shipping .card-body,
.sales-order-print .shipping .card-body{
	min-height: 200px;
}
.my-account .billing .card-body,
.my-account .payment .card-body{
	min-height: 230px;
}


#country.form-control{
	background-position: 98% 50%;
}


/* ============================================ *
 * HEADER: DESKTOP
 * ============================================ */

.currency-switcher-container {
	margin-right: 5px;
}

.header-minicart > a {
	text-decoration: none;
}
.header-minicart > a > span.badge {
	vertical-align: top;
	background-color: #545e67;
	padding: 5px 7px;
	color: #FFFFFF;
	-webkit-border-radius: 50%; 
	-moz-border-radius: 50%; 
	border-radius: 50%;
}

.currency-switcher-container,
.account-cart-wrapper {
	display: inline-block;
}

/** NAVIGATION **/
.nav-primary > li {
	position: relative;
}

.nav-primary > li > a {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 30px;
	color: #727272;
	text-decoration: none;
	text-transform: uppercase;
}

.nav-primary .menu-active > ul.level0,
.nav-primary li.level0 li.sub-menu-active > ul {
	display: block;
}

.nav-primary li.level0 > a {
	text-transform: uppercase;
}

/* NAVIGATION: LARGE VIEWPORTS - DROPDOWN MENU */

.nav-primary li.menu-active > ul {
	display: block;
}

#nav .nav-primary a.level0 {
	display: block;
	padding: 15px 20px;
	color: #000;
	font-size: 18px;
	outline: none !important;
	text-decoration: none !important;
	cursor: pointer;
	line-height: 1.5;
	text-transform: none;
}

nav#nav {
	display: block;
	padding: 0;
	margin: 0;
}

a.level0.has-children:after {
	margin-left: 10px;
	font-family: 'Font Awesome 5 Pro';
	content: "\f107";
}

#nav .nav-primary li.level1 a {
	padding: 7px 15px;
    font-weight: 400;
    color: #333333 !important;
    border-bottom: 1px solid #ededed;
    display: block;
}
#nav .nav-primary .desktop-navigation ol li:last-child a {
	border-bottom: none;
}

#nav .nav-primary a.level0:hover,
li.level0.nav-0.parent.menu-active {
	background-color: inherit;
}

/** NAVIGATION MEGAMENU: MOBILE VERSION **/

.skip-active .salecto-topmenu .salecto-level0 {
	display: block;
}

.skip-active .salecto-menumanager .anchor_mbmenu {
	display: none !important;
}

/** CART **/

#cart-sidebar {
	padding:0;
}
#cart-sidebar .shopping-cart-items{
	border-bottom: 1px solid #eeeeee;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-left: 15px;
	margin-right: 15px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
#cart-sidebar .shopping-cart-items.last{
	border-bottom: none;
}
#cart-sidebar .cart-item-image{
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}
#cart-sidebar .cart-item-image .product-image {
	border: 1px solid #eeeeee;
	display: block;
	text-align: center;
	padding: 5px;
}
#cart-sidebar .cart-item-body{
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
	padding-left: 15px;
}
.cart-item-body .item-name a{
	font-size: 16px;
	font-weight: 600;
	color: #545e67;
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
  	display: block;
}
.cart-item-body .item-name a:hover{
	color: #007bff;
}

.cart-item-body .item-quantity{
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
}
.cart-item-body .item-options{
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
}
.cart-item-body .item-options .option-value:before{
	content: "\f068";
	display: inline-block;
	font-family: 'Font Awesome 5 Pro';
	-webkit-transform: rotate(90deg); 
	-moz-transform: rotate(90deg); 
	-o-transform: rotate(90deg); 
	-ms-transform: rotate(90deg); 
	transform: rotate(90deg);
	color: #545e67;
	margin-left: -4px;
	margin-right: -4px;
	margin-top: 1px;
	vertical-align: top;
}

.cart-item-body .item-price{
	display: block;
	vertical-align: top;
}
.cart-item-body .item-price .price{
	color: #007bff;
}
.cart-item-body .remove{
	color: #545e67;
	font-weight: 500;
	font-size: 11px;
	vertical-align: top;
	display: inline-block;
}
.cart-item-body .remove:hover{
	color: #007bff;
}
.minicart-btns{
	display: block;
	padding: 15px;
	padding-top: 0;
}
.minicart-btns .btn-group{
	width: 100%;
}

.minicart-wrapper p.block-subtitle {
	font-size: 18px;
	font-weight: bold;
}
.minicart-wrapper a.btn.btn-primary.btn-block i.fa {
	float: right;
	line-height: 1.5;
	color: #FFFFFF;
}
.minicart-wrapper i.fa.fa-trash-o {
	color: #FFFFFF;
}
.minicart-bottom {
	padding: 0;
}

.header-minicart .dropdown-menu {
	right: 0;
	padding: 15px;
}

.header-minicart .info-wrapper .quantity-button {
	opacity: 0;
	-webkit-transition-duration: 100ms;
	-moz-transition-duration: 100ms;
	-o-transition-duration: 100ms;
	transition-duration: 100ms;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
}

.header-minicart .info-wrapper .quantity-button.visible {
	opacity: 1;
}

.header-minicart #minicart-success-message,
.header-minicart #minicart-error-message {
	display: none;
	text-align: center;
}

.table > tbody > tr > td.subtotal-label,
.table > tbody > tr > td.subtotal-number {
	padding:10px 15px;
	font-weight: 600;
	border-top: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
	background-color: #eeeeee;
}

td.delete-td {
	padding: 0 !important;
	text-align: right;
	border: 0 !important;
}

.old-price {
	text-decoration: line-through;
}

.old-price span {
	font-size: 14px;
}

.header-minicart .dropdown-menu {
	right: 15px;
	left: inherit;
	min-width: 350px;
	padding: 0;
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
	-moz-box-shadow: 0 6px 12px rgba(0,0,0,0.175);
	box-shadow: 0 6px 12px rgba(0,0,0,0.175);
}

#header-cart .minicart-wrapper p.empty {
	padding: 15px 1.25rem;
	margin: 0;
}

@media only screen and (max-width: 567px) {
	.mobile-responsive .btn{
		display: block;
		float: left;
		width: 100%;
	}	
}

#MB_window .mobile-responsive .btn.btn-primary{
	margin-top: 0px;
	margin-bottom: 0px;
}


/* ============================================ *
 * PAGE: CATEGORY
 * ============================================ */


.category-image {
	margin-bottom: 20px;
}

/** TOOLBAR **/

.pagination {
	margin-top: 5px;
	margin-bottom: 0;
}
.pagination .page-link{
	padding: 0.5rem 0.60rem;
}
.toolbar .view .views-container .btn.grid:before {
	display: inline-block;
	margin-right: 5px;
	margin-left: 5px;
	font-family: 'Font Awesome 5 Pro';
	content: "\f009";
}

.toolbar .view .views-container .btn.list:before {
	display: inline-block;
	margin-right: 5px;
	margin-left: 5px;
	font-family: 'Font Awesome 5 Pro';
	content: "\f00b";
}

.page-item.disabled .page-link{
	display: none;
}


/** LAYERED NAVIGATION **/

.block-layered-nav .panel-default > .panel-heading {
	border-top: 1px solid #DDDDDD;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.block-layered-nav .currently li.filter-titles {
	width: 100%;
	clear: both;
}

.block-layered-nav .currently li.filter-titles:after {
	display: block;
	clear: both;
	content: "";
}

.block-layered-nav li.filter-titles a {
	font-size: 12px;
}

.block-layered-nav .currently #status-filter {
	display: block;
}

#narrow-by-list div:first-of-type {
	border-top: 0 !important;
	-webkit-border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	border-top-right-radius: 3px;
}

/** PRODUCT ITEM: GRID **/

.card-img-top {
	max-height: 250px;
	object-fit: contain;
}

.add-to-links li{
	display: inline-block;
}
.add-to-links li .separator{
	font-size: .9rem;
	line-height: 1.6;
	vertical-align: top;
	padding-right: 5px;
	padding-left: 5px;
}

/* ============================================ *
 * PRODUCT VIEW
 * ============================================ */

.product-short-description {
	margin: 5px 0 15px;
}

.product-image-gallery .label.label-sale {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 75px;
	height: 75px;
	font-size: 14px;
	line-height: 70px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

.add-to-cart-wrapper .qty-wrapper .input-group-addon {
	cursor: pointer;
}

/** MEDIA **/

.product-img-box .product-image-gallery > .label.label-sale {
	position: absolute;
	right: 3%;
}

.product-img-box .product-image-gallery > .label {
	top: 3%;
	width: 75px;
	height: 75px;
	font-size: 100%;
	line-height: 70px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

.thumbnail {
	max-width: 80px;
	border: 1px solid #E6E6E6;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.more-views {
	margin-top: 15px;
}
.more-views li.list-inline-item{
	vertical-align: top;
}
.more-views li.list-inline-item:not(:last-child) {
    margin-right: 0rem;
}
.more-views li.list-inline-item:nth-child(6n){
    margin-right: 0rem;
}

.product-image-gallery {
	position: relative;
}

.product-image-gallery .gallery-image {
	display: none;
}

.product-image-gallery .gallery-image.visible {
    display: block;
    height: 460px;
    padding: 0;
    margin: 0;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.product-image-gallery .gallery-image.visible.hidden {
	visibility: hidden;
}

.product-image-gallery:before,
.product-image-gallery:after {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	content: "";
}

.product-image-gallery:before {
	z-index: 2;
	background-color: white;
	opacity: 0.8;
}

.product-image-gallery:after {
	z-index: 3;
	background-image: url("/skin/frontend/bootstrap/default/images/opc-ajax-loader.gif");
	background-repeat: no-repeat;
	background-position: center;
}

.product-image-gallery.loading {
	position: relative;
}

.product-image-gallery.loading:before,
.product-image-gallery.loading:after {
	display: block;
}

.product-image-thumbs li {
	display: inline-block;
}

.product-image-thumbs li:first-child {
	margin-left: -1px;
}

.product-image-thumbs a {
	display: inline-block;
	border: 2px solid transparent;
	border-color: #ADADAD;
}

.no-touch .product-image-thumbs a:hover {
	border-color: #C7C7C7;
}

.product-img-box {
	padding-right: 15px;
}

.img-thumbnail {
	border: none;
}

/* ============================================ *
 * PRODUCT DETAILS
 * ============================================ */
.availability.out-of-stock .label:before {
	content: "";
	background-color: #ff0000;
	width: 8px;
	height: 8px;
	display: inline-block;
	vertical-align: top;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin-right: 7px;
	margin-top: 9px;
}
.availability.in-stock .label:before {
	content: "";
	background-color: #28a745;
	width: 8px;
	height: 8px;
	display: inline-block;
	vertical-align: top;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	margin-right: 7px;
	margin-top: 9px;
}

.configurable-swatch-list .selected .btn-light{
	background-color: #e2e6ea;
}



/* ============================================ *
 * PRODUCT TABS
 * ============================================ */
.product-collateral .toggle-tabs {
  position: relative;
  border-right: none;
  padding: 0;
}

.product-collateral .toggle-tabs li {
  padding: 0;
  display: inline-block;
}

.product-collateral .toggle-tabs li span {
  padding: 15px 30px;
  cursor: pointer;
  display: block;
}

.product-collateral .toggle-tabs li.current span,
.product-collateral .toggle-tabs li:hover span {
  color: #333;
  background-color: rgba(0, 0, 0, 0.03);
}

.collateral-tabs {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  background-color: rgba(0, 0, 0, 0.03);
  padding:15px 30px;
  margin-top: 0;
  margin-bottom: 0;
}

.product-collateral .tab-container {
  display: none;
}

.collateral-tabs .tab {
	display: none;
}

.product-collateral .tab-container.current {
  display: block;
}


@media only screen and (max-width: 1199px){
	.product-collateral .toggle-tabs {
		display: none;
	}

	.collateral-tabs {
		padding: 0;
		border: 1px solid #fff;
	}

	.collateral-tabs .tab {
		display: block;
		padding: 7px 15px;
		font-size: 16px;
		line-height: 24px;
		font-weight: 600;
		background-color: #f4f4f4;
		border-bottom: 1px solid #fff;
		position: relative;
	}

	.collateral-tabs .tab.last {
		border-bottom: none;
	}

	.collateral-tabs .tab:after {
		position: absolute;
		right: 0;
		top: 0;
		width: 38px;
		line-height: 38px;
		height: 38px;
		color: #000;
		font-size: 20px;
		background-color: #f4f4f4;
		content: "+";
		font-weight: 800;
		text-align: center;
	}

	.collateral-tabs .tab.current:after {
		content: "-";
	}

	.product-collateral .tab-container {
		padding: 7px 20px;
		border-bottom: 1px solid #fff;
		background-color: #f4f4f4;
		margin-bottom: 0;
	}
	

}


/* ============================================ *
 * CHECKOUT
 * ============================================ */

.opc-message-container {
	text-align: center;
}

.opc-messages-action {
	margin-top: 20px;
	text-align: center;
}

.opc-messages {
	position: absolute;
	position: absolute;
	top: 30%;
	left: 50%;
	z-index: 1002;
	display: none;
	display: block;
	width: 410px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 30px;
	margin-top: -20px;
	margin-left: -205px;
	font-size: 16px;
	font-weight: normal;
	color: #404040;
	text-align: left;
	background-color: #FEFEFE;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.2);
}

.opc-message-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10001;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}

.close-message-wrapper {
	position: absolute;
	top: 10px;
	right: 18px;
	z-index: 1005;
	display: block;
	width: 8px;
	height: 8px;
	line-height: 10px;
	color: #4A4A4A;
	cursor: pointer;
	background: transparent;
}

.discount-block .panel-heading,
.comment-block .panel-heading {
	display: block;
}

.discount-block .panel-heading i.fa.fa-plus,
.comment-block .panel-heading i.fa.fa-plus {
	line-height: 20px;
}

.discount-block .panel-heading:hover,
.comment-block .panel-heading:hover,
.discount-block .panel-heading:focus,
.comment-block .panel-heading:focus {
	text-decoration: none;
}

.discount-block .panel-title:after {
	float: right;
	font-family: 'Font Awesome 5 Pro';
	content: "\f068";
}

.discount-block .panel-heading.collapsed .panel-title:after {
	float: right;
	font-family: 'Font Awesome 5 Pro';
	content: "\f067";
}

.comment-block .panel-title:after {
	float: right;
	font-family: 'Font Awesome 5 Pro';
	content: "\f068";
}

.comment-block .panel-heading.collapsed .panel-title:after {
	float: right;
	font-family: 'Font Awesome 5 Pro';
	content: "\f067";
}

.comment-block .form-group {
	margin: +0;
}

.btn-checkout.opc-btn-checkout {
	margin-top: 20px;
}

a.back-inline {
	margin-right: 10px;
}

#payment_form_epay_standard li iframe{
	height: 80px!important;
}
.opc-data-table .product-name{
	font-weight: 600;
	margin-bottom: 0;
}
.opc-data-table .item-options{
	margin-bottom: 0;
}
.opc-data-table .item-options dt{
	display: none;
}
.opc-data-table .item-options dd{
	display: inline;
}
.opc-data-table .item-options dd:after{
	content: "\f068";
	display: inline-block;
	font-family: 'Font Awesome 5 Pro';
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	color: #545e67;
	margin-left: -3px;
	margin-right: -3px;
	margin-top: 2px;
	vertical-align: top;
}
.opc-data-table .item-options dd:last-child:after{
	display: none;
}


/** LOADER **/

#floatingCirclesG {
	position: relative;
	top: 50%;
	width: 64px;
	height: 64px;
	margin: 0 auto;
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	-ms-transform: scale(0.6);
	-o-transform: scale(0.6);
	transform: scale(0.6);
}

.f_circleG {
	position: absolute;
	width: 12px;
	height: 12px;
	background-color: #FFFFFF;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-animation-name: f_fadeG;
	-moz-animation-name: f_fadeG;
	-o-animation-name: f_fadeG;
	animation-name: f_fadeG;
	-webkit-animation-duration: 0.72s;
	-moz-animation-duration: 0.72s;
	-o-animation-duration: 0.72s;
	animation-duration: 0.72s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: linear;
	-moz-animation-direction: linear;
	-o-animation-direction: linear;
	animation-direction: linear;
}

#frotateG_01 {
	top: 26px;
	left: 0;
	-webkit-animation-delay: 0.27s;
	-moz-animation-delay: 0.27s;
	-o-animation-delay: 0.27s;
	animation-delay: 0.27s;
}

#frotateG_02 {
	top: 8px;
	left: 8px;
	-webkit-animation-delay: 0.36s;
	-moz-animation-delay: 0.36s;
	-o-animation-delay: 0.36s;
	animation-delay: 0.36s;
}

#frotateG_03 {
	top: 0;
	left: 26px;
	-webkit-animation-delay: 0.45s;
	-moz-animation-delay: 0.45s;
	-o-animation-delay: 0.45s;
	animation-delay: 0.45s;
}

#frotateG_04 {
	top: 8px;
	right: 8px;
	-webkit-animation-delay: 0.54s;
	-moz-animation-delay: 0.54s;
	-o-animation-delay: 0.54s;
	animation-delay: 0.54s;
}

#frotateG_05 {
	top: 26px;
	right: 0;
	-webkit-animation-delay: 0.63s;
	-moz-animation-delay: 0.63s;
	-o-animation-delay: 0.63s;
	animation-delay: 0.63s;
}

#frotateG_06 {
	right: 8px;
	bottom: 8px;
	-webkit-animation-delay: 0.72s;
	-moz-animation-delay: 0.72s;
	-o-animation-delay: 0.72s;
	animation-delay: 0.72s;
}

#frotateG_07 {
	bottom: 0;
	left: 26px;
	-webkit-animation-delay: 0.81s;
	-moz-animation-delay: 0.81s;
	-o-animation-delay: 0.81s;
	animation-delay: 0.81s;
}

#frotateG_08 {
	bottom: 8px;
	left: 8px;
	-webkit-animation-delay: 0.9s;
	-moz-animation-delay: 0.9s;
	-o-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

@-webkit-keyframes f_fadeG {
	0% {
		background-color: #333333;
	}

	100% {
		background-color: #FFFFFF;
	}
}

@-moz-keyframes f_fadeG {
	0% {
		background-color: #333333;
	}

	100% {
		background-color: #FFFFFF;
	}
}

@-o-keyframes f_fadeG {
	0% {
		background-color: #333333;
	}

	100% {
		background-color: #FFFFFF;
	}
}

@keyframes f_fadeG {
	0% {
		background-color: #333333;
	}

	100% {
		background-color: #FFFFFF;
	}
}

.opc-ajax-loader {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000 !important;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}

/* ============================================ *
 * FOOTER
 * ============================================ */

#footer {
	margin-top: 30px;
	background: #FFFFFF;
}

.footer-top{
	padding: 40px 0;
	background-color: #6c757d;
}
.footer-bottom{
	background-color: #545e67;
}
.footer-title {
	font-size: 20px;
	font-weight: bold;
	color: #FFFFFF;
	padding-bottom: 10px;
}
.footer-col li, 
.footer-col a, 
.footer-col p{ 
	color: #FFFFFF; 
}
.social-media a{
	width: 36px;
	height: 36px;
	color: #333333;
	text-align: center;
	line-height: 36px;
	margin-right: 7px;
	display: inline-block;
}
.footer-logo{
	margin-bottom: 15px;
	display: inline-block;
}
address.copyright{
	margin-bottom: 0;
}
.copyright-text{
	color: #FFFFFF;
}

/* ============================================ *
 * 404 PAGE
 * ============================================ */
.noroute-block{
	text-align: center;
}
.noroute-img-col{
	display: inline-block;
	max-width: 260px;
	margin-bottom: 30px;
}
.noroute-cont-col #search_mini_form {
    width: 50%;
    display: inline-block;
}
.noroute-menu-col{
	display: block;
	padding-top: 15px;
}
.noroute-menu-col ul li{
	display: inline-block;
	padding-left: 15px;
	padding-right: 15px;
}


/* ============================================ *
 * WISHLIST PAGE
 * ============================================ */
.customer-wishlist-item-cart .cart-cell .btn-primary{
	white-space: nowrap;
}



@media only screen and (max-width: 767px) {
	.noroute-cont-col #search_mini_form {
	    width: 100%;
	}
}


/* ============================================ *
 * RESPONSIVE
 * ============================================ */

@media only screen and (min-width: 576px) {
	.float-sm-left {
		float: left !important;
	}

	.float-sm-right {
		float: right !important;
	}

	.float-sm-none {
		float: none !important;
	}
}

@media only screen and (min-width: 768px) {
	.col-sm-5ths {
		float: left;
		width: 20%;
	}
	.nav-primary a.level0 {
		padding: 0 50px 0 0;
	}

	.nav-primary li.level0,
	.nav-primary a.level0 {
		display: inline-block;
		position: relative;
	}

	.nav-primary li:last-child > a {
		border-bottom: none;
	}

	.nav-primary a:hover,
	.nav-primary li:hover > a {
		color: #333333;
	}

	.nav-primary .menu-active {
		z-index: 200;
	}

	.nav-primary li.level0 ul {
		position: absolute;
		top: 30px;
		left: 15px;
		/* Height of ".nav-primary a.level0" */
		z-index: 10;
		display: none;
		width: 250px;
		padding-right: 10px;
		padding-left: 10px;
		background: #FBFBFB;
		border: solid 1px #CCCCCC;
		/* Hide until displayed. */
	}

	.nav-primary li.level1 ul {
		top: -1px;
		left: 225px;
	}

	.nav-primary li.level2 > a {
		padding: 10px 0;
	}

	.nav-primary li.level0 ul.level0.position-test {
		display: block;
	}

	.nav-primary li.level0 ul.level0.spill {
		right: 0;
		left: auto;
	}

	.nav-primary li.level0 ul.level0.spill li.level1 ul {
		top: 20px;
		right: 50px;
		left: auto;
	}

	.nav-primary li.level0 li.parent > a {
		position: relative;
		padding: 10px 0;
	}

	.nav-primary li.level0 li.parent > a:after {
		position: absolute;
		top: 50%;
		right: 5px;
		display: block;
		width: 0;
		height: 0;
		margin-top: -3px;
		content: "";
		border-top: 4px solid transparent;
		border-right: none;
		border-bottom: 4px solid transparent;
		border-left: 4px solid #CCCCCC;
	}

	.nav-primary li.level0 ul.level0 {
		top: 100%;
		left: 0px;
		padding-right: 0;
		padding-left: 0;
		background: #FFFFFF;
		border: 1px solid #ededed;
		border-top: none;
	}

	.nav-primary li.level1 ul {
		top: 0;
		left: 250px;
		background: #F4F4F4;
		border: 0;
	}

	.navbar-default {
		display: block;
		/* Force visibility */
	}

	.nav-primary {
		position: relative;
		z-index: 199;
		margin: 0;
		width: 100%;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.nav-primary > li.mobile-navigation{
		display: none;
	}
}

@media only screen and (max-width: 1199px){
	#header-nav{
		display: none;
	}
	#header-nav.skip-active{
		display: block;
		background-color: #ffffff !important;
	}
	.nav-primary > li.desktop-navigation{
		display: none;
	}
	.nav-primary > li.mobile-navigation{
		display: block;
	}
	.nav-primary li.level0, .nav-primary a.level0{
		display: block;
		position: relative;
	}
	.nav-primary li.level0 ul.level0{
		position: relative;
		left: 0;
		top: 100%;
		width: 100%;
	}
	#nav .nav-primary li.level1 a{
		padding: 10px 5px;
	}
	#nav .nav-primary li.level0 a.level0{
		border-bottom: 1px solid #CCCCCC; 
	}
	#nav .nav-primary li.level0:lest-child a.level0{
		border-bottom: none; 
	}
}

@media only screen and (min-width: 991px) {
	#ajax-filters {
		display: block !important;
	}
}

@media only screen and (min-width: 992px) {
	.col-md-5ths {
		float: left;
		width: 20%;
	}

	.float-lg-left {
		float: left !important;
	}

	.float-lg-right {
		float: right !important;
	}

	.float-lg-none {
		float: none !important;
	}
}

@media only screen and (min-width: 1200px) {
	.float-xl-left {
		float: left !important;
	}

	.float-xl-right {
		float: right !important;
	}

	.float-xl-none {
		float: none !important;
	}
}

@media only screen and (max-width: 991px) {
	#sort-filters {
		padding: 20px;
		margin: 0;
		background-color: #FDFDFD;
		border-top: 0;
		border-right: 1px solid #F5F5F5;
		border-left: 1px solid #F5F5F5;
	}

	#ajax-filters #narrow-by-list {
		padding: 5px 5px;
		margin: 0;
		background-color: #F5F5F5;
		-webkit-border-top-left-radius: 0;
		-moz-border-radius-topleft: 0;
		border-top-left-radius: 0;
		-webkit-border-top-right-radius: 0;
		-moz-border-radius-topright: 0;
		border-top-right-radius: 0;
	}

	.block-layered-nav .panel-default > .panel-heading {
		padding-top: 0;
		padding-bottom: 0;
		font-weight: bold;
		border-top: 0;
		border-bottom: 0;
	}

	#narrow-by-list div:first-of-type {
		padding-top: 12px;
	}

	div#layered-navigation-container {
		margin-bottom: 20px;
	}

	.block-title.mobile-title:after {
		float: right;
		font-family: 'Font Awesome 5 Pro';
		content: "\f146";
	}

	.block-title.mobile-title.collapsed:after {
		float: right;
		font-family: 'Font Awesome 5 Pro';
		content: "\f0fe";
	}

	.block-title.mobile-title.collapsed {
		padding: 10px;
		margin-bottom: 0;
		font-size: 16px;
		font-weight: bold;
		color: #333333;
		cursor: pointer;
		background: #F5F5F5;
	}

	.block-title.mobile-title {
		padding: 10px;
		margin-bottom: 0;
		font-size: 16px;
		font-weight: bold;
		color: #FFFFFF;
		cursor: pointer;
		background: #333333;
	}
	#sidebar-category{
		display: none;
	}
	#sidebar-category.show{
		display: block;
	}
}

@media only screen and (max-width: 1199px) {
	.product-options .form-group .form-control {
		font-size: 16px;
	}
	.page-header{
		position: relative;
	}
	#header-search {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 999;
		display: none;
	}
	#header-search.skip-active{
		display: block;
	}
	.search_mini_form-container {
		width: 100%;
		padding: 10px;
		background-color: #F4F4F4;
		border: 1px solid #CCCCCC;
	}
	.page-header .cart-col{
		position: static;
	}
	
	.card .product-image img {
		width: auto;
		max-height: 240px;
		display: block;
		max-width: 100%;
		height: auto;
		margin: 0 auto;
	}
	.salecto-menumanager .mb-submain {
		padding: 0;
	}

	#narrow-by-list .sort-by .input-group {
		padding-top: 0;
	}

	.category-image {
		display: none;
	}

	.wishlist-btn-group {
		margin: 10px 0;
	}

	.customer-wishlist-item-quantity .qty {
		min-width: 60px;
	}

	.title.mobile-title-sort.collapsed:after {
		float: right;
		font-family: 'Font Awesome 5 Pro';
		font-style: normal;
		content: "\f196";
	}

	.title.mobile-title-sort:after {
		float: right;
		font-family: 'Font Awesome 5 Pro';
		font-style: normal;
		content: "\f147";
	}

	.title.mobile-title-sort {
		padding: 8px 15px 8px 8px;
		font-style: italic;
		cursor: pointer;
		background: #F5F5F5;
	}

	#ajaxlist-reload-product_list .product-list {
		margin-top: 25px;
	}

	#ajax-filters.in,
	#ajax-filters.collapsing,
	#sort-filters.in,
	#sort-filters.collapsing {
		display: block!important;
	}

	.opc-btn-checkout {
		margin-top: 20px;
	}

	#header-account {
		margin-right: auto;
		margin-left: auto;
	}

	#MB_content .buttons .btn {
		width: 100%;
	}

	#MB_window .btn.btn-primary {
		margin-top: 10px;
		margin-bottom: 20px;
	}

	#MB_content .buttons {
		padding: 0;
	}

	#MB_window {
		width: 90% !important;
	}

	.product-media .product-image #image-main {
		max-height: 350px;
	}

	.block.block-related .page-title.block-title {
		margin-top: 30px;
	}

	.sort-by,
	.limiter {
		margin-bottom: 10px;
	}

	.cart-col .skip-links .header-minicart > a {
		position: relative;
		height: 50px;
		line-height: 50px;
	}
	.header-minicart > a > span.badge{
		padding: 3px 6px;
		font-weight: 600;
		vertical-align: middle;
		margin-top: -5px;
	}

	.cart-col a:hover,
	.cart-col a:active,
	.cart-col a:focus {
		text-decoration: none;
	}

	.cart-col .skip-links .header-nav {
		border-right: 0;
	}

	#topbar {
		display: none;
	}

	.logo-col {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
		-webkit-align-content: center;
		align-content: center;
		-webkit-box-align: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		-ms-flex-line-pack: center;
	}

	.page-header > .row {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-align-items: center;
		align-items: center;

		-webkit-box-align: center;
		-moz-box-align: center;
		-ms-flex-align: center;
	}

	#header-cart .btn-remove i.fa.fa-window-close {
		font-size: 1em;
	}

	.opc-login.pull-right {
		float: none !important;
		margin-bottom: 20px;
	}

	.cart-btn-group-mobile {
		margin: 15px;
	}

	#header .logo-col .logo {
		display: block;
		text-align: center;
	}

	.breadcrumb {
		margin-top: 20px;
	}

	.breadcrumb {
		margin-top: 20px;
	}

	ul.list-inline.top-links {
		margin-bottom: 15px;
		text-align: center;
	}

	.top-header.text-right {
		text-align: center;
	}

	#footer a.footer-logo {
		display: block;
		margin-bottom: 15px;
	}

	.add-to-cart-panel .input-group.qty-wrapper {
		margin-bottom: 10px;
	}

	.add-to-cart-panel .input-group.input-group-lg.qty-wrapper .input-group-addon {
		height: inherit;
		padding: 6px 12px;
		font-size: 14px;
		line-height: 1;
	}

	.add-to-cart-panel .add-to-cart-buttons button.btn.btn-success.btn-lg.btn-block {
		padding: 6px 12px;
		font-size: 14px;
		line-height: 1.42857143;
	}

	.add-to-cart-panel .input-group.input-group-lg.qty-wrapper .form-control {
		height: 34px;
		padding: 6px 12px;
		padding: 6px 12px;
		font-size: 14px;
		font-size: 14px;
		line-height: 1.42857143;
	}

	#footer a.footer-logo {
		display: block;
		margin-bottom: 15px;
	}

	.product-options-bottom .input-group.qty-wrapper {
		margin-bottom: 10px;
	}

	.btn-group.btn-group-responsive > .btn {
		display: block;
		width: 100%;
	}

	/* fixing margin */

	.btn-group.btn-group-responsive .btn + .btn {
		margin-left: 0;
	}

	.header-minicart > a {
		display: block;
	}

	.header-search {
		border-right: 0;
	}
	
	.navbar-default {
		width: 100%;
		padding: 0!important;
		background-color: inherit;
		border: 1px solid #CCCCCC;
		border-top: 0;
	}

	#header-cart.skip-active {
		position: absolute;
		top: 100%;
		right: 15px;
		z-index: 200;
		display: block;
		width: calc(100% - 30px);
		min-width: inherit;
		margin-top: 2px;
		border: solid 1px #CCCCCC;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}

	.navbar-default.skip-content.skip-active {
		border: 1px solid #CCCCCC;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}

	.navbar-default {
		float: none;
		min-height: auto;
		padding: 5px 0;
		border: 0;
	}

	.nav-primary a.level0,
	.nav-primary a {
		line-height: 35px;
	}

	.nav-primary li.level0 ul {
		display: none;
	}

	.nav-primary li.level0 li {
		padding: 0 0 0 25px;
	}

	.nav-primary li.level1 a {
		padding: 0 15px 0 25px;
	}

	.nav-primary li.menu-active > a,
	.nav-primary li.sub-menu-active > a {
		color: #333333;
	}

	a.skip-link.skip-nav .label {
		display: none;
	}

	.skip-nav span.icon:after {
		display: block;
		font-family: 'Font Awesome 5 Pro';
		font-size: 25px;
		line-height: 32px;
		color: #333333;
		content: "\f0c9";
	}

	div#header-nav .container {
		width: 100%;
	}
	.m-f-product{
		padding: 10px 20px;
	}
	.sidebar-products .product-image{
		display: block;
	}
	.nav-tabs > li > a{
		font-size: 16px;
		line-height: 48px;
		padding-right: 30px;
		padding-left: 30px;
	}
}

@media only screen and (max-width: 576px) {
	#header .logo-col .logo{
		margin: 20px 0;
		width: 100%;
	}
	.collateral-tabs .tab-content h2{
		font-size: 1.5rem;
	}
	.collateral-tabs .data-table th.label,
	.collateral-tabs .data-table td.data{
		float: left;
		width: 100%!important;
	}
}
@media only screen and (max-width: 480px) {
	div#n2-ss-1 .n2-ss-layer .n2-font-b3345663dc8b9cef8e1c2d7598218f7d-hover{
		font-size: 140%;
	}
	div#n2-ss-1 .n2-ss-layer .n2-font-f7cfdde6001a78b89d1f32639ff1ac5c-hover{
		font-size: 110%;
	}
	.nav-tabs > li > a {
	    font-size: 14px;
	    line-height: 36px;
	    padding-right: 15px;
	    padding-left: 15px;
	}
	.form-subscribe-header h3{
		font-size: 1.2rem;
	}
	.btn.btn-primary.link-facebook, 
	a.btn.btn-primary.link-facebook:focus{
		font-size: 0.775rem;
	}
	.add-to-links .btn{
		font-size: .7rem;
	}
}
.salecto-label.mb-return{
	display: none!important;
}



*{ margin: 0; padding: 0;  box-sizing: border-box; }

figure{ margin: 0 }
address{ margin: 0 }

body{ font-size: 16px; background-color: #ffffff; color: #101010; }
img{ max-width: 100%; height: auto; }
iframe{ max-width: 100%; }
a{ transition: all 300ms ease-in-out; color: #101010; }
a:hover{color: #FFC11A;}

.container {
max-width: 1420px;
width: 100%;
}
body:not(.cms-home) #content { padding:45px 0 50px; }
.fa {font-family: 'Font Awesome 5 Pro';}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {font-weight: bold; font-style: italic; text-transform: uppercase;}
h1, .h1 {font-size: 33px; }
h2, .h2 {font-size: 28px; }
h3, .h3 {font-size: 26px; }
h4, .h4 {font-size: 24px; }
h5, .h5 {font-size: 21px; }
h6, .h6 {font-size: 18px; } 
.page-title {font-weight: bold; font-style: italic; text-transform: uppercase;}
.block-title, .card-title h1 {font-weight: bold; font-style: italic; text-transform: uppercase;}
.page-title h1{ font-size: 38px; }

.cms-page-view #content ul,.cms-page-view #content ol{ list-style: inherit; padding-left: 30px; }
iframe{ max-width: 100%; }


#header-search input::-webkit-input-placeholder { opacity: 1; color: #ffffff;}
#header-search input::-moz-placeholder { opacity: 1; color: #ffffff;}
#header-search input:-ms-input-placeholder { opacity: 1; color: #ffffff;}
#header-search input:-moz-placeholder { opacity: 1; color: #ffffff;}

.validation-advice {background: #333;}
.validation-advice::before{border-bottom-color:#333;}

.btn{border-radius: 3px;}
.btn > i, .btn > em {margin-left: 12px;}
.btn:not(.btn-sm) {text-transform: uppercase; padding: 0.7rem 0.50rem; font-weight: bold; font-style: italic;}
.btn-primary {background-color: #FFC11A; border-color: #FFC11A; color: #000000;}
.btn-primary:hover, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active {background-color: #C49514; border-color: #C49514; color: #000000; }
.btn-secondary {background-color: #F4F4F4; border-color: #F4F4F4; color: #363636;}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:not(:disabled):not(.disabled):active {background-color: #B9B9B9; border-color: #B9B9B9; color: #363636; }
.secondry-title {font-size: 34px; margin: 0 0 25px;}
input.form-control {height: 48px; border-radius: 0;}
select.form-control, .form-group select {height: 48px; border-radius: 0;}
input, button, select, optgroup, textarea {font-family: 'Roboto Condensed', sans-serif !important;}
.custom-control-input:checked ~ .custom-control-label::before {border-color: #FFC11A; background-color: #FFC11A;}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after{     content: "\f00c"; font-family: 'Font Awesome 5 Pro'; top: 0 }
.custom-radio .custom-control-input:checked~.custom-control-label::after{     content: ""; top: 7px;left: -21px; ; background-color:#000; border-radius: 50%; width: 10px; height: 10px;}
.card {border-radius: 0; border-color: #D0D0D0;}

.owl-carousel .item {height: 100%;}
.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel .owl-nav button.owl-next { border: none; background: inherit; color: #101010; font-size: 26px; margin-top: -24px; top: 50%;}
.owl-carousel .owl-nav button.owl-prev{ left: -85px; }
.owl-carousel .owl-nav button.owl-next{ right: -85px; }
.owl-carousel .owl-nav button.owl-next:hover, 
.owl-carousel .owl-nav button.owl-prev:hover{ background-color: transparent; color: #FFC11A; }
.owl-carousel .owl-nav .owl-prev>span, 
.owl-carousel .owl-nav .owl-next>span{ display: none; }
.owl-carousel .owl-nav .owl-prev:after {content: "\f053"; font-family: 'Font Awesome 5 pro'; font-weight: 300;}
.owl-carousel .owl-nav .owl-next:after { content: "\f054";font-family: 'Font Awesome 5 pro'; font-weight: 300;}
.owl-carousel .owl-dots button.owl-dot {background: #AAA; height: 3px; width: 33px;}
.owl-carousel .owl-dots button.owl-dot:hover, .owl-carousel .owl-dots button.owl-dot.active { background-color: #FFC11A;}

.cms-personale img{ height: auto; }
.catalogsearch-advanced-index .form-inline .input-group {display: flex; align-items: center;}
.catalogsearch-advanced-index .form-inline .input-group input { margin: 0 10px;}	

.slick-slider .slick-prev:after {content: "\f106"; position: absolute; left: 50%; font-family: 'Font Awesome 5 Pro'; font-weight: 300; font-size: 24px; top: 0; line-height: 20px; margin-left: -5px; color: #000;}
.slick-slider .slick-next:after {content: "\f107"; position: absolute; left: 50%; font-family: 'Font Awesome 5 Pro'; font-weight: 300; font-size: 24px; top: 0; line-height: 20px; margin-left: -5px; color: #000;}
.slick-slider .slick-arrow:hover:after{color: #222;}
.slick-slider .slick-prev {top: 0;}
.slick-slider .slick-next {bottom: 0px;}
.slick-slider .slick-arrow {position: absolute; width: 100%; left: 0; z-index: 9; border: 0; background: none; font-size: 0; height: 20px;cursor: pointer;}

/*Header*/
#header { background-color: #ffffff;  position: sticky;  top: 0; z-index: 999;}
.sticky .salecto-topmenu .salecto-label { padding: 12px 10px;}
.sticky .search-col-out {top: 8px;}
.sticky .logo {width: 230px;}
.main-header { padding: 0 0 0; height: 45px; background: #000;}
.bg-usp-top {background: #BF0006; color: #ffffff; font-size: 16px; padding: 15px 0 5px;}
.bg-usp-top a {color: #ffffff; text-decoration: underline;}
.bg-usp-top em {margin-right: 8px;color: #FFC11A;font-size: 14px;}
.bg-usp-top .container {padding-left: 290px;}
.header-usp-block ul {display: flex;justify-content: space-around;flex-wrap: wrap;}
.header-usp-block ul li {color: #FFFFFF;font-size: 12px;padding: 0 8px;font-weight: 500;display: flex;align-items: center;}
.header-usp-block ul li strong {margin-right: 3px;}
.top-right-link em {font-size: 21px; vertical-align: top;}
.logo {position: relative; z-index: 9;}
#header-account {padding: 10px 0;}
#header-account a {color: #000000;}
#header-account a:hover {color: #FFC11A;}
.right-links {display: flex; justify-content: flex-end; align-items: center; height: 100%;}
.right-links .skip-account { color: #fff; text-transform: capitalize; font-size: 14px; padding: 0; line-height: 26px; border: 0; font-weight: normal; font-style: inherit; display: flex; align-items: center;}
.right-links .skip-account img {margin-right: 12px;}
.top-right-link {display: flex; height: 45px; justify-content: center; align-items: center;}
.top-right-link li {display: flex; height: 100%; border-left: 1px solid #313131; color: #fff; padding: 0 17px; align-items: center; font-size: 14px;}
.top-right-link li a {color: #fff; display: block;}
.cart-col a:hover {text-decoration: none; color: #FFC11A;}
.top-header.text-right {height: 45px; display: flex; align-items: center; padding: 0 17px; border-left: 1px solid #313131; border-right: 1px solid #313131; margin-right: 17px;}
.account-cart-wrapper .btn .fa {color: #FFC11A; font-size: 12px; margin-left: 5px; font-weight: 300;}
.account-cart-wrapper .btn:focus {border: 0; box-shadow: none;}
.head-link span.badge-count {position: absolute; right: -10px; top: -7px; color: #000; height: 15px; width: 15px; background-color: #FFC11A; border-radius: 20px; line-height: 16px; text-align: center; font-size: 12px;}
.head-link > span {text-align: center; font-size: 14px; }
.head-link > span strong{font-weight: normal;}
.right-links > .head-link {margin-right: 35px;}
.head-link .head-link:hover {text-decoration: none;}
.header-minicart.cart-link > a {position: relative;}
.cart-item-body .item-price .price {color: #080332; }
.cart-item-body .item-name a:hover, .cart-item-body .remove:hover {color: #BF0006;}
.head-link i {font-size: 18px; color: #ffffff; }
.head-link:hover, .head-link:focus {text-decoration: none;}
.main-header .top-right-head {position: relative; padding-right: 5px; display: inline-block; vertical-align: top;}
.menu-header { position: relative; background: #000; border-top: 1px solid #313131;}
.menu-header::after { content: ""; height: 9px; width: 100%; background: linear-gradient(90deg, #EBEBEB 0%, #636565 26.78%, #EFEFEF 67.27%, #595B5B 100%); box-shadow: 0 3px 6px 0 rgba(0,0,0,0.16); display: block;
border-top-left-radius: 0 0;
border-top-right-radius: 0 0; 
border-bottom-right-radius: 100% 10px;
border-bottom-left-radius: 100% 10px;
position: absolute;
top: 100%;
}

.timer-col p{ margin-bottom: 0; color: #fff; font-size: 13px; display: block !important; text-align: center !important;  }

.salecto-menumanager .salecto-topmenu{position: static !important;}
.salecto-menumanager #submenu-1.salecto-submenu { width: 100% !important;}
.menu-header .container {padding-left: 305px; position: relative;}
.menu-out { width: 100%; display: flex; justify-content: space-between; }
.header-usp-block {font-size: 13px; text-transform: uppercase; font-weight: bold; font-style: italic;}
.search_mini_form-container .btn > i {margin: 0;}
.search-col {width: 100%; max-width: 625px; margin: 0 auto;}
.search-autocomplete {background: #fff; z-index: 991; top: calc(100% + 10px) !important; width: calc(100% - 60px) !important; left: 30px !important; padding: 5px 15px; font-size: 16px;}
.search_mini_form input[type="search"] {border: none;color: #000000; background-color: transparent;}
.search_mini_form input[type="search"]:focus, .search_mini_form button:focus {outline: none; box-shadow: none; border: none;}
.search_mini_form button:hover{color: #BF0006;}
.search_mini_form button { border: none; background-color: transparent; font-size: 30px; color: #000000; padding: 0; width: 38px;}
.search_mini_form {height: 57px; display: flex;  align-items: center;  background: #f3f3f3; padding: 0 24px; border-radius: 31px;}
#search_mini_form .input-group {height: 38px; width: 300px; padding: 0; border-radius: 0; border-bottom: 1px solid #fff;}
#search_mini_form button.btn { border: 0; background: 0 0; width: 25px; padding: 0; color: #fff; font-size: 23px; cursor: auto !important;}
#search_mini_form input#search {height: 100%; border: 0; background: transparent; padding-left: 0; font-size: 14px; color: #fff;}
#search_mini_form button.btn:focus, #search_mini_form input#search:focus {border: 0; box-shadow: none; outline: none;}
.search-autocomplete {padding: 0;} 
.search-autocomplete ul { padding: 10px; border: 1px solid #dddddd;}
.header-minicart > a > span.badge-cart {background: transparent; color: #080332; font-size: 16px; padding: 0; vertical-align: middle;}
.mainMenu { margin: 0; width: 100%;}
.main-header .main-menu {display: flex; align-items: center; padding: 0 30px;}
.salecto-topmenu .salecto-label {font-size: 22px; color: #fff; padding: 23px 10px; font-weight: bold; display: flex; align-items: center; text-transform: uppercase; font-style: italic;}

.salecto-topmenu .salecto-level0.active .salecto-label, .salecto-topmenu .salecto-level0:hover .salecto-label, .salecto-topmenu .salecto-level0:active .salecto-label, .salecto-topmenu .salecto-level0:focus .salecto-label {background: transparent !important; font-weight: bold !important; color: #FFC11A !important;}
.main-menu .salecto-menumanager .desktop-nav-menu > a.active:hover { color:#FFC11A !important;}
.salecto-topmenu a:not([href]):not([tabindex]) {color: #fff;}
.salecto-menumanager .salecto-topmenu {justify-content: space-between; padding-right: 320px;}
.salecto-topmenu .salecto-label > span {color: #00bfea;}
.search-col-out{ position: absolute; right: 15px; top: 20px; z-index: 5; }

.salecto-submenu{ top:100% !important; width: calc(100% - 30px) !important; left: 15px !important;  }

/*
.salecto-topmenu .salecto-label:not(.anchor_text):after {content: "\f107"; font-family: 'Font Awesome 5 Pro'; font-weight: 300; font-size: 15px; vertical-align: middle; margin-left: 5px;}
*/
.salecto-topmenu .salecto-label .salecto-iconmega {height: auto; width: auto; top: auto; margin-right: 20px;}
.salecto-topmenu .salecto-submenu a.maincategory{ font-size: 18px; }

.menu-product-slider .item .card { padding: 15px;}
.menu-product-slider .card-img-top {height: 200px;}
.menu-product-slider .product-info .card-title { font-size: 18px;}
.menu-product-slider .regular-price, .menu-product-slider .special-price { font-size: 23px;}
.menu-product-slider .price-box .old-price span.price, .menu-product-slider .price-box .old-price span.price:hover {font-size: 18px; }

.menu-product-slider.owl-carousel .owl-nav button.owl-next {right: -15px;}
.menu-product-slider.owl-carousel .owl-nav button.owl-prev {left: -15px;}

.emaerket-link { width: 100px; margin-right: 20px; margin-top: 3px;}

/*home slider*/
.home-page-slider .banner-content { width: 100%; z-index: 1}
.home-page-slider .item img {min-height: 300px; object-fit: cover;}
.home-page-slider .banner-content .heading {line-height: 55px; text-transform: uppercase; font-weight: bold; margin: 0; text-align: left; font-style: italic;}
.home-page-slider .banner-content .text {display: block; margin: 15px 0 20px; position: relative; font-weight: bold; text-align: left;}
.home-page-slider .banner-content .btn { font-size: 22px; font-weight: bold; padding: 12px 10px; font-style: italic; margin: 0 0 50px; width: auto;}
.home-page-slider a.banner_main_img {width: 100%;}
.trustpilot-top-block {padding: 25px 0;}

/*home categories*/
.home-page-categories {padding-top: 20px; margin-bottom: 45px;}
.cat-row {margin-right: -10px; margin-left: -10px;}
.cat-row .item { padding-left: 10px; padding-right: 10px; margin-bottom: 20px;}
.categorier-block .cat-link {position: relative;}
.categorier-block .cap-title { position: absolute; left: 0; bottom: 50px; width: 100%; text-align: center; color: #363636; font-size: 23px;}


/*home product*/
.home-page-tabs {padding-top: 45px;}
.secondary-title {font-size: 50px; margin: 0 0 45px; color: #000; font-weight: bold; text-transform: uppercase; font-style: italic;}
.home-page-tabs .secondary-title { text-align: center; background: url("http://meguiar.stag1.salecto.dk/skin/frontend/salecto/meguiars/images/caricon.png") no-repeat center center; padding: 30px 0 10px;}
.card-body.product-info {display: flex; flex-wrap: wrap; padding: 1.25rem 0 15px; position: relative;}
.card-body.product-info .configurable-swatch-list {position: absolute; left: 0; right: 0; text-align: center; top: -40px; padding: 11px; background: rgba(0,0,0,0.1);}
.product-info .card-title, .product-list .product-info .card-title {font-size: 22px; width: 100%; text-align: left; color: #101010; margin-bottom: 0; line-height: 25px; font-weight: 700; display: flex; flex-direction: column; justify-content: space-between; height: 73%;}
.product-info .card-title a, .product-list .product-info .card-title a {color: #101010; }
.product-info .price-box {margin-top: auto !important; display: flex; align-items: flex-end; flex-wrap: wrap; width: 100%; justify-content: flex-start; /*height: 36%;*/}
.card-img-top {height: 250px;}
.flexprice-box {font-size: 12px; color: #BF0006; width: 100%; text-align: center; font-weight: bold;}
.price-box .price-label {display: none;}
.old-price {color: #AAA; order: 1; margin-right: 5px;}
.price-box .old-price span.price, .price-box .old-price span.price:hover {font-size: 23px; font-weight: normal; text-transform: uppercase; line-height: 33px; color: #636363 !important;}
.special-price {font-size: 28px; font-weight: bold; text-transform: uppercase; line-height: 33px; margin-right: 10px; }
.regular-price {font-size: 28px; font-weight: bold; text-transform: uppercase; line-height: 33px;}
.price-box .price {font-size: 28px; font-weight: bold; text-transform: uppercase; line-height: 33px;}
.product-info .price-box > .label.label-default {width: 55px;}
.product-info .price-box > .price {width: calc(100% - 55px);}
.product-info .price-box .regular-price {width: 100%; order: 2;}
.home-page-tabs .item .card, .product-list .item .card {border: 0; width: 100%; background: transparent;}
.home-page-tabs .item .card-footer, .product-list .item .card-footer {background: transparent; border: 0; text-align: center; padding: 0 0 10px; display: flex; margin-top: 10px;}
.home-page-tabs .item .card-footer .btn{ margin: 0; font-size: 20px;}
.product-list .item .card-footer .btn { margin: 0; font-size: 14px;}
.color-link {font-size: 10px; color: #323232; text-decoration: underline; margin-bottom: 12px; display: none;}
.card-footer .add-to-cart-form {width: 100%; display: flex;}
.card-footer .add-to-cart-form .qty-wrapper {min-width: 58px; margin-right: 15px; width: 58px; height: 58px;}
.card-footer .add-to-cart-form .qty-wrapper .qty-box {height: 100%; width: 100%; border-radius: 3px; background-color: #F4F4F4; padding: 0; border: 0; font-size: 22px; color: #101010;}

.pro-label-out {display: flex; justify-content: flex-start; position: absolute; width: 100%; top: 0; left: 0; padding: 10px;}
.pro-label-out .badge {position: static; height: auto; width: auto; border-radius: 0 !important; line-height: 25px; padding: 0px 10px; margin-right: 5px; font-size: 12px; text-transform: uppercase; background: #BF0006 !important; color: #ffffff !important;}
.pro-label-out .badge.discount-text {background: #f4f4f4 !important; color: #000000 !important; font-weight: normal;}
.item .label-nyt, .product-image-gallery .label-nyt {height: 37px; border-radius: 0 !important; line-height: 17px; padding: 5px 10px; background: transparent url('http://meguiar.stag1.salecto.dk/skin/frontend/salecto/meguiars/images/nyt.png') no-repeat center center !important; font-weight: normal; font-size: 0; text-transform: uppercase; z-index: 1; width: 50px; position: absolute; top: 10px; left: 70px; }
.item .label-new, .product-image-gallery .label-new {height: 37px; border-radius: 0 !important; line-height: 17px; padding: 5px 10px; background: transparent url('http://meguiar.stag1.salecto.dk/skin/frontend/salecto/meguiars/images/ny.png') no-repeat center center !important; font-weight: normal; font-size: 0; text-transform: uppercase; z-index: 1; width: 50px; }
.item .label-sale, .product-image-gallery .label-sale {height: 37px; border-radius: 0 !important; line-height: 17px; padding: 5px 10px; background: transparent url('http://meguiar.stag1.salecto.dk/skin/frontend/salecto/meguiars/images/tilbud.png') no-repeat center center !important; font-weight: normal; font-size: 0; text-transform: uppercase; z-index: 1; width: 91px; }

.home-product-slider {margin-bottom: 50px;}
.home-product-slider.owl-carousel .owl-dots { position: static; margin: 30px 0 20px;}

.product-sku {font-size: 18px; color: #636363; font-weight: normal; margin-top: auto; width: 100%; display: flex; margin-bottom: 15px;}
.product-info .card-title a{margin-bottom: 10px; display: flex;} 


/*video gallery*/
.video-gallery-block .box-out {position:relative; display:block; width:100%}
.video-gallery-block .box-out .play-button { position:absolute; left:0; top:0; height:100%; width:100%; display:flex; align-items:center; justify-content:center; flex-direction: column;}
.play-button .button { height:86px; width:86px; margin-bottom: 30px; border:1px solid rgba(255,255,255,0.3); border-radius:50%; display:flex; align-items:center; justify-content:center; background:0 0 !important}
.play-button .button:hover { background:0 0 !important}
.video-gallery-block img {width: 100%; min-height: 250px; object-fit: cover;}
.play-button .button em:before { font-size: 28px; color: #fff; margin-left: 3px;}
.play-button .button em { font-size:0}
.video-title {display: block; font-size: 50px; color: #fff; font-weight: bold; text-transform: uppercase; font-style: italic; line-height: 58px; margin: 0 0 20px;}

/*Home Services*/
.home-page-services {background: #FFC11A; padding: 0 0 20px;}
.ser-item {display: flex; align-items: center;}
.ser-item .ser-text { padding-left: 18px; width: calc(100% - 137px);}
.ser-text h3 { font-size: 22px; font-weight: bold; line-height: 25px; margin: 0; text-transform: none; font-style: normal;}
.ser-item .ser-text p {font-size: 16px; line-height: 19px; margin: 8px 0 10px; font-style: italic;}

/*Home Guides*/
.home-guides {background: #000; padding: 60px 0 35px;}
.guides-title .secondary-title {margin: 0; color: #fff;}
.guides-row {display: flex; flex-wrap: wrap; margin: 0 -7.5px;}
.guide-col {padding: 0 7.5px; display: flex; flex-direction: column; width: 20%; margin-bottom: 30px;} 
.guide-col img { width: 100%;}
.guide-title {color: #FFC11A; font-weight: bold; line-height: 30px; margin: 20px 0 0; text-transform: none; font-style: normal;}
.guides-title a {color: #FFC11A;} 
.guides-title a:hover{color: #fff; text-decoration: none;} 
.guide-title a {color: #FFC11A;} 
.guide-title a:hover {color: #fff; text-decoration: none;}
.guides-title {margin: 0 0 50px;}
.guides-block .btn {font-size: 22px; padding: .7rem 20px;}

/*Blog*/
.home-blog-block {background: #000; padding: 65px 0 50px; border-top: 1px solid #313131;}
.home-blog .secondary-title, .home-blog .secondary-title a { color: #fff;}
.home-blog .secondary-title a:hover {text-decoration: none; color: #FFC11A;}
.home-blog .col-12 {margin-bottom: 0; padding-bottom: 0;}
.home-blog .item {border: 0;}

.post-thumbnail.images-placeholder{ height: 250px; background-size:cover; background-repeat: no-repeat; background-position: center; }
.post-thumbnail.images-placeholder .img-background{ display: none; }

.home-blog .blog-content {padding: 25px 0 25px; line-height: 23px; color: #ffffff;}
.home-blog .blog-title {font-size: 25px; color: #fff; line-height: 29px; font-weight: bold; text-transform: none; font-style: normal;}
.home-blog .blog-title a{color: #fff;}
.home-blog .blog-content p {font-size: 16px; color: #fff; margin-bottom: 15px; line-height: 23px;}
.home-blog .blog-content .more-link a{font-size: 15px; color: #000;  font-weight: 600;}
.view-blog {text-transform: uppercase; text-decoration: underline; color: #fff; font-style: italic;}
.home-blog .blog-content a:hover{ color:#FFC11A; }
.home-blog .blog-author {font-size: 13px; color: #FFC11A; margin-bottom: 8px; width: 100%;}
.more-link {margin-top: 10px;}
.blog-post-view .post-image {margin-bottom: 25px;}
.blog-post-view .post-image img {width: auto;}
.cat-btn {margin-left: -15px; margin-right: -15px; margin-bottom: 15px; display: flex; flex-wrap: wrap; align-items: center;}
.cat-btn li { margin: 15px; width: calc(25% - 30px); text-align: center; background-color: #000000; font-size: 21px; line-height: 32px; color: #ffffff; height: 62px; display: flex; justify-content: center; align-items: center; font-weight: bold; font-style: italic; text-transform: uppercase; border-radius: 3px;}
.cat-btn li a {width: 100%; height: 100%; align-items: center; display: flex; justify-content: center; color: #ffffff;}
.cat-btn li.active, .cat-btn li a:hover {background-color: #FFC11A; color: #000000;}
.cat-btn li.active a {color: #ffffff;}
.cat-btn li a:hover {text-decoration: none;}
.secondry-title.legend {margin: 0 0 15px;}

.blog-index-index .home-blog .blog-title a, .blog-cat-view .home-blog .blog-title a {color: #101010;}
.blog-index-index .home-blog .blog-title a:hover, .blog-cat-view .home-blog .blog-title a:hover {color: #FFC11A;}
.blog-index-index .home-blog .blog-author, .blog-cat-view .home-blog .blog-author {color: #BF0006;}
.blog-index-index .home-blog .blog-content p, .blog-cat-view .home-blog .blog-content p {color: #101010;}
.blog-index-index .view-blog, .blog-cat-view .view-blog {color: #101010;}
.blog-index-index .view-blog:hover, .blog-cat-view .view-blog:hover {color: #FFC11A;}
.postContent {font-size: 16px;}
.commentContent {font-size: 14px;}
.commentDetails {font-size: 14px;}

.blog-post-view .commentWrapper {border: 1px solid #F4F4F4; padding: 15px; margin: 0 0 15px; background: #f9f9f9;}
.blog-post-view .commentWrapper .commentContent {margin-bottom: 15px;}
.blog-post-view .commentUserDetails span { color: #000000;}


/*Instagram*/	
.home-instagram {padding: 65px 0; background: #000; border-top: 1px solid #313131;}
.home-instagram .secondary-title {color: #fff; margin: 0 0 30px;}
.home-instagram img {width: 100%;}



/*Footer*/
#footer{margin: 0;}
.footer-top {padding: 80px 0 50px; background-color: #131313;}
.social-media a {color: #000 !important; text-align: center; font-size: 25px; display: flex; height: 48px; margin: 0 15px 0 0; justify-content: center; align-items: center; background: #FFC11A; border-radius: 0; width: 48px; line-height: 45px;}
.social-media a:hover {background-color: #C49514; }
.footer-col .social-media { display: flex; flex-wrap: wrap; justify-content: flex-start; }
.footer-col a:hover { color: #FFC11A; text-decoration: none;}
.footer-title {font-size: 22px; color: #ffffff; padding-bottom: 0; margin-bottom: 30px; font-weight: bold; font-style: italic;}
.footer-botom { padding: 30px 0; margin: 0; background: #000;}
.footer-col {margin: 0 0 40px;}
.footer-col p {line-height: 25px; margin: 0;}
.footer-col li {line-height: 25px;}
.footer-col li > span { padding-right: 10px; min-width: 100px; display: inline-block;}
.footer-col li, .footer-col a, .footer-col p {color: #ffffff;}
.scrollToTop {font-size: 13px; color: #ffffff; background: #000000; position: relative; width: auto; border-radius: 0; left: auto; right: auto; bottom: auto;}
.footer-content h4 {font-size: 21px;}
.footer-content .container {max-width: 1140px; }
.copyRight {font-size: 13px; color: #808080; font-weight: bold;}

.footer-map #map_canvas { margin: 0; height: 225px;}

/*subscribe newsletter*/
.newsletter-bg .container {max-width: 1190px;}
.block-subscribe .input-box {display: flex; position: relative; max-width: 750px; margin: 0 auto;}
.block-subscribe .input-box .input-out {width: calc(100% - 140px); height: 60px; position: relative;}
.block-subscribe .input-box input {width: 100%; padding: 10px 25px; height: 100%;  color: #363636;  border: 0;  background: #ffffff; font-size: 18px;}
.btn-subscribe {min-width: 190px; background-color: #FFC11A; color: #000000; font-size: 22px; border-radius: 0;} 
.btn-subscribe:hover{color: #000000; background-color: #C49514;}
.newsletter-bg {background-color: #000; padding: 75px 0 130px;}
.newsletter .block-title {text-align: center; margin: 0 0 60px;}
.block-subscribe .block-title h4 {margin: 0 0 8px; font-size: 50px; line-height: 58px; color: #fff; font-weight: bold; text-transform: uppercase; font-style: italic;}
.block-subscribe .block-title p {font-size: 27px; line-height: 32px; color: #fff; font-weight: bold; margin: 0; text-transform: none; font-style: normal;}

/*sitemap*/
.salectoseo-sitemap .sitempan {float: none; display: inline-block; margin-top: 15px;}
.salectoseo-sitemap .sitempan h2 { font-size: 28px; line-height: 40px; margin: 0 0 15px; padding: 0;}
.salectoseo-sitemap .siteul {margin: 0 0 15px;}
.salectoseo-sitemap .strongsm {font-size: 18px;}

/*category listing*/

.col-main .container > .page-title {margin-bottom: 25px; text-align: center;}
.col-main .container > .page-title h1 {text-transform: uppercase; margin: 0; font-size: 38px; text-align: left; }
.category-description {text-align: left; padding: 0px 120px 10px 0px; line-height: 19px;}
.sort-by-container {margin: 30px 0 40px !important;}
.toolbar .card-body {padding: 0;}
.card.toolbar {border: 0;}
.toolbar .sort-by, .toolbar .limiter {display: flex; align-items: center; flex: inherit !important; width: auto;}
.toolbar .sort-by label, .toolbar .limiter label {margin: 0 10px 0 0; white-space: nowrap; }
.toolbar .sorter select {border-color: #EEE; box-shadow: none; color: #A5A5A5; font-size: 14px; height: 23px; padding: 0 25px 0 10px;  background: url("http://meguiar.stag1.salecto.dk/skin/frontend/salecto/meguiars/images/down-aro.png") no-repeat right center;}
.toolbar .sort-by .input-group-append {display: none;}
.pagination .page-link {width: 25px; height: 25px; display: flex; justify-content: center; align-items: center; padding: 3px; border: 1px solid #eeeeee; color: #7f7f7f; font-size: 12px;}
.pagination .page-link:focus{box-shadow: none; }
.pagination .page-link i {font-size: 12px;}
.page-item.active .page-link {background-color: #BF0006; color: #ffffff; border-color: #BF0006; }
.card.toolbar .view {display: none;}
.page-title.category-title {margin-bottom: 25px;}
.category-second-description {margin-top: 60px !important;}
.bottom-toolbar .sorter .row { display: none;}
.toolbar .card-body .count-container .amount {display: none;}


.product-list .card-body.product-info {padding: 60px 0 15px;}
.product-list.row .product-image {height: 255px;  border: 1px solid #EEE;}
.product-list .product-image {height: 255px;}
.product-list .product-image img { max-height: 100%;}
.link-facebook {color: #4267B2;font-size: 26px; font-weight: bold; text-align: left;}



/*Product View*/
.product-view .product-media {padding-right: 30px;}
.product-view .product-details {padding-left: 30px;}
.product-view { margin-bottom: 30px; padding-bottom: 0;}
.product-media .product-image { width:calc(100% - 140px); margin-left:auto; order:2; padding-left:15px}
.product-media .more-views { width:133px; order:1; margin-top:0}
.product-media .more-views li.list-inline-item { width:133px; height:133px; border:1px solid #ffffff !important; margin-bottom:12px; padding: 10px;}
.product-media .more-views li.list-inline-item:hover { border-color: #BF0006 !important;}
.product-media .more-views li .img-thumbnail { display:block; height:100%; padding:0}
.product-media .more-views li.list-inline-item img { max-height:100%; max-width:100%}
.product-view .product-details .card {border: 0;}
.product-view .product-details .card-title h1 {font-size: 24px; color: #000; font-weight: 600; text-transform: uppercase;}
.add-to-cart-wrapper {margin-top: 25px;}
.add-to-cart-panel .price-box {display: flex; align-items: flex-end; margin-bottom: 15px;}
.add-to-cart-panel .price-box .special-price {font-size: 24px;}
.add-to-cart-panel .price-box .old-price {line-height: 18px;}
.add-to-cart-panel .price-box .price-label {display: none;}
.add-to-cart-buttons .btn { height: 57px; font-size: 28px; padding: 0 10px;}
.input-group.qty-wrapper > div .input-group-text {width: 100%; justify-content: center; border-radius: 0; background-color: #eeeeee; border-color: #eeeeee;}
.input-group.qty-wrapper input#qty {width: 30%; margin: 0 5%; height: 57px;}
.input-group.qty-wrapper > div {width: 30%;}
.add-to-cart-panel .price-box { font-size: 24px; font-weight: normal;}
.add-to-cart-panel .special-price span.price { color: #BF0006 !important;}
.add-to-cart-panel .price-box .regular-price { font-size: 24px;}
.product-collateral .toggle-tabs li.current span, .product-collateral .toggle-tabs li:hover span { color: #000000; background-color: #F4F4F4;}
.product-collateral .toggle-tabs li { padding: 0; display: inline-block; width: 50%; margin-bottom: 15px; text-align: center;}
.collateral-tabs {background: transparent; border: 0; padding: 10px 0;}
.collateral-tabs .label { font-weight: normal; width: 180px;}

.breadcrumb {background: transparent; padding: 0; margin: 40px 0 0; list-style: none !important;}
.breadcrumb li, .breadcrumb li a { font-size: 13px; color: #B9B9B9;}
.breadcrumb li, .breadcrumb li:last-child a { color: #000000;}
.breadcrumb-item + .breadcrumb-item::before {color: #B9B9B9;}

.product-media .owl-carousel .owl-nav button.owl-prev {left: 0;}
.product-media .owl-carousel .owl-nav button.owl-next {right: 0;}

.product-view .product-details .card .card-title {padding: 0 !important; margin: 0;}
.product-view .product-details .card.add-to-cart-panel .card-body {padding: 0; margin: 0 0 25px;}
.in-stock .label { color: #28a745;}
.out-of-stock .label { color: #ff0000;}
.availability .label {font-size: 17px; font-weight: 600;}
.availability .label:before {display: none !important; }
.swatch-attr .input-box {position: relative;}

.product-options .configurable-swatch-list li a {height: 52px; min-width: 52px; padding: 0 10px; border: 1px solid transparent; line-height: 50px;}
.product-options .configurable-swatch-list li.selected a {border-color: #e8e8e8;}
.color-option {display: flex; align-items: center; margin-bottom: 30px;}
.color-option #color_label {margin: 0 10px 0 0;}
.color-option #color_label .select-label { display: none;}
.block-related .page-title { margin: 0 0 40px !important;}
.product-view .product-details .product-options > .label.label-danger { display: none;}
.product-view .product-details .product-options .color-option { flex-direction: column; align-items: flex-start; padding-top: 15px; border-top: 1px solid #F4F4F4;}

/*Shopping cart*/
.product-cart-remove .btn-remove {padding: 5px 10px;}
.product-cart-actions .input-group-append .btn {font-weight: normal; text-transform: capitalize; }
.customer-account-login .new-users .buttons-set {margin-top: 15px;}
.custom-control-label {line-height: 24px;}
.opc-wrapper-opc .card-header h5 {margin: 0;}
.shipping-block .button { border: 0; padding: 2px 10px;}
.pacsoft-modal input {width: 100%; padding: 0 10px;}
label .required {display: inline-block;	}
.product-cart-remove .btn i { margin: 0;}


.cn_search_popup{ width:450px !important; left: inherit; right: 0;  }
.cn_search_popup_inner{ border:0; }
.cn_image > img{ border: 0; }
.cn_search_popup .cn_image{ width: 100px; }
.cn_search_popup .cn_right{ width:calc(100% - 100px) }
.cn_search_popup div.cn_element{ border:0; }

.cn_button_block{ display: table; width: 100%; padding: 5px 0; }
.cn_button_block .button{ border: 0; padding: 5px 12px; }
.cn_search_popup .price ,.cn_search_popup .price span{ font-size: 12px; font-style: italic;
    font-weight: bold; }

.cn_search_popup .price-box .old-price span.price,.cn_search_popup  .price-box .old-price span.price:hover{  font-size: 12px; font-style: italic;
    font-weight: bold; }

.info-locator .tag-content a.view-detail{ color: #BF0006; }
.btn-link.street-view,.btn-link.direction{ color: #BF0006; }
.storelocator-page .track{ background-color: #000; }
.storelocator-page .range-slider-label{ right: 0; left: inherit; }
.storelocator-page .search-type .button { border: 0;     text-transform: uppercase; padding: 0.7rem 0.75rem; font-weight: bold; font-style: italic; }
.info-locator .tag-store img, .gm-style img{ height: auto; width: auto; max-width: 100%; }
.info-locator .tag-store, .tag-store{ position: static; }
/*kontakt-fix*/
.kontakt-fix {position: fixed; right: 0; top: 40%; overflow: hidden; z-index: 9999; transition: all 300ms ease-in-out; box-shadow: 0 0 4px 0 rgba(255, 255, 255, 0.5); border-radius: 13px 0 0 13px; }
.kontakt-fix .fix-box { width: 75px; display: flex; align-items: center; background: #000000; height: 77px; color: #fff; transition: all 300ms ease-in-out;}
.kontakt-fix .fix-box.open{width: 210px;}
.kontakt-fix .fix-box .img {display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; width: 75px; min-width: 75px; font-size: 10px; font-weight: 500;}
.kontakt-fix .fix-box .img img {width: 40px;}
.kontakt-fix .fix-box a { height: 100%; display: flex; align-items: center; justify-content: center; padding: 15px; color: #fff; border-left: 1px solid #222; white-space: nowrap;}
.kontakt-fix .fix-box a:hover {text-decoration: none; background: rgba(245,245,245,0.2);}
.kontakt-fix .fix-box.open a {width: 100%;}


.product-image-gallery .gallery-image.visible{height: auto;}

.cms-home #footer .newsletter-bg{ display: none; }
#footer .newsletter-bg{ border-top: 1px solid #313131 }

.main-popup {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.main-popup .success_message {
    display: flex;
    order: 2;
}
.more_success_message_block {
    padding: 5px 0;
    padding-right: 10px;
}
.more_success_message_block p {
  margin-bottom: 0;
}

/* two-column-wrapper start */
.two-column-wrapper {
    padding: 20px 0;
  }
  .two-column-wrapper .container {
    max-width: 1260px;
  }
  .two-column-wrapper .title {
    border-bottom: 1px solid #525252;
    margin-bottom: 1.5rem;
  }
  .two-column-wrapper .title h1 {
    font-size: 42px;
  }
  .left-column-wrap h6 {
    color: #000;
  }
  .left-column-wrap ul {
    list-style: none;
    padding: 0;
  }
  .left-column-wrap ul li a {
    padding: 2px 0;
    display: block;
  }
  .left-column-wrap ul li a:hover {
    text-decoration: none; 
  }
  .right-column-wrap .row {
    margin-bottom: 20px;
  }
  .right-column-wrap h3 {
    font-weight: bold;
    margin-bottom: 1rem;
  }
  .right-column-wrap .content-box h4 {
    font-weight: 600;
  }
  .right-column-wrap .content-box p {
    margin-bottom: 5px;
    max-width: 520px;
    line-height: 1.5em;
  }
  .right-column-wrap .content-box a {
    font-weight: 600;
  }
  .right-column-wrap .content-box a:hover {
    text-decoration: none;
  }
  /* two-column-wrapper end */

/*.locator-content #open_hour{ display: none; }*/
.locator-content .form-information{display: none;}
.box-input .btn-go-direction {background-color: #FFC11A !important; border: 0; border-radius: 0;}
.box-input .btn-go-direction:hover{border-radius: 0 !important;}

.cms-coating{ background-color: #000; }
.cms-coating #breadcrumbs{ display: none; }
body.cms-coating #content{ padding-top: 0 }
body.cms-coating #content .main-container{ max-width: 100%; padding: 0 }

.coating-banner{ min-height: 530px; background-position: center; background-size: cover; background-repeat: no-repeat; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
.coating-banner.images-placeholder > .img-background{ display: none; }
.coating-banner-content{ display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
.coating-banner-title{ color: #fff;  padding: 0 80px; }
.coating-banner-content .box-content1 span.after-img{display: inline-block; vertical-align: top; margin-top: 151px; margin-right: 30px; position: relative; }
.coating-banner-content .box-content1 span.after-img:after{ content: ""; background: url(http://meguiar.stag1.salecto.dk/skin/frontend/salecto/meguiars/images/coating_banner-arrow2.svg) no-repeat left top; width: 50px; height: 84px; display:block;     position: absolute; top: -80px; right: 0; }
.coating-banner-content .box-content2 span.before-img{ display: inline-block; vertical-align: top; margin-top: 151px; margin-left: 30px; position: relative; }
.coating-banner-content .box-content2 span.before-img:after{ content: ""; background: url(http://meguiar.stag1.salecto.dk/skin/frontend/salecto/meguiars/images/coating_banner-arrow1.svg) no-repeat left top; width: 84px; height: 50px; display:block;     position: absolute; top: -80px; left: -60px; }

.box-content .before-img,.box-content .after-img{ position: relative; display: inline-block; vertical-align: top;  }
.box-content .box-title{ position: absolute; bottom: 10px; left: 10px; font-size: 20px; color: #FFFFFF; font-style: italic; text-transform: uppercase; font-weight: bold; }

.coating-about{  padding: 100px 0; border-bottom: 1px solid #313131; }
.coating-card{margin-bottom: 25px; display: block;} 
.coating-card .images-icon{ margin-bottom: 25px; display: block;  }
.coating-card .images-icon img{ max-height: 235px; object-fit: cover; }
.coating-card .title{ font-size: 25px; text-align: center; display: block; color: #FFC11A; text-transform: uppercase; font-weight: bold; font-style: italic; }
.coating-card:hover{ text-decoration: none;   }

.coating-brochure{ padding: 80px 0 80px; border-bottom: 1px solid #313131; }
.coating-brochure .secondary-title{ color: #fff; }

.facebook_block { padding: 110px 0 ; border-bottom: 1px solid #313131;}
.facebook_block .secondary-title{ color: #fff; margin-bottom: 20px }
.facebook_block h5{ font-size: 33px; font-weight: bold; color: #FFFFFF; font-style: italic; margin-bottom: 15px; }
#gossVideo{height: auto;}

.bundle-option-list input[type="checkbox"]{ visibility: hidden; position: absolute; }

.popup-button {width: 100%;}
.btn-contact {height: 58px; width: 100%;}
.cusrtom-price-form { width: 100%; max-width: 480px;}

.short-product-description ul li{ list-style: initial; line-height: 1;     margin-left: 18px; }
.short-product-description ul br{ display: none; }
.short-product-description ul br + br{ display: none; }
.category-description ul br{ display: none; }

.product-collateral a{ font-weight: bold; font-style: italic;; }
.product-collateral a:hover{ text-decoration: underline; color: #FFC11A; }
 
.media-element{ position: static; padding: 0 !important; height: auto; } 

.ratings .amount {display: none;}
.box-reviews .rating-box {margin: 0; width: 80px; height: 13px; font-size: 0; line-height: 0; background-image: url("http://meguiar.stag1.salecto.dk/skin/frontend/salecto/meguiars/images/star-icon.png"); background-position: 0 0; background-size: auto 13px; background-repeat: no-repeat; overflow: hidden;}
.box-reviews .rating-box .rating { background-image: url(http://meguiar.stag1.salecto.dk/skin/frontend/salecto/meguiars/images/star-icon2.png); background-position: 0 0; background-size: auto 13px; background-repeat: no-repeat; height: 13px;}
.product-rating .ratings { margin-top: 15px;}
.review-group-row{ padding: 12px 0; margin-bottom: 15px;  border-bottom: 1px solid #ced4da; }
.review-group-row .review-meta .nickname{ color: #b3b3b3; font-weight: normal; }
.review-group-row .review-meta .date{ color: #6c6c6c; font-weight: normal; }
/* Initial state */
div.modal-review__rating-order-wrap > span {
	display: inline-flex;
	height: 28px; width: 26px;
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='80'%20height='30'%3E%3Cpath%20d='M17.5,12.5h-8.5l6.8,5-2.6,8.1,6.8-5,6.8,5-2.6-8.1,6.8-5h-8.5l-2.6-8.1z'%20fill='%23c0c0c0'%20stroke='%23c0c0c0'/%3E%3Cpath%20d='M57.5,12.5h-8.5l6.8,5-2.6,8.1,6.8-5,6.8,5-2.6-8.1,6.8-5h-8.5l-2.6-8.1z'%20fill='%23ffd83d'%20stroke='%23eac328'/%3E%3C/svg%3E");
	background-position: -6px 0px;    /* gray star */
}
.ratings {
    display: flex;
    align-items: center;
}
.ratings label {
    margin-bottom: 0;
	margin-right: 10px;
	position: relative;
    top: -1px;
}
/* Persistent state */
div.modal-review__rating-order-wrap[data-rating-value] > span {
	background-position: -46px 0px;  /* gold star */
}
div.modal-review__rating-order-wrap > span.active ~ span {
	background-position: -6px 0px;    /* gray star */
}

/* Hover state */
div.modal-review__rating-order-wrap[class]:hover > span {
	background-position: -46px 0px;  /* gold star */
}
div.modal-review__rating-order-wrap[class] > span:hover ~ span {
	background-position: -6px 0px;    /* gray star */
}


/*facebook video block*/
.facebook-video-block { background: #000; padding: 0 0 130px;}
.fb-video-box {border-top: 1px solid #313131; border-bottom: 1px solid #313131; }
.facebook-video-block .facebook_block {padding: 0; text-align: center; border: 0; display: flex; justify-content: center; align-items: center; flex-direction: row-reverse; height: 100%;}
.facebook-video-block .fb-image {max-width: 330px; margin-left: 10px;}
.facebook-video-block .secondary-title {font-size: 36px; line-height: 30px;}
.facebook-video-block .facebook_block h5 {font-size: 22px;}
.facebook-video-block .play-button .button em:before {font-size: 20px;}
.facebook-video-block .play-button .button { width: 55px; height: 55px; margin: 0;}
.facebook-video-block .video-title {font-size: 36px; line-height: 30px;}

.col-category .level1, .salecto-topmenu .salecto-submenu a.maincategory{ font-size: 1.5em; color: #ffc11a; text-decoration: underline;}

.short-product-description br { display: none;}

/* ================ Responsive Media Queries =========================== */

@media (max-width: 1500px) {
	.coating-banner-title{ order: 1; width: 100%; text-align: center; padding: 0; margin-bottom:20px; }
 	
 	.box-content{ width: 48%; }
	.box-content1{ order: 2; margin-right: 10px; }
	.box-content2{ order: 3; margin-left: 10px; }
	.box-content .before-img, .box-content .after-img{ max-width: 45%; }
}	 



@media (max-width: 1400px) {
.owl-carousel .owl-nav button.owl-prev {left: -48px;}
.owl-carousel .owl-nav button.owl-next {right: -48px;}
.menu-header .container{ padding-left: 290px; }

.facebook-video-block .fb-image {max-width: 240px;}
.facebook-video-block .secondary-title, .facebook-video-block .video-title {font-size: 32px;}
.facebook-video-block .facebook_block h5 {font-size: 20px;}
 
}

@media (max-width: 1366px) {
.owl-carousel .owl-nav button.owl-prev {left: 10px; height: 35px; line-height: 35px; width: 35px; margin-top: -17px;}
.owl-carousel .owl-nav button.owl-next {right: 10px; height: 35px; line-height: 35px; width: 35px; margin-top: -17px;}

}

@media (max-width: 1365px) {
.salecto-topmenu .salecto-label {font-size: 18px;}
.secondary-title, .video-title, .block-subscribe .block-title h4 {font-size: 48px;}
.product-info .card-title, .product-list .product-info .card-title {font-size: 21px;}
.price-box .old-price span.price, .price-box .old-price span.price:hover {font-size: 22px;}
.special-price {font-size: 26px; }
.regular-price {font-size: 26px; }
.card-footer .add-to-cart-form .qty-wrapper { min-width: 52px; width: 52px; height: 52px;}
.home-page-tabs .item .card-footer .btn, .product-list .item .card-footer .btn {font-size: 18px;}
.home-blog .blog-title {font-size: 23px;}
.ser-item .ser-text {padding-left: 12px; width: calc(100% - 110px);}
.ser-item img {width: 110px;}
}	

@media(max-width: 1280px) {
  .header-usp-block ul li {flex:1;}
  .coating-banner{ min-height: 400px; padding: 15px; }
}

@media (max-width: 1199px) {
#topbar {display: block;  min-height: 38px; }
.bg-usp-top .container{padding-left: 0;}
.header-usp-block ul li{ text-align: center; }
.main-header {padding: 0 0; height: 55px;}
.ex-link i { font-size: 38px !important; line-height: 14px;}
.top-right-link em { font-size: 16px; vertical-align: middle;}
.ex-link { padding: 15px 20px 0 !important; margin-right: 20px;}
.extra-link-out {position: relative;}
.extra-link-out .top-right-link { display: inline-block; height: auto;  width: 100%;}
.extra-link-out .dropdown-menu {padding: 15px; right: 0; left: auto;}
.extra-link-out .top-right-link li { padding: 5px 0; border: 0; justify-content: center;}
.extra-link-out .top-right-link li, .extra-link-out .top-right-link li a {color: #000;}
.extra-link-out .top-right-link li a:hover {color: #FFC11A;}
.mainMenu { margin: 0; padding: 0;}
.sticky .mainMenu {padding: 0;}
.main-header .main-menu {display: none;}
#header .logo-col .logo {text-align: left; max-width: 130px;}
.head-link > span { text-align: center; font-size: 12px; color: #fff;}
.cart-col .skip-links .header-minicart > a {height: auto; line-height: 1.5;}
.header-nav {margin-top: 12px; margin-right: 15px;}
.right-links .skip-account img {margin-right: 0;}
.head-link img { height: 19px;}
a.head-link:hover, a.head-link:focus {color: #000000; text-decoration: none;}
.head-link {flex-direction: column;}
.head-link i{margin: 0; }
.total-tx {display: none !important;}
.right-links > .head-link {margin-right: 35px;}
.right-links .skip-account {line-height: 1.5; padding-top: 2px;}
.top-right-link {display: none;}
.top-header.text-right {position: relative; border: 0; margin: 0 40px 0 0; padding: 0; height: 55px;}
.cart-col .header-minicart > a {height: auto; line-height: inherit;}
.header-minicart .link-label { position: absolute; right: -6px; top: 0; height: 18px; line-height: 18px; width: 18px; text-align: center; background: #000; color: #fff; border-radius: 50%; font-size: 13px;}
.search-col-out {position: absolute; top: 100%; left: 0; right: 0;} 
.search_mini_form-container {width: 100%; padding: 15px 15px; background-color: rgba(0,0,0,0.95); margin: 0; border: 0;}
#search_mini_form .input-group {height: 48px; margin: 0 auto; width: 100%;}
.search_mini_form {height: 48px;}
.search-col { max-width: 100%;}
.top-header .dropdown-menu {left: auto; right: -50px !important;}
.main-header .top-right-head { position: static; width: 100%;}
.salecto-topmenu .salecto-level0 {float: none;}
.salecto-menumanager .salecto-topmenu{ padding-right: 0 }
.salecto-topmenu a:not([href]):not([tabindex]){ color: #2F2F2F; }
.mm-menu .mm-navbar {padding: 0 15px; text-align: left; background: #eeeff0; height: 60px}
.mm-menu .mm-navbar a {color: #000; font-weight: 900; font-size: 17px; padding: 20px 0}
.mm-menu .mm-panels>.mm-panel>.mm-listview:first-child,
.mm-menu .mm-panels>.mm-panel>.mm-navbar+.mm-listview { margin-top: 0}
.mm-menu .mm-listitem>a, .mm-listitem>span { padding: 15px;  font-weight: 600}
.mm-menu .mm-listitem .mm-btn_next:before { display: none}
.mm-menu .mm-listitem_vertical>.mm-btn_next { height: 50px}
.mm-menu .mm-listview .mm-btn_next:after { border-color: #39414b}
.mm-menu { background: #fff}
.mm-panels, .mm-panels>.mm-panel { position: fixed; width: calc(100% - 20%); max-width: 440px;}
.salecto-menumanager .salecto-iconmega {display: none;}
.home-page-slider .banner-content .heading {font-size: 42px !important; line-height: 42px;}
.home-page-slider .banner-content .text {line-height: 38px; font-size: 38px !important;}
.home-page-slider .banner-content .btn { font-size: 20px; padding: 5px 10px; margin: 0 0 30px;}
.secondary-title, .video-title, .block-subscribe .block-title h4 {font-size: 42px;}
.home-page-tabs .secondary-title {background-size: 120px;}
.newsletter-bg {padding: 45px 0 80px;}
.newsletter .block-title {margin: 0 0 40px;}
.play-button .button {height: 76px; width: 76px;}
.ser-item {flex-direction: column;}
.ser-item .ser-text { width: 100%; padding: 10px 0 0; text-align: center;}
.guide-title {line-height: 24px; margin: 15px 0 0; font-size: 21px;}
.footer-top {padding: 65px 0 20px;}
.footer-col .social-media {margin-top: 0; justify-content: flex-start;}
#footer .footer-col {margin: 0 0 40px;}
.product-view .product-media {padding-right: 15px;}
.product-view .product-details {padding-left: 15px;}
.add-to-cart-buttons .btn {font-size: 23px;}
.product-media .more-views {width: 100px;}
.product-media .more-views li.list-inline-item {width: 100px; height: 100px;  padding: 5px;}
.product-media .product-image {width: calc(100% - 100px);}
.product-collateral .tab-container { padding: 10px 15px 15px; background-color: transparent;}
.cn_search_popup{ max-width:100%; }
.menu-out{ position: inherit; }
.header-usp-block ul li:not(.active){ display: none; }
.timer-col{ display: none !important; }
.menu-header .container{ padding-left: 0 }
.facebook-video-block .facebook_block {padding: 70px 0;}
.facebook-video-block {padding: 0 0 80px;}
.facebook-video-block .video-gallery-block img { max-height: 300px;}
.facebook-video-block .fb-image { max-width: 340px;}



}	

@media (max-width: 991px) {
.header-usp-block ul li {display: none;text-align: center;}
.home-product-slider { margin-bottom: 30px;}
.footer-title { font-size: 25px; margin-bottom: 15px;}
.home-page-slider .banner-content .heading {font-size: 36px !important;line-height: 36px;}
.home-page-slider .banner-content .text { line-height: 30px; font-size: 30px !important;}
.secondary-title, .video-title, .block-subscribe .block-title h4 {font-size: 34px;}
.home-page-tabs .secondary-title { background-size: 110px;}
.guide-col {width: 33.333333%;}
.home-blog .blog-title {font-size: 20px; line-height: 24px;}
.home-blog-block { padding: 55px 0 30px;}
.cat-btn li {font-size: 18px; height: 50px;}
.home-instagram { padding: 55px 0;}

h1, .h1 {font-size: 28px;}
h2, .h2 {font-size: 24px;}
h3, .h3 {font-size: 22px;}
h4, .h4 {font-size: 20px;}
h5, .h5 {font-size: 18px;}
h6, .h6 {font-size: 17px;}

.category-description {text-align: center; padding: 0 0 10px;}
#horizontal-layered-navigation-container div.horizontal-filter {width: 25% !important;}
.product-media .more-views li.list-inline-item {width: 80px; height: 80px;}
.input-group.qty-wrapper input#qty {height: 45px;}
.add-to-cart-buttons .btn { height: 45px; padding: 9px 10px; font-size: 18px;}
.home-blog .col-12 {margin-bottom: 0;}

.two-column-wrapper .title h1 {font-size: 36px;}
.coating-about{ padding: 50px 0 }
.coating-brochure{ padding: 50px 0 }
.facebook_block{ padding: 50px 0 }
.facebook_block h5{ font-size: 18px; }
.box-content .box-title{ font-size: 16px; }
}


@media (max-width: 767px) {
#header .logo-col .logo { margin: 0; max-width: 120px;}
.right-links > .head-link {margin-right: 25px;}
#header {position: sticky; position: -webkit-sticky; position: -moz-sticky; position: -ms-sticky;  position: -o-sticky; top: 0; background: #fff; z-index: 9;}
#header.sticky .head-link i {font-size: 16px;}
#header.sticky .head-link > span { font-size: 12px;}
.top-header.text-right { margin: 0 30px 0 0;}
.secondary-title, .video-title, .block-subscribe .block-title h4 {font-size: 28px;}
.price-box .old-price span.price, .price-box .old-price span.price:hover {font-size: 18px;}
.special-price {font-size: 23px; }
.regular-price {font-size: 23px; }
.home-page-tabs .secondary-title {background-size: 80px; padding: 25px 0 15px;}
.secondary-title {margin: 0 0 30px;}
.block-subscribe .block-title p {font-size: 20px;line-height: 22px;}
.block-subscribe .block-title h4 {line-height: 38px;}
.newsletter .block-title {margin: 0 0 30px;}
.video-title {margin: 0 0 10px; line-height: 32px;}
.play-button .button {height: 46px; width: 46px; margin: 0;}
.play-button .button em::before {font-size: 18px;}
.ser-item {width: 50%; margin-top: 30px;}
.guide-col {width: 50%;}
.footer-title { font-size: 23px;}
.home-blog-block { padding: 55px 0 15px;}
.cat-btn li {width: calc(33.33% - 30px); font-size: 16px; line-height: 28px; height: 41px;}

/*product view*/
.product-view .product-details .card-title {padding: 0 !important;}
.product-view .product-details .card-body {padding-left: 0; padding-right: 0;}
.block.block-related {margin-top: 0;}

body:not(.cms-home) #content {padding: 20px 0 20px;}
h1, .h1 {font-size: 24px;}
h2, .h2 {font-size: 22px;}
h3, .h3 {font-size: 20px;}
h4, .h4 {font-size: 18px;}
h5, .h5 {font-size: 17px;}
h6, .h6 {font-size: 16px;}


.left-column-wrap {margin-bottom: 30px;}
.right-column-wrap h3 {font-size: 24px;}
.right-column-wrap .content-box h4 {font-size: 22px; margin-top: 15px;}
.two-column-wrapper .title h1 {font-size: 28px;}
.home-page-tabs .item .card-footer, .product-list .item .card-footer{ flex-wrap: wrap; }
.home-page-tabs .item .card-footer .btn, .product-list .item .card-footer .btn{ font-size: 13px; margin: 4px 0; }
.card-footer .add-to-cart-form .qty-wrapper{ display: none; }
.col-main .container > .page-title h1{ font-size: 28px; }
.page-title h1{ font-size: 28px; }

.post-thumbnail.images-placeholder{ height: 200px; }
.box-content1{ display:none; }
.box-content2{ margin-left: 0; width: 100%; }
.coating-banner{ min-height: 0 }

.block-title, .card-title h1{ font-size: 25px; }
.registered-users{ margin-bottom: 40px; }
.coating-card .images-icon img{ width: 100%; }

.facebook-video-block .facebook_block { padding: 50px 0; flex-direction: column;}
.facebook-video-block .fb-image { margin: 0 0 30px;}
.kontakt-fix{ display: none; }


}

@media only screen and (max-width: 576px){
.owl-carousel .owl-nav {display: block;}

}

@media (max-width: 575px) {
.bg-usp-top .container {padding-left: 0;}
.main-popup {flex-wrap: wrap;}
.bg-usp-top em {margin-right: 5px;}
.bg-usp-top {padding: 10px 0 5px;}
.logo-col { padding-right: 0;}
#header .logo-col .logo {max-width: 90px;}
.head-link > span {font-size: 10px !important;}
.head-link i {font-size: 15px !important;}
.head-link img { height: 16px;}
.ex-link i {font-size: 28px !important;}
.ex-link {padding: 8px 10px 0 !important; margin-right: 10px;}
.main-header {height: 45px;}
.top-header.text-right {margin: 0 15px 0 0; height: 45px;}
.right-links > .head-link { margin-right: 15px;}
.search_mini_form-container {padding: 5px 15px 15px;}
.menu-header::after {height: 4px;}
.home-page-slider .banner-content .heading {font-size: 21px !important; line-height: 26px;}
.home-page-slider .banner-content .text {line-height: 20px; font-size: 20px !important; margin: 10px 0 15px;}
.home-page-slider .banner-content .btn {font-size: 16px; padding: 5px 10px; margin: 0 0 20px;}
.home-page-slider .item img {min-height: 190px;}
.secondary-title, .video-title, .block-subscribe .block-title h4 { font-size: 22px;}
.block-subscribe .block-title p { font-size: 17px;}
.block-subscribe .input-box {flex-wrap: wrap;}
.block-subscribe .input-box .input-out {width: 100%;}
.btn-subscribe {width: 100%;}
.block-subscribe .input-box input {text-align: center;}
.newsletter-bg {padding: 45px 0 40px;}
.ser-item {width: 100%;  flex-direction: row;}
.ser-item .ser-text {padding: 0 0 0 15px; text-align: left;}
.guides-title { margin: 0 0 30px; flex-wrap: wrap; justify-content: center !important;}
.guides-title .secondary-title { width: 100%; text-align: center; margin: 0 0 15px;}
.home-guides {padding: 40px 0 15px;}
.home-blog-block {padding: 40px 0 15px;}
.home-instagram {padding: 40px 0;}
.footer-top { padding: 40px 0 0px;}
.footer-botom {padding: 25px 0;}
.cat-btn li { width: calc(50% - 30px); }
.facebook-video-block { padding: 0 0 50px;}

}	

@media only screen and (max-width: 480px){

.guide-col {width: 100%;}	
.btn.btn-primary.link-facebook, a.btn.btn-primary.link-facebook:focus, .btn.btn-info.link-twitter, a.btn.btn-info.link-twitter:focus {font-size: 0.775rem; }
.facebook-video-block .secondary-title, .facebook-video-block .video-title { font-size: 28px; line-height: 25px;}

}



