@charset "utf-8";


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
*, *:before, *:after {-moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box;}
/* remember to define focus styles! */
:focus {
	outline: 0;
}

/*RR STYLES*/

[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}
[style*="--aspect-ratio"] > img {
  height: auto;
}
@supports (--custom:property) {
	[style*="--aspect-ratio"] {
		position: relative;
	}
	[style*="--aspect-ratio"]::before {
		content: "";
		display: block;
		padding-bottom: calc(100% / (var(--aspect-ratio)));
	}
	[style*="--aspect-ratio"] > :first-child {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
	}
}

/*
    FONT OPTIONS

    Family        font-family: 'Nunito Sans', sans-serif;
    Regular       font-weight: normal;
    Semi-bold     font-weight: 600;
    Bold          font-weight: bold;

*/

body {
	font-family: 'Nunito Sans', sans-serif;
	font-size:16px;
	font-weight:normal;
	text-align:left;
	line-height:normal;
	color:#686868;
}


img {
	max-width:100%;
}

h1 {
	font-size:32px;
	font-weight:bold;
	font-style:normal;
	color:#000;
	margin:0 0 20px 0;
	padding:0;
}
h2 {
	font-size:22px;
	font-weight:bold;
	font-style:normal;
	color:#000;
	margin:0 0 20px 0;
	padding:0;
}
h3 {
	font-size:18px;
	font-weight:bold;
	font-style:normal;
	color:#000;
	margin:0 0 20px 0;
	padding:0;
}
h4 {
	font-size:16px;
	font-weight:600;
	font-style:normal;
	color:#000;
	margin:0 0 20px 0;
	padding:0;
}
.small-text {
	font-size:14px;
}
p {
	margin-bottom:28px;
}


a:link, a:active, a:visited {
	color:#00add8;
	text-decoration:none;
	outline: 0;
}
a:hover {
	color:#008bac;
	text-decoration:none;
}
a img:hover {text-decoration:none; opacity:0.9}

.no-margin{
	margin: 0;
}

button, .button, a.button, input[type="submit"].button {
	font-size:16px;
	font-weight:normal;
	border-radius: 3px;
	border-width: 0px;
	padding:15px 40px;
	text-align:center;
	line-height:normal;
	outline:none;
	cursor:pointer;
	transition:background-color 0.2s;
	position: relative;
	display: inline-block;
}

button.blue, .button.blue, a.blue, input[type="submit"].blue {
	background-color: #00add8;
	color:#fff;
}

button.blue:hover, .button.blue:hover, a.blue:hover, input[type="submit"].blue:hover {
	background-color: #008bac;
}

button.blue:active, .button.blue:active, a.blue:active, input[type="submit"].blue:active {
	background-color: #008bac;
	top: 1px;
}

.button.blue:disabled, .button.blue:disabled:hover {
	cursor:not-allowed;
}

button.grey, .button.grey, a.grey, input[type="submit"].grey {
	background-color: #eaeaea;
	color:#000;
}

button.grey:hover, .button.grey:hover, a.grey:hover, input[type="submit"].grey:hover {
	background-color: #d0d0d0;
}

button.grey:active, .button.grey:active, a.grey:active, input[type="submit"].grey:active {
	background-color: #d0d0d0;
	top: 1px;
}

button.red, .button.red, a.red, input[type="submit"].red {
	background-color: #da2228;
	color:#fff;
}

button.red:hover, .button.red:hover, a.red:hover, input[type="submit"].red:hover {
	background-color: #ca1218;
}

button.red:active, .button.red:active, a.red:active, input[type="submit"].red:active {
	background-color: #ca1218;
	top: 1px;
}

button.light-green, .button.light-green, a.light-green, input[type="submit"].light-green {
	background-color: #d0efdd;
	color:#000;
}

button.light-green:hover, .button.light-green:hover, a.light-green:hover, input[type="submit"].light-green:hover {
	background-color: #8EDDAA;
}

button.light-green:active, .button.light-green:active, a.light-green:active, input[type="submit"].light-green:active {
	background-color: #8EDDAA;
	top: 1px;
}

button.outline, .button.outline{
	padding: 20px 30px;
	font-size: 16px;
	box-shadow: none;
	border-radius: 0;
	background-color: transparent;
	border: 2px solid #eaeaea;
	color: #000;
	font-weight: 600;
}
input[type="text"].outline{
	padding: 20px 7px;
	font-size: 16px;
	text-align: center;
	border: 0;
	border-top: 2px solid #eaeaea;
	border-bottom: 2px solid #eaeaea;
	text-align: center;
	line-height: normal;
	color: #000;
	font-weight: 600;
}

button.small, .button.small, a.button.small, input[type="submit"].button.small{
	padding: 10px 20px;
}

.text-red{
	color: #da2228;
}
.text-green{
	color: #20bf55;
}

.hidden{
	display: none;
}

/*END RR STYLES*/

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea, select {
	border:2px solid #c4c4c4;
	text-align:left;
	padding:9px;
	font-size:14px;
	line-height:18px;
	width:100%;
	color:#444;
}
input[type="checkbox"]{
	width:auto;
}
input[type="submit"]{
	cursor:pointer;
}
textarea{
	min-height:150px;
	width:100%;
}
.standard-form label,
.standard-form input,
.standard-form textarea,
.standard-form select{
	margin:0 0 10px 0;
}
.standard-form label{
	display:block;
}
.label-checkbox{
	font-size:12px;
}
.label-checkbox input{
	margin:0;
	display: inline-block;
	vertical-align: bottom;
}

.no-float {float:none !important}
.hover:hover {
	opacity:0.8;
	-moz-opacity:0.8;
	-webkit-opacity:0.8;
	transition:0.5s ease;
	-webkit-transition:0.5s ease;
	-moz-transition:0.5s ease;
}
.clearfix:before, .clearfix:after {content:" "; display:table}
.clearfix:after {clear:both}
.clearfix { *zoom:1;}

.no-display{
	display:none;
}
.disabled{
	color:#8295a8;
}
.text-center{
	text-align:center;
}

.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
	max-width:1300px;
	width:100%;
}

.page-title{
	padding:0 0 20px 0;
	margin:0 0 20px 0;
	border-bottom:1px solid #c4c4c4;
}
.page-title-small{
	padding:0 0 10px 0;
	margin:0 0 20px 0;
	border-bottom:1px solid #c4c4c4;
}
.error{
	color:#de4949;
}
.error-box{
	color:#de4949;
	margin:0;
}
.success{
	color:#3c763d;
}
.success-box{
	color:#3c763d;
    margin:5px;
}

iframe{
	max-width:100%;
	width:100%;
}

/*a.button,
.button{
	background: #c10d31;
	display: inline-block !important;
	line-height: 20px;
	text-decoration: none;
	font-size:18px;
	font-weight:300;
	padding:10px 26px;
	color:#fff;
	text-align:center;
	-webkit-transition: all .2s ease-out 0s;
    -moz-transition: all .2s ease-out 0s;
    -o-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
	cursor:pointer;
    border:0;
}
a.button:hover,
.button:hover{
	background:#fff;
	color:#444;
}

a.button-red,
.button-red{
	background: #c10d31;
	color:#FFF;
}
a.button-red:hover,
.button-red:hover{
	background-color:#9b0523;
}

a.button-small,
.button-small{
	padding: 8px 15px;
	width:auto;
}*/
.breadcrumb{
	list-style:none;
	overflow:hidden;
	padding:0;
	margin:0 0 15px 0;
	line-height:18px;
	font-size:11px;
	font-weight:normal;
	color:#8295a8;
}
.breadcrumb li{
	float:left;
}
.breadcrumb li a{
	font-size:11px;
	color:#8295a8;
	font-weight:normal;
}

.see-more-link{
	color:#4d2a67 !important;
	text-decoration:none !important;
	text-transform:uppercase !important;
	font-size:10px;
	font-weight:600;
}
.see-more-link:after{
	font-family:"FontAwesome";
	content:"\f101";
	margin:0 0 0 3px;
}
.back-link{
	color:#4d2a67 !important;
	text-decoration:none !important;
	text-transform:uppercase !important;
	font-size:10px;
	font-weight:600;
}
.back-link:before{
	font-family:"FontAwesome";
	content:"\f100";
	margin:0 3px 0 0;
}

/*====================================================
		Cookie bar css
======================================================*/
#cookie_banner{
    position:fixed;
    bottom:0px;
    left:0px;
    width:100%;
    padding:10px;
    z-index:44499;
    background:#f1f1f1;
    display:none;
}
#cookie_close_btn{
    float:right;
    color:#444;
    cursor:pointer;
}
#cookie_banner p{
    margin:0;
}
button[disabled], html input[disabled],
.payment-disabled{
	cursor: no-drop;
}
/*====================================================
		Pagination css
======================================================*/
.pagination-bar {
	color:#333;
	overflow:hidden;
	padding:0 0 25px 0;
	width:100%;
	font-size:12px;
}
.pagination-bar .count{
	float:left;
	line-height:24px;
}
.pagination-bar .pages{
	float:right;
	line-height:24px;
}
.pagination-bar .pages ul{
	list-style:none;
}

.pagination-bar .pages ul li{
	float:left;
	margin:0 0 0 10px;
}

