/* ******************************** */
/* ***********  General  ********** */
/* ******************************** */
header{
    position: relative;
    z-index: 10;
}
header a.logo,
.cms-index-index header a.logo {
    background: url('../images/logo.png') no-repeat 0 0;
    background-size: 180px 145px;
    display: block;
    height: 145px;
    margin: 15px 0 0;
    text-indent: -1000px;
    position: absolute;
    width: 180px;
    top: -5px;
}
@media (max-width: 991px) {
    header a.logo,
    .cms-index-index header a.logo {
        background: url('../images/logo.png')  no-repeat 0 0;
        background-size: 115px 94px;
        width: 115px;
        height: 94px;
        margin: 0 0 10px 0;
        position: relative;
        top: 0;
    }
    .header {
        height: auto;
    }
}
.header .form-search {
    position: absolute;
    right: 41px;
    /*bottom: 0;*/
    /*width: 350px;*/
    text-align: inherit;
    width: 0;
    height: 0;
    /*overflow: hidden;*/
    top: 119px;

}
.cms-index-index .header .form-search {
    /*position: absolute;
    right: 41px;
    bottom: inherit;
    top: 119px;
    text-align: inherit;    */
}
.header .form-search.on{
    width: 350px;
    height: 97px;
}
.header .form-search .inner {
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    -webkit-transition: height 0.3s ease-in-out;
       -moz-transition: height 0.3s ease-in-out;
            transition: height 0.3s ease-in-out;
}
.header .form-search.on .inner {
    background-color: rgba(246,246,246,0.8);
    padding: 0 20px;
    width: 350px;
    height: 97px;
}
.header .form-search #search {
    height: 50px;
    padding: 12px;
    width: 252px;
    border: solid 1px #CCC;
    border-right: none;
    margin: 20px 0;
}
.header .form-search .search-button span span {
    font-size: 1.8em;
    width: 50px;
}
.header .form-search .searchautocomplete .searchautocomplete-loader{
    top: 40px;
    right: 164px;
}
.searchautocomplete .searchautocomplete-placeholder{
    top: 70px;
}
@media (max-width: 991px) {
    .header .form-search.on{
        right: 0;
        z-index: 100;
        width: 100%;
        height: 100%;
        top: 65px;
    }
    .header .form-search .inner{
        /*width: 100%;
        padding: 0;*/
    }
    .form-search .searchautocomplete{
        right: 0;
    }
}
@media (max-width: 480px) {
    .header .form-search.on .inner{
        width: 320px;
    }
    .header .form-search #search{
        width: 222px;
    }
}
.form-search .searchautocomplete {
    position: inherit;
}
.rotateRight {
    transform: rotate(90deg);
    -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Safari and Chrome */
    -o-transform: rotate(90deg); /* Opera */
    -moz-transform: rotate(90deg); /* Firefox */

    /* if you want to do this move with animate use transition */
    transition: .5s;
    -moz-transition: .5s; /* Firefox 4 */
    -webkit-transition: .5s; /* Safari and Chrome */
    -o-transition: .5s; /* Opera */
}
.rotate180 {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Safari and Chrome */
    -o-transform: rotate(180deg); /* Opera */
    -moz-transform: rotate(180deg); /* Firefox */

    /* if you want to do this move with animate use transition */
    transition: .5s;
    -moz-transition: .5s; /* Firefox 4 */
    -webkit-transition: .5s; /* Safari and Chrome */
    -o-transition: .5s; /* Opera */
}
.rotateBack {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg); /* IE 9 */
    -webkit-transform: rotate(0deg); /* Safari and Chrome */
    -o-transform: rotate(0deg); /* Opera */
    -moz-transform: rotate(0deg); /* Firefox */

    /* if you want to do this move with animate use transition */
    transition: .5s;
    -moz-transition: .5s; /* Firefox 4 */
    -webkit-transition: .5s; /* Safari and Chrome */
    -o-transition: .5s; /* Opera */
}
.advanced-search {
    position: relative;
    background-color: #EFEFEF;
    transform: height 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
}
.advanced-search .col-md-12 {
    min-height: 0;
}
.advanced-search .searchtoggle {
    top: -50px;
    right: 15px;
    position: absolute;
}
.advanced-search .searchtoggle a {
    height: 50px;
    background-color: #8dc641;
    display: inline-block;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    line-height: 50px;
}
.advanced-search .searchtoggle a span {
    padding: 0 20px;
}
.advanced-search .searchtoggle a span.arrow {
    background-color: #6fa02d;
    display: inline-block;
    line-height: 50px;
    font-size: 20px;
    color: #ffffff;
}
.advanced-search .searchtoggle a span.arrow:hover{
    background-color: #8dc641;
}
.advanced-search .searchpanel {
    /* Initially we don't want any height, and we want the contents to be hidden */
    max-height: 0;
    overflow: hidden;

    /* Set our transitions up. */
    -webkit-transition: max-height 0.8s;
    -moz-transition: max-height 0.8s;
    transition: max-height 0.8s;
}
.advanced-search.open .searchpanel {
    max-height: 450px;
    overflow: visible;
}
.advanced-search .searchpanel .inner {
    opacity: 0;
    -webkit-transition: opacity 0.8s;
    -moz-transition: opacity 0.8s;
    transition: opacity 0.8s;
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}
.advanced-search.open .searchpanel .inner {
    opacity: 1;
}
.advanced-search #advanced-search-list {
    margin: 0;
    padding: 30px 0;
}
.advanced-search #advanced-search-list li.form-element {
    display: inline-block;
    margin-bottom: 0;
}
.advanced-search #advanced-search-list li.last{
    display: inline-block;
}
.advanced-search #advanced-search-list.form-list .input-box{
    width: 212px;
}
.advanced-search #advanced-search-list input.input-text,
.advanced-search #advanced-search-list select{
    height: 50px;
    width: 210px;
    margin-right: 2px;
    font-size: 16px;
    padding: 0 15px;
}
@media (max-width: 767px) {
    .advanced-search .searchtoggle{
        width: 100%;
        right: 0;
    }
    .advanced-search .searchtoggle a{
        width: 100%;
    }
    .advanced-search .searchtoggle a span.arrow{
        position: absolute;
        right: 0;
        top: 0;
    }
}
.searchbar_bg{
    background: url(../images/tile_tile.jpg) repeat-x;
    height: 50px;
}
.breadcrumb_bg {
    height: 50px;
}
.breadcrumbcontainer { position: relative; }
.breadcrumb {
    background: none;
    height: 50px;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    line-height: 50px;
    position: absolute;
    width: 100%;
    top: -50px;
    font-size: 0.8em;
}
.breadcrumb a {
    color: #000000;
    text-decoration: none;
}
.breadcrumb span { padding: 0 5px; }
.breadcrumb strong {
    font-weight: 400;
}
@media (max-width: 767px) {
    .breadcrumb {
        position: relative;
    }
}
.defaultbanner {
    max-height: 500px;
    overflow: hidden;
}
.defaultbanner img {
    width: 100%;
    max-height: 100%;
    overflow: hidden;
}
.chosen-container-single .chosen-single{
    height: 30px;
    line-height: 30px;
    border-radius: 0;
    background: #fff;
    border: solid 1px #ddd;
    font-size: 16px;
    box-shadow: none;
}
#advanced-search-list .chosen-container-single .chosen-single{
    height: 50px;
    line-height: 50px;
}
.chosen-container-single .chosen-single div b{
    background-position: 0px 5px;
}
#advanced-search-list .chosen-container-single .chosen-single div b{
    background-position: 0px 15px;
}
#region_id_chosen{
    display: none;
}
@media (max-width: 480px) {
    .advanced-search #advanced-search-list li.form-element{
        display: block;
        margin-bottom: 5px;
    }
    .advanced-search #advanced-search-list.form-list .input-box,
    .advanced-search #advanced-search-list input.input-text,
    .advanced-search #advanced-search-list select,
    #advanced-search-list .chosen-container{
        width: 100% !important;
    }
}

