/**
 * BASE
 */
body {
	font-family: 'Roboto', sans-serif;
	font-size: 0.875rem;
	color: #474c58;
	background: #fff;
}

/**
 * ELEMENT
 */
:focus {
	outline: none;
}
.hidden {
	display: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
h2 {
	color: #15b1e1;
	line-height: 1.2;
	margin-bottom: 1.25rem;
}
@media screen and (max-width: 39.9375em) {
    h2 {
        font-size: 1.5rem;
        margin-bottom: .9375rem;
    }
}
h3 {
	color: #15b1e1;
	margin-bottom: .625rem;
}
p {
	line-height: 1.725;
}
p.lead {
	font-size: 1.5rem;
	font-weight: 300;
}
ul, ol, dl {
	line-height: 1.725;
}

/* Link */
a {
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

/* Form */
[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
	background-color: #fff;
	color: #474c58;
    height: 3.0625rem;
    padding: .625rem;
    margin-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
[type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus, textarea:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}
.em-checkbox label,
.em-radio label {
    font-size: 1.125rem;
    color: #444;
    position: relative;
    padding-left: 3rem;
    margin: 0;
    height: 2.375rem;
}

.em-checkbox label:last-child, .em-radio label:last-child{
    padding-right: 0;
}

.em-checkbox label::before, .em-checkbox label::after,
.em-radio label::before, .em-radio label::after{
    font-family: FontAwesome;
    font-size: 1.125rem;
    cursor: pointer;
    top: 0;
    left: 0;
    position: absolute
}

.em-checkbox label.no-input,
.em-radio label.no-input{
    padding-left: 0;
    display: inline-block;
}

.em-checkbox label.no-input:before,
.em-radio label.no-input:before,
.em-checkbox label.no-input:after,
.em-radio label.no-input:after{
    content: none;
}

.em-checkbox label::before {
    content: "\f0c8"
}

.em-radio label::before {
    content: "\f111"
}

.em-checkbox label::after {
    content: "\f14a";
    opacity: 0
}

.em-radio label::after {
    content: "\f058";
    opacity: 0
}

.em-radio label::after,
.em-radio label::before{
    content: "";
    width: 2.3125rem;
    height: 2.375rem;
    background: transparent url(../images/yes-no-icon.png) no-repeat left top scroll;
    background-size: auto 2.3125rem;
    overflow: hidden;
}

.em-radio label::before{
    background-position: top right;
}


.em-checkbox input[type="checkbox"],
.em-radio input[type="radio"] {
    opacity: 0;
    -webkit-appearance: none;
    display: inline-block;
    vertical-align: middle;
    z-index: 100
}

.em-checkbox input[type="checkbox"]:checked+label::before {
    opacity: 0;
}
.em-radio input[type="radio"]:checked+label::before {
    opacity: 0;
}

.em-checkbox input[type="checkbox"]:checked+label::after {
    opacity: 1;
}
.em-radio input[type="radio"]:checked+label::after {
    opacity: 1;
}

/* Validate */
label.error,
.error-message {
    display: block;
    color: #f04124;
    margin-top: .25rem;
}

/* Buttons */
.button {
	font-size: 1.125rem;
	font-weight: 500;
	padding: 0.9375rem 2.125rem 1rem;
	border: 0;
	border-radius: 5px;
}
.quick-quote-btn {
	display: inline-block;
	background-color: #FFF;
	background-image: -webkit-linear-gradient(bottom, #f3f3f3, #fff);
	background-image: linear-gradient(to top, #f3f3f3, #fff);
	color: #15b1e1;
	font-size: 1.125rem;
	line-height: 1;
	text-align: center;
	padding: 0.9375rem 1.125rem 1rem;
	cursor: pointer;
	vertical-align: middle;
	-webkit-appearance: none;
	-webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
	transition: background-color 0.25s ease-out, color 0.25s ease-out;
	border-radius: 5px;
}
.quick-quote-btn::before {
	content: "\f003";
	display: inline-block;
    font-family: FontAwesome;
    font-size: 1.125rem;
    font-weight: normal;
    margin-right: .75rem;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.quick-quote-btn.primary {
	background: #15b1e1;
	color: #fff;
}
.quick-quote-btn.primary:hover{
	background: #0b4c72;
}
.quick-quote-btn.large {
	font-size: 1.5rem;
	padding: 1.1875rem 1.75rem 1.25rem;
}
.quick-quote-btn.large::before {
	font-size: 1.875rem;
	margin-right: 1.25rem;
	position: relative;
    top: 1px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #870207;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Accordion */
.accordion {
	background: #fff;
}
.accordion-item {
	border-bottom: 1px solid #15b1e1;
}
.accordion-title {
	font-size: .875rem;
	border: 0;
	padding-left: 0;
    padding: 1.25rem 2.5rem 1.25rem 0;
    line-height: 1.5;
}
.accordion-title::before {
	content: "\f107";
	font-family: FontAwesome;
}
.is-active > .accordion-title::before {
	content: "\f106";
}
.accordion-title:hover, 
.accordion-title:focus {
	background: none;
}
.accordion-content {
	background: #fff;
	color: #474c58;
	border: 0;
	padding: 0 0 1rem;
}
:last-child > .accordion-content:last-child {
	border-bottom: 0;
}
:last-child:not(.is-active) > .accordion-title {
	border-bottom: 0;
}

.woocommerce div.product form.cart, .woocommerce div.product p.cart {
    float: left;
}

/**
 * GRID
 */
@media screen and (max-width:29.9375em) {
    .xsmall-full {
        width: 100% !important;
    }
    .xsmall-hide {
        display: none !important;
    }
    .xsmall-up-1>.column,
    .xsmall-up-1>.columns {
        width: 100%;
        float: left
    }
    .xsmall-up-1>.column:nth-of-type(1n),
    .xsmall-up-1>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-1>.column:nth-of-type(1n+1),
    .xsmall-up-1>.columns:nth-of-type(1n+1) {
        clear: both
    }
    .xsmall-up-1>.column:last-child,
    .xsmall-up-1>.columns:last-child {
        float: left
    }
    .xsmall-up-1>.columns {
        width: 100%;
        float: left
    }
    .xsmall-up-1>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-1>.columns:nth-of-type(1n+1) {
        clear: both
    }
    .xsmall-up-1>.columns:last-child {
        float: left
    }
    .xsmall-up-1 .column-item {
        width: 100%;
        float: left
    }
    .xsmall-up-1 .column-item:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-1 .column-item:nth-of-type(1n+1) {
        clear: both
    }
    .xsmall-up-1 .column-item:last-child {
        float: left
    }
    .xsmall-up-2>.column,
    .xsmall-up-2>.columns {
        width: 50%;
        float: left
    }
    .xsmall-up-2>.column:nth-of-type(1n),
    .xsmall-up-2>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-2>.column:nth-of-type(2n+1),
    .xsmall-up-2>.columns:nth-of-type(2n+1) {
        clear: both
    }
    .xsmall-up-2>.column:last-child,
    .xsmall-up-2>.columns:last-child {
        float: left
    }
    .xsmall-up-2>.columns {
        width: 50%;
        float: left
    }
    .xsmall-up-2>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-2>.columns:nth-of-type(2n+1) {
        clear: both
    }
    .xsmall-up-2>.columns:last-child {
        float: left
    }
    .xsmall-up-2 .column-item {
        width: 50%;
        float: left
    }
    .xsmall-up-2 .column-item:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-2 .column-item:nth-of-type(2n+1) {
        clear: both
    }
    .xsmall-up-2 .column-item:last-child {
        float: left
    }
    .xsmall-up-3>.column,
    .xsmall-up-3>.columns {
        width: 33.33333%;
        float: left
    }
    .xsmall-up-3>.column:nth-of-type(1n),
    .xsmall-up-3>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-3>.column:nth-of-type(3n+1),
    .xsmall-up-3>.columns:nth-of-type(3n+1) {
        clear: both
    }
    .xsmall-up-3>.column:last-child,
    .xsmall-up-3>.columns:last-child {
        float: left
    }
    .xsmall-up-3>.columns {
        width: 33.33333%;
        float: left
    }
    .xsmall-up-3>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-3>.columns:nth-of-type(3n+1) {
        clear: both
    }
    .xsmall-up-3>.columns:last-child {
        float: left
    }
    .xsmall-up-3 .column-item {
        width: 33.33333%;
        float: left
    }
    .xsmall-up-3 .column-item:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-3 .column-item:nth-of-type(3n+1) {
        clear: both
    }
    .xsmall-up-3 .column-item:last-child {
        float: left
    }
    .xsmall-up-4>.column,
    .xsmall-up-4>.columns {
        width: 25%;
        float: left
    }
    .xsmall-up-4>.column:nth-of-type(1n),
    .xsmall-up-4>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-4>.column:nth-of-type(4n+1),
    .xsmall-up-4>.columns:nth-of-type(4n+1) {
        clear: both
    }
    .xsmall-up-4>.column:last-child,
    .xsmall-up-4>.columns:last-child {
        float: left
    }
    .xsmall-up-4>.columns {
        width: 25%;
        float: left
    }
    .xsmall-up-4>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-4>.columns:nth-of-type(4n+1) {
        clear: both
    }
    .xsmall-up-4>.columns:last-child {
        float: left
    }
    .xsmall-up-4 .column-item {
        width: 25%;
        float: left
    }
    .xsmall-up-4 .column-item:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-4 .column-item:nth-of-type(4n+1) {
        clear: both
    }
    .xsmall-up-4 .column-item:last-child {
        float: left
    }
    .xsmall-up-5>.column,
    .xsmall-up-5>.columns {
        width: 20%;
        float: left
    }
    .xsmall-up-5>.column:nth-of-type(1n),
    .xsmall-up-5>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-5>.column:nth-of-type(5n+1),
    .xsmall-up-5>.columns:nth-of-type(5n+1) {
        clear: both
    }
    .xsmall-up-5>.column:last-child,
    .xsmall-up-5>.columns:last-child {
        float: left
    }
    .xsmall-up-5>.columns {
        width: 20%;
        float: left
    }
    .xsmall-up-5>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-5>.columns:nth-of-type(5n+1) {
        clear: both
    }
    .xsmall-up-5>.columns:last-child {
        float: left
    }
    .xsmall-up-5 .column-item {
        width: 20%;
        float: left
    }
    .xsmall-up-5 .column-item:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-5 .column-item:nth-of-type(5n+1) {
        clear: both
    }
    .xsmall-up-5 .column-item:last-child {
        float: left
    }
    .xsmall-up-6>.column,
    .xsmall-up-6>.columns {
        width: 16.66667%;
        float: left
    }
    .xsmall-up-6>.column:nth-of-type(1n),
    .xsmall-up-6>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-6>.column:nth-of-type(6n+1),
    .xsmall-up-6>.columns:nth-of-type(6n+1) {
        clear: both
    }
    .xsmall-up-6>.column:last-child,
    .xsmall-up-6>.columns:last-child {
        float: left
    }
    .xsmall-up-6>.columns {
        width: 16.66667%;
        float: left
    }
    .xsmall-up-6>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-6>.columns:nth-of-type(6n+1) {
        clear: both
    }
    .xsmall-up-6>.columns:last-child {
        float: left
    }
    .xsmall-up-6 .column-item {
        width: 16.66667%;
        float: left
    }
    .xsmall-up-6 .column-item:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-6 .column-item:nth-of-type(6n+1) {
        clear: both
    }
    .xsmall-up-6 .column-item:last-child {
        float: left
    }
    .xsmall-up-7>.column,
    .xsmall-up-7>.columns {
        width: 14.28571%;
        float: left
    }
    .xsmall-up-7>.column:nth-of-type(1n),
    .xsmall-up-7>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-7>.column:nth-of-type(7n+1),
    .xsmall-up-7>.columns:nth-of-type(7n+1) {
        clear: both
    }
    .xsmall-up-7>.column:last-child,
    .xsmall-up-7>.columns:last-child {
        float: left
    }
    .xsmall-up-7>.columns {
        width: 14.28571%;
        float: left
    }
    .xsmall-up-7>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-7>.columns:nth-of-type(7n+1) {
        clear: both
    }
    .xsmall-up-7>.columns:last-child {
        float: left
    }
    .xsmall-up-7 .column-item {
        width: 14.28571%;
        float: left
    }
    .xsmall-up-7 .column-item:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-7 .column-item:nth-of-type(7n+1) {
        clear: both
    }
    .xsmall-up-7 .column-item:last-child {
        float: left
    }
    .xsmall-up-8>.column,
    .xsmall-up-8>.columns {
        width: 12.5%;
        float: left
    }
    .xsmall-up-8>.column:nth-of-type(1n),
    .xsmall-up-8>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-8>.column:nth-of-type(8n+1),
    .xsmall-up-8>.columns:nth-of-type(8n+1) {
        clear: both
    }
    .xsmall-up-8>.column:last-child,
    .xsmall-up-8>.columns:last-child {
        float: left
    }
    .xsmall-up-8>.columns {
        width: 12.5%;
        float: left
    }
    .xsmall-up-8>.columns:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-8>.columns:nth-of-type(8n+1) {
        clear: both
    }
    .xsmall-up-8>.columns:last-child {
        float: left
    }
    .xsmall-up-8 .column-item {
        width: 12.5%;
        float: left
    }
    .xsmall-up-8 .column-item:nth-of-type(1n) {
        clear: none
    }
    .xsmall-up-8 .column-item:nth-of-type(8n+1) {
        clear: both
    }
    .xsmall-up-8 .column-item:last-child {
        float: left
    }
}


/**
 * HEADER
 */
.site-header {
	position: relative;
	box-shadow: 3px 4px 20px rgba(2,2,2,.47);
	z-index: 10;
}
@media screen and (max-width: 74.9375em) {
	.header-desktop {
		display: none;
	}
}
.header-top-left {
	float: left;
}
.top-bar-wrap ul.menu{
	margin-left: -0.9375rem;
}
.top-bar-wrap ul.menu li a{
	padding: 14px 5px;
    color: #343434;
    font-size: 13px;
    line-height: 1.725;
    font-weight: 500;
}
.top-bar-wrap ul.menu li.current_page_item a,
.top-bar-wrap ul.menu li a:hover { 
	color: #15b1e1; 
}
.header-top-right {
	float: right;
}
.header-top-right .header-contact .phone,
.header-top-right .header-contact > div {
	display: inline-block;
	color: #343434;
	margin-left: 0.5rem;
	font-weight: 500;
	font-size: 13px;
}
.header-top-right .header-contact .phone:hover,
.header-top-right .header-contact > div span{
	color: #0b4c72;
}
.header-top-right .header-contact .top-button {
	display: inline-block;
	position: relative;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	line-height: 1.357;
	padding: 1rem 1.125rem;
	margin-left: 1rem;
	border: 0;	
	border-radius: 0 0 5px 5px;
    background: rgb(21, 225, 103);
}
.header-top-right .header-contact .top-button::before {
	content: "\f003";
	display: inline-block;
	font-family: FontAwesome;
	font-weight: normal;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	margin-right: .75rem;
}
.header .logo {
	padding: 0rem 0 .5rem;
	float: left;
}
.header .wa-based-tag {
	position: absolute;
	top: 33px;
	z-index: -1;
}
.header-pool-calc {
    float: right;
    margin-top: 1rem;
    padding: 0.875rem 3.4375rem 1rem 6rem;
    background: #FFF url(../images/calc-image.png) no-repeat left center / contain scroll
}

.header-pool-calc span.pool-calc-img {
    position: absolute;
    right: 0;
    top: -15px;
}

.header-pool-calc span.pool-calc-img {
    position: absolute;
    right: 0;
    top: -15px;
}

.header-pool-calc span.pool-calc-img img {
    display: inline;
    width: 70px;
}

.header-pool-calc > a {
	text-align: right;
	display: block;
	color: #999;
	line-height: 1.5rem;
	position: relative;
	padding-right: 5.125rem;
}
.header-pool-calc > a::after {
	content: "\f1de";
    display: none;
	display: none;
	font-family: FontAwesome;
	font-size: 3.875rem;	
	line-height: 1;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -2.125rem;
}
.header-pool-calc > a:hover {
	color: #15b1e1;
}
.header-pool-calc .pool-text-lg {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
}
.header-pool-calc .pool-text-sm {
	display: block;
}
.header-pool-calc .pool-text-sm i {
	margin-left: .625rem;
}

.header-search-wrap{
	padding: 20px;
}
.header-search-wrap .input-group{
	margin: 0;
}
#searchform .input-group .input-group-field{
	height: 50px;
}
.header-mobile {
	display: block;
	position: relative;
	height: 4rem;
	color: #15b1e1;
	line-height: 4rem;
	text-align: center;
}
@media screen and (min-width: 75em) {
	.header-mobile {
		display: none;
	}
}
.header-mobile .left-nav,
.header-mobile .right-nav {
	position: absolute;
	width: 4rem;
	height: 4rem;
	top: 0;
}
.header-mobile .left-nav {
	left: 0;
	border-right: 1px solid #d3d3d3;
}
.header-mobile .right-nav {
	right: 0;
	border-left: 1px solid #d3d3d3;
}
.header-mobile .right-nav--second {
	right: 4rem;
}
.header-mobile .middle-logo {
	position: absolute;
	height: 4rem;
	top: 0;
	left: 4rem;
	right: 8rem;
	padding: 0 .625rem;
}
.header-mobile .middle-logo img{
    max-height: 100%;
    vertical-align: top;
}
.header-mobile .nav-icon {
	display: block;
	cursor: pointer;
	font-size: 1.25rem;
}
.header-mobile .toggle-menu {
	width: 100%;
	line-height: inherit;
}
@media screen and (max-width: 29.9375em) {
	.header-mobile .middle-logo img {
		max-width: 12.5rem;
		width: 100%;
	}
}
@media screen and (min-width: 30em) {
	.header-mobile {
		height: 5rem;
		line-height: 5rem;
	}
	.header-mobile .left-nav,
	.header-mobile .right-nav {
		position: absolute;
		width: 5rem;
		height: 5rem;
		top: 0;
	}
	.header-mobile .right-nav--second {
		right: 5rem;
	}
	.header-mobile .middle-logo {
		height: 5rem;
		left: 5rem;
		right: 10rem;
		padding: 0 .9375rem;
	}
	.header-mobile .middle-logo h1 {
		line-height: 5rem;
	}
	.header-mobile .nav-icon {
		font-size: 1.875rem;
	}
}
/* Main navigation */
.main-navigation {	
	background-color: #15b1e1;	
}
.bppe-main-nav {
	float: left;
}
.main-menu {
	margin: 0;
	list-style: none;
}
.main-menu > li {
	float: left;
}
.main-menu li.menu-item-has-children {
	position: relative;
}
.main-menu li > a {
	display: block;
	color: #fff;
	padding: 1rem;
	white-space: nowrap;
	font-size: 1.125rem;
	font-weight: 700;
}
.main-menu > li > a {
	padding: .75rem 1rem;
	line-height: 2;
}
.main-menu > li.menu-item-home > a::before {
	content: "\f015";
	font-family: FontAwesome;
	font-weight: normal;
	display: inline-block;
	margin-right: .5rem;
}
.main-menu li:hover > a,
.main-menu li > a:hover,
.main-menu li.current_page_item > a {
	background-color: #2bcdff;
}
.main-menu ul.dropdown li > a:hover{
	background-color: #15b1e1;
}
.main-menu li.menu-item-has-children > a::after {
	content: "\f0d7";
	font-family: FontAwesome;
	display: inline-block;
	margin-left: .5rem;
}
.main-menu .dropdown {
	position: absolute;
    top: 100%;
    left: 0;
    background-color: #2bcdff;
    min-width: 12.5rem;
    padding: 0;
    border: 0;
    opacity: 0;
    visibility: hidden;  
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}
.main-menu > li > .dropdown {
	-webkit-transform: translateY(10px);
    transform: translateY(10px);
}
.main-menu .dropdown .dropdown {
	top: 0;
	left: 100%;
	-webkit-transform: translate(-10px, 0);
    transform: translate(-10px, 0);
}
.main-menu li:hover > .dropdown {
	opacity: 1;
	visibility: visible;
}
.main-menu > li:hover > .dropdown {
	-webkit-transform: translateY(0);
    transform: translateY(0);
}
.main-menu .dropdown li.menu-item-has-children > a::after {
	content: "\f0da";
}
.main-menu .dropdown li:hover > .dropdown {
	-webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.is-drilldown-submenu {
	background: #fff;
	min-height: 100%;
}

.nav-access {
	float: right;
}
.nav-access > * {
	float: left;
}
.nav-access--item > * {
	display: block;
	font-size: 1.125rem;
	color: #fff;
    font-weight: 700;
    padding: .75rem 1rem;
    line-height: 2;
    cursor: pointer;
}
.nav-access--item > *:hover {
	color: #fff;
	background-color: #2bcdff;
}
.nav-access--item i {
	margin-right: .875rem;
}
.nav-access--item .mini-cart{
	position: relative;
}
.nav-access--item .mini-cart .count{
	position: relative;
	display: inline-block;
	margin-left: 5px;
	background: #0b4c72;
	width: 24px;
	height: 24px;
	line-height: 24px;
	font-size: 12px;
	text-align: center;
	font-weight: normal;
	border-radius: 5px;
	top: -10px;
}
.search-toggle-wrapper{
    padding: 0.5rem 0rem;
}
.search-toggle-wrapper:hover{
    background: inherit;
}
.search-toggle{
    background: #FFF;
    display: block;
    border-radius: 4px;
    border: 3px solid #FFF;
    padding: 2px 1rem;
}
.search-toggle:hover{
    color: #FFF;
    background: #15b1e1;
}
/* Off-canvas */
.off-canvas {
	height: 100%;
	background: #fff;
	z-index: 20;
}
.off-canvas .menu li a {
	color: #474c58;
	padding: .75rem 2rem .75rem 1rem;
	line-height: 1.71428;
}
.off-canvas .menu li a:hover,
.off-canvas .menu .active > a,
.off-canvas .menu .current-menu-item > a {
	background-color: #f3f3f3;
	color: #15b1e1;
}
.off-canvas .menu li.split-line{
    display: block;
    border-top: 1px solid #d3d3d3;
}

.is-drilldown-submenu {
	background: #fff;
	min-height: 100%;
}
.is-drilldown-submenu-parent > a::after {
	border: 0;
	font-family: FontAwesome;
    content: "\f105";
    color: #474c58;
    width: auto;
    height: auto;
    margin-top: -.75rem;
}
.off-canvas .js-drilldown-back > a,
.off-canvas .js-drilldown-back > a:hover {
	background: #f3f3f3;
}
.js-drilldown-back > a::before {
	border: 0;
	font-family: FontAwesome;
    content: "\f104";
    width: auto;
    height: auto;
    margin-top: -2px;
}
.off-canvas .menu li a:hover::after,
.active.is-drilldown-submenu-parent > a::after {
	color: #15b1e1;
}
.off-canvas-content {
	background-color: #fff;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.js-off-canvas-exit {
	background: rgba(0, 0, 0, 0.75);
	z-index: 2000;
}

/* SEARCH */
.search-form {
	position: relative;
}
.search-full {
	position: fixed;
	background-color: rgba(21,177,225,.9);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    z-index: 10001;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.open-search-full .search-full {
	visibility: visible;
	opacity: 1;
}
.search-full .close-btn {
	position: absolute;
    top: 3.75rem;
    right: 2.5rem;
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
    width: 2.5rem;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.search-full .close-btn:hover {
	-webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.search-form-wrap {
	position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.search-full .search-form {
	max-width: 56.25rem;
	margin: 0 auto;
	border-bottom: 1px solid #fff;
	padding: .9275rem 0;
}
.search-form .search-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);	
	right: .9375rem;
	border: none;
	color: #142733;
	background: none;
}
.search-full .search-form .search-field {
	color: #fff;
	font-size: 1.5rem;
	font-style: italic;
	border: 0;
	height: 3.125rem;
	padding: .5rem 3.125rem .5rem .5rem;
	background: none;
	outline: none !important;
	box-shadow: none;
	margin-bottom: 0;
}
.search-full .search-form .search-button {
	width: 3.125rem;
	height: 3.125rem;
	right: 0;
	color: #fff;
}

.em-search {
	opacity: 0;
	visibility: hidden;
	background: #fff;
	padding: .9375rem;
	position: absolute;
	top: 100%;
	width: 100%;
	border-top: 1px solid #d3d3d3;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
	z-index: 99;
	-webkit-transform: translateY(-1.25rem);
    transform: translateY(-1.25rem);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 75em) {
	.em-search {
		display: none;
	}
}
.em-search.open {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.em-search .input-group {
	margin-bottom: 0;
}
.em-search .search-input {
	height: 2.75rem;
}
.em-search .button {
	padding: .8125rem 1rem;
}

/**
 * FOOTER
 */

/* product brand */
.brands {
    padding: 3.125rem 0;
    text-align: center;
}
.brands-container {
	
}
.brand-item {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
	padding: 1rem;
}
@media screen and (min-width: 40em) {
	.brand-item {
		width: 25%;
	}
}
@media screen and (min-width: 64em) {
	.brand-item {
		width: 16.66667%;
	}
}
/* Footer widget */
.footer {
	font-size: 0.625rem;
	color: #fff;
	position: relative;
}
.footer--visual {
	content: '';
	background: url('../images/footer-bg.jpg') #0b4c72 no-repeat 50% 50%;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.footer-inner {
	position: relative;
	padding: 4.375rem 0 2.5rem;
}
.footer a {
	color: #fff;
}
.footer a:hover {
	color: #15b1e1;
}
.footer-widget {
	font-weight: 900;
}
.contact-footer {
	position: relative;
	margin-bottom: 2rem;
}
.contact-footer .contact-label {
	position: absolute;
	left: 0;
}
.contact-footer .contact-value {
	display: block;
	padding-left: 6.625rem;
	white-space: nowrap;
}

/* Footer bottom */
.footer-bottom {
	background-color: #0A1F35;
	font-size: 0.75rem;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	color: #8699ad;
	line-height: 1.5;
	text-transform: uppercase;
	padding: 0.875rem 0;
}
.footer-bottom p {
	margin: 0;
}
.footer-bottom a {
	color: currentcolor;
}
.titan-digital span {
	color: #fff;
}
.titan-digital img {
	margin-left: 5px;
	display: inline-block;
	vertical-align: -5px;
}

.copyright{}
.copyright .inline-list{
    display: inline-block;
    margin: 0;
    list-style-type: none;
    float: right;
}
.copyright .inline-list li{
    display: inline-block;
    margin-left: 5px;
}
.copyright .inline-list a{    
    color: #FFF;    
}
.copyright .inline-list a:after{
    content: ".";
}
@media screen and (min-width: 64rem) {
	#menu-spare-parts li {
	    width: 50%;
	    float: left;
	}
	.copyright {
		text-align: left;
	}
	.titan-digital {
		text-align: right;
	}
}
@media screen and (max-width: 991px) {
    .copyright,
    .copyright .inline-list,
    .titan-digital{
        width: 100%;
        margin: 2px 0;
    }
    /*.copyright span{
        padding-left: 10px;
        padding-right: 10px;
    }*/
}
/**
 * SLIDER
 */
.home-slider {
	position: relative;
}
.home-slider > div {
	visibility: hidden;
}
.home-slider > div.slick-initialized {
	visibility: visible;
}
.home-slider .slide-content {
	position: relative;
}
.home-slider .slide-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.home-slider .slide-image img {
    display: none;
	max-width: none;
}
.home-slider .slide-caption {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 6rem .9375rem;
}
.home-slider .slide-caption > * {
	color: #fff;
}
.home-slider .slide-caption h2 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
    margin-bottom: .5rem;
}
.home-slider .slide-caption h3 {
	font-size: 3rem;
	font-weight: 300;
	line-height: 1;
    margin-bottom: 2rem;
}
.slide-caption p {
	font-size: 1.875rem;
	font-weight: 300;
	margin: 0;
	line-height: 1.2;
}
@media screen and (max-width: 39.9375em) {
    .home-slider .slide-caption {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
	.home-slider .slide-caption h2,
	.home-slider .slide-caption h3 { 
		font-size: 1.875rem;
	}
	.home-slider .slide-caption p {
		font-size: 1.25rem;
	}
}

/**
 * WIDGET
 */
.sidebar .widget {
	margin-bottom: 2rem;
    /* max-width: 370px; */
}
.widget .widget-title {
	font-size: 1.125rem;
	color: #0b4c72;
	font-weight: 500;
	margin-bottom: 1rem;
}
.widget_layered_nav ul,
.widget_recent_comments ul,
.widget_product_categories ul,
.widget_rss ul,
.widget_recent_entries ul,
.widget_pages ul,
.widget_meta ul,
.widget_categories ul,
.widget_archive ul,
.widget_nav_menu ul {
	list-style: none;
	margin: 0;
}
.widget_layered_nav ul li,
.widget_recent_comments ul li,
.widget_product_categories ul li,
.widget_rss ul li,
.widget_recent_entries ul li,
.widget_pages ul li,
.widget_meta ul li,
.widget_categories ul li,
.widget_archive ul li,
.widget_nav_menu ul li {
	display: block;
}
.widget_layered_nav ul a,
.widget_recent_comments ul a,
.widget_product_categories ul a,
.widget_rss ul a,
.widget_recent_entries ul a,
.widget_pages ul a,
.widget_meta ul a,
.widget_categories ul a,
.widget_archive ul a,
.widget_nav_menu ul a {	
	display: inline-block;
}
.widget_nav_menu ul a {
	padding: 0;
}
.sidebar .widget_layered_nav ul a,
.sidebar .widget_recent_comments ul a,
.sidebar .widget_product_categories ul a,
.sidebar .widget_rss ul a,
.sidebar .widget_recent_entries ul a,
.sidebar .widget_pages ul a,
.sidebar .widget_meta ul a,
.sidebar .widget_categories ul a,
.sidebar .widget_archive ul a,
.sidebar .widget_nav_menu ul a {
	color: #444;
}

.sidebar .widget_layered_nav ul li span{
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.sidebar .widget_layered_nav ul li a:hover,
.sidebar .widget_layered_nav ul li a:hover ~ span{
	color: #15b1e1;
}

.product-category-block.widget_product_categories,
.sidebar .widget_shopping_cart {
	padding: 1.5rem 1.875rem;
}
.product-category-block.widget_product_categories {
	background-color: #0b4c72;
}
.product-category-block.widget_product_categories .widget-title {
	font-size: 1.5rem;
	color: #fff;
}

.product-category-block.widget_product_categories ul a {
	color: #fff;
	font-weight: 500;
}
.product-category-block .expand {
    color: #FFF;
    float: right;
    cursor: pointer;
    font-size: 10px;
    text-transform: uppercase;
}
.product-category-block .expand::after{
	content: "\f0d7";
	font-family: FontAwesome;
	margin-left: 5px;
	font-size: 12px;
}
.product-category-block .expand.open::after{
	content: "\f0d8";
}
.product-category-block .subcats-wrap{
	display: none;
}
.sidebar .widget_shopping_cart {
	background-color: #f8f8f8;
}
.sidebar .widget_shopping_cart .widget-title {
	font-size: 1.5rem;
	color: #0b4c72;
}
.footer .widget .widget-title {
	font-size: 1.125rem;
	color: #fff;
	font-weight: 700;
	text-transform: capitalize;
	letter-spacing: normal;
}
.footer-widget {
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 2rem;
}
.footer .widget_nav_menu ul a {
	line-height: 2.4;
}
.footer-widget p {
	line-height: 2.4;
	margin-bottom: 0;
}
.opening-time-block{ max-width: 300px; }
.opening-time-block span.time-value{
	float: right;
}

/* Breadcrum */
.breadcrumbs {
	margin: 1.5rem 0;
}
.breadcrumbs li {
	font-size: .875rem;
	color: #9c9c9c;
	text-transform: none;
}
.breadcrumbs a {
	color: currentcolor;
}
.breadcrumbs li:not(:last-child)::after {
	content: '/';
	margin: 0 .25rem;
	top: 0;
}
.breadcrumbs li.item-home-label {
	margin-right: .25rem;
}
.breadcrumbs li.item-home-label::after {
	display: none;
}

/**
 * SIDEBAR 
 */
.sidebar {
	margin-top: 2rem;
}
@media screen and (min-width: 64em) {
	.sidebar {
		margin-top: 0;
	}
}


/**
 * PAGE
 */

/**
 * 404 
 */
.page-404 {
	padding-top: 4.063rem;
}

/* Page header */
.page-header-wrapper {
	background-color: #15b1e1;
	padding: 4.25rem 0 4.375rem;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.page-header-wrapper::before{
	content: "";
}
.page-header-wrapper > .row{
	position: relative;
	z-index: 10;
}
.page-header-wrapper--bg {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 63.9375em) {
	.page-header-wrapper {
		text-align: center;
	}
	.page-title {
		margin-bottom: 1.25rem;
	}
}
.page-title h2,
.page-title h1 {
	font-size: 3rem;
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}
h1.page-title{
	color: #15b1e1;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 1.25rem;
    font-size: 1.875rem;
}
.page-header-wrapper .quick-contact > span{
	color: #FFF;
	font-size: 1.125rem;
	font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
	.page-header-wrapper .quick-contact > span {
		margin-right: .75rem;
	}
}
.page-header-wrapper .quick-contact .quick-actions{
	display: inline-block;
}
@media screen and (min-width: 40em) {
	.page-header-wrapper .quick-contact {
		margin-top: .25rem;
	}
    .page-header-wrapper .quick-contact > span {
        display: inline-block;
        margin-right: 1.25rem;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 64em) {
	.page-header-wrapper .quick-contact {
		text-align: right;
	}
}

/* Page Content */
.site-content {
	/* padding-bottom: 3.75rem; */
}

/* Quick Note Block */
.quick-quote-block {
	background: url('../images/quick-note-bg.jpg') #15b1e1 no-repeat 50% 50%;
	background-size: cover;
	text-align: center;
}
.quick-quote-block .quick-quote-wrap {
	padding: 2.5rem 0;
}
.quick-quote-block p {
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 0;
	line-height: 1.2;
}
.quick-quote-block .button-wrap {
    margin-top: 1.5rem;
}
@media screen and (min-width: 40em) {
    .quick-quote-block .quick-quote-wrap {
        padding: 3.8125rem 0;
    }
    .quick-quote-block .button-wrap {
        margin-top: 2.5rem;
    }
    .quick-quote-block p {
        font-size: 1.875rem;
    }
}

@media screen and (min-width: 64em) {
	.quick-quote-block {
		text-align: left;
	}
	.quick-quote-block .button-wrap {
		float: right;
		margin-top: 2px;
	}
}

/* Sidebar */


/* HOME
------------------------------------ */
.quick-actions{
	color: #FFF;
	text-align: center;
}
.quick-actions span{
	font-size: .75rem;
	font-weight: 700;
	margin: 0 1.25rem;
}
@media screen and (max-width: 29.9375em) {
	.quick-actions span {
		display: block;
		margin: 1rem 0 .5rem;
	}
}
.quick-actions .button::before{
	content: "\f003";
	font-family: FontAwesome;	
	margin-right: 12px;
	font-weight: normal;
}
.quick-actions .link{
	font-size: 1.125rem;
	font-weight: 700;
	color: #FFF;
	padding-right: 15px;
	position: relative;
	display: inline-block; 
}
.quick-actions .link::after{
	content: "\f105";
	font-family: FontAwesome;		
	font-weight: normal;
	position: absolute;
	right: 0;
	-webkit-transition: right 300ms ease-in-out;
	transition: right 300ms ease-in-out;
}
.quick-actions .link:hover::after{
	right: -.3125rem;
}
.woo-steps-block{
	padding: 3.125em 0 3.438em 0;
	text-align: center;
}
.woo-steps-block ul.steps{
	margin: 0;
	padding-top: 0;
	list-style-type: none;
}
.woo-steps-block ul.steps li{
	width: 100%;
	display: inline-block;
	text-align: left;
	vertical-align: top;
	margin-bottom: 1rem;
}
.woo-steps-block ul.steps li:not(:last-child) {
	padding-right: 1.875rem;
}
@media screen and (min-width: 40em) and (max-width: 74.9375em) {
	.woo-steps-block ul.steps li {
		width: 50%;
	}
	.woo-steps-block ul.steps li:nth-child(3),
	.woo-steps-block ul.steps li:nth-child(4) {
		margin-bottom: 0;
	}
}
@media screen and (min-width: 75em) {
	.woo-steps-block ul.steps li {
		width: auto;
		margin-bottom: 0;
	}
}
.woo-steps-block ul.steps li a{
	display: block;
	color: #555;
	position: relative;
	-webkit-transition: none; 
    transition: none; 
}
.woo-steps-block ul.steps li:not(:last-child) a {
	padding-right: 1.875rem;
}
.woo-steps-block ul.steps li:not(:last-child) a::after {
	content: "\f105";
	font-family: FontAwesome;
	line-height: 5.375rem;
	display: inline-block;
	font-size: 3rem;
	color: #d3d3d3;
	position: absolute;
	top: 0;
	right: 0;
}
.woo-steps-block ul.steps li .box-icon-step{
	display: table-cell;
	font-size: 3rem;
	border: 2px solid #555;
	width: 5.375rem;
	height: 5.375rem;
	text-align: center;
	border-radius: 50%;
    vertical-align: middle;
}
.woo-steps-block ul.steps li .box-icon-step i {
	vertical-align: middle;
}
.woo-steps-block ul.steps li label,
.woo-steps-block ul.steps li .step-label{
	display: table-cell;
	font-size: 1.375rem;	
	padding-left: 1.25rem;
	line-height: 1.143;
	vertical-align: middle;
	cursor: pointer;
}
.woo-steps-block ul.steps li a:hover label,
.woo-steps-block ul.steps li a:hover .step-label,
.woo-steps-block ul.steps li a:hover{ 
	color: #15b1e1;
}
.woo-steps-block ul.steps li a:hover .box-icon-step{
	border-color: #15b1e1;
}

@media screen and (min-width: 75em) {
    .woo-steps-block ul.steps li .step-label,
	.woo-steps-block ul.steps li label {
		max-width: 9.375rem;
	}
}

.woo-quick-quote-widget .quick-quote-wrap{
	background:	url('../images/quick-contact-bg.jpg') no-repeat center center;
	background-size: cover;
    padding-top: 6em;
    padding-bottom: 5em;
}
.page .woo-quick-quote-widget .quick-quote-wrap{
    background-image: url('../images/nicole-photo-2.jpg');
}
.home.page .woo-quick-quote-widget .quick-quote-wrap{
    background-image: url('../images/nicole-photo.jpg');
}
.woo-quick-quote-widget .quick-quote-wrap .content {
	text-align: center;
	line-height: 1;
}
@media screen and (min-width: 40em) {
	.woo-quick-quote-widget .quick-quote-wrap .content {
		float: right;
		margin-right: 8.33333%;
	}
}
.woo-quick-quote-widget .quick-quote-wrap .content p{
	font-size: 3rem;
	line-height: 1;
	font-weight: 300;
	margin-bottom: 1.625rem
}

.testimonials-block {
	padding-top: 3.438em;
	padding-bottom: 5.625em;
	background: url('../images/testimonials-bg.jpg') #15b1e1 no-repeat 50% 50%;
	background-size: cover;	
}
.testimonials-block .testimonials-slider{
	margin-bottom: 50px;
}
.testimonial .testimonial-content {
	text-align: center;
	color: #FFF;
    position: relative;
    padding: 35px 100px 0;
	margin-bottom: 25px;
}
.testimonial .testimonial-content::before,
.testimonial .testimonial-content::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
}
.testimonial .testimonial-content::before{
	background-image: url(../images/quote-left.png);
    background-position: top left;
}
.testimonial .testimonial-content::after{
	background-image: url(../images/quote-right.png);
	background-position: right bottom;
}
@media screen and (max-width: 39.9375em) {
	.testimonial .testimonial-content {
		padding: 2rem 2rem 0;
	}
	.testimonial .testimonial-content::before,
	.testimonial .testimonial-content::after {
		background-size: 40px auto;
	}
}
.testimonials-slider .slick-dots li,
.testimonials-slider .slick-dots li button{
	width: 10px;
	height: 10px;
}
.testimonials-slider .slick-dots li button:before{
	font-size: 12px;
}
.testimonials-slider .slick-dots li.slick-active button:before{
	color: #FFF;
}
.testimonial .testimonial-content {}

.testimonial .testimonial-content p {
	font-size: 1.5rem;
	color: #FFF;
	line-height: 1.25;
	font-weight: 300;
	font-style: italic;
	margin-bottom: 15px;
}
.testimonial .testimonial-content strong,
.testimonial .testimonial-content b{
	font-weight: 500;
}
.testimonials-slider .testimonial .testimonial-by {
	font-size: .875rem;
	color: #FFF;
	font-weight: 500;
}

/* Products carousel */
.woo-carousel-products{
	padding: 3.125rem 0;
    text-align: center;
}
.woo-carousel-products h2{
	text-align: center;
    font-weight: 700;
}
.woo-carousel-products .woocommerce ul.products {
    margin-left: 0;
}
.woo-carousel-products .woocommerce ul.products li.product {
    margin-bottom: 0;
}
.woo-carousel-products .slick-prev, 
.woo-carousel-products .slick-next{
	width: 26px;
	height: 26px;
	z-index: 100;
}
.woo-carousel-products .slick-prev:before, 
.woo-carousel-products .slick-next:before{
	color: #d3d3d3;
	opacity: 1;
	font-size: 26px;
}
.woo-carousel-products .slick-prev:hover:before, 
.woo-carousel-products .slick-prev:focus:before, 
.woo-carousel-products .slick-next:hover:before, 
.woo-carousel-products .slick-next:focus:before {
	color: #15b1e1;
}
@media screen and (max-width: 75em) {
	.woo-carousel-products .slick-prev{
		left: 0;
	}
	.woo-carousel-products .slick-next{
		right: 0;
	}
}
@media screen and (min-width: 40em) {
	.hero-product-content .hero-product-info {
		max-width: 70%;
		text-align: left;
	}
}

/* Hero product */
.hero-product-wrap{
    position: relative;
    padding-top: 3.75rem;
}
.hero-product--visual {
    background-color: #15b1e1;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    height: 18.3125rem;
}
.hero-product-content{
    position: relative;
    padding: 3.4375rem 0;
}
.hero-product-content .hero-product-info {
    text-align: center;
}
.hero-product-content .hero-product-info .crytal-secret {
	display: inline-block;
	font-size: 1.875rem;
	color: #474d58;
	font-weight: 300;
	vertical-align: middle;
	margin-right: 1.25rem;
}
.hero-product-content .hero-product-info .crytal-secret a{
	color: #474d58;
}
.hero-product-content .hero-product-info .view-shop {
	display: inline-block;
	font-size: 1.125rem;
	color: #474d58;
	position: relative;
	margin-left: 1.25rem;
	padding-right: 1rem;
	vertical-align: middle;
}
.hero-product-content .hero-product-info .view-shop::after {
	content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    right: 0;
}
.hero-product-content .hero-product-info .view-shop:hover {
	color: #15b1e1;
}
.hero-product-content .hero-product-info .view-shop i {
	margin-right: .625rem;
}
.hero-product-wrap .crytal-clear{
	position: absolute;
	bottom: 2.25rem;
	right: 0;
	width: 25rem;
	max-width: 45%;
}
@media screen and (max-width: 39.9375em) {
	.hero-product-wrap .crytal-clear {
		display: none;
	}
}

/**
 * CONTACT
 */
.contact-page{
    margin-bottom: 5rem;
}
.contact-block {
	margin-bottom: 1.5rem;
}
.contact-block p{
	margin-bottom: 0;
}
.contact-block .shop-outlet-img {
    margin-top: 1rem;
}
.contact-info ul {
	list-style: none;
	margin: 0;
}
.contact-info .contact-label {
	float: left;
}
.contact-info .contact-value {
	display: block;
	margin-left: 6rem;
}
.contact-info .contact-value p {
	margin-bottom: 0;
}
.map-office { 
	height: 185px;
	margin-top: 1.25rem;
}
.enquire-now-form_wrapper {
	background-color: #15b1e1;
	padding: 1.25rem 1.875rem 2.25rem;
}
.warranty-form_wrapper {
    background-color: #15b1e1;
    padding: 2.25rem 1.875rem;
}

/**
 * OUR TEAM
 */
.member-post {
	margin-bottom: 2rem;
}
.member-post::after {
	content: '';
	display: table;
	clear: both;
}
.member-post .entry-thumbnail {
	margin-bottom: 1.25rem;
}

@media screen and (min-width: 40em) {
	.member-post .entry-thumbnail {
		float: left;
		width: 12.188rem;
		margin-bottom: 0;
	}
	.member-post .content-outer {
		margin-left: 14.063rem;
	}
}

/**
 * BLOG
 */
.blog-post {
	margin-bottom: 2rem;
}
.entry-title {
	font-size: 1.125rem;
	margin-bottom: .75rem;
}
.entry-meta {
	font-size: .625rem;
	color: #999;
	text-transform: uppercase;
	margin-bottom: .625rem;
}
.entry-meta .meta-item {
	display: inline-block;
	margin-right: .625rem;
	line-height: 1.5rem;
}
.entry-meta .meta-item:last-child {
	margin-right: 0;
}
.blog-post .entry-content p {
	margin-bottom: 0;
}

/* Contact Maps */
#map{
	height: 280px;
}
@media only screen and (max-width: 64rem){
	#map{
		width: 100%;
	}
}
@media only screen and (max-width: 40rem){
	#map{
		width: 100%;
		height: 200px;
	}
}

/* FAQs Page */ 
#faqs-filter {
    box-sizing: border-box;
    margin: 1.25rem 0;
}
#faqs-filter h2 {
    color: #FFF;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 5px
}
#faqs-filter h2 strong {
    display: block;
}
#faqs-filter .filter-container {
    position: relative;
}
#faqs-filter #filter-box {
    height: 65px;
    padding: 10px 30px;
    box-sizing: border-box;
    font-size: 14px;
    color: #3e4448;
    background-color: #f4f2f1;
    border-color: #f4f2f1;
    box-shadow: none;
}
#faqs-filter #filter-box::-ms-clear {
    display: none;
}
#faqs-filter .filter-container i {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
@media only screen and (max-width: 29.9375rem) {
    #faqs-filter {
        padding: 40px 0;
    }
}
.close-wrap{ 
	position: relative; 
	height: 20px;
	margin-bottom: 20px; 
}
.close-wrap .close-button{ 
	font-size: 15px;
}

.after-content-widgets{
	clear: both;
	margin-top: 5rem;
}
/* Sticky button */
#sticky-buttons {
	position: fixed;
	right: 1.25rem;
	bottom: .625rem;
	z-index: 10;
}
#sticky-buttons .sticky-btn {
	display: block;
	background-color: #0b4c72;
	width: 3.125rem;
	height: 3.125rem;
	font-size: 1.125rem;
	color: #fff;
	line-height: 3.125rem;
	box-shadow: 0px 0px 10px rgba(1, 2, 2, .25);
	border-radius: 50%;
	text-align: center;
}
#sticky-buttons .sticky-btn:not(:last-child) {
	margin-bottom: .625rem;
}
@media screen and (min-width: 75em) {
	#sticky-buttons {
		display: none;
	}
}
.popup-contact {
	display: none;
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .75);
    text-align: center;
    overflow-y: auto;
}
.popup-contact::before {
	content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.popup-container {
	max-width: 90%;
	width: 600px;
	display: inline-block;
    vertical-align: middle;
}
.popup-title h3 {
	color: #fff;
}
.popup-body {
	background: #F0F0F0;
	border: 1px solid #858585;
	border-radius: 14px;
	box-shadow: 0px 0px 22px rgba(0, 0, 0, .75);
	overflow: hidden;
}
.popup-body .item-pop {
	display: block;
	font-size: 1rem;
	color: #444;
	padding: 1.5rem;
	line-height: 1.7;
}
.popup-body .item-pop:hover {
	background-color: #c0c0c0;
}
.popup-body .item-pop:first-child {
	border-top-left-radius: 14px;
	border-top-right-radius: 14px;
}
.popup-body .item-pop:last-child {
	border-bottom-right-radius: 14px;
	border-bottom-left-radius: 14px;
}
@media screen and (min-width: 40em) {
	.popup-title h3 {
		font-size: 2.25rem;
	}
	.popup-body .item-pop {
		font-size: 1.5rem;
		padding: 2rem 4.75rem;
	}
}
.popup-body .item-pop + .item-pop {
	border-top: 1px solid #858585;
}
.popup-body .item-pop .info-label {
	font-weight: 700;
	margin-bottom: 0;
}
.popup-body .item-pop p {
	margin-bottom: 0;
	line-height: 
}
.popup-body .item-pop .link-to-item {
	color: #890200;
}

/* Step area */
#step-area .step-side-chooser img {
	opacity: .25;
}
#step-area .step-side-chooser.active img {
	opacity: 1;
}