.mix-bar{
	float:left;
	width:100%;
	padding:20px 0;
}
#sortby_wrp{
	float:left;

}
#sortby_wrp > label{
	margin:0 10px 0 0;
	font-size:12px;
	color:#444;
}
#sortby_wrp > select{
	cursor:pointer;
	max-width:135px;
	height:30px;
	border:1px solid #c4c4c4;
	padding:0 3px;
	font-size:12px;
	width:auto;
}
#sortby_filter > option{
	padding:0 5px;
}
.pagenav {font-size:12px; float:right;}
.pagenav a, .pagenav span {display:block; float:left; margin:0 0 0 10px; color:#000; }
.pagenav a { text-decoration:none }
.pagenav a:hover { text-decoration:underline;}
.pagenav a.nextprev {font-weight:normal}
.pagenav .disabled{
	color:#999;
}

a.displayAll{margin:0 10px 0 2px}
span.displayAll{margin:0 10px 0 2px}


/*================================================================================
									HEADER
================================================================================*/
.header {
	float:left;
	width:100%;
    height:155px;
	padding:40px 0 0 0;
	position:relative;
    z-index:3;
    background:#000;
    border-bottom:2px solid #c10d31;
    font-weight:300;
}
.header .container{
    height:100%;
    position:relative;
}
.header-logo a{
	color:#fff;
	display:inline-block;
	max-width:100%;
}

.header-options{
	float:right;
	text-align:right;
    max-width:300px;
}

.header-options a{
    color:#616161;
    font-weight:300;
}
.header-options a .fa{
    color:#c10d31;
    font-size:20px;
}
.header-options a:hover{
	text-decoration:none;
}
.header-options .option-login{
	color:#000;
	margin:0 0 10px 0;
}
.option-racks > li{
    float:left;
    width:100%;
    margin-bottom:7px;
}
.header-options .social-logos{
    float:right;
}
.option-racks .core-item{
    float:left;
}
.social-logos {
    float:left;
}
.social-logos li{
    float:left;
}
.social-logos a{
    font-size:20px;
    padding:0 7px;
}

.nav-basket-wrapper{
    position:absolute;
    bottom:0;
    right:20px;
}
.nav-basket{
	float:right;
    font-size:16px;
	text-align:right;
	padding:11px 16px;
    background:#c10d31;
    color:#fff;
}
.nav-basket a{
	color:#fff;
	text-decoration:none;
}
.nav-basket .basket-summary{
	color:#fff;
}
.nav-basket .basket-icon{
	display:inline-block;
}

.header-search{
	margin:57px 0 0 0;
}
.form-search{
	overflow:hidden;
	position:relative;
	background:#fff;
	margin:0 0 10px 0;
}
#search_text{
	height: 30px;
	border-right:0px;
	margin: 0;
	width:180px;
	padding:4px 0 4px 7px;
}
#submit_search{
	width:50px;
	height:30px;
	padding:0;
	margin:0;
	border:0;
	float:right;
	cursor:pointer;
	color:#fff;
	text-align:center;
	background-color:#c10d31;
}
.mobile-wrapper{
	text-align: center;
	position: relative;
}
#mobile_menu{
	width:100%;
	font-size:30px;
	line-height:32px;
	display:none;
}
#mobile_menu a{
	position:absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left:0;
	display:inline-block;
	padding:5px 10px 5px 0;
	background-color:transparent;

	text-decoration:none;
}
#mobile_menu a i{
	color:#fff !important;
}
.mobile-option {
    font-size:24px;
	line-height:22px;
}
.mobile-option a{
    position:absolute;
    top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
    right:0;
    padding:5px 5px 10px;
}
.mobile-option i{
	color:#fff !important;
}
@media(min-width: 992px){
	.mobile-option{
		display: none;
	}
}
@media(max-width: 991px){
	.header-logo {
		display: inline-block;
		margin-right: 50px;
		margin-left: 50px;
	}
}


/*================================================================================
									FOOTER
================================================================================*/
#footer {
    margin:50px 0 0 0;
	float:left;
	width:100%;
	background-color:#c10d31;
	color:#fff;
	font-size:12px;
}
#footer a{
	color:#fff;
	text-decoration:none;
	line-height:1.4;
}
#footer a:hover{
	text-decoration:underline;
}
#footer_contact{
	float:right;
	text-align:right;
}

#footer_bottom{

    padding: 15px 0 20px 0;
}
#ftb_copy{
	float:left;
}
#ftb_contact{
	float:right;
}
#wd360, #i360 {float:none;}
a#i360, a#ftb_email{color:#e8f600;}


/*================================================================================
						start of home page hero
================================================================================*/
.slider-wrapper {
	height: 100%;
	position:relative;
	margin:0 0 40px 0;
}

#prevBtn a{
	position:absolute;
	top:175px;
	left:-25px;
	width:50px;
	height:50px;
	background-image:url(/img/prev.png)
}
#nextBtn a{
	position:absolute;
	top:175px;
	right:-25px;
	width:50px;
	height:50px;
	background-image:url(/img/next.png)
}
#prevBtn a:active{
	left:-26px;
}
#nextBtn a:active{
	right:-26px;
}

/*================================================================================
							Navigation
================================================================================*/
.nav-container{
	background: #00add8;
	font-weight:400;
	float:left;
	width:100%;
	margin:0 0 0 0;

	position: relative;
}
.nav {
    margin:0;
    width: 100%;
}

.nav > li{
	list-style: none;
}
.nav > li > a{
	padding:10px 10px;
	display: block;
	color: #fff;
}

.nav.nav-tabs > li{
	float: left;
}

@media(min-width: 992px){
	.nav:not(.nav-tabs){
		table-layout: fixed;
		display: table;
		border-left: 1px solid #008bac;
	}

	.nav:not(.nav-tabs) > li{
		display: table-cell;
		border-right: 1px solid #008bac;
	}
	.nav:not(.nav-tabs) > li > a{
		text-align: center;
	}

	.nav-container.nav-fixed{
		position: fixed;
		top: 0;
		z-index: 500;
	}
}

.dropdown-wrp{
	position:absolute;
	top:100%;
	left:0;
	background: #eaeaea;
	z-index:10;
	display:none;
    min-width:400px; /* (1170/5) */

    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition:all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;

    padding: 50px 0 0;
}

.dropdown-wrp .dropdown-list{
	list-style: none;
	margin-bottom: 20px;
}

.dropdown-wrp .dropdown-list li{
	padding: 0 15px;
}

.nav > li:hover > .dropdown-wrp,
.nav > li:hover > .mega-dropdown-wrp{
	display:block;
}

.nav .non-mega{
    position:relative;
}

.dropdown-wrp .dropdown-list > li > a{
	display:block;
    margin-bottom: 5px;
}
.dropdown-wrp .dropdown-list > li > a:link,
.dropdown-wrp .dropdown-list > li > a:visited,
.dropdown-wrp .dropdown-list > li > a:active{
    color: #000;
}
.dropdown-wrp .dropdown-list > li > a:hover{
	color: #00add8;
}
.dropdown-wrp .dropdown-list > li:first-child > a{
	margin:0;
}
.nav .heading{
    color:#000;
    border-bottom: 1px solid #000;
    padding:0 0 5px 0;
    margin:0 0 15px 0;
    font-weight:normal;
    text-transform: none;
}

/* mega menu */
.mega-dropdown-wrp{
    max-width:100%;
    left:0;
    width: 100%;
}
.mega-dropdown-wrp.reverse{
    right:0;
}
.mega-dropdown-wrp > .container > .dropdown-list {
	float:left;
	width:20%;
}

/*================================================================================
							offcanvas CSS
================================================================================*/
#offcanvas_menu_close_wrp{
    display:none;
}

/*================================================================================
							Page CSS
================================================================================*/

.link-more-info{
	float: right;
	font-size: 12px;
	font-weight: normal;
}

.side-links li{
	margin:7px 0 0 0;
}
.side-links ul ul{
	padding:0 0 0 20px;
}

.archive-links li{
	margin:10px 0 0 0;
}
.archive-links li a{
	color:#444;
	text-decoration:none;
}
.archive-links ul ul{
	padding:0 0 0 20px;
	margin:0 0 10px 0;
}

/* blog results */
.posts-list li{
	padding:0 0 25px 0;
	margin:0 0 25px 0;
	border-bottom:1px solid #c4c4c4;

}
.posts-list .link-text{
	margin:0;
}
.posts-list .post-img{
	max-width:100%;
	float:left;
	margin:0 20px 0 0;
}

.post-img-box{
	float:right;
	margin:0 0 10px 10px;
	max-width:100%;
}

.blog-post-box h3{
	margin:0 0 5px 0;
}
.blog-post-box p{
	font-size:12px;
}

.newsletter-form input[type="submit"]{
	float:right;
}

/* bx-slider overwrite */
.bx-wrapper .bx-viewport{
	box-shadow:none;
	border:0;
	left:0;
}
.bx-wrapper .bx-prev{
	left:-30px;
	background-image:url(images/custom_controls.png);
}
.bx-wrapper .bx-next{
	right:-30px;
	background-image:url(images/custom_controls.png);
}


.related-product-list li,
.section-product-list li {
	max-width:270px;
	width:100%;
}
.related-product-list .display-frame,
.section-product-list .display-frame {
	border:1px solid #c4c4c4;
	padding:10px;
	height:300px;
	position:relative;
}
.related-product-list .display,
.section-product-list .display  {
	background-repeat:no-repeat;
	background-position:50% 50%;
	background-size:auto 100%;
	margin:0;
}
.related-product-list .display img,
.section-product-list .display img {
	visibility:hidden;
}
.display-frame .sale-ribbon{
	color:#fff;
	text-transform:uppercase;
	padding:0;
	position:absolute;
	right:-10px;
	z-index:11;
}
.display-frame .sale-ribbon:before{
	content:" ";
	border-top:15px solid #db484e;
	border-bottom:15px solid #db484e;
	border-left:15px solid transparent;
	position:absolute;
	left:-15px;
}
.display-frame .sale-ribbon:after{
	content:" ";
	position:absolute;
	bottom:-10px;
	right:-10px;
	border-left:10px solid #a9262a;
	border-bottom:10px solid transparent;
	border-right:10px solid transparent;
}
.display-frame .sale-ribbon span{
	background-color:#db484e;
	padding:0 15px;
	line-height:30px;
	display:block;
}

.display-frame .overlay-button{
	position:absolute;
	top:45%;
	left:0;
	right:0;
	z-index:6;
	text-align:center;
	visibility:hidden;
}
.display-frame .overlay-button a.button{
	-webkit-transition: all 50ms ease-out 0s;
    -moz-transition: all 50ms ease-out 0s;
    -o-transition: all 50ms ease-out 0s;
    transition: all 50ms ease-out 0s;
}
.display-frame .overlay-button a.button:hover{
	background-color:#4d2a67;
	color:#fff;
}
.display-frame .display-frame-overlay{
	background-color:transparent;
	position:absolute;
	left:1px;
	right:1px;
	bottom:1px;
	top:1px;
	z-index:5;
	opacity:0.7;
	filter: alpha(opacity=70);
	visibility:hidden;
	-webkit-transition: all .2s ease-out 0s;
    -moz-transition: all .2s ease-out 0s;
    -o-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
}
.display-frame:hover .display-frame-overlay{
	background:#FFF;
}
.display-frame:hover .display-frame-overlay,
.display-frame:hover .overlay-button{
	visibility:visible;
}
.display-frame .manu-text{
	text-align:center;
	font-size:12px;
	margin:0 0 5px 0;
}
.display-frame .prod-text{
	font-size:18px;
	line-height:22px;
	text-align:center;
	margin:0;
}

.frame-price,
.frame-add{
	text-align:center;
	padding:20px 5px;
	float:left;
	min-height:58px;
}
.frame-options{
	border-left:1px solid #c4c4c4;
	border-bottom:1px solid #c4c4c4;
	border-right:1px solid #c4c4c4;
	float:left;
	width:100%;
	height:60px;
	overflow:hidden;
}
.frame-price{
	width:35%;
	font-size:14px;
	line-height:18px;
	color:#4d2a67;
	font-family:Arial, sans-serif;
	height:100%;
}
.frame-price.frame-price-sale{
	background-color:#db484e;
	color:#fff;
	padding:10px 3px;
}
.frame-price.frame-price-sale .rrp-value{
	font-size:12px;
	text-decoration:line-through;
	display:block;
}


