
/*
 *---------------------------------------------------------------
 * LAYOUT & UTILITIES
 *---------------------------------------------------------------
 *
 */
html {
    box-sizing: border-box;
    height: 100%;
    font-size: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /*background: green;*/
    /*font-size: 0.75em;*/ /*12px*/
    /*font-size: 0.875em;*/ /*14px*/
    font-size: 1em; /*16px*/
    color: #1a321a;
    font-family: 'Open Sans', sans-serif;
    line-height: normal;
}

::selection {
    background-color:#333;
    color:#fff;
}

*, *:before, *:after {
    box-sizing: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.clear:before, .clear:after {
    content:'';
    display:table;
}

.clear:after {
    clear:both;
}

.fl {
    float:left;
}

.fr {
    float:right;
}

.hidden {
    display: none;
}

.w90 {
    width:90%;
}

.w80 {
    width:80%;
}

.w75 {
    width:75%;
}

.w70 {
    width:70%;
}

.w60 {
    width:60%;
}

.w50, .half {
    width:50%;
}

.w40 {
    width:40%;
}

.w33-3, .third {
    width:33.3333333%;
}

.w30 {
    width:30%;
}

.w25, .quarter {
    width:25%;
}

.w20, .fifth {
    width:20%;
}

.w16-6, .sixth {
    width:16.6666666%;
}

.w12-5, .eighth {
    width:12.5%;
}

.w10, .tenth {
    width:10%;
}

.w5 {
    width: 5%;
}

.page ul, .page ol {
    padding-left: 20px;
}

/*
 *---------------------------------------------------------------
 * A TAG RESET
 *---------------------------------------------------------------
 *
 */
a:link {
    text-decoration: none;
    color:#24a9e1;
}

a:visited {
    text-decoration: none;
    color:#24a9e1;
}

a:hover {
    text-decoration: underline;
    color: #a0c51d;
}

a:active {
    text-decoration: underline;
}

/* Stop iPhone changing numbered links to telephone numbers */

a[href^=tel] {
    text-decoration:inherit;
    color: inherit;
}

/*
 *---------------------------------------------------------------
 * DEFAULT TEXT COLOURS
 *---------------------------------------------------------------
 *
 */
h1 {
    font-size: 2em;
    color: #24a9e1;
}

h2 {
    color: #27a6de;
    font-weight: 600;
}

h3 {
    color: #13c975;
}

h4 {
    color: #8913c9;
}

.txtBlack {
    color: #000;
}

.txtWhite {
    color: #fff;
}

.txtGrey {
    color: #666;
}

.txtBlue {
    color:#2c82c9;
}

.txtPurple {
    color: #bb1cc9;
}

.txtGreen {
    color: #13c975;
}

.txtRed {
    color: #c92a12;
}

.txtCenter {
    text-align: center;
}

.txtRight {
    text-align: right;
}

hr {
    border: none;
    height: 1px;
    margin-top: 20px;
    /* Set the hr color */
    color: #d1d1d1; /* old IE */
    background-color: #d1d1d1; /* Modern Browsers */
}

/*
 *---------------------------------------------------------------
 * DEFAULT BACKGROUND COLOURS
 *---------------------------------------------------------------
 *
 */
.bgBlack {
    background-color: #000;
}

.bgWhite {
    background-color: #fff;
}

.bgGrey {
    background-color: #666;
}

.bgBlue {
    background-color:#24a9e1;
}

.bgPurple {
    background-color: #bb1cc9;
}

.bgGreen {
    background-color: #a0c51d;
}

.bgRed {
    background-color: #c92a12;
}

.bgOrg {
    background-color: #f7941d;
}


/*
 *---------------------------------------------------------------
 * DEFAULT FORMS
 *---------------------------------------------------------------
 *
 */
fieldset {
    border: none;
    padding: 0;
}

label {
    padding: 0.5em 0;
    display: inline-block;
    color: #666;
}

input, select, textarea {
    border:1px solid #d1d1d1;
    border-radius: 4px;
    width:100%;
    padding: 1em;
    outline: none;
    transition: box-shadow 0.30s ease-in-out;
    /*transition: border 0.30s ease-in-out;*/
}

textarea {
    resize: none;
}

select {
    background: transparent url('../assets/downArrow.svg') no-repeat right;
    background-size: contain;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 2px rgba(81, 203, 238, 1);
    /*border:1px solid rgba(81, 203, 238, 1);*/
}

input[type="submit"] {
    width:20%;
    margin: 1em 0;
    background-color:#2c82c9;
    color: #fff;
    transition: background-color 0.8s ease;
}

input[type="submit"]:hover {
    background-color: #bb1cc9;
}

/* CHECKBOX AND RADIO */
/* Customize the label (the container) */
.chkRdLabel {
    display: block;
    position: relative;
    padding-left: 2em;
    padding-top: 0.1em;
    margin-bottom: 0.5em;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.chkRdLabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.customCheckbox, .customRadio {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.5em;
    width: 1.5em;
    background-color: #eee;
}

.customRadio {
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.chkRdLabel:hover input ~ .customCheckbox,
.chkRdLabel:hover input ~ .customRadio {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.chkRdLabel input:checked ~ .customCheckbox,
.chkRdLabel input:checked ~ .customRadio {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.customCheckbox:after,
.customRadio:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.chkRdLabel input:checked ~ .customCheckbox:after,
.chkRdLabel input:checked ~ .customRadio:after {
    display: block;
}

/* Style the checkmark/indicator */
.chkRdLabel .customCheckbox:after {
    left: 0.6em;
    top: 0.35em;
    width: 0.3em;
    height: 0.6em;
    border: solid white;
    border-width: 0 0.2em 0.2em 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Style the indicator (dot/circle) */
.chkRdLabel .customRadio:after {
    top: 0.42em;
    left: 0.45em;
    width: 0.6em;
    height: 0.6em;
    border-radius: 50%;
    background: white;
}

/* END CHECKBOX AND RADIO */

::-webkit-input-placeholder {
    color: #d1d1d1;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

::-moz-placeholder {
    color: #d1d1d1;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
    color: transparent;
}

:-ms-input-placeholder {
    color: #d1d1d1;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    color: transparent;
}

.error input, .error textarea {
    border:1px solid #b8312f;
    background: #fff7f5;
}

.field_error {
    color: #9d9d9d;
    font-size: 0.6em;
    margin: 0.5em 0;
}

/*
 *---------------------------------------------------------------
 * TABLES
 *---------------------------------------------------------------
 *
 */

table {
    padding:0.4em;
}

tr:nth-child(odd) {
    background: #f9f9f9;
}

th, td {
    border: 1px solid #d1d1d1;
    padding:0.6em;
    vertical-align: top;
}

/*
 *---------------------------------------------------------------
 * RESPONSIVE SLIDER JS PLUGIN
 *---------------------------------------------------------------
 *
 */

.jsSlides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.jsSlides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}

.jsSlides li:first-child {
    position: relative;
    display: block;
    float: left;
}

.jsSlides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}



/*
 *---------------------------------------------------------------
 * LIVE SEARCH
 *---------------------------------------------------------------
 *
 */

.searchBoxwrap {
    position: relative;
    overflow: hidden;
}

.searchBox {
    background-color: #666;
    width:100%;
    text-align: center;
    display: none;
    opacity: 0.8;
    pposition: fixed;
    z-index: 999;
}
.searchBox input {
    top: 0;
    background: rgba(245,244,242);
    width:100%;
    margin: 10px auto;
    border-radius: 3px;
    padding: 12px;
    border: 0;
    max-width: 600px;
}

.closeSearch {
    background: url("../assets/close.svg") center no-repeat;
    right: 5px;
    padding:10px 20px;
    margin: 10px 0px;
    cursor: pointer;
    height: 36px;
    position: absolute;
    top:5px;
    font-size: 0;
    margin-right: 0.5em;
}

.liveSearch {
    background-color: #666;
    left: -9999px;
    min-height: auto;
    position: relative;
    top:54px;
    z-index: 999;
}

.liveSearch.active {
    background-color: #666;
    overflow: scroll;
    min-height: 100%;
    left: auto;
    opacity: 0.9;
}

/*
 *---------------------------------------------------------------
 * RESPONSIVE NAVIGATION (BURGER)
 *---------------------------------------------------------------
 *
 */

.menuIcon {
    position: absolute;
    width: 2em;
    height: 2em;
    margin-right: 0;

    cursor: pointer;
    right: 0.5em;
    top: 1em;
    display: block;
    background: url("../assets/menuIcon.svg") center center;
}


/*
 *---------------------------------------------------------------
 * SITE SPECIFIC CONTENT
 *---------------------------------------------------------------
 *
 */

.content {
    /*padding: 1em 0;*/
}

.footer {
    padding: 1em 0;
}

.container {
    max-width: 1400px;
    padding: 0 0.53em;
    display: block;
    margin: 0 auto;
    width: 100%;
}

.postContent {
    float: left;
    width: 100%;
}

.miniCart {
    margin: 0 !important;
}

a.jsMiniCartOpen {
    background: url("../assets/cart.svg") center center no-repeat;
    background-size: 70%;
    position: absolute;
    border-radius: 4px;
    text-align: center;
    display: none;
    box-sizing: border-box;
    padding: 1em;
    font-size: 0;
    width: 32px;
    height: 32px;
    margin: 0.5em 0 0 0;
    right: 50px;
    top: 8px;
}

.navi {
    display: none;
}

.navi.open {
    display: block;
}

/*
 *---------------------------------------------------------------
 * MENU
 *---------------------------------------------------------------
 *
 */

.mainHeader {
    /*border-bottom: 1px solid #d1d1d1;*/
}

.mainHeader .wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.mainMenu {
    padding: 0;
    margin: 0;
}

.mainMenu li {
    position: relative;
    display: inline-block;
    width: 100%;
    list-style: none;
    border-top: 1px solid rgba(229,227,221);
}

.mainMenu li a {
    text-decoration: none;
    width: 100%;
    display: block;
    height: 3.5em;
    line-height: 3.5em;
    color: #262626;
    text-transform: uppercase;
}

.mainMenu li a:hover, .mainMenu li.menuActive a {
    color:#24a9e1;
}

.open.rsp_button {
    background: url("../assets/bluePlus.svg") center center no-repeat;
    background-size: 30%;
    text-align: center;
    position: absolute;
    color: transparent;
    font-size: 0;
    right: 0;
    top: 0;
    width: 10%;
    bottom: 0;
    min-height: 52px;
    display: block;
}

.subNav {
    display: none;
}

.subNav.open {
    display: inline !important;
}

/*
 *---------------------------------------------------------------
 * SUB MENU
 *---------------------------------------------------------------
 *
 */

/*.mainMenu li .subNav {*/
/*    border-radius: 4px;*/
/*    max-width: 250px;*/
/*    width: 200px;*/
/*    display: none;*/
/*    position: absolute;*/
/*    background-color: #FFFFFF;*/
/*    -webkit-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.39);*/
/*    -moz-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.39);*/
/*    box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.39);    z-index: 9;*/
/*    left: 0;*/
/*    top: 40px;*/
/*}*/

/*.mainMenu li:hover .subNav {*/
/*    display: block;*/
/*}*/

/*.subNav .mainMenu {*/
/*    display: block;*/
/*    float: left;*/
/*    width: 100%;*/
/*}*/

/*.subNav .mainMenu li {*/
/*    float: left;*/
/*    display: block;*/
/*    width: 100% !important;*/
/*}*/

/*.subNav .mainMenu li:after {*/
/*    position: absolute;*/
/*    background: #d4d4d4;*/
/*    display: block;*/
/*    content: '';*/
/*    height: 1px;*/
/*    width: 100%;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*}*/

/*.subNav .mainMenu li a {*/
/*    text-transform: capitalize;*/
/*    padding:  0.7em 1em;*/
/*    font-size: 0.8em;*/
/*    line-height: normal;*/
/*    height: auto;*/
/*}*/

/*
 *---------------------------------------------------------------
 * LOGO
 *---------------------------------------------------------------
 *
 */

.logo {
    margin: 1em 0;
    display: flex;
    justify-content: center;
    width: 8em;
    height: 2em;
}

.logo a {
    display: flex;
    justify-content: center;
}

.logo img {
    width: 100%;
}

/*
 *---------------------------------------------------------------
 * PHONE NUMBER
 *---------------------------------------------------------------
 *
 */

.mainHeader .tel {
    display: none;
    font-size: 2em;
    text-align: center;
    /*outline: red solid 1px;*/
    font-weight: 600;
}

.mainHeader .tel span {
    font-weight: 400;
    color: #24a9e1;
}

/*
 *---------------------------------------------------------------
 * GRAY FOOTER
 *---------------------------------------------------------------
 *
 */

footer {
    background: #f5f5f5;
    display: block;
    float: left;
    width: 100%;
}


footer .block a {
    text-decoration: none;
    color: #333;
}

footer .block h2 {
    font-weight: 600;
    font-size: 1em;
    color: #24a9e1;
}

footer .block p {
    font-size: 0.9em;
    font-weight: 300;
}

footer .block img {
    max-width: 50%;
}

img.socialIcon  {
    float: left;
    height: 38px;
    display: block;
    margin: 0 10px 0 0;
}

/*
 *---------------------------------------------------------------
 * COPYRIGHT
 *---------------------------------------------------------------
 *
 */

.copy {
    padding: 2em 0;
}

.copy {
    text-align: center;
    float: left;
    width: 100%;
}

/*
 *---------------------------------------------------------------
 * HOMEPAGE UNWANTED STOCK
 *---------------------------------------------------------------
 *
 */

.unwantedStock h3 {
    font-weight: 700;
    text-align: center;
    color: #24a9e1;
}

.unwantedStock h3 i {
    color: #a0c51d;
}

.unwantedStock p {
    text-align: center;
}

.greenTick {
    list-style: none;
    padding: 0;
    margin: 0 auto;

    width: 100%;
    max-width: 300px;
}

.greenTick li {
    position: relative;
    line-height: 2em;
    padding-left: 2.4em;
    margin: 0 0 0.5em 0;
    font-weight: 600;
    color: #5d5d5d;
}

.greenTick li:after {
    background: url("../assets/greentick.svg") center no-repeat;
    background-size: 80%;
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2em;
    width: 2em;
}

.tickWrap {
    float: left;
    width: 100%;
    max-width: 900px;
    margin-bottom: 20px;
}

.unwantedStock {
    max-width: 900px;
    margin: 0 auto;
}

/*
 *---------------------------------------------------------------
 * HOMEPAGE BLUE CALL OUR STOCK
 *---------------------------------------------------------------
 *
 */

.blueBar {
    background: #24a9e1;
    float: left;
    display: block;
    width: 100%;
}

.blueBar h2 {
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    color: #FFF;
}

.blueBar a {
    color: #FFF;
}

/*
 *---------------------------------------------------------------
 * HOMEPAGE SLIDER
 *---------------------------------------------------------------
 *
 */

.homeSlider ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rslides li {
    background-position: center;
    background-size: cover;
}

.cap_text {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-align: center;
}

a.view_our {
	text-decoration: none;
	font-size: 1.6em;
	width: 100%;
	max-width: 300px;
	display: block;
	margin: 0 auto;
	padding: 0.7em 1em;
	font-weight: 600;
	color: #FFF;
	border-radius: 5px;
	background: #a0c51d;
	margin-bottom: 1em;
	
		-webkit-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.39);
	-moz-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.39);
	box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.39);
}

a.view_our:hover {
	background: #24a9e1;
}

.cap_text h2 {
    font-weight: 600;
    color: #FFFFFF;
    width: 100%;
    display: inline-block;
}

.cap_text h2 span {
    color: #7ad6fd;
}

/*
 *---------------------------------------------------------------
 * HOMEPAGE WE WANT YOUR STOCK
 *---------------------------------------------------------------
 *
 */

.weWant {
    background: #f5f5f5;
    float: left;
    width: 100%;
}

.weWant h3, .weWant p {
    text-align: center;
}

.weWant h3 {
    font-size: 2em;
    color: #24a9e1;
    text-transform: uppercase;
}

.weWant p {
    font-size: 1.2em;
}

.weWant .wrap div {
    text-align: center;
    width: 100%;
    padding: 1em 0;
    margin-bottom: 1em;
}

.weWant .wrap div h4 {
    margin: 0;
    color: #FFF;
}

/*
 *---------------------------------------------------------------
 * HOMEPAGE SELL YOUR
 *---------------------------------------------------------------
 *
 */

.sell {
    float: left;
    display: block;
    width: 100%;
}

.sell .wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 20px;
}

.sell .wrap div {
    position: relative;
    text-align: center;
    padding-top: 25px;
    margin-bottom: 20px;
}

.sell .wrap div:after {
    background: url("../assets/arrows.svg") center no-repeat;
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    top: 0;
}

.sell .wrap div h5 {
    margin: 0.5em 0;
    font-size: 1.2em;
    color: #24a9e1;
}

.sell .wrap div p {
    padding: 0.3em 1em;
}

/*
 *---------------------------------------------------------------
 * HOMEPAGE WAREHOUSE CONTACT US
 *---------------------------------------------------------------
 *
 */

.getintouch {
    background: url("../assets/warhouse-background.jpg") center no-repeat;
    background-size: cover;
    float: left;
    display: block;
    width: 100%;
}

.getintouch .wrap {
    text-align: center;
    padding: 2em 0;
}

.getintouch .wrap h5 {
    font-size: 1.4em;
    color: #FFFFFF;
}

.getintouch .wrap p {
    color: #FFF;
}

.getintouch .wrap a {
    text-decoration: none;
    width: 200px;
    line-height: 20px;
    font-size: 1.7em;
    font-weight: 700;
    padding: 0.7em 0;
    color: #FFF;
    display: block;
    margin: 0 auto;
}

/*
 *---------------------------------------------------------------
 * FLOATING LABEL
 *---------------------------------------------------------------
 *
 */

.fields {
    position: relative; float: left;
}

input:focus ~ .floating-label, input:not(:focus):valid ~ .floating-label {
    top: 5px;
    bottom: 10px;
    left: 17px;
    font-size: 11px;
    opacity: 0.4;
}

.inputText {
    font-size: 14px;
    width: 200px;
    height: 60px;
}

.floating-label {
    position: absolute;
    pointer-events: none;
    left: 20px;
    top: 18px;
    transition: 0.2s ease all;
}

.contacts .w_30 {
    width: 100%;
    margin-bottom: 20px;
}

fieldset {
    width: 100%;
}

.fields {
    margin-bottom: 20px;
    width: 100%;
}

.contacts textarea {
    min-height: 100px;
}

.contacts .submit_field {
    cursor: pointer;
    width: 100%;
    display: block;
    margin: 0;
    border: 0;
    padding: 0;
    font-weight: 600;
    border-radius: 0;
    font-size: 1.7em;
    line-height: 2em;
}

.contacts .submit_field:hover {
    background: #a0c51d;
}

.contacts .w_30 .email {
    font-size: 0.9em;
}

.pageHeader {
    background: #27a6de;
    padding: 2em 0;
}

.pageHeader header h1 {
    position: relative;
    padding-left: 75px;
    font-size: 2em;
    font-weight: 600;
    color: #FFF;
}

.pageHeader header h1:after {
    background: url("../assets/arrowsWhite.svg") no-repeat center;
    position: absolute;
    display: block;
    content: '';
    width: 65px;
    height: 100%;
    left: 0;
    top: 0;
}

.pageHeader h2 {
    font-weight: 400;
    color: #FFF;
}

.pageHeader h2 a {
    color: #FFF;
}

.error p, .error a {
    color: #FFF;
}

.error a {
    text-decoration: underline;
}

/*
 *---------------------------------------------------------------
 * FILTERS
 *---------------------------------------------------------------
 *
 */

.w30 {
    width: 100%;
}

.filterTitle {
    display: flex;
    justify-content: space-between;
}

.productFilters .filterBox {
    padding: 10px;
}

.filterBox .filterTitle {
    line-height: 25px;
    color: #27a6de;
}

.filterBox .filterAll {
    margin-top: 20px;
    font-size: 0.8em;
}

.productFilters .filterBox a {
    width: 25px;
    height: 25px;
}

.productFilters {
    border: 1px solid #e4e3e3 !important;
    margin: 0.7em 0;
}

.productFilters .filterBox {
    border-bottom: 1px solid #e4e3e3;
}

.productsCount {
    padding: 1em;
    background: #f5f5f5;
    margin: 0 0 0.5em 0;
}

.prodList .w70 {
    width: 100%;
}

.productListWrap {
    /*display: flex;*/
    width: 100%;
}

.productListWrap > div {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.productListWrap .w20, .productListWrap .w80 {
    position: relative;
    width: 100%;
}

.productListWrap .w20 .newProduct {
    position: absolute;
    left: 0;
    top: 0;
}

.productListWrap div .helper {
    position: relative;
    max-width: 150px;
    display: block;
    margin: 0 auto;
    padding: 1em 0;
}

.productListWrap div .title {
    color: red;
    max-width: 80%;
    display: block;
    margin: 0 auto;
    width: auto;
}

.productListWrap div .title a {
    text-align: center;
    width: 100%;
    height: 50px;
    display: block;
}

.productListWrap div .prodPrice {
    text-align: center;
}

.productListWrap div .more, .productListWrap div .whish {
    font-size: 0.7em;
    text-align: center;
    display: block;
    width: 100%;
}

.productListWrap div .subscription {
    max-width: 220px;
    display: block;
    margin: 0 auto;
    width: auto;
}

.productListWrap div {
    text-align: center;
}

.cartForm {
    margin-top: 0.7em;
    margin-bottom: 2em;
    height: 69px;
}

.cartIcon.buy_now, .productListWrap div.viewMore {
    width: 100%;
    max-width: 150px;
    display: block;
    margin: 0 auto;
}

.productListWrap div.viewMore {
    margin: 20px auto;
}

.cartIcon.buy_now input[type="submit"], .viewMore a {
    background: #27a6de;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 600;
    border-radius: 0;
    padding: 0.5em 0;
    border: 0;
    width: 100%;
    margin: 0;
    color: #FFF;
}

.productListWrap div.viewMore a {
    text-decoration: none;
    font-size: 1em;
}

.cartIcon.buy_now input[type="submit"]:hover, .viewMore a:hover {
    background: #a0c51d;
}

.productSpinner {
    display: none;
}


.addToCartWrap {
    position: relative;
    /* 	outline: green solid 1px; */
    /* 	background: pink */
    clear: both;
    padding-bottom: 35px;
    margin: 0 auto;
    max-width: 130px;
    width: auto;
}

.addToCartWrap:after {
    text-align: center;
    background: #e6f5fc;
    position: absolute;
    content: 'In Your Basket';
    padding: 6px;
    font-size: 0.8em;
    color: #27a6de;
    width: 100%;
    bottom: 0;
    left: 0;
}

.addToCartWrap > div {
    display: flex;
    justify-content: space-between;
}

.itemQty {
    border: #e4e3e3 solid 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 32px;
    float: left;
    width: 35px !important;
    text-align: center;
    background: #FFFFFF;
}

.minus, .plus {
    margin: 0 0 0 10px !important;
    padding: 0 !important;
    line-height: 30px;
    border: #27a6de solid 2px !important;
    text-decoration: none !important;
    border-radius: 2px;
    float: left;
    width: 35px;
    text-align: center;
    color: #333 !important;
}

.minus:hover ,.plus:hover {
    background: #e6f5fc;
}

/*
 *---------------------------------------------------------------
 * RESPONSIVE 30.375em AND WIDER
 *---------------------------------------------------------------
 *
 */


.prod_de_page {
    margin: 2em;
}

.products .w40, .products .w60 {
    width: 100%;
    float: left;
    display: block;
}

.products .w60 {
    float: left;
    display: block;
}



.products .w40 img {
    width: 100%;
    height: auto;
}

.productsImage {
    border: 1px solid #dbdbdb;
    margin-bottom: 2em;
    position: relative;;
}

.newProduct {
    position: absolute;
    background: green;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFF;
    padding: 20px;
    left: 0;
    top: 0;
}

.helper .newProduct {
    padding: 10px;
    font-size: 12px;
    left: -20px !important;
}

.products .thumbnail-list {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.products .thumbnail-list li {
    border: 1px solid #dbdbdb;
    max-width: 140px;
    margin: 0 1em;
}

.products .blueimp-gallery {
    outline: blue solid 1px;
    display: block;
    float: left;
    width: 100%;
    background: green;
}

.products h1 {
    font-weight: 500;
    color: #1a321a;
}

.catagoryBanner {
    background:#24a9e1;
}

.catagoryBanner h2 {
    font-weight: 400;
    color:#FFFFFF;
}

.prod_de_page .price, .prod_de_page .salePrice, .prod_de_page .saveAmount {
    margin:  0;
    font-weight: 500;
    font-size: 1.6em;
    color: #464646;
}

.prod_de_page .saveAmount {
    color: #24a9e1;
}

.cartForm.prop .buy_now {
    cursor: pointer;
    background: #27a6de;
    width: 100%;
    max-width: 160px;
    margin: 0.5em 0 0.5em 0 !important;
    float: left;
    clear: both;
}

.cartForm.prop .buy_now:hover {
    background: #82cef2;
}

.cartForm.prop .buy_now input {
    font-family: 'Martel Sans', sans-serif;
    text-transform: uppercase;
    line-height: 15px;
    cursor: pointer;
    background: none;
    font-size: 0.9em;
    font-weight: 700;
    width: 100%;
    margin: 0;
    padding: 1.4em 0.9em 1.4em 0.9em ;
    border: 0;
}

.cartForm.prop .buy_now input:hover {
    background: none;
}

.prodPrice .price {
    text-decoration: line-through;
    color: #27a6de;
}

.tab-link:first-child {
    outline: red solid 1px;
}


.tab-link {
    border-left: solid 1px #dbdbdb;
    border-right: solid 1px #dbdbdb;
    border-bottom: solid 1px #dbdbdb;
    width: 100%;
    float: left;
    display: inline-block;
    padding: 1em;
    font-weight: 600;
    position: relative;
}

.tab-link:after {
    background: url("../assets/plus.svg") no-repeat center;
    background-size: 20px;
    content: '';
    width: 54px;
    height: 54px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.tab-link.current {
    color: #24a9e1;
}

.tab-link.current:after {
    background: url("../assets/minus.svg") no-repeat center;
    background-size: 20px;
}


.tab-content {
    border-left: solid 1px #dbdbdb;
    border-right: solid 1px #dbdbdb;
    border-bottom: solid 1px #dbdbdb;

    display: none;
    padding: 1em;

    background: #f5f5f5;
}

.tab-content.current{
    display: block;
    float: right;
    width: 100%;
}

.tab-content h2 {
    font-size: 1em;
    display: none;
}





.related, .recently {
    border-top: 1px solid #dbdbdb;
    margin-top: 2em;
}



@-ms-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

@media screen and (min-width: 30.375em) {

}

@media screen and (min-width: 40.375em) {

}

@media screen and (min-width: 56.875em) {

    .menuIcon {
        display: none;
    }

    .logo {
        float: left;
        width: 7em;
        height: 3em;
    }

    .navi {
        display: block;
        margin:1em auto 0 auto;
        max-width: 640px;
    }

    .mainHeader .tel {
        display: block;
        position: absolute;
        right: 0.5em;
        top: 0;
        font-size: 0.9em;
        line-height: 80px;
    }

    .mainMenu {
        padding: 0;
        display: flex;
        justify-content: space-between;
    }

    .mainMenu li {
        border: 0;
        width: auto;
    }

    .mainMenu li a {
        font-size: 0.8em;
        font-weight: 600;
    }

    footer {
        padding: 2em 0;
    }

    .footer .container {
        display: flex;
        justify-content: space-between;
    }

    footer .block {
        width: 25%;
    }

    footer .block img {
        max-width: 70%;
    }

    footer .block h2 {
        font-size: 1.2em;
    }

    footer .block p {
        font-size: 1.1em;
        line-height: normal;
    }

    .tickWrap {
        display: flex;
        justify-content: center;
    }

    .unwantedStock h3 {
        font-size: 1.5em;
    }

    .unwantedStock p {
        font-size: 1.2em;
        margin: 2em 0 2em 0;
    }

    .greenTick {
        max-width: none;
    }

    .greenTick li {
        font-size: 1.1em;
    }

    .tickWrap {
        margin: 4em auto;
        max-width: 80%;
        float: none;
    }

    .blueBar h2 {
        font-size: 1.4em;
        margin: 1.6em 0;
    }

    .cap_text {
        min-height: 400px;
    }

    .cap_text:after {
        background: url("../assets/arrows.svg") no-repeat center;
        position: absolute;
        left: 0;
        bottom: 90px;
        content: '';
        display: none;
        width: 100%;
        height: 40px;
    }

    .cap_text h2 {
        font-size: 2.3em;
    }

    .weWant .wrap {
        display: flex;
        justify-content: space-between;
        max-width: 800px;
        margin: 0 auto 20px auto;
    }

    .weWant .wrap div {
        max-width: 250px;
        width: 100%;
        padding: 1em;
    }

    .sell .wrap {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 3em 0 2em 0;

    }

    .sell .wrap div {
        width: 49%;
        /*max-width: 350px;*/
    }

    .contacts .w_30 {
        border: 1px solid #d1d1d1;
        /*border-radius: 4px;*/
        padding: 20px 30px 30px 30px;
        width: 28%;
        margin-top: 38px;
        overflow: hidden;
        margin-bottom: 60px;
    }

    .contacts .w_70 {
        margin-bottom: 60px;
        width: 70%;
    }

    .contacts .submit_field {
        width: 25%;
    }

    .open.rsp_button {
        display: none;
    }

    .mainMenu li .subNav {
        border-radius: 4px;
        max-width: 250px;
        width: 200px;
        position: absolute;
        background-color: #FFFFFF;
        -webkit-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.39);
        -moz-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.39);
        box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.39);    z-index: 9;
        left: 0;
        top: 40px;
    }

    .mainMenu li:hover .subNav {
        display: block;
    }

    .subNav .mainMenu {
        display: block;
        float: left;
        width: 100%;
    }

    .subNav .mainMenu li {
        float: left;
        display: block;
        width: 100% !important;
    }

    .subNav .mainMenu li:after {
        position: absolute;
        background: #d4d4d4;
        display: block;
        content: '';
        height: 1px;
        width: 100%;
        bottom: 0;
        left: 0;
    }

    .subNav .mainMenu li a {
        text-transform: capitalize;
        padding:  0.7em 1em;
        font-size: 0.8em;
        line-height: normal;
        height: auto;
    }

    .productFilters {
        margin-top: 1.5em;
    }

    .productsCount {
        margin: 1.5em 0;
    }

    .productListWrap {
        -webkit-box-align: stretch;
        align-items: stretch;
        align-content: flex-start;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        justify-content: flex-start;
        transition-duration: 300ms;
        transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
        transition-delay: initial;
        transition-property: all;
    }

    .productListWrap > div{
        flex-basis: 50%;
        max-width: 50%;
    }

    .products .w40 {
        width: 49%;
        display: block;
    }

    .products .w60 {
        width: 49%;
        display: block;
        float: right;
    }

}

@media screen and (min-width: 61.5625em) {

    .wrap {
        max-width: 1260px;
        margin: 0 auto;
    }

    .logo {
        width: 9em;
        height: 3em;
    }

    .mainHeader .tel {
        font-size: 1.1em;
    }

    .cap_text {
        max-width: 80%;
        margin: 0 auto;
    }

    .cap_text h2 {
        font-size: 2.6em;
    }

    .weWant .wrap {
        max-width: 900px;
    }

    .weWant .wrap div {
        max-width: 280px;
    }

    .weWant .wrap div h4 {
        font-size: 1.2em;
    }

    .w30 {
        width: 19%;
    }

    .prodList .w70 {
        float: right;
        width: 79%;
    }



    .productListWrap > div{
        flex-basis: 33.333333%;
        max-width: 33.333333%;
    }

    .productsCount {
        margin-top: 0;
    }

    .prodList .w70, .productFilters {
        margin: 3em 0;
    }

}

@media screen and (min-width: 78.75em) {

    .navi {
        max-width: 800px;
    }

    footer {
        padding: 4em 0;
    }

    .cap_text {
        max-width: 1100px;
        margin: 0 auto;
        min-height: 500px;
    }

    .cap_text h2 {
        font-size: 4em;
    }

    .weWant .wrap {
        max-width: 1100px;
    }

    .weWant .wrap div {
        max-width: 320px;
        padding: 1em 3.6em;
    }

    .weWant .wrap div h4 {
        font-size: 1.2em;
    }

    .sell .wrap {
        padding: 4em 0 3em 0;
    }

    .sell .wrap div {
        width: 33%;
        /*max-width: 350px;*/
    }

    .contacts .w_30 .email {
        font-size: 1em;
    }

    .contacts .w_30Header header h1 {
        font-size: 3em;
    }

    .page {
        padding-top: 2em;
        padding-bottom: 2.8em;
    }
}

@media screen and (min-width: 87.5em) {

    .mainHeader .wrap {
        padding: 1.6em 0;
    }

    .wrap {
        max-width: 1400px;
    }

    .logo {
        width: 13.8em;
    }

    .mainHeader .tel {
        font-size: 1.7em;
        line-height: 125px;
    }

    .unwantedStock h3 {
        font-size: 2em;
    }

    .unwantedStock p {
        margin-top: 2.5em;
    }

    .greenTick li {
        font-size: 1.3em;
        margin-bottom: 1em;
    }

    .weWant .wrap div {
        padding: 1.2em 2.6em;
        margin-top: 20px;
    }

    .weWant .wrap div h4 {
        font-size: 1.4em;
    }

}