#post-nav{
    margin-bottom: 2rem;
}

/* name price */
.nyp-product.product .product-images {
    display: none;
}

.nyp-product.product .product-info {
    margin: 0px auto;
    float: none !important;
	text-align:center;
}

.nyp-product.product .product-info div.quantity {
    display: none !important;
}

.nyp-product.product .product-info .advise-me {
    display: none;
}

.nyp-product.product .product-info .button {
    display: block;
    margin: 0px auto !important;
    float: none !important;
    clear: both;
}

.nyp-product.product .product-info .product_title {
    text-align: center;
}

.product .nyp input.nyp-input {
    text-align: left !important;
}

.nyp-product.product .product-info h3.addon-name {
    text-align: center;
    display: block;
    margin: 0;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.8;
    color: #474c58;
    font-weight: bold;
}

.nyp-product.product .product-info label {
    text-align: center;
}

.home__video-wrap{
    float: left;
    text-align: center;
    width: 50%;
}

.home__video-wrap h3{
    font-weight: bold;
    font-size: 48px;
    color: #474c58;
    margin: 0;
}

.home__video-wrap span{
    display: block;
    font-weight: 300;
    font-size: 46px;
    margin-top: -18px;
}

.home__video-wrap + .large-12{
    width: 50%;
}

.inner__video-wrap{
    width: 100%;
    height: auto;
    text-align: right;
    position: relative;
    padding-right: 100px;
}