.frame-add{
	font-size:12px;
	line-height:18px;
	width:65%;
	border-left:1px solid #c4c4c4;
	color:#444;
	height:100%;
	height:100%;
}

a.add-to-basket {
	text-transform:uppercase;
	text-decoration:none;
	color:#444;
}
a.add-to-basket:hover {
}
button.add-to-basket{
	border:0;
	background:none;
	cursor:pointer;
	color:#444;
	font-size: 12px;
	line-height: 18px;
	outline:0;
	padding:0;
	text-transform:uppercase;
}


.page-img-box{
	margin-bottom:30px;
}
.page-img-box .caption{
	border:1px solid #c4c4c4;
	padding:20px;
	font-size:12px;
	font-style:italic;
	border-top:0;
}




/* search */
.search-results-list li{
	float:left;
	width:100%;
	margin:0 0 10px 0;
}

/*================================================================================
						start of side menu
================================================================================*/
.store-side-title{
	color: #00add8;
	font-weight: normal;
	margin-bottom: 15px;
}
.store-side-menu {
	float:left;
	width:100%;
	margin-bottom: 60px;
}

.dynamic-menu {
	float:left;
	width:100%;
	margin:0 0 0 0;

	border-bottom: 1px solid #d0d0d0;
}
.store-side-menu .dynamic-menu:first-child{
	margin:0;
	border-top: 1px solid #d0d0d0;
}
.dynamic-menu-title{
	float: left;
	width: 100%;
	padding: 20px 20px 20px 0;
	font-weight: 600;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	text-align: left;
	margin:0;
	color: #000;

	position: relative;
}
.dynamic-menu-title:after{
	font-family: "Font Awesome 5 Light";
	content: "\f067";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	color: #000;
	font-size: 14px;
}
.dynamic-menu-title.open:after{
	content: "\f068";
}
.dynamic-arrow{
	float:right;
	background-image:url('/img/Polygon3.png');
	background-repeat:no-repeat;
	background-position:50% 50%;
	width:16px;
	height:16px;
	-webkit-transition:-webkit-transform 0.4s linear 0s;
	-moz-transition:-moz-transform 0.4s linear 0s;
	-o-transition:-o-transform 0.4s linear 0s;
	transition:transform 0.4s linear 0s;
}
.dynamic-arrow-move{
	-webkit-transform:rotate(-180deg); /* Safari and Chrome */
	-moz-transform:rotate(-180deg);
	-o-transform:rotate(-180deg);
	-ms-transform:rotate(-180deg); /* IE 9 */
	transform:rotate(-180deg);
}
.dynamic-menu-options{
	margin:0;
	float:left;
	list-style:none;
	width:100%;
	display:none;

	padding-bottom: 20px;
}
.dynamic-menu-open{
	display:block;
}
.dm-opt{
	float:left;
	width:100%;
	margin:1px 0;

	position: relative;
}
.dm-opt:before{
	content: '\f0c8';
	font-family: "Font Awesome 5 Light";
	font-size: 16px;
	color: #d0d0d0;

	position: absolute;
	top: 3px;
	left: 0;
	z-index: -1;
}
.dm-opt.active:before{
	color: #00add8;
	content: "\f14a";
	font-family: "Font Awesome 5 Solid";
}
.dm-opt > label {
	width:100%;
	float:left;
	cursor: pointer;
	text-align: left;
	font-weight: normal;
	padding:5px 0 5px 30px;
	color: #000;
	font-size:14px;
	line-height:16px;
}
.dm-opt  input[type="checkbox"] {
	width:auto;
	float:right;
	border:0;
	cursor: pointer;
	opacity: 0;
}

.section-nav{
	float:left;
	width:100%;
	display:none;
	font-weight:normal;
}
.nav-lvl-0{
	display:block;
}
li.nav-selected{
	font-weight:bold;
}
.nav-opened > ul  > li{
	display:block;
}
.sub-section-nav{
	padding:0 0 0 20px;
}



/*================================================================================
								DEFAULT STORE CSS
================================================================================*/
/*.sections-row{
	text-align:center;
}
.section-box{
	display:inline-block;
	text-align:center;
}
.section-box img{
	visibility:hidden;
}
.section-box .display{
	background-repeat:no-repeat;
	background-position:50% 50%;
	background-size:auto 90%;
	margin:0 0 25px 0;
}
.section-box .display a{
	display:inline-block;
}

.section-product-list {
	margin:0 0 0 -30px;
}
.section-product-list li{
	float:left;
	padding:0 0 30px 30px;
	max-width:300px;
	width:33.33333333333333%;
}
.section-product-list .display-frame{
	height:240px;
}

.related-product-list {
	margin:0 0 0 -30px;
}
.related-product-list li{
	float:left;
	padding:0 0 30px 30px;
	max-width:300px;
	width:25%;
}
.related-product-list .display-frame{
	height:240px;
}*/

/*================================================================================
					start of product page
================================================================================*/
.overlayContainer, .srOverlayContainer {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 9;
}

.product-page-title {

	color: blue;
}

.overlayContainer img {
  max-width: 120px;
  max-height: 120px;
}

.product-display {
	/*float:left;
	width:100%;
	min-height:320px;
	margin:0 20px 0 0;*/

	margin-bottom: 30px;
}

.main-img-wrp {
	/*float:left;*/
	text-align:center;
	overflow:hidden;
	position: relative;
	/*min-height:160px;*/
	width:100%;
	/*border:1px solid #c4c4c4;
	padding:20px;*/

	border: 1px solid #d0d0d0;
}
.product-display .short-desc{
	font-weight:bold;
}
/*#product_gallery{
	width: 100%;
	height: 100px;
	padding:0;
}*/
.product-thumb{
	width:70px;
	height:90px;
	border:1px solid #e7e7e7;
	margin:10px 10px 10px 0;
	float:left;
	overflow:hidden;
	padding:10px;
	text-align:center;
}
.product-thumb  img{
	max-height:100%;
	cursor:pointer;
	overflow:hidden;
}
.product-thumb-last{
	margin:10px 0 10px 0;
}

.product-details {
	float: right;
	width:100%;
	padding:10px;
	background-color:#e1e1e1;
	border:1px solid #c4c4c4;
}
.product-details-list,
.product-details-list ul{
	padding:0;
	list-style:none;
	float:left;
	width:100%;
}
.product-details-list li ul li{
	text-align:right;
	width:50%;
	float:left;
}
.product-details-list li ul li:first-child{
	text-align:left;
}
.product-details-list > li{
	margin:3px 0;
	float:left;
	width:100%;
}
.product-details .price{
	color:#4d2a67;
	font-size:30px;
	font-family: Arial, sans-serif;
	text-align:center;
}
.product-details .price .currency{
	font-size:0.8em;
}
.product-details .rrp-price{
	color:#db484e;
	text-decoration:line-through;
	font-size:20px;
	width:100%;
	display:inline-block;
}
.product-details .rrp-price .value{
	text-decoration:line-through;
}
.product-details .price-terms{
	font-size:12px;
	line-height:14px;
	margin:0;
}
.product-details .quantity{
	line-height:30px;
}
.option-quantity{
	height: 30px;
	width: 60px;
	border: 1px solid #c4c4c4;
	text-align: center;
	font-size: 14px;
}
/*#addToBasket{
	width:100%;
	margin:10px 0 0 0;
}*/
.ui-widget-header{
	background-color:#c10d31;
}

.product-tags-list{
	float:left;
	width:100%;
	margin:0 0 0 -30px;
	line-height:18px;
}
.product-tags-list > li{
	float:left;
	width:50%;
	padding:0 0 10px 30px;
}
.product-tags-list li ul li{
	float:left;
	width:50%;
}
.product-tags-list li ul li:first-child{
	font-weight:600;
}
.product-tags-list li.clearfix{
	clear:both;
}

.social-wrp{
	width:100%;
	float:left;
	margin:0 0 20px 0;

}
.product-rating{
	float:left;
	display:inline-block;
	height:16px;
	line-height:16px;
}
.addthis-container{
	width:150px;
	display:inline-block;
	float:right;
}
.addthis-container a.addthis_button{
	float:right;
}

.product-price{
	color: #00377F;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}

.product-sale-price{
	font-size: 14px;
	width:100%;
	float:left;
	margin:0;
	font-weight:bold;
	color: #FF0000;
	text-decoration:line-through
}

.product-status{
	width:100%;
	float:left;
}
.product-code{
	float: left;
	margin: 0 0 10px 0;
	color: #00377F;
}
.product-status-title{
	width:110px;
	float:left;
}
.status-green{
	color:#36b61d;
}
.status-red{
	color:#d32525;
}
.product-option{
	margin:0 0 15px 0;
}
select.productOpt{
	width: 187px;
	height: 28px;
	border: 2px solid #BDCFE0;
	text-align: center;
	color: #20449a;
	font-size: 12px;
	font-weight: bold;
	margin-top: 7px;
}
select.productOpt option{
	padding:0 7px 0 5px;
}

.product-add-basket{
	width: 100%;
	float: left;
}

.option-bar{
	height:35px;
	width:100%;
	float:left;
}
.option-value{

}
.option-label{
	width:100px;
	display:inline-block;
	margin:0 10px 0 0;
	color: #00377F;
	font-size: 14px;
}
.option-quantity{
	font-size: 16px;
	text-align: center;
}
#frmTotalTxt{
	margin:0 0 0 50px;
}
#frmTotal{
	margin:0 0 0 10px;
	font-size:20px;
}
#product_tab{
float:left;
}
.product_tab{
	float:left;
	height:45px;
	font-size:14px;
	padding:0 20px;
	margin:0 5px 0 0;
	background-color:#fff;
	border:2px solid #d7d7d7;
	border-radius: 20px 20px 0px 0px;
	border-bottom:0;
	cursor:pointer;
	line-height:45px;
}
.tab_selected {
	background-color: #00377F;
	border:0px solid #d7d7d7;
	color: #fff;
	border-radius: 20px 20px 0px 0px;
}
.product_tab_content {
	border: 2px solid #d7d7d7;
	margin-top: 45px;
	padding: 20px;
	width: 500px;
	color: #00377F;
}
.reviews-header{
	float:left;
	width:100%;
	padding:20px 0;
	margin:0 0 30px 0;
	border-bottom:1px solid #e7e7e7;
	line-height:25px;

}
#rh_title{
	float:left;
	margin: 0 10px 0 0;
}
#rh_overall{
	display:inline-block;
	float:left;
	font-size:14px;
	height:25px;
}
#rh_overall .stars{
	margin:3px 10px 0 0;
}
#rh_link{
	float:right;
	text-align:center;
	font-size:15px;
	width:auto;
}