/* ******************************** */
/* *************  Home  *********** */
/* ******************************** */
.ibanners-wrapper,
.gallery-cell{
    width: 100%;
    background-size: cover;
    background-position: center;
}
.ibanners-wrapper{
    overflow: hidden;
    height: 400px;
}
#ibanners-home.ibanners-wrapper {
    height: 400px;
}
@media (min-width: 1600px){
    .ibanners-wrapper img{
        width: 100%;
        height: auto;
    }
}

.gallery-cell{
    min-height: 400px;
}
#ibanners-home .gallery-cell {
  width: 100%; /* full width */
  max-height: 625px; /* height of gallery */
}

#ibanners-home .gallery-cell .html {
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 50px;
    background-color: rgba(0,0,0,0.2);
    color: #FFF;
    padding: 0 20px;
    text-transform: uppercase;
}
.flickity-prev-next-button svg{
    display: none;
}
.flickity-prev-next-button{
    background: url(../images/arrow-left.png) center center no-repeat !important;
    border-radius: 0;
    padding: 10px;
    width: 55px;
    height: 55px;
}
.flickity-prev-next-button:hover{
    background-color:rgba(51,51,51, .5) !important;
}
.flickity-prev-next-button.next {
    background-image: url(../images/arrow-right.png) !important;
}