.inner__video-wrap h3{
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    margin: 0;
    line-height: 42px;
}

.inner__video-wrap span{
    color: #fff;
    font-size: 41px;
    display: block;
    line-height: 39px;
}

.inner__video-wrap a{
    position: absolute;
    top: 2px;
    right: 0;
}

.page-header-wrapper.woocommerce-page-header .page-title{
    padding: 12px 0;
}

@media(max-width: 1024px){
    .inner__video-wrap {
        text-align: center;
        padding-right: 0;
    }
    .inner__video-wrap a{
        position: relative;
        display: block;
    }
}

@media(min-width: 768px){
    .home__video-wrap {
        max-width: 400px;
    }
}

@media(max-width: 768px){
    .home__video-wrap,
    .home__video-wrap + .large-12 {
        width: 100%;
        float: none;
    }

    .home__video-wrap + .large-12 .content{
        width: 100%;
        float: none;
        text-align: center;
    }
}

.top-bar-wrap .menu .menu-item-has-children{
    position: relative;
}

.top-bar-wrap .menu .menu-item-has-children .sub-menu{
    position: absolute;
    left: 0;
    top: 100%;
    background: #15b1e1;
    list-style: none;
    padding: 0;
    margin: 0;
    width: auto;
    display: none;
}

.top-bar-wrap .menu .menu-item-has-children:hover .sub-menu{
    display: block;
}