.leave-review-wrp{
	float:right;
	width:155px;
	position:relative;
	top:-5px;
	text-align:right;
}
.leave-review-wrp a.yellowButton{
	font-size:15px;
}
#leaveReviewMsg{
	float:left;
	width:100%;
}

.review-box{
	float:left;
	width:100%;
	margin:0 0 30px 0;
	padding: 0 0 5px 0;
	border-bottom:1px solid #e7e7e7;
}
.review-title{
	float:left;
	width:100%;
	font-size:20px;
}
.review-rating{
	float:left;
	width:100%;
	margin:5px 0;
}
.review-customer{
	color:#8397a1;
	float:left;
	width:100%;
	margin:0 0 20px 0;
}
.review-desc{
	float:left;
	width:100%;
	margin:0 0 20px 0;
}


.related-product-img{
	background-size: 100% auto;
	background-position: center center;
	background-repeat: no-repeat;
}
	.related-product-img img.img-bg{
		opacity: 0;
		filter: alpha(opacity=0);
	}

/* Decimal round up messages*/
#roundMessage{
    margin: 0;

    padding-left: 115px;
    display: block;
}

/* Product inter site back links */
.back_links{
	margin-top: 20px;
	margin-bottom: 20px;
}

.locks-number-box p {
    margin-bottom: 0;
}


/* =============================================================
    CHECKOUT CSS
   ============================================================= */
.wrapper-checkout{
}

.checkout_stages {
	margin-bottom:40px;
	text-align:center;
	font-size:20px
}
.checkout_stage {
	float:left;
	width:20%;
}
.checkout_stage span {
	display:inline-block;
	background-color:#00add8;
	color:#ffffff;
	padding:0 10px;
}

.checkout-title {
	border-bottom:1px solid #c4c4c4;
}
.checkout-title h1 {
	color:#00add8;
	line-height:50px;
}

.checkout-title div:nth-child(1) {
	text-align:left;
}
.checkout-title div:nth-child(2) {
	text-align:right;
}
@media screen and (max-width:768px){
	.checkout-title img {
		margin-bottom:5px;
	}
	.checkout-title div:nth-child(1) {
		text-align:center;
	}
	.checkout-title div:nth-child(2) {
		text-align:center;
	}
}

.editaddress
{
	font-size: 16px;
	padding: 2px 10px;
}

.deladdresseditbtn, .deladdresseditbtncancel, .billaddresseditbtn, .billaddresseditbtncancel
{
	float:right;
}

 /* checkout account */
 .full-box{
	width:100%;
	float:left;
	height:auto;
	min-height:270px;
	padding:10px;
	border:1px solid #e1e1e1;
}
.registered-login{
margin: 0 auto;
max-width: 700px;
}
.account-box{
	width: 32%;
	float:left;
	height:auto;
	min-height:270px;
	padding:10px;
	border:1px solid #e1e1e1;
}
.account-box-title{
	margin:0 0 10px 0;
	padding:0 0 5px 0;
	border-bottom:1px solid #e1e1e1;
}
.new-customer{
	margin:0 2%;
}
.account-form-atom{
	margin:15px 0 0 0;
}
.required-indicator{
	color:#de4949;
}
.account-form-label{
	width:100%;
	margin:5px 0 5px 0;
	height:auto;
	display:block;
}
.account-form-input{
	width:100%;
	display:block;
	background-color:#fff;
}
.account-form-button, a.account-form-button {
	padding: 5px 10px;
	border: 1px solid #e1e1e1;
-webkit-box-shadow: 1px 1px 2px 0px rgba(50, 50, 50, 0.35);
-moz-box-shadow:    1px 1px 2px 0px rgba(50, 50, 50, 0.35);
box-shadow:         1px 1px 2px 0px rgba(50, 50, 50, 0.35);
}
 a.account-form-button:hover{
	text-decoration:none;
	background-color:#A3C2BD;
	color:#fff;
 }

/* checkout register */
.newaccount-form-atom{
	display:block;
	margin:15px 0;
}
.newaccount-form-label{
	width:20%;
	display:inline-block;
}
.newaccount-form-input{
	display:inline-block;
	background-color:#fff;
	width:40%;
}

/* checkout delivery */
.prev-address-picker{
	display:block;
	margin:10px 0;
}
.prev-address-entry{
	display:block;
	cursor:pointer;
	padding:5px 0;
}
.prev-address-entry:hover{
	background-color:#e1e1e1;
}
.address-form{
	display:block;
	margin:10px 0;
}
.address-form-section{
	margin:0 0 25px 0;
}
.address-form-atom{
	display:block;
	margin:10px 0;
}
.address-form-label{
	display:block;
}
.address-form-label span{
	font-size:14px;
	font-weight:normal;
}
.address-form-input{
	display:inline-block;
	background-color:#fff;
	width:40%;
}
.checkout-form-select{
	min-width:40%;
}
.checkout-form-select option{
	padding:0 10px 0 5px;
}
.color_blue {color:#00add8;}
#address_lookup {border:2px solid #c4c4c4; position:relative; height:44px;}
#address_lookup input {background-color:#fff; position:absolute; top:0; left:0; height:40px; width:70%; min-width:100px; line-height:40px; border:0;}
#address_lookup span {background-color:#00add8; color:#fff; position:absolute; top:0; right:0; height:40px; width:30%; min-width:75px; line-height:20px; border:0; padding:10px; text-align:center; cursor:pointer}
#selAddresses {margin-top:10px;}
@media screen and (max-width:850px){
	#address_lookup input {width:60%;}
	#address_lookup span {width:40%;}
}

#postage_options {
	display:none;
	margin-bottom:20px;
}
#postage_options p {
	margin:10px 0;
}
#postage_options span {
	display:block;
}

/* checkout-review */
.checkout-review-content{
	margin:10px 0;
	float:left;
	width:100%;
	line-height:16px;
}
.checkout-review-side{
	width:50%;
	float:left;
	padding:0 0 0 15px;
}
.review-address-side{
	padding:0 15px 0 0;
}
.checkout-review-mini{
	margin:0 0 10px 0;
}
.checkout-header{
	padding: 5px;
	border: 1px solid #e1e1e1;
}
.checkout-review-mini p{
	padding:0 5px;
	font-weight:bold;
	margin:0;
}
.rb-tr{
	float:left;
	width:100%;
	margin:0 0 5px 0;
	border-bottom:1px solid #e1e1e1;
}
.rb-total-tr{
	float:left;
	width:100%;
	margin:0 0 5px 0;
}
.rb-th{
	margin:10px 0 5px 0;
	border:1px solid #e1e1e1;
	font-weight: bold;
}
.rb-td{
	width:10%;
	float:left;
	text-align:center;
	padding:5px;
	overflow:hidden;
}
.rb-td-right{
	width:10%;
	float:left;
	text-align:right;
	padding:5px;
}
.rb-product{
	width:38%;
	text-align:left;
}
.rs-narrow {
	width:8%;
}
.rs-narrow input{
	width:auto;
	border:0;
	line-height:1;
	height:auto;
	padding:0;
}
.rb-total-td{
	width:20%;
	float:left;
	text-align:left;
	padding:5px;
	font-weight:bold;
	margin:0 0 0 70%;
}
.rb-grand-total{
	background-color:#e1e1e1;
}

#finalreview .rb-product{
	width:60%;
}

/** basket **/
.promo-form-atom{
	display:block;
	margin:10px 0;
}
.promo-form-label{
	width:20%;
	display:inline-block;
}
.promo-form-input{
	display:inline-block;
	background-color:#fff;
	width:40%;
}
.submit-promo{
	margin: 0 0 0 10px;
}
.checkout-button{
	font-size:14px;
}

/* VOUCHERS */

.voucher-message-form{
	display: none;
}

.voucher-textarea{
	min-width: 200px;
	min-height: 100px;

	width: 200px;
	margin-bottom: 10px;
	display: block;
}

.btn-remove-voucher-message, .add-voucher-message, .vocuher-text{
	color: #acc7e2 !important;
	text-decoration: none;
	border: none;
	background-color: transparent;
	padding: 0;
	font-weight: bold;
	line-height: 18px;
	font-size: 12px;
	font-family: "Arial","Helvetica",sans-serif;
	text-transform: none;
}

.edit-voucher-message{
	text-decoration: underline !important;
}

/* END VOUCHERS */


/*================================================================================ start of recently_viewed products ================================================================================*/
.recently_viewed {width:100%; border:1px solid #989d87; margin:20px 0; padding:6px; min-height:170px; position:relative;}
.recently_viewed p {margin:2px 0}
.recently_viewed a {color:#4a4842; text-decoration:none; font-size:14px}
.recently_viewed a:hover {color:#4a4842; text-decoration:underline}

#sliderRecentlyViewed {margin:20px 0; }
#sliderRecentlyViewed div {float:left; width:145px; height:155px; margin:0 5px; text-align:center}

a.prev {width:20px; height:20px; display:block; position:absolute; background:url(/img/recent_items_arrow_prev.png) no-repeat transparent; top:100px; left:5px}
a.next {width:20px; height:20px; display:block; position:absolute; background:url(/img/recent_items_arrow_next.png) no-repeat transparent; top:100px; right:5px}
a.prev span, a.next span {display:none;}

/*================================================================================ start of styles used for wysisyg page ================================================================================*/
.wysisyg-page ol {counter-reset:item; margin-bottom:20px}
.wysisyg-page li {display:block}
.wysisyg-page li:before {content:counters(item, ".") " "; counter-increment:item}
.wysisyg-page li li {margin-left:20px}



/*================================================================================ start of ckeditor styles ================================================================================*/
.cke_show_borders {background:#fff; margin:2px}



.stage2{
	display: none;
	font-size: 12px
}

/*
==============================================================================================

============================================================================================== */



.reviewContainer{
	clear: both;
}

#reviewForm{
	clear: both;
}

#reviewProcessing, #reviewMessage{
	clear: both;
	display: none;
	margin-bottom: 30px;
}

#raty{
	display: inline-block;
	margin-bottom: 10px;
	margin-top: 3px;
	height: 20px;
}
	#reviewForm label{
		float: left;
		width: 130px;
	}
	#reviewForm input[type="text"], #reviewForm input[type="email"], #reviewForm textarea{
		font-family: Arial, Helvetica, sans-serif;
		font-size: 12px;
	}
	#reviewForm input, #reviewForm textarea{
		margin-bottom: 10px;
	}
	#reviewForm input[type="text"], #reviewForm input[type="email"]{
		width: 280px;
	}
	#reviewForm textarea{
		width: 280px;
		height: 120px;
	}


/*
==============================================================================================
	Media Queries CSS
============================================================================================== */
@media screen and (max-width:1240px){
	.bx-wrapper .bx-prev{
		left:0;
	}
	.bx-wrapper .bx-next{
		right:0;
	}
}