.home-category-row {
    clear: both;
}
.home-category-row a.category {
    transition: background-color 0.5s ease;
    color: #000;
    display: block;
    overflow: hidden;
}
.home-category-row a.category:hover {
    background-color: #F3F3F3;
}
.home-category-col {
    width: 50%;
    overflow: hidden;
    min-height: 350px;
    position: relative;
}
.home-category-col .home-category-image {
    width: 100%;
    min-height: 350px;
    background-size: cover;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.home-category-col .inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 60px;
}
.home-category-col h2 {
    font-weight: 300;
    font-size: 2em;
    margin-top: 0;
}
.home-category-col h3 {
    text-transform: uppercase;
    font-weight: 400;
    color: #6fa02d;
}
.home-category-col h3:after {
    margin-left: 8px;
    content: ">";
}
.cms-home .main {
    margin: 30px 0 0 0;
}
.homeslogan {
    clear: both;
}
.homeslogan h2 {
    font-size: 2.8em;
    color: #999;
    font-weight: 300;
    text-align: right;
    margin: 0;
}
.cms-index-index .upsell .col-centered {
    text-align: center;
}
@media only screen and (max-width : 991px) {
    .ibanners-wrapper,
    #ibanners-home.ibanners-wrapper{
        height: 350px;
    }
    .gallery-cell{
        min-height: 350px;
    }
    .homeslogan h2 {
        font-size: 1.5em;
        margin-top: 20px;
        text-align: left;
    }
}
@media only screen and (max-width : 768px) {
    .home-category-col {
        width: 100%;
        min-height: 250px;
    }
    .home-category-col .home-category-image {
        min-height: 250px;
    }
    .home-category-col.col-text {
        min-height: inherit;
    }
    .home-category-col .inner {
        position: relative;
        top: auto;
        transform: none;
        padding: 30px;
    }
    .home-category-col h2 {
        font-size: 1.6em;
    }
}
@media only screen and (max-width : 480px) {
    .ibanners-wrapper,
    #ibanners-home.ibanners-wrapper{
        height: 305px;
    }
    .gallery-cell{
        min-height: 305px;
    }
    .home-category-col{
        text-align: center;
    }
    .home-category-col h2 {
        font-size: 1.1em;
    }
}
@media only screen and (max-width : 320px) {

    .home-category-col {
        min-height: 125px;
    }
    .home-category-col .home-category-image {
        min-height: 125px;
        width: auto;
        margin: 15px 15px 0;
    }

}