.top-bar-wrap .menu .menu-item-has-children .sub-menu:before{
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #15b1e1;
    position: absolute;
    top: -5px;
    left: 5px;
}

.top-bar-wrap .menu .menu-item-has-children .sub-menu li a{
    padding: 5px;
    white-space: nowrap;
    color: #ffffff;
}

.top-bar-wrap .menu .menu-item-has-children .sub-menu li a:hover,
.top-bar-wrap .menu .menu-item-has-children .sub-menu li a:focus{
    color: #ffffff;
}

.mobileemailbutton{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 80px;
    border-radius: 0;
    background: rgb(21, 225, 103);
    font-size: 14px;
    padding: 10px;
    text-transform: uppercase;
}

.slide-caption .quick-actions .quick-quote-btn,
.quick-quote-btn.primary,
.testimonials-wrap .quick-actions .quick-quote-btn{
    background: rgb(21, 225, 103) !important;
    color: #ffffff !important;
}

.header-desktop .header-top-right .header-contact .phone{
    background: rgb(21, 225, 103);
    color: #fff;
    padding: 14px 10px 17px;
    border-radius: 0 0 5px 5px;
    font-size: 14px;
}

@media(max-width: 1200px){
    #drift-widget{
        right: 80px !important;
    }
}

@media(max-width: 600px){
    .header-mobile .middle-logo a{
        display: -webkit-box; 
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex; 
        display: flex;
        flex-direction: column;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        justify-content: center;
        height: 63px;
    }
}