@media screen and (max-width:1023px){
	.product-details-list > li > ul > li{
		width:100%;
		margin:0 0 10px 0;
	}
}
@media screen and (max-width:960px){
    /*.header{
        padding:20px 0 0 0;
    }
	.footer-nav > li{
		max-width:none;
	}
	#footer_nav {
		width:100%;
	}
	#footer_nav > li{
		padding:0 10px;
		text-align:center;
		width:25%;
	}
	#footer_contact{
		width:100%;
	}
	#footer_contact > li{
		float:none;
		text-align:center;
	}

	#footer_bottom{
		margin-top:20px;
	}*/

	.frame-price,
	.frame-add{
		width:50%;
		font-size:14px;
	}
	.frame-add span{
		display:none;
	}
}

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

	/* nav */
	#mobile_menu{
		display:block;
	}
	.nav-container{
		position: relative;
	}
    /* ==========================================================================
        Off canvas
    ========================================================================== */
    #offcanvas {
        position: absolute;
		top: 0;
		left: 0;
		right: 0;

		z-index: 999;
		background: rgba(0, 0, 0, 0.6);
		display:none;
    }
    #offcanvas.offcanvas-show {
        display: block;
    }
    #offcanvas_menu {
        position: absolute;
		top: 0;
		z-index: 1000;
		background: #fff;

		right:100%;
		width: 100%;

		border-top: 4px solid #008bac;
    }
    #offcanvas_menu:before{
		position: absolute;
		content: "";
		top: -24px;
		left: 6.875px;

		border-left: 17.5px solid transparent;
		border-right: 17.5px solid transparent;
		border-bottom: 20px solid #008bac;

		z-index: 1000;
	}
    #offcanvas_menu .nav {
      padding:0;
      display:block;
    }
    #offcanvas_menu .nav .heading {
		margin: 0;
		border-bottom: 0;
		padding: 0;
	}
    #offcanvas_menu .nav li {
      position: relative;
      width:100%;
    }

    #offcanvas_menu .nav li.active {
      color: #e8f600;
    }

    #offcanvas_menu .dropdown-list,
    #offcanvas_menu .dropdown-wrp{
        min-width:0;
    }

    #offcanvas_menu .nav-image-link{
        display:none;
    }

    #offcanvas.offcanvas-show .nav > li{
        margin:0 0 0 0;
		border-bottom: 2px solid #d9dde0;
    }
    #offcanvas.offcanvas-show .nav li:hover{
		background-color: transparent;
		color: #fff;
	}
    #offcanvas.offcanvas-show .nav li > a{
        padding:0;
        line-height:18px;
        padding: 15px 30px 15px 15px;
		color:#425363;

		font-size: 16px;

		width: 100%;

		position: relative;
    }
    #offcanvas.offcanvas-show .nav li > a:after{
		font-family: "Font Awesome 5 Regular";
		content: "\f054";
		font-size: 16px;
		color:#425363;

		width: 10px;
		height: 20px;

		position: absolute;
		top: 15px;
		right: 15px;
	}
   	#offcanvas.offcanvas-show .nav li > .heading{
		padding: 15px 30px 15px 15px;
	}
	#offcanvas.offcanvas-show .nav a:hover{
		color:#425363;
	}

	#offcanvas.offcanvas-show .nav li:hover > .dropdown-wrp,
	#offcanvas.offcanvas-show .nav li:hover > .mega-dropdown-wrp {
		display: none;
	}

    #offcanvas.offcanvas-show .dropdown-wrp {
		box-shadow:none;
		position:static;
		padding:0;
		/*display:block; */
		border: 0;
	}
	#offcanvas.offcanvas-show .dropdown-wrp .container{
		padding-left: 0;
		padding-right: 0;
	}
	#offcanvas.offcanvas-show .dropdown-wrp  .dropdown-list {
		width:100%;
		padding:0;
		margin-bottom: 0;
	}
	#offcanvas.offcanvas-show .dropdown-wrp .dropdown-list > li{
		border-bottom: 0;
		border-top: 2px solid #d9dde0;
	}
	#offcanvas.offcanvas-show .dropdown-wrp .dropdown-list > li > a{
		padding-left: 45px;
		margin: 0;
	}
	#offcanvas.offcanvas-show .dropdown-wrp .dropdown-list > li > .heading{
		padding-left: 45px;
		padding-top: 20px;
		padding-bottom: 20px;
		text-transform: uppercase;
	}
	#offcanvas.offcanvas-show .dropdown-wrp > .dropdown-list > li > a{
		text-transform:none;
		margin:0;
		font-weight:normal;
	}
	#offcanvas.offcanvas-show .dropdown-wrp .dropdown-list + .dropdown-list{
		margin-top: 0;
	}

	#offcanvas.offcanvas-show .nav li.icon > a{
		padding-left: 60px;
	}
	#offcanvas.offcanvas-show .nav li.icon > a:before{
		content: "";
		font-size: 16px;

		width: 30px;
		height: 30px;

		position: absolute;
		top: 9px;
		left: 15px;

		background-repeat: no-repeat;
		background-size: contain;
		background-position: center center;
	}
	#offcanvas.offcanvas-show .nav li.icon.icon-storepin > a:before{
		background-image: url('/img/general_icons/icon_storepin_yellow.svg');
	}

	#offcanvas.offcanvas-show .nav li.pink > a{
		color: #fff;
		background-color: #ba2872;
	}
	#offcanvas.offcanvas-show .nav li.pink:hover > a{
		color: #fff;
		background-color: #ba2872;
	}
	#offcanvas.offcanvas-show .nav li.pink > a:after{
		color: #fff;
	}
	#offcanvas.offcanvas-show .nav li.ducky-blue > a{
		background-color: #a9c3cb;
	}
	#offcanvas.offcanvas-show .nav li.ducky-blue:hover > a{
		background-color: #a9c3cb;
	}

	/* effects on rest of the page body */
	.offcanvas-body {
	  /*position: fixed;*/
	}
	#offcanvas_menu_close_wrp{
		display:block;
		color: #fff;
	}
	#offcanvas_menu_close{
		padding:10px;
		float:right;
		cursor:pointer;
	}
    /* END Canvas */

}
@media screen and (max-width:767px){


	#ftb_copy,
	#ftb_contact{
		width:100%;
		text-align:center;
		float:none;
		margin:5px 0 0 0;
	}




	.related-product-list li{
		width:33.33333333333333%;
	}


	/* checkout */
	.rb-total-tr .rb-td-right{
		width:50%;
		text-align:right;
	}
	.rb-total-td{
		width:50%;
		margin:0;
	}
	.rb-td-right.responsive,
	.rb-td,
	.rs-narrow{
		width:15%;
	}
	#finalreview .rb-product,
	.rb-product{
		width:40%;
	}
	.checkout-review-side{
		width:100%;
		padding:0;
	}

	/*.header-options{
		width:100%;
	}
	.header-search {
		margin:20px 0 0 0;
		position:relative;
	}
	#search_text{
		width:100%;
	}
	#submit_search{
		position:absolute;
		right:0;
		top:0;
	}
	#opt_login{
		position:absolute;
		right:20px;
		top:0;
	}
    .nav-basket{
        float:none;
    }*/

}
/*@media screen and (max-width:620px){
	#footer_nav {
		display:none;
	}
}
@media screen and (max-width:596px){

}
@media screen and (max-width:580px){
    .header{
        height:auto;
    }
	.header-logo{
		float:none;
        text-align: center;
	}
    .header-logo {
        margin-top: 0;
        padding: 0 40px;
    }
    #mobile_menu a {
        position: absolute;
        top: 10px;
        color:#c10d31;
        background:transparent;
        font-size:24px;
    }
    .mobile-option{
        display:block;
    }
    .header-options{
        display:none;
    }
    .nav-basket-wrapper{
        width:100%;
        left:0;
        right:0;
    }
	.header .container{
		padding-bottom: 55px;
	}

	.related-product-list ,
	.section-product-list {
		margin:0 0 0 -10px;
	}
	.related-product-list li,
	.section-product-list li{
		width:50%;
		padding:0 0 10px 10px;
	}

	.address-form-label{
		width:100%;
		margin:0 0 10px 0;
	}
	.address-form-input{
		width:70%;
	}
}
@media screen and (max-width:520px){
	.slider-wrapper{
		display:none;
	}
}
@media screen and (max-width:480px){


	.fancy{
		font-size:24px;
	}
	.fancy:before{
		border:0;
	}
	.product-tags-list > li{
		width:100%;
	}
}
@media screen and (max-width:479px){
	#finalreview .rb-td-right.responsive,
	#finalreview .rb-td{
		width:25%;
	}
	#finalreview .rb-product{
		width:50%;
	}
}
@media screen and (max-width:420px){
    .header-logo img {
        max-height: 45px;
    }
    #mobile_menu a,
    .mobile-option a{
        top:2px;
    }

}
@media screen and (max-width:360px){
	.wrapper{
		padding:0 10px;
	}

	.header-options a{
		font-size:12px;
	}

}
@media screen and (max-width:340px){
	.related-product-list li,
	.section-product-list li{
		width:100%;
	}

}
@media screen and (max-width:319px){

}
@media screen and (max-width:300px){

}*/

/*RR STYLES*/

/* BASIC */

.static-page ul, .tab-content ul{
	list-style-position: inside;
	padding-left: 20px;
	margin-bottom: 28px;
}

.static-page ul li, .tab-content ul li{
	margin-bottom: 5px;
}

.static-page ul > li > ul, .tab-content ul > li > ul{
	list-style-type: circle;
	margin-bottom: 0;
}

/* GRID */

/* PADDING COL 0px */
.row.padding-0{
	margin-right: -0px;
	margin-left: -0px;
}

.row.padding-0 > div[class*="col-"]{
	padding-left: 0px;
	padding-right: 0px;
}

/* PADDING COL 5px */
.row.padding-5{
	margin-right: -5px;
	margin-left: -5px;
}

.row.padding-5 > div[class*="col-"]{
	padding-left: 5px;
	padding-right: 5px;
}

/* row 5 columns */
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

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