/* ******************************** */
/* ********** Category  *********** */
/* ******************************** */
.category-description {
    margin-bottom: 70px;
}
.sub_cat_col .inner {
    border: solid 1px #CCC;
    margin-bottom: 45px;
}
.sub_cat_col h3 {
    text-align: center;
    margin: 0.7em;
    min-height: 75px;
}
.sub_cat_col h3 a {
    color: inherit;
}
.sub_cat_col .sub_cat_desc, .sub_cat_col .sub_cat_link {
    padding: 20px;
}
.sub_cat_col .sub_cat_link a {
    text-transform: uppercase;
    font-weight: 400;
}
.category-image {
    display: block;
    text-indent: -1000px;
    overflow: hidden;
    height: 200px;
    background-size: cover;
}
.sub_cat_children .inner > div{
    margin: 0 12px 15px;
}
.sub_cat_children .category-image{
    height: 190px;
}
.row-centered {
    text-align:center;
}
.col-centered {
    display:inline-block;
    float:none;
    /* reset the text-align */
    text-align:left;
    /* inline-block space fix */
    margin-right:-4px;
    margin-bottom: 30px;
}
.col-max {
    /* custom max width */
    max-width:320px;
}
.category-products .row .inner, .upsell .row .inner {
    border: solid 1px #CCC;
    padding: 10px;
}
.category-products .row .inner h3, .upsell .row .inner h3 {
    margin: 0.5em 0 0.7em;
    text-align: center;
}
.category-products .row .inner h3 a, .upsell .row .inner h3 a {
    color: inherit;
}
.category-products .row .inner .product-image img, .upsell .row .inner .product-image img  {
    width: 100%;
}
.category-products .row .inner .price-row, .upsell .row .inner .price-row {
    overflow: hidden;
    margin: 10px 0 0;
    font-weight: 400;
}
.category-products .row .inner .price-row .att-price.pull-right, .upsell .row .inner .price-row .att-price.pull-right{
    text-align: right;
}
.category-products .row .inner .price-row .rrp, .upsell .row .inner .price-row .rrp {
    font-size: 0.8em;
}
.category-products .row .inner .price-row .price-box, .upsell .row .inner .price-row .price-box {
    display: inline;
}
.catalog-category-view .att-price{
    display: none;
}
.catalog-category-view .att-price{
    display: block;
}
.category-products .row .inner .price-row .price-box .price, .upsell .row .inner .price-row .price-box .price {
    font-weight: 400;
}
.pager .pages,
.pager .limiter{
    margin-top: 1em;
    margin-bottom: 1em;
}
.pager .limiter{

}
.pager .chosen-container{
    min-width: 65px !important;
}
.pager .pages strong{
    display: none;
}
.pager .pages ol{
    padding: 0;
}
.toolbar .sorter{
    display: none;
}
.toolbar .sorter .chosen-container{
    min-width: 110px !important;
}
@media only screen and (max-width : 768px) {
    .pager .amount,
    .pager .limiter{
        float: none;
    }
    .pager .pages{
        margin: 1em 0px;
    }
}
@media only screen and (max-width : 480px) {
    .row-centered .col-xs-6 {
        width: 100%;
    }
}

/* ******************************** */
/* ******* Inspiration  ******** */
/* ******************************** */

body.category-inspiration section.main > .container{
    width: 100%;
    padding: 0;
}
.inspration-product{
    position: relative;
    margin-bottom: 60px;
}
.inspration-image-1{
    width: 50%;
    background-size: cover;
    background-position: bottom left;
    height: 700px;
    float: left;
}
.inspration-image-2{
    width: 50%;
    background-size: cover;
    background-position: bottom right;
    height: 350px;
    margin-top: 350px;
    float: right;
}
.inspration-image-3{
    width: 50%;
    background-size: cover;
    background-position: bottom right;
    height: 350px;
    position: absolute;
    top: 0;
    right: 0;
}
.inspration-image-mobile{
    background-size: cover;
}
/* .inspration-image-1.push-description,*/
.inspiration-block-2 .inspration-image-1,
.inspiration-block-4 .inspration-image-1{
    margin-top: 350px;
    height: 350px;
}