@media(max-width: 479px){
    .mobileemailbutton{
        margin-top: 63px !important;
    }
}

/**
 * Mega menu
 */
.mega-menu-row.custom-mega-menu .mega-menu-column.mega-menu-columns-3-of-12{
    width: 25%!important;
}
.woo-menu-shortcode{}
.woo-menu-shortcode .menu-cat-item{}
.woo-menu-shortcode .menu-cat-item header{
    border-bottom: 1px solid #15b1e1;
    margin-bottom: 8px;
    padding-bottom: 5px;
}
.woo-menu-shortcode .menu-cat-item header .menu-title{
    font-weight: 500;
    font-size: 16px;
}

.woo-menu-shortcode .menu-cat-item header img{
    max-width: 100%;
    height: 100px;
    margin-bottom: 5px;
}

.woo-menu-shortcode .menu-cat-item ul.menus-wrap{
    margin-left: 0;
    list-style: none;
}
.woo-menu-shortcode .menu-cat-item ul.menus-wrap li{}
.woo-menu-shortcode .menu-cat-item ul.menus-wrap li a{
    color: #474c58;
}
.woo-menu-shortcode .menu-cat-item ul.menus-wrap li a:hover{
    color: #15b1e1;
}
#mega-menu-wrap-top-bar-r #mega-menu-top-bar-r > li.mega-menu-megamenu > ul.mega-sub-menu{
	padding: 20px;
	-webkit-box-shadow: 0px 5px 5px 2px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 5px 5px 2px rgba(0,0,0,0.1);
	box-shadow: 0px 5px 5px 2px rgba(0,0,0,0.1);
    width: 100%;
}