@media (min-width: 1199px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

/* PAGE */

.section-page{
	padding: 30px 0;
}

/* FORMS */
.select2-selection.error{
	background-color: #da2228 !important;
}

.rr-white-select .select2-container--default .select2-selection.error.select2-selection--single .select2-selection__placeholder {
	color: #fff !important;
}

/* LISTS */

.list-inline.s0{
	margin-left: -0px;
}
.list-inline.s0 > li{
	padding-left: 0px;
	padding-right: 0px;
}
.list-inline.s10{
	margin-left: -10px;
}
.list-inline.s10 > li{
	padding-left: 10px;
	padding-right: 10px;
}
.list-inline.s15{
	margin-left: -15px;
}
.list-inline.s15 > li{
	padding-left: 15px;
	padding-right: 15px;
}
.list-inline.s20{
	margin-left: -20px;
}
.list-inline.s20 > li{
	padding-left: 20px;
	padding-right: 20px;
}

@media(min-width: 992px) and (max-width: 1199px){
	.list-inline.s10-md{
		margin-left: -10px;
	}
	.list-inline.s10-md > li{
		padding-left: 10px;
		padding-right: 10px;
	}
}

ul.list-checks{
	list-style: none;
	/*
	padding-left: 25px;
	*/
	margin: 20px 0;
}
ul.list-checks li{
	position: relative;
}

ul.list-checks-list{
	list-style: none;
	padding-left: 25px;
	margin: 20px 0;
}
ul.list-checks-list li{
	position: relative;
}

ul.list-checks-list li:after{
	position: absolute;
	top: 1px;
	left: -25px;
	font-family: "Font Awesome 5 Light";
	content: "\f00c";
	color: #00add8;
}

ul.list-checks-list li.outOfStock:after{
	content: "\f00d";
	color: #da2228;
}


ul.list-checks li span i.fa-times {
	color: #da2228;
	margin-right: 10px;
}

ul.list-checks li span .fa-check {
	color: #00add8;
	margin-right: 10px;
}

.package-product-stock-icon-hidden {
	display:none !important;
}

.package-product-stock-icon-display {
	display: inline-block !important;
}

/* HEADER */
a.top-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.6rem;
	text-transform: uppercase;
	height: 4rem;
	font-size: 14px;
	color: #000;
}
a.top-strip:hover {
	background-color: #dddedf;
	/* color: #00add8; */
	transition: all 0.5s;
}
a.top-strip:hover .dot {
	background-color: #00add8;
	transition: all 0.5s;
}
.dot {
	height: 0.8rem;
	width: 0.8rem;
	border-radius: 50%;
	background-color: #000;
}
@media(max-width: 520px) {
	.dot, 
	.mobile-hidden {
		display: none;
	}
}
.header-rr{
	background: #000;
	color: #fff;
	padding: 15px 0;
}

.header-rr .header-logo img{
	width: 300px;
	height: 67px;
}

@media(min-width: 992px){

	.list-header-top-parent{
		text-align: right;
	}
	.header-rr .list-header-top-main{
		text-align: right;
		margin-left: 0;
		margin-right: -10px;
	}
	.header-rr .list-header-main{
		text-align: right;
		margin-left: 0;
		/* margin-right: -20px; */
		height: 67px;
		line-height: 67px;
		padding-right: 5px;
	}
}

@media(max-width: 1199px) and (min-width: 992px){
	.list-header-top-basket-li{
		border-left: 1px solid #343434;
	}
}
@media(max-width: 991px){
	.list-header-top-main-li{
		float: left;
	}
	.list-header-top-basket-li{
		float: right;
	}

	.list-header-main{
		text-align: center;
		margin-top: 20px;
	}

	.list-header-main.closed{
		display: none;
		transition: display 3s linear;
	}
}

.header-rr .list-header-top-main{
	margin-bottom: 0;
}

.header-rr .list-header-top-main > li:not(:last-child){
	border-right: 1px solid #343434;
}

.header-rr a:link, .header-rr a:active, .header-rr a:visited {
	color: #fff;
	text-decoration: none;
}
.header-rr a:hover {
	color: #00add8;
	text-decoration: underline;
}

.header-rr i{
	color: #00add8;
}

.header-rr i.disabled{
	color: #686868;
}

.header-rr .icon-green{
	color: green;
}

.header-rr .icon-white{
	color: #fff;
}

/* delivery nav */

.delivery-container{
	background: #006083;
	font-weight:400;
	float:left;
	width:100%;
	margin:0;
}
.delivery-nav {
    margin:0;
    position:relative;

    display: table;
    table-layout: fixed;
    width: 100%;
}
.delivery-nav > li{
	list-style: none;
	display: table-cell;
}
.delivery-nav > li > a{
	padding: 5px 20px;
	display: block;
	text-align: center;
	color: #fff;
}

/* FOOTER */

.footer-rr{
	background-image: url('/img/image_footer.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;

	border-top: 10px solid #eaeaea;
}

.footer-rr .footer-logo{
	text-align: center;
	padding: 20px 0;
}
.footer-rr .footer-logo img{
	width: 300px;
	height: 67px;
}

.footer-rr h3{
	color: #00add8;
	margin-bottom: 15px;
}
.footer-rr ul{
	list-style: none;
	margin-bottom: 40px;
}
.footer-rr ul li{
	color: #000;
}
.footer-rr ul li i{
	color: #00add8;
	width: 25px;
}
.footer-rr p{
	color: #000;
	margin-bottom: 15px;
}

.footer-rr a:link, .footer-rr a:active, .footer-rr a:visited {
	color: #000;
	font-weight: 600;
}
.footer-rr a:hover {
	color: #00add8;
	font-weight: 600;
}

.footer-rr-bottom{
	background-color: #00add8;
	color: #fff;
	padding: 20px 0;
}

.footer-rr-bottom a:link, .footer-rr-bottom a:active, .footer-rr-bottom a:visited {
	color: #fff;
	text-decoration: none;
}
.footer-rr-bottom a:hover{
	color: #fff;
	text-decoration: underline;
}

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

@media(max-width: 768px){
	.footer-rr h3, .footer-rr p, .footer-rr ul{
		text-align: center;
	}
}

/* HOME PAGE */

/* find banner */
.top-banner{
	height: 350px;

	/*background-image: url('/img/image_thule_rack_guide.jpg');*/
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;

	position: relative;

	margin-bottom: 60px;

	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}

.top-banner:after{
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 50%;

	background: rgba(0,0,0,0.3);
	z-index: 2;
}

.top-banner-box{
	position: relative;
	z-index: 3;

	height: 350px;
	width: 100%;
	display: table;
	padding-left: 20px;
	padding-right: 20%;
}

.top-banner-box:before{
	content: "";
	position: absolute;
	top: 15px;
	right: 0;

	width: 150px;
	height: 150px;

	background-image: url('/img/logo_thule_white.svg');
	background-repeat: no-repeat;
}

.top-banner-content{
	display: table-cell;
	vertical-align: middle;
}

.top-banner-content h1, .top-banner-content p{
	color: #fff;
}

@media(max-width: 991px){
	.top-banner:after{
		right: 0;
	}

	.top-banner-box{
		padding-left: 20%;
		padding-right: 20%;
		text-align: center;
	}
}

@media(max-width: 767px){
	.top-banner-box{
		padding-left: 0;
		padding-right: 0;
	}
}

@media(max-width: 600px){
	.top-banner{
		height: 450px;
	}
	.top-banner-box{
		height: 450px;
	}
}

.section-heading{
	margin: 32px 0;
	text-align: center;
}
@media (min-width: 992px){
	.section-heading{
		text-align: left;
	}
}


/* section thumbs */

.section-thumb{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;

	margin-bottom: 60px;
	position: relative;
}

.section-thumb .title{
	position: absolute;
	bottom: 0;
	width: 100%;

	background-color: #fff;
	color: #000;

	padding: 15px 40px 15px 20px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
}

.section-thumb .title .title-text:after{
	position: relative;
	right: -10px;
	top: 1px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);

	font-family: "Font Awesome 5 Regular";
	content: "\f054";
	color: #00add8;
	font-size: 18px;
}

.section-thumb:hover .title:after{
	color: #008bac;
}