/*.inspration-image-1.image-7-3,*/
.inspiration-block-4 .inspration-image-1{
    width: 70%;
}
/*.inspration-image-2.push-tile,*/
.inspiration-block-2 .inspration-image-2,
.inspiration-block-5 .inspration-image-2{
    margin-left: 258px;
    width: calc( 50% - 258px );
}
/*.inspration-image-2.image-7-3,*/
.inspiration-block-4 .inspration-image-2{
    /*width: 30%;*/
}
/*.inspration-image-2.push-tile.image-7-3,*/
.inspiration-block-4 .inspration-image-2{
    width: calc( 30% - 258px );
}
.inspration-description{
    position: absolute;
    width: 50%;
    height: 350px;
    background: #f3f3f3;
    display: table;
    font-size: 1.5em;
    padding: 0 70px;
}
/*.inspration-description.right-top,*/
.inspiration-block-1 .inspration-description,
.inspiration-block-3 .inspration-description,
.inspiration-block-5 .inspration-description{
    top: 0;
    right: 0;
}
/*.inspration-description.left-top,*/
.inspiration-block-2 .inspration-description,
.inspiration-block-4 .inspration-description{
    top: 0;
    left: 0;
    background: #fff;
}
.table-cell{
    display: table-cell;
    vertical-align: middle;

}
.inspration-description h2{
    font-size: 1.65em;

}
.inspration-description h2,
.inspration-description p{
    margin: 10px 0;
}
.inspration-description a{
    font-size: 0.9em;
}
.inspration-description a:before{
    content: '\f0d3';
    font-family: fontAwesome;
    margin-right: 7px;
}
.inspration-description a:after{
    content: '>';
    margin-left: 5px;
}
.tile-block {
    position: absolute;
    background: #fff;
    width: 258px;
    text-align: center;
    border: solid 1px #ccc;
    height: 350px;
    display: table;
    padding: 0 7px;
}

/*.tile-block.left-top,*/
.inspiration-block-3 .tile-block{
    top: 0;
    right: 50%;
}
/*.tile-block.left-bottom,*/
.inspiration-block-1 .tile-block{
    bottom: 0;
    right: 50%;
}
/*.tile-block.right-top,*/
.inspiration-block-3 .tile-block{
  /*  top: 0;
    left: 50%;*/
}
/*.tile-block.right-bottom,*/
.inspiration-block-2 .tile-block,
.inspiration-block-4 .tile-block,
.inspiration-block-5 .tile-block{
    bottom: 0;
    left: 50%;
}
/*.tile-block.right-bottom.image-7-3,*/
.inspiration-block-4 .tile-block{
    left: 70%;
}
.tile-block h3,
.tile-block p{
    margin: 10px 0;
}
.tile-block p{
    font-size: 1.4em;
}
@media (max-width: 991px) {
    .inspration-image-1{
        height: 400px;
    }
    /*.inspration-image-1.push-description,*/
    .inspiration-block-2 .inspration-image-1,
    .inspiration-block-4 .inspration-image-1{
        margin-top: 200px;
        height: 200px;
    }
    .inspration-image-2{
        height: 200px;
        margin-top: 200px;
    }
    /*.inspration-image-2.push-tile,*/
    .inspiration-block-2 .inspration-image-2,
    .inspiration-block-5 .inspration-image-2{
        margin-left: 130px;
        width: calc(50% - 130px);
    }
    /*.inspration-image-2.push-tile.image-7-3,*/
    .inspiration-block-4 .inspration-image-2{
        width: calc(30% - 130px);
    }
    .inspration-image-3{
        height: 200px;
    }
    .inspration-description{
        height: 200px;
        font-size: 1em;
        padding: 0 40px;
    }
    .tile-block{
        height: 200px;
        width: 130px;
        padding: 0 3px;
    }
    .tile-block img{
        width: 100%;
    }
    .tile-block h3, .tile-block p{
        font-size: 0.9em;
    }
}
@media (max-width: 480px) {
    .inspration-product{
        margin-bottom: 0;
    }
    .tile-block,
    .inspration-product .image-container{
        display: none;
    }
    .inspration-product .image-container.small{
        display: block;
        padding: 20px 20px 0;
    }
    .inspration-image-mobile{
        height: 200px;
    }
/*    .inspration-product .image-container.small.right-top,*/
    .inspiration-block-1 .image-container.small,
    .inspiration-block-3 .image-container.small,
    .inspiration-block-5 .image-container.small{
        background: #f3f3f3;
    }
    .inspration-product .image-container.small div{
        position: static;
        width: 100%;
        margin: 0;
        float: none;
    }
    .inspration-description{
        position: static;
        width: 100%;
        text-align: center;
        height: auto;
        padding: 20px;
    }
}