/*
** Header V2
*/

/*top bar*/
.header-v2-desktop .top-bar-wrap ul.menu{
    margin-left: 0;
}
.header-v2-desktop .top-bar-wrap ul.menu > .menu-item.menu-item-has-children > .sub-menu{
    padding: 10px;
}
.header-v2-desktop .header-top {
    background: #1288a6;
    color: #FFF;
    padding: 8px 0;
    font-size: 12px;
}
.header-v2-desktop .header-top a {
    color: currentColor;
}
.header-v2-desktop .header-top a:hover {
    color: #15e167;
}
.header-v2-desktop .header-top .header-top-left {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.header-v2-desktop .header-top .header-top-left img{
    height: 14px;
    margin-right: 10px;
}
.header-v2-desktop .header-top .header-top-right ul {
    margin-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.header-v2-desktop .header-top .header-top-right ul li{
    padding: 10px 0;
}
.header-v2-desktop .header-top .header-top-right ul li a{
    font-weight: 500;
}
.header-v2-desktop .header-top .header-top-right ul li a .title{
    font-weight: 300;
}
.header-v2-desktop .header-top .header-top-right ul li a.mini-cart{
    position: relative;
    padding-right: 28px; 
    display: inline-block;
}
.header-v2-desktop .header-top .header-top-right ul li a.mini-cart span.count{
    position: absolute;
    background: #0b4c72;
    font-size: 10px;
    text-align: center;
    border-radius: 5px;
    top: -5px;
    right: 0;
    padding: 4px 7px;
    line-height: 1;
}
.header-v2-desktop .header-top .header-top-right ul li .fa{
    margin-right: 10px;
}
.header-v2-desktop .header-top .header-top-right ul li:not(:last-child) {
    margin-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 15px;
}



/*HEADER*/
.header-v2-desktop .header{
    background: #4ec3ee;
    color: #FFF;
    padding: 17px 0;
}
.header-v2-desktop .header .inner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
}
.header-v2-desktop .header .inner .left-content,
.header-v2-desktop .header .inner .right-content{
    padding-right: 15px;
    padding-left: 15px;
}
.header-v2-desktop .header .inner .right-content{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-v2-desktop .header .pool-calc{
    margin-right: 30px;
}
.header-v2-desktop .header .pool-calc a{
    padding: 6px 12px;
    color: #FFF;
    background-color: #1288a6;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
}
.header-v2-desktop .header .pool-calc a:hover{
    background-color: #0b4c72;
}
.header-v2-desktop .header .pool-calc a .fa{
    margin-right: 10px;
}
.header-v2-desktop .header ul.menu li.menu-item:not(:last-child){
    padding-right: 15px;
}
.header-v2-desktop .header ul.menu li.menu-item a{
    color: currentColor;
    padding: 0;
}
.header-v2-desktop .header ul.menu li.menu-item a:hover{
    color: #1288a6;
}
.header-v2-desktop .header form.search-form{
    display: flex;
    align-items: flex-end;
}
.header-v2-desktop .header form.search-form span{
    line-height: 1;
    font-weight: 500;
}
.header-v2-desktop .header form.search-form input.search-field{
    padding: 0;
    border: 0;
    border-bottom: 1px solid #FFF;
    background: transparent;
    color: currentColor;
    padding-right: 20px;
    padding-left: 2px;
    width: 260px;
    margin-left: 3px;
    font-size: 14px;
    height: auto;
    top: 2px;
    position: relative;
}
.header-v2-desktop .header form.search-form input.search-field:-webkit-autofill,
.header-v2-desktop .header form.search-form input.search-field:-webkit-autofill:hover, 
.header-v2-desktop .header form.search-form input.search-field:-webkit-autofill:focus{
    -webkit-text-fill-color: #FFF;
    -webkit-box-shadow: 0 0 0px 1000px #4ec3ee inset;
    transition: background-color 5000s ease-in-out 0s;
}
.header-v2-desktop .header form.search-form .search-button{
    right: 0;
    top: 8px;
    color: #FFF;
    
}
.header-v2-desktop .header form.search-form .search-button .fa{
	transition: all 0.3s ease-in-out;
}
.header-v2-desktop .header form.search-form .search-button:hover .fa{
	color: #1288a6;
	transition: all 0.3s ease-in-out;
}

/*Main Navigation*/
.header-v2-desktop .main-navigation{
    background: none;
}
.header-v2-desktop .main-navigation .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: -15px;
    margin-left: -15px;
}
.header-v2-desktop .main-navigation .inner .bppe-main-nav,
.header-v2-desktop .main-navigation .inner .logo{
    padding-left: 15px;
    padding-right: 15px;
}
.header-v2-desktop .main-navigation .logo{
    flex: 0 0 210px;
}
.header-v2-desktop .main-navigation .logo a{
    display: block;
    margin-top: -105px;
    margin-bottom: -60px;
}
.header-v2-desktop #mega-menu-wrap-top-bar-r #mega-menu-top-bar-r{
    text-align: right; 
    margin-right: -10px;
}
.header-v2-desktop #mega-menu-wrap-top-bar-r #mega-menu-top-bar-r > li.mega-menu-item:not(:last-child){
    margin-right: 30px;
}
.header-v2-desktop #mega-menu-wrap-top-bar-r #mega-menu-top-bar-r > li.mega-menu-item > a.mega-menu-link{
    color: #1288a6;
    padding-left: 10;
    padding-right: 10;
    text-transform: uppercase;
    height: auto;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}
.header-v2-desktop #mega-menu-wrap-top-bar-r #mega-menu-top-bar-r > li.mega-menu-item > a.mega-menu-link:hover,
.header-v2-desktop #mega-menu-wrap-top-bar-r #mega-menu-top-bar-r > li.mega-menu-item.mega-toggle-on a.mega-menu-link{
    color: #FFF;
    transition: all 0.3s ease-in-out;
}
.header-v2-desktop .main-navigation .inner .bppe-main-nav{
    flex: 0 0 calc(100% - 210px);
}