@media(min-width: 768px){
	.section-thumb .title .title-text{
		position: relative;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

/* latest news */

.latest-news{
	height: 500px;

	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;

	position: relative;

	margin-bottom: 60px;

	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}

.latest-news:after{
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;

	background: rgba(0,0,0,0.3);
	z-index: 2;
}

.latest-news-box{
	position: relative;
	z-index: 3;

	height: 500px;
	width: 100%;
	display: table;
}

.latest-news-content{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.latest-news-content .title{
	color: #00add8;
	margin-bottom: 15px;
	font-weight: 600;
}

.latest-news-content .news-title{
	color: #fff;
	font-weight: bold;
	margin-bottom: 15px;
}

.latest-news-content .news-date{
	color: #fff;
	font-weight: 600;
	margin-bottom: 30px;
}

@media(max-width: 991px){
	.top-banner:after{
		right: 0;
	}
}

/* mobile margins */

@media(max-width: 991px){
	.top-banner,
	.section-thumb,
	.latest-news{
		margin-bottom: 30px;
	}
}

/* FINDER */

.finder-box{
	background-color: #d0edf8;
	border-top: 10px solid #00add8;
	margin: 30px 0 60px;
	text-align: center;

	padding: 40px 0 0;
	position: relative;
}

.finder-intro{
	padding: 0 10%;
}

.finder-search{
	padding: 0 30px;
}

.finder-box h2{
	margin-bottom: 5px;
}

.finder-box p{
	margin-bottom: 20px;
}

.finder-icon{
	position: absolute;
	top: -35px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);

	border-radius: 50%;
	width: 60px;
	height: 60px;

	background-color: #00add8;
	content: "";
}
.finder-icon:before{
	position: absolute;
	content: "";
	background-image: url('/img/icon_car_withrack_white.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;

	width: 30px;
	height: 30px;
	top: 15px;
	left: 15px;
}

/*FINDER SEARCH FOR*/
.finder-searched-for-box{
	background-color: #d0efdd;
	border-top: 4px solid #20bf55;
	margin-bottom: 20px;
	text-align: center;

	padding: 20px 0;
	position: relative;
}

.finder-searched-for-intro{
	padding: 0 10%;
}

.finder-searched-for-box h3{
	margin-bottom: 5px;
}

.finder-searched-for-box p{
	margin-bottom: 0;
	color: #000;
	font-size: 18px;
}

.finder-searched-for-box a:link, .finder-searched-for-box a:active, .finder-searched-for-box a:visited {
	font-size: 14px;
	color:#000;
	text-decoration:underline;
}
.finder-searched-for-box a:hover {
	color:#000;
	text-decoration:underline;
}

.finder-searched-for-box.finder-message{
	background-color: #d0edf8;
	border-top: 4px solid #00add8;
	margin-top: 0;
}

/* DYNAMIC SECTION */

.dynamic-section-title{
	margin-bottom: 5px;
}

/*SECTION PAGE*/

/* section box */

.section-box{
	margin-bottom: 40px;
}

.section-box .image{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	margin-bottom: 15px;
}

.section-box .title{
	color: #000;
	font-size: 22px;
	line-height: 1.2;
	margin-bottom: 7px;
	padding-right: 20px;
}

.section-box .title .text{
	display: inline-block;
	position: relative;
}

.section-box .title .text:after{
	position: absolute;
	right: -20px;
	top: 3px;

	font-family: "Font Awesome 5 Regular";
	content: "\f054";
	color: #00add8;
	font-size: 16px;
}

.section-box .description{
	color: #686868;
}

/* product item */

.product-item{
	background-color: #fff;

	margin-bottom: 20px;
}
.product-item .item-image{
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;

	margin-bottom: 20px;
	border: 1px solid #d0d0d0;
}

.product-item .item-main-content{
	padding: 0;
}
.product-item .item-main-content p{
	margin: 0;
}
.product-item .item-main-content h3{
	margin-bottom: 10px;
}
.item-prices{
	margin-top: 5px;
}

.product-item h2{
	margin-bottom: 5px;
}

.product-item .price{
	font-size: 22px;
	margin-bottom: 0;
	color: #00add8;
	font-weight: bold;
}

.product-item .rrp-price{
	font-size: 18px;
	text-decoration: line-through;
	margin-bottom: 0;
	color: #da2228;
}

.product-item .price-ex-vat{
	color: #da2228;
}

.product-item .price-text{
	font-size: 16px;
	color: #686868;
	font-weight: normal;
}

.product-item .item-button{
	margin-top: 15px;
}

.product-item .item-colours{
	padding: 10px 0;
}

.product-item .item-colours .colour{
	width: 20px;
	height: 20px;
	border: 1px solid #d0d0d0;
}

.product-item .item-colours .colour.silver{
	background-color: #e2e2e4;
}
.product-item .item-colours .colour.black{
	background-color: #000;
}

/* product item inline */

.product-item-inline{
	background-color: #fff;

	border-bottom: 1px solid #ccc;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.product-item-inline .item-main-content{
	padding: 0;
}

.product-item-inline h2{
	margin-bottom: 5px;
}

.product-item-inline .price{
	font-size: 22px;
	margin-bottom: 0;
	color: #00add8;
	font-weight: bold;
}

.product-item-inline .rrp-price{
	font-size: 18px;
	text-decoration: line-through;
	margin-bottom: 0;
	color: #da2228;
}

.product-item-inline .price-ex-vat{
	color: #da2228;
}

.product-item-inline .price-text{
	font-size: 16px;
	color: #686868;
	font-weight: normal;
}

.product-item-inline .item-button{
	margin-top: 0;
}

.product-item-inline .item-button input[type="submit"].button{
	padding: 15px 0;
}

/* vehicle item inline */

.vehicle-item-inline{
	background-color: #fff;

	border-bottom: 1px solid #ccc;
	padding: 15px 30px 15px 10px;

	position: relative;
}

.vehicle-item-inline:hover{
	background-color: #d0edf8;
}

.vehicle-item-inline:after{
	position: absolute;

	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);

	font-family: "Font Awesome 5 Regular";
	content: "\f054";
	color: #00add8;
	font-size: 20px;
}


.vehicle-item-inline .item-main-content{
	padding: 0;
}

.vehicle-item-inline h3{
	margin-bottom: 0;
}

@media(max-width: 767px){
	.vehicle-item-inline h3.vehicle-name{
		margin-bottom: 5px;
	}
}

/* FORMS */

.rr-white-select{
	position: relative;
	margin-bottom: 20px;
	background: #fff;
}
select.rr-white, .rr-white-select .select2{
	height: 52px;
	/*background: #fff;*/
	/*padding-left: 15px;
	padding-right: 30px;*/

	color: #000;
	font-size: 16px;
	font-weight: 600;

	border: 0;
	border-radius: 3px;

	-webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';

    z-index: 2;
}
select.rr-white::-ms-expand, .rr-white-select .select2::-ms-expand {
    display: none;
}
.rr-white-select:after{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);

	right: 15px;
	content: "\f078";
	font-family: "Font Awesome 5 Regular";
	font-size: 14px;
	color: #000;

	z-index: 1;
}

.rr-white-select .select2{
	width: 100% !important;
}
.rr-white-select .select2-container .select2-selection--single{
	height: 52px;
	border: 0;
	border-radius: 3px;
}
.rr-white-select .select2-container--default .select2-selection--single{
	background: transparent;
}
.rr-white-select .select2-container--default .select2-selection--single .select2-selection__placeholder{
	color: #444;
}
.rr-white-select .select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0 30px 0 10px;
	width: 100%;
	height: 100%;
	line-height: 52px;
	color: #000;
}
.rr-white-select .select2-container--default .select2-selection--single .select2-selection__arrow{
	display: none;
}
.select2-container--open .select2-dropdown--below{
	border-top: 1px solid #aaa;
	border-radius: 3px;
}

.rr-form-button{
	margin-bottom: 20px;
}

.select2-container--default .select2-results > .select2-results__options {
	max-height: 400px;
}

.select2-results__option{
	padding: 2px 6px;
}


/* input form - header search */

.rr-input-form{
	position: relative;
}
input[type="text"].rr-input-form-input{
	background: #fff;
	height: 40px;
	color: #000;
	font-size: 14px;
	padding-left: 15px;
	padding-right: 30px;
	border: none;
	border-radius: 3px;
	width: 280px;
}
button.rr-input-form-button{
	position: absolute;
	top: 13.5px;
	right: 0;
	width: 40px;
	height: 40px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	background: #00add8;
	color: #fff;
	border: 0;
	padding: 0;
}
button.rr-input-form-button i{
	color: #fff;
}

@media(max-width: 991px){
	.header-rr button.rr-input-form-button{
		top: 0 !important;
	}
}

/*PRODUCT PAGE*/

/* product page - slick images slider */

.slick-product-slider{
	padding: 0 30px;
	margin-top: 30px;
}
.slick-product-slider .image{
	border: 1px solid #d0d0d0;
	margin: 0 10px;
}
.slick-product-slider img{
	padding: 0 10px;
}
.slick-product-slider .slick-prev::before, .slick-product-slider .slick-next::before{
	font-family: "Font Awesome 5 Light";
	font-size: 22px;
	color: #00add8;
	opacity: 1;
}
.slick-product-slider .slick-prev::before{
	content: "\f137";
}
.slick-product-slider .slick-next::before{
	content: "\f138";
}
.slick-product-slider .slick-prev, .slick-product-slider .slick-next{
	box-shadow: none;
	border-radius: 0;
	height: 25px;
	width: 25px;
	z-index: 3;
}
.slick-product-slider .slick-prev{
	left: 0;
}
.slick-product-slider .slick-next{
	right: 0;
}

/* product page - share */

.product-share{
	margin-bottom: 60px;
	text-align: center;
	color: #000;
}

.product-share i{
	color: #00add8;
}

/* product page - info basic */

.product-info-basic{
	margin-bottom: 60px;
}
.product-info-basic h1{
	margin-bottom: 10px;
}

.product-info-basic h2{
	margin-bottom: 10px;
	margin-top: 25px;
}

.product-info-basic .price{
	font-size: 22px;
	margin-bottom: 0;
	color: #00add8;
	font-weight: bold;
}

.product-info-basic .price-light{
	font-size: 22px;
	margin-bottom: 0;
	color: #00add8;
	font-weight: normal;
}

.product-info-basic .rrp-price{
	font-size: 18px;
	text-decoration: line-through;
	margin-bottom: 0;
	color: #da2228;
}

.product-info-basic .price-ex-vat{
	color: #da2228;
}

.product-info-basic .price-text{
	font-size: 16px;
	color: #686868;
	font-weight: normal;
}

.product-info-basic .list-add-to-basket{
	margin-bottom: 20px;
}

.product-info-basic .locks-number-box{
	background-color: #eaeaea;
	padding: 20px;
	margin: 30px 0;
}

.product-info-basic .option{
	margin-top: 0;
}

.product-info-basic .delivery-message{
	color: orange;
	margin: 10px 0;
}

/* product page - tabs */

.product-tabs{
	margin-bottom: 60px;
}

.tab-content{
	padding: 30px 0 0;
	border-top: 2px solid #343434;
}
.tab-content .embed-responsive{
	margin-bottom: 28px;
}
.tab-content > .tab-pane {
    display: none;
}
.tab-content > .active {
    display: block;
}
.tabs-desktop .nav-tabs {
	border: 0;
}
.tabs-desktop .nav-tabs > li {
	margin-top: 0;
	margin-right: 5px;
}
.tabs-desktop .nav-tabs > li > a {
	margin: 0;
	color: #000;
	padding: 15px 7px;
	background: #eaeaea;
	text-decoration: none;
	outline: 0;
	border: 0;
	line-height: normal;

	font-size: 14px;
}
.tabs-desktop .nav-tabs > li > a:hover,
.tabs-desktop .nav-tabs > li.active > a,
.tabs-desktop .nav-tabs > li.active > a:focus,
.tabs-desktop .nav-tabs > li.active > a:hover {
    color: #fff;
    background: #343434;
}

.tabs-responsive .tab-content{
	border: 1px solid #eaeaea;
}

.tabs-responsive .headers-list{
	margin: 0;
	list-style: none;
}
.tabs-responsive .headers-list > li {
	margin: 0;
	position: relative;
}
.tabs-responsive .headers-list > li.heading > a{
	outline: 0;
	padding: 15px 83px 15px 30px;
	margin: 0;
	position: relative;
	display: block;
	text-decoration: none;
	background-color: #343434;
	color: #fff;
}
.tabs-responsive .headers-list > li.heading > a:after{
	font-family: "Font Awesome 5 Light";
	content: "\f106";
	position:absolute;
	right: 30px;
	top: 50%;

	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);

	-webkit-transition: all 350ms ease;
	-moz-transition: all 350ms ease;
	-ms-transition: all 350ms ease;
	-o-transition: all 350ms ease;
	transition: all 350ms ease;
}

.tabs-responsive .headers-list li.heading.tab-heading-spare-parts > a {
	background-color: #eaeaea;
	color: #000;
}

.tabs-responsive .headers-list li.heading.tab-heading-spare-parts > a:after {
	content: '';
}
/*.tabs-responsive .headers-list > li.heading span{
	position:absolute;
	top:0;
	right:0;
	width: 73px;
	height: 43px;
	display:inline-block;
	cursor: pointer;
}
.tabs-responsive .headers-list > li.heading span:after {
	content: "\f106";
	top: 50%;
	right: 30px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-right: 0;
	float: right;
	font-family: "Font Awesome 5 Light";
	text-align: center;
	position: absolute;
	color: #ffffff;

	-webkit-transition: all 350ms ease;
	-moz-transition: all 350ms ease;
	-ms-transition: all 350ms ease;
	-o-transition: all 350ms ease;
	transition: all 350ms ease;
}*/
.tabs-responsive .headers-list > li.heading.close-list > a{
	background-color: #eaeaea;
	color: #000;
}
.tabs-responsive .headers-list > li.heading.close-list > a:after {
	content: "\f107";
}
.tabs-responsive .headers-list > li.heading.close-list span:after {
	content: "\f107";
}
.tabs-responsive .headers-list > li.heading > ul{
	padding: 20px 30px;
}
.tabs-responsive .headers-list > li.heading > ul li{
	margin: 5px 0;
}
.tabs-responsive .headers-list > li.heading > ul li a{
	text-decoration: none;
}