/* ******************************** */
/* ******* Product Detail  ******** */
/* ******************************** */
.catalogsearch-advanced-result .att-price,
.catalogsearch-result-index .att-price,
.catalog-product-view .att-price { display: none; }
.catalogsearch-advanced-result .att-price,
.catalogsearch-result-index .att-price,
.catalog-product-view .att-price  { display: block;}
.catalog-product-view .price-box{ display: inline-block;}

.catalog-product-view .col-main{
    position: static;
}
.catalog-product-view .product-name h1 {
    text-align: center;
}
.catalog-product-view .description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.13em;
}
.overview-grid {
    overflow: hidden;
}
.overview-grid h4 {
    font-weight: 300;
    text-transform: uppercase;
    margin: 10px 0;
}
.overview-grid p {
    font-size: 1.3em;
    margin: 10px 0;
    font-weight: normal;
}
.overview-grid div.og {
    width: 33%;
    float: left;
    text-align: center;
    position: relative;
}
.overview-grid div.og:before{
    content: "";
    display: block;
    padding-top: 100%;  /* initial ratio of 1:1*/
}
.overview-grid div.inner {
    position:  absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    right: 0;
    -ms-transform: translate(0%, -50%); /* IE 9 */
    -webkit-transform: translate(0%, -50%); /* Safari */
    transform: translateY(-50%);
    height: 80px;
}
.overview-grid .og_1, .overview-grid .og_2, .overview-grid .og_4, .overview-grid .og_5 { border-right: dashed 1px #CCC; border-bottom: dashed 1px #CCC; }
.overview-grid .og_3, .overview-grid .og_6 { border-bottom: dashed 1px #CCC; }
.overview-grid .high {
    color: #6fa02d;
}
.overview-grid .og.enquire div.inner, .overview-grid .og.wishlist div.inner {
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -ms-transform: translate(0, 0); /* IE 9 */
    -webkit-transform: translate(0, 0); /* Safari */
    transform: translateY(0);
    height: auto;
}
.overview-grid .og.enquire div.inner a, .overview-grid .og.wishlist div.inner a {
    display: block;
    height: 100%;
    background-color: #8dc641;
    text-transform: uppercase;
    position: relative;
    color: #000000;
    font-size: 1.1em;
}
.overview-grid .og.enquire div.inner a > span, .overview-grid .og.wishlist div.inner a > span {
    position:  absolute;
    top: 50%;
    left: 0;
    bottom: 0;
    right: 0;
    -ms-transform: translate(0%, -50%); /* IE 9 */
    -webkit-transform: translate(0%, -50%); /* Safari */
    transform: translateY(-50%);
    display: block;
    padding: 15px;
    height: 86px;
}
.overview-grid .og.enquire div.inner a > span:after{
    content: '>';
}
.overview-grid .og.wishlist div.inner a > span {
    height: 125px;
}
.overview-grid .og.wishlist div.inner a i {
    font-size: 1.8em;
}
.overview-grid .og{
    padding: 15px;
    -webkit-transition: background-color .4s ease-in-out;
       -moz-transition: background-color .4s ease-in-out;
         -o-transition: background-color .4s ease-in-out;
            transition: background-color .4s ease-in-out;
}
.overview-grid .stocklevel{
    cursor: pointer;
}
.overview-grid .og.on:before{
    background: rgba(0, 0, 0, .8);
}
.overview-grid .og.on h4,
.overview-grid .og.on p{
    color: #fff !important;
}
.product-view{
    position: relative;
    z-index: 5;
}
.popover {
    top: 0 !important;
}
.popover-content{
    background: rgba(0, 0, 0, .8);
    color: #fff;
    padding: 30px;
    font-size: 0.8em;
    max-width: 540px;
    position: absolute;
    opacity: 0;
    left: -9999px;
    z-index: 0;
    -webkit-transition: opacity .4s ease-in-out;
       -moz-transition: opacity .4s ease-in-out;
         -o-transition: opacity .4s ease-in-out;
            transition: opacity .4s ease-in-out;
}
.popover-content.on{
    opacity: 1;
    z-index: 10;
}
.popover-content h3{
    margin: 5px 0 10px;
    font-size: 1.4em;
}
.popover-content p{
    margin: 5px 0;
}
.product-spec-stock{
    display: none;
}
.product-spec-stock{
    display: block;
}
.product-spec-stock dl {
    background-color: #F3F3F3;
    padding: 15px;
    font-size: 0.9em;
    overflow: hidden;
}
.product-spec-stock dt {
    display: list-item;
    float: left;
    clear: left;
    list-style-type: disc;
    margin-left: 15px;
    margin-bottom: 5px;
}
.product-spec-stock dd {
    display: block;
    float: right;
    margin: 0 0 5px 0;
}
.product-spec-stock dd:after {
    clear: both;
}
.product-spec-stock dt.due_dates{
    cursor: pointer;
}
.fa-question{
    color: #AD0B1F;
}
.product-spec-stock dt.stock_dates_quantity{
    padding-left: 10px;
    list-style: inside;
}
.pagenation{
    border: solid 1px #CCC;
    text-transform: uppercase;
    margin-top: 20px;
}
.inchoo_prevnext .text-left,
.inchoo_prevnext .text-center,
.inchoo_prevnext .text-right{
    padding: 0 15px;
    font-weight: 400;
}
.contentgrey {
    background-color: #333333;
    margin-top: 20px;
    border-bottom: 2px solid #8dc641;
}
.contentgrey h2 {
    color: #ffffff;
}
.upsell{
    padding: 15px 30px;
}
.upsell .row .inner {
    border: solid 1px #CCC;
    padding: 10px;
    background-color: #FFF;
}
.upsell h2 {
    color: #ffffff;
}
.product-images {
    border: solid 1px #CCC;
}
.product-images .slick-slider {
    padding: 40px 0;
    overflow: hidden;
}
.product-images .slick-slide img {
    margin: 0 auto;
    max-width: 100%;
}
.product-images .att-price{
    text-align: center;
    margin-bottom: 30px;
}
.product-images .price-box {
    text-align: center;
}
.product-images .regular-price {
    font-size: 1.8em;
}
.product-images .price-box .tax,
.product-images .tier-prices .tax {
    text-transform: uppercase;
    font-size: 0.6em;
}
.product-images .regular-price .price {
    font-weight: normal;
}
ul.tier-prices{
    padding: 0;
}
.product-images .tier-prices {

}

.aw-arp-block{
    margin-top: 30px;
}
.aw-arp-block h2{
    text-align: center;
}
.aw-arp-block ul{
    padding-left: 0;
    margin: 0;
}
.aw-arp-block ul li{
    margin-bottom: 20px;
}
.aw-arp-block h4{
    margin-bottom: 5px;
}
.aw-arp-block h4 a{
    color: #333;
}
.aw-arp-block p{
    margin: 5px 0;
}
.aw-arp-block .aw-related-item{
    text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
   .overview-grid .og.enquire div.inner a{
        font-size: 1em;
    }
}
@media (max-width: 991px) {
    .popover-content{
        max-width: none;
        width: 100%;
    }

}
@media (max-width: 480px) {
    .overview-grid .og{
        padding: 5px;
    }
    .overview-grid h4,
    .overview-grid p{
        font-size: 0.9em;
    }
    .overview-grid h4{
        margin: 10px 0 5px;
    }
    .overview-grid p{
        margin: 5px 0 10px;
    }
    .overview-grid .og.enquire div.inner, .overview-grid .og.wishlist div.inner{
        padding: 5px;
    }
    .overview-grid .og.enquire div.inner a{
        font-size: 0.8em;
    }
    .overview-grid .og.enquire div.inner a span, .overview-grid .og.wishlist div.inner a span{
        -ms-transform: translate(0); /* IE 9 */
        -webkit-transform: translate(0); /* Safari */
        transform: translateY(0);
        height: auto;
        top: 5px;
    }
    .overview-grid .og.enquire div.inner a > span:after{
        content: '';
    }
    .overview-grid .og.enquire div.inner a .text, .overview-grid .og.wishlist div.inner a .text{
        display: none;
    }

}

/* ******************************** */
/* *******     Contact     ******** */
/* ******************************** */
div#webforms-form,
form#contactForm{
    padding: 30px;
    border: solid 1px #ddd;
    display: block;
}
#webforms-form .form-list{
    padding-left: 0;
}
@media (max-width: 767px) {
    form#contactForm{
        padding: 30px;
    }
    input, textarea{
        font-size: 16px;
        /* prevent zooming to field on mobile */
    }
}

/* ******************************** */
/* *******   Whish List    ******** */
/* ******************************** */
#wishlist-table textarea{
    width: 100%;
}
#wishlist-table .add-to-cart-alt,
#wishlist-table th.col-2,
#wishlist-table td.col-2 p{
    display: none;
}
#wishlist-table .product-image img,
#wishlist-table .price-box,
#wishlist-table td.col-3 a{
    margin: 20px 0;
}
#wishlist-table textarea{
    margin-bottom: 1em;
}

.ordered-list{
    list-style-type: number;
}
@media (max-width: 480px) {
    #wishlist-table .col-2{
        display: none;
    }
}

/* ******************************** */
/* *******   Whish List    ******** */
/* ******************************** */
@media (max-width: 991px) {
    .xsitemap-categories,
    .xsitemap-pages{
        float: none !important;
        width: auto !important;
    }
}


/* ******************************** */
/* *******     Newsletter Signup     ******** */
/* ******************************** */
.newsletter-signup {
    background-color: #333333;
    padding: 50px 0;
}
.newsletter-signup h3 {
    color: #ffffff;
    line-height: 1;
    margin: 0 0 8px;
}
.newsletter-signup input.input-text {
    font-size: 16px;
    height: 50px;
    margin: 0 0 8px;
    padding: 0 15px;
    width: 100%;
}
.newsletter-signup button.button {
    margin: 0 0 8px;
    width: 100%;
}
.newsletter-signup button.button span {
    background-color: #333333;
    border: 1px solid #8dc641;
    text-transform: uppercase;
    width: 100%;
}
.newsletter-signup button.button span:hover {
    background-color: #8dc641;
}


/* ******************************** */
/* *******     Store Locator     ******** */
/* ******************************** */
.store-locator .store {
    margin-bottom: 45px;
}
.store-locator .store .inner {
    border: 1px solid #cccccc;
    padding: 20px;
}
.store-locator .store h3 {
    margin: 0.7em;
    text-align: center;
}
.store-locator .store .store-image {
    text-align: center;
}


/* ******************************** */
/* *******     Misc    ******** */
/* ******************************** */
.price-box .special-price {
    color: #6fa02d;
    margin: 0;
}
.price-box .price-label {
    text-transform: uppercase;
}
.old-price, .special-price {
    display: inline;
}
.price-box .old-price:after {
    content: "/";
    font-weight: bold;
    margin: 0 5px;
}
.old-price .price-label {
    font-weight: bold;
}
.price-box .rrp {
    font-weight: bold;
}


@media only screen and (min-width: 992px) {
    #nav .nav-my-account, #nav .nav-wishlist, #nav .nav-logout {
        display: none;
    }
}


.top-links {
    margin-right: 30px;
    text-align: right;
}
.top-links li {
    display: inline-block;
    padding-left: 15px;
}
.top-links li a {
    color: #ffffff;
    display: inline-block;
    font-weight: 400;
    text-transform: uppercase;
}
.top-links li a:hover {
    color: #6fa02d;
    text-decoration: none;
}


.discount-coupon {
    background-color: #000000;
    color: #6fa02d;
    font-weight: 400;
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
    border: 2px solid #6fa02d;
}

.products-downloads a  {
    color: #000000;
    font-weight: bold;
}
.products-downloads a i {
    color: #6fa02d;
}