@media(min-width: 992px){
	.tabs-desktop{
		display: block;
	}

	.tabs-responsive{
		display: none;
	}
}

@media(max-width: 991px){
	.tabs-desktop{
		display: none;
	}

	.tabs-responsive{
		display: block;
	}

	.tab-content{
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* product page - related */

.product-related{
	border-top: 1px solid #d0d0d0;
	border-bottom: 1px solid #d0d0d0;

	padding: 30px 0;
	margin-bottom: 60px;
}

.slick-related-products{
	padding: 0 30px;
}

.slide-related{
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 20px;
}

.slide-related .image{
	height: 150px;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;

	border: 1px solid #d0d0d0;

	margin-bottom: 20px;
}

.slide-related .name{
	color: #000;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.slide-related .price{
	font-size: 18px;
	margin-bottom: 0;
	color: #00add8;
	font-weight: bold;
}

.slide-related .rrp-price{
	font-size: 16px;
	text-decoration: line-through;
	margin-bottom: 0;
	color: #da2228;
}

.slide-related .price-text{
	font-size: 16px;
	color: #686868;
	font-weight: normal;
}

.slick-related-products .slick-prev::before, .slick-related-products .slick-next::before{
	font-family: "Font Awesome 5 Light";
	font-size: 22px;
	color: #00add8;
	opacity: 1;
}
.slick-related-products .slick-prev::before{
	content: "\f137";
}
.slick-related-products .slick-next::before{
	content: "\f138";
}
.slick-related-products .slick-prev, .slick-related-products .slick-next{
	box-shadow: none;
	border-radius: 0;
	height: 25px;
	width: 25px;
	z-index: 3;
}

.slick-related-products .slick-prev{
	left: 0;
	top: 75px;
}

.slick-related-products .slick-next{
	right: 0;
	top: 75px;
}

.product-offer-banner{
	padding: 40px 30px;
	color: #fff;

	background: linear-gradient(rgba(0,139,172, 0.8),rgba(0,139,172, 0.8)), url('/img/image_special_offers.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;

	margin-bottom: 60px;
}

.product-offer-banner .title{
	font-size: 26px;
	font-weight: bold;
}

@media(min-width: 992px){
	.product-offer-banner p{
		margin-bottom: 0;
	}
	.product-offer-banner a.button{
		padding-left: 10px;
		padding-right: 10px;

		width: 100%;
	}
}
@media(max-width: 991px){
	.product-offer-banner{
		text-align: center;
	}
}


.stock-notification-wrapper {
	margin-bottom: 40px;
}

/* package page - colour */

.package-colours{
	border-top: 1px solid #d0d0d0;
	border-bottom: 1px solid #d0d0d0;

	padding: 30px 0 0;
	margin-bottom: 30px;
}

.package-colours .colour-option{
	text-align: center;
	margin-bottom: 30px;
}

.package-colours .colour-option .colour-box{
	width: 50px;
	height: 50px;

	border: 1px solid #d0d0d0;
	margin: 0 auto 10px;
	cursor: pointer;
}

.package-colours .colour-option .colour-box.silver{
	background-color: #e2e2e4;
}
.package-colours .colour-option .colour-box.black{
	background-color: #000;
}

.package-colours .colour-option .colour-text{
	color: #000;
}

.package-colours .colour-option .colour-box .colour-select-icon{
	width: 100%;
	height: 100%;
	position: relative;
}

.package-colours .colour-option.selected .colour-box .colour-select-icon::after{
	content: "\f058";
	font-family: "Font Awesome 5 Solid";
	color: #00add8;
	font-size: 16px;

	bottom: 2px;
	right: 2px;

	position: absolute;
}

/*back in stock notification*/
#frmBackInStock label, .basic-form label{
	color: #000;
	display: block;
	margin-bottom: 10px;
}

#frmBackInStock input[type="email"], .basic-form input[type="email"], .basic-form input[type="text"]{
	max-width: 400px;
	width: 100%;
	height: 52px;
	border: 0;
	background-color: #eaeaea;
	border-radius: 3px;
	margin-bottom: 5px;
}

/*product page tabs*/
.product-technical-info div[class*="col-"]{
	margin-bottom: 5px;
}

/*BLOG*/
.boxes-grid .box{
		margin-bottom: 30px;
}
.boxes-grid .box .box-image{
			border-top: 4px solid #eaeaea;
			border-left: 4px solid #eaeaea;
			border-right: 4px solid #eaeaea;
			background-position: center center;
			background-size: cover;
			width: 100%;
}
.boxes-grid .box .box-content{
			border-left: 4px solid #eaeaea;
			border-right: 4px solid #eaeaea;
			padding: 30px;
}
.boxes-grid .box .box-content p{
				margin-bottom: 15px;
			}

.boxes-grid .box .box-content .title{
				font-size: 22px;
				color: #008bac;
			}
.boxes-grid .box .box-content .title a{
				color: #008bac;
}
.boxes-grid .box .box-content .sub-title{
				font-size: 17px;
				color: #008bac;
				margin-top: -15px;
			}
.boxes-grid .box .box-content .date{
				font-size: 14px;
				color: #00add8;
			}
.boxes-grid .box .box-content .abstract{
				font-size: 17px;
				color: #686868;
			}

.boxes-grid .box .box-button .btn{
			width: 100%;
			padding: 15px;
			border-radius: 0;
}
.boxes-grid .box .box-button .btn:hover{
			color: #fff;
}

.side-menu-box{
	padding: 15px;
	border: 4px solid #eaeaea;
	margin-bottom: 30px;
}


.side-menu-box .region .region-title{
			padding: 15px;
			text-transform: uppercase;
			font-size: 16px;

			position: relative;
			cursor: pointer;

			background-color: #eaeaea;
			color: #008bac;

	        margin-bottom: 10px;
}
.side-menu-box .region .region-title:after{
				position: absolute;
				right: 15px;
				top: 50%;
				transform: translateY(-50%);

				font-size: 14px;

				font-family: "Font Awesome 5 Pro";
				content: "\f078";

				-webkit-transition: all 0.3s;
		        -moz-transition: all 0.3s;
		        -o-transition: all 0.3s;
		        transition: all 0.3s;
			}

.side-menu-box .region .region-title.open{
				margin-bottom: 0;
}
.side-menu-box .region .region-title.open:after{
					content: "\f077";
				}

.side-menu-box .region .region-content{
			padding: 15px;
			display: none;

			-webkit-transition: all 0.3s;
	        -moz-transition: all 0.3s;
	        -o-transition: all 0.3s;
	        transition: all 0.3s;
}
.side-menu-box .region .region-content.open{
				display: block;
			}

.side-menu-box .region .region-content .link{
				margin-top: 5px;
				margin-bottom: 5px;
				font-size: 17px;
				color: #686868;
}
.side-menu-box .region .region-content .link a:hover{
					text-decoration: none;
				}

.side-menu-box .region .region-content .link.active a{
						color: #008bac;
					}


.pagination-bar{
	text-align: right;
}
.pagination-bar ul li{
			width: 30px;
			height: 30px;
			line-height: 30px;
			text-align: center;

			padding: 0;
			background-color: #eaeaea;

			color: #008bac;
			font-size: 14px;
}
.pagination-bar ul li a{
				display: inline-block;
				width: 100%;
				height: 100%;
				color: #008bac;
				font-size: 14px;
			}

.pagination-bar ul li:hover, .pagination-bar ul li.active{
				color: #fff;
				background-color: #008bac;
}
.pagination-bar ul li:hover a:hover, .pagination-bar ul li.active a:hover{
					text-decoration: none;
					color: #fff;
				}

.error{
	color: #dc3545;
}
.success{
	color: #28a745 !important;
}

/*price breaks*/
.table-bulk{
	text-align: center;
}
.table-bulk > tbody > tr > th, .table-bulk > tbody > tr > td{
	padding: 8px 20px;
}
.table-bulk th{
	background-color: #eaeaea;
	text-align: center;
}

/*compare div*/
.compareData{
	padding: 20px 0;
}

/* ~~~~~~~~~~ start of modal overlay for checkout ~~~~~~~~~~ */
/* modal background */
#modal {
  display:none;						/* Hidden by default */
  position:fixed;					/* Stay in place */
  z-index:1;						/* Sit on top */
  padding-top:100px;				/* Location of the box */
  left:0;
  top:0;
  width:100%; 						/* Full width */
  height:100%; 						/* Full height */
  overflow:auto; 					/* Enable scroll if needed */
  background-color:rgb(0,0,0); 		/* Fallback color */
  background-color:rgba(0,0,0,0.4);	/* Black w/ opacity */
}
/* modal content */
/*
#modal-content {
  background-color:#fefefe;
  margin:auto;
  padding:0;
  border:1px solid #888;
  width:80%;
  max-width:960px;
  padding:10px;
  position:relative;
}
#modal-content h2 {text-align:center; margin:20px 0;}
#modal-content i {font-size:50px; display:block; margin:auto;}
#modal-content p {margin:0;}
#modal-content .delivery_method {padding:10px; margin:10px 0; border:1px solid #00add8;}
#choose_country {display:none;}
*/
/* ~~~~~~~~~~  end of modal overlay for checkout  ~~~~~~~~~~ */

.delivery_method {padding:10px; margin:10px 0; border:1px solid #00add8;}
.delivery_method h2 {text-align:center; margin:20px 0;}
.delivery_method i {font-size:50px; display:block; margin:10px auto;}
.delivery_method p {margin:10px 0;}
.delivery_method input {display:block !important; margin:10px 0;}
.delivery_method select {margin:10px 0;}
.delivery_method #choose_country {display:none;}

.file-icon{
	font-size: 30px !important;
}

@media(max-width: 991px){
	.basket-item-image{
		margin-bottom: 15px;
	}
}
.basket-item-info>span{
	font-size:14px;
}
@media(max-width: 767px){
	.basket-item-info{
		margin-bottom: 20px;
	}
	.basket-button{
		margin-bottom: 20px;
	}
}

/* adding quantity to section pages */

.section-products{
	padding-bottom: 10px;
}
.section-product-quantity{
	width: 100%;
	margin-bottom: 5px;
}
.section-product-quantity li{
	width: 33.333333%;
}
.section-product-quantity input[type="text"], .section-product-quantity button{
	height: 52px;
	padding: 10px 20px;
	width: 100%;
}

#accordion div p:last-child{
	margin-bottom: 0;
}

@media (max-width: 475px) {
	#package_buy_parts{
		margin-top:10px;
	}
}


.promotion-wrapper{
	margin-top: 36px;
}

.promotion-block{
	border: 1px solid var(--primaryBackground);
	border-radius: 5px;
	padding: 7px 30px 12px 30px;
	margin-bottom: 10px;
}