/*
 *---------------------------------------------------------------
 * DEVELOPMENT UTILITIES - REMOVE BEFORE GOING LIVE
 *---------------------------------------------------------------
 * Move this into its own stylesheet...
 */
/*
html:after {
    background: red;
    padding: 5px;
    content: '< 30em';
    font-size: 0.7em;
    position: fixed;
    color: #FFFFFF;
    z-index: 999;
    left: 0;
    top: 0;
}

@media screen and (min-width: 30.375em) {
    html:after {
        content: '> 30em';
    }
}

@media screen and (min-width: 40.375em) {
    html:after {
        content: '> 40em';
    }
}

@media screen and (min-width: 56.875em) {
    html:after {
        content: '> 56em';
    }
}

@media screen and (min-width: 61.5625em) {
    html:after {
        content: '> 61em';
    }
}
*/

/*
 *---------------------------------------------------------------
 * LAYOUT & UTILITIES
 *---------------------------------------------------------------
 *
 */
html {
    box-sizing: border-box;
    height: 100%;
    font-size: 100%;
    font-family: Arial, Helvetica, sans-serif;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}

.BetterTimes { 
	font-family: BetterTimes;
	font-weight: normal;
	font-style: normal;
}

body {
    font-size: 0.875em;
    background: grey;
    color: #1a321a;
}

::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%;
}

p {
	font-weight: 300;
	font-size: 1.2em;
	line-height: 1.6em;
}

ul, ol {
	font-size: 1.2em;
	line-height: 1.6em;
	padding: 0 0 0 20px;
}

/*
 *---------------------------------------------------------------
 * A TAG RESET
 *---------------------------------------------------------------
 *
 */

a:link {
    text-decoration: none;
    color:#456f81;
}

a:visited {
    text-decoration: none;
    color:#456f81;
}

a:hover {
    color: #a6b6bf;
}

a:active {
    color: #456f81;
}

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

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

/*
 *---------------------------------------------------------------
 * DEFAULT TEXT COLOURS
 *---------------------------------------------------------------
 *
 */
 
h1 {
	/*font-family: BetterTimes;*/
    text-transform: uppercase;
	font-weight: 600;
	font-style: normal;
	font-size: 2em;
    color:#456f81;
    margin: 0.2em 0;
}

h2 {
    color: #456f81;
}

h3 {
    color: #456f81;
}

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;
}

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

.bgWhite {
    background-color: #fff;
}

.bgGrey {
    background-color: #666;
}

.bgBlue {
    background-color:#2c82c9;
}

.bgPurple {
    background-color: #bb1cc9;
}

.bgGreen {
    background-color: #13c975;
}

.bgRed {
    background-color: #c92a12;
}



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

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

input, select, textarea {
    border:1px solid #d1d1d1;
    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: #c3d0d9;
}

.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: #456f81;
}

/* 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 {
    outline:1px solid #b8312f;
}

.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;
}

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

table.deliveryBrakeDownContainer, td.freeDelivery {
    padding: 0;
    border: 0;
}

td.freeDelivery {
    border: 1px solid #ccd7df !important;
    font-weight: bold;
}

.deliveryBrakeDownContainer table {
    border-top: 1px solid #ccd7df;
    border-left: 1px solid #ccd7df;
    border-collapse: collapse;
    padding: 0;
    color: #456f81;
}

.deliveryBrakeDownContainer th, .deliveryBrakeDownContainer td {
    text-align: center;
    vertical-align: middle;
    padding: 0;
    border: 0;
}

.deliveryBrakeDown th, .deliveryBrakeDown tbody td {
    border-bottom: 1px solid #ccd7df;
    border-right: 1px solid #ccd7df;
    padding: 1%;
    padding-left: 0;
    margin: 0 !important;
}

.deliveryBrakeDownContainer table tr:nth-child(even) {
    background: #e6edf2 !important;
}


.scroll_hidden {
    display: block;
    margin-bottom: 10px;
    outline: red solid 1px;
}

/*
 *---------------------------------------------------------------
 * RESPONSIVE NAVIGATION (BURGER)
 *---------------------------------------------------------------
 *
 */
.menuIcon {
    position: relative;
    float:right;
    width: 2em;
    height: 1.25em;
    margin-top: 1em;
    margin-right: 0;
    border-top: 0.1em solid #000;
    border-bottom: 0.1em solid #000;
    cursor: pointer;
}

.menuIcon:before {
    content: '';
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 100%;
    border-top: 0.1em solid #000;
}



/*
 *---------------------------------------------------------------
 * 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
 *---------------------------------------------------------------
 *
 */

.searchBox {
	display: none;
	padding: 0 20px 20px;
    text-align: center;
}

.search_hold {
	position: relative;
}

.live_search {
	background: #FFF;
	width: 100%;
	position: absolute;
	z-index: 9;
	box-shadow: 0px 15px 15px rgba(0,0,0,0.2);
	left: 0;
}

h2.bright {
	text-align: center;
}

.searchBox form input {
	text-align: center;
	position: relative;
	width: 100%;
	right: 0;
	top: 0;
	border-radius: 0;
	border: #456f81 solid 1px;
	padding: 5px 0;
	line-height: 30px;
	font-weight: 600;
	text-transform: uppercase;
}

.live_search .product_list .product {
	float: left;
	width: 100%;
	margin-top: 20px;
	padding-top: 20px;
}

.no_product {
	padding-top: 20px;
}

.live_search .product_list .product .product_title {
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
	margin: 20px;
}

.live_search .product_list .product .productPrice ,.live_search .product_list .product .productPrice span {
	text-align: center;
	margin: 0 5px;
}

.live_search .product_list .product .productPrice span.onsale:before {
		content: 'Now: ';
		color: #000000;
}

.live_search h1 {
	font-weight: 300;
	margin: 20px 0;
}

.live_search .product_list .product .productsImage {
	width: 100%;
	max-width: 200px;
	min-height: 200px;
	border: solid 1px #dadde0;
	position: relative;
	margin: 0 auto 10px auto;
}

.live_search .product_list .product .productsImage a:after {
	display: none;	
}

.live_search .product_list .product .productsImage img {
	outline: none;
}


.liveSearch.active {
    background: #FFF;
    /*overflow: scroll;*/
    min-height: 100%;

    /*opacity: 0.9;*/
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 996;
}

.search_list .product .product_image img {
    width: auto;
    margin: 0 auto;
    max-height: 200px;
}

.search_list .product .product_button {
    margin-bottom: 20px;
}

.search_list .product .product_title {
    padding: 20px 0;
    /*height: 100px;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search_list .product .product_title a {
    font-size: 1em;
    margin: 0 auto;
    padding: 20px 0;
    color: #464646;
}

.search_list .product .product_button {
    margin-bottom: 20px;
}

.search_list .product .product_button a {
    border:solid 2px #456f81;
    background: #456f81;
    text-decoration: none;
    padding: 12px 0 10px 0;
    width: 100%;
    font-weight: 700;
    font-size: 1em;
    display: block;
    max-width: 460px;
    margin: 0 auto;
    color: #FFFFFF;
}

.search_list .product .product_button a:hover {
    background: #FFF;
    color: #456f81;

}




/*
 *---------------------------------------------------------------
 * SITE SPECIFIC CONTENT
 *---------------------------------------------------------------
 *
 */
.mainHeader {
    border-bottom: 1px solid black;
}

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

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

.mainMenu li {
    display: inline-block;
    list-style: none;
    margin-right: 0.5em;
}

.content {
    padding: 1em 0;
}

.footer {
    border-top: 1px solid black;
/*     text-align: right; */
    padding: 1em 0;
}

/*
 *---------------------------------------------------------------
 * HEADER (RESPONSIVE)
 *---------------------------------------------------------------
 *
 */

.wrapper {
	background: #FFFFFF;
}

.header_top .left_position {
	display: none;
	background: #050505;
	background-color: rgba(60, 93, 110, 0.7);
	position: absolute;
	width: 85%;
	top: 0px;
	height:100vh;
	right: 0px;
	left: 0px;
	z-index: 99;
}



html, body {
    height: 100%;
    max-height:100%;
}



.header_top .on_off {
	display: block;
	max-width: 100%;
	position: fixed;
	bottom: 0;
	top: 0;
}

.p_one {
	position:absolute;
	z-index: 9;
	right: 0;
	left: 0;
	
}

header.header_top {
	float: left;
	width: 100%;
}

.header_top {
	position: relative;
	background: #FFFFFF;
}

.header_top .logo {
	color: transparent;
	font-size: 0px;
	display: block;
	margin: 0 auto;
	width: 65px;
	height: 62px;
	z-index: 99;
	position: relative;
}

.header_top .logo a {
	display: block;
	height: 62px;
	text-align: center;
}

.header_top .logo a:before  {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.header_top .logo a img {
    vertical-align: middle;
    display: inline;
   	width: 65px;
}

.header_top .rsp_nav, .header_top .rsp_nav_sub {
	position: absolute;
	display: block;
	text-align: center;
	width: 65px;
	height: 62px;
	z-index: 99;
	top: 0;
	left: 0;
}

.header_top .rsp_nav:before, .header_top .rsp_nav_sub:before  {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.header_top .rsp_nav img, .header_top .rsp_nav_sub img {
	width: 20px;
    vertical-align: middle;
    display: inline;
}

#primary-menu .rsp_nav, #primary-menu .rsp_nav_sub {
	position: absolute;
	right: 0;
	left: auto;
}

#primary-menu .rsp_nav_sub {
	background: none;
}

.header_top .top_icon {
	position: absolute;
	color: transparent;
	text-align: center;
	font-size: 0px;
	display: block;
	width: 45px;
	height: 62px;
	z-index: 99;
	right: 0;
	top:0;
}

.header_top .top_icon:before, a.jsMiniCartOpen:before  {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.header_top .top_icon img {
	width: 25px;
    vertical-align: middle;
    display: inline;
}

.header_top .top_icon.mobile {
	display: none;
} 

.header_top .mag {
	position: absolute;
	color: transparent;
	text-align: center;
	font-size: 0;
	display: block;
	width: 45px;
	height: 62px;
	z-index: 9;
	right: 45px;
	top:0;
}

.header_top .mag:before  {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.header_top .mag img {
	width: 20px;
    vertical-align: middle;
    display: inline;
}

.header_top .top_icon.account {
	/*display: none;*/
	right: 90px;
}

.header_top .top_icon.account img {
	width: 15px;
}

.header_top .top_icon.basket {
    position: absolute;
    font-size: 0.9em;
}

.header_top .top_icon.basket .miniCart {
    position: absolute;
    top:0;
    width: 100%;
    height: 100%;
    margin-top: 0;
}

a.jsMiniCartOpen {
    position: absolute;
    display: block;
    color: black;
    left: 0;
    height: 100%;
    width: 100%;
    font-size: 0;
}

.miniCartBody {
    font-size: inherit;
    color: #FFFFFF !important;
}

.header_top .top_icon .miniCart img {
    width: 100%;
    margin: 0;
}

.header_top .top_icon .miniCart {
    text-align: left;
}

/*
 *---------------------------------------------------------------
 * MAIN MENU (RESPONSIVE)
 *---------------------------------------------------------------
 *
 */

.main_menu {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
	width: 100%;
	display: block;
}

.main_menu li {
	background-color: rgba(78,110,127,0.8);
	border-bottom: 1px solid #8abcce;
	position: relative;
	width: 100%;
	float: left;
}

.main_menu li a {
	text-decoration: none;
	text-transform: uppercase;
	font-size: 14px;
	color: #FFFFFF;
	padding: 0 20px;
	line-height: 62px;
	display: block;
	font-weight: 700;
}

.main_menu li a:hover {
	background: #FFFFFF;
	color: #456f81;
}

.main_menu ul li a {
	font-size: 14px;
}

.main_menu .main_menu {
	border-top: 1px solid #8abcce;
	display: none;
}

.main_menu .main_menu li:last-child {
	border-bottom: 0px;
}

.main_menu .main_menu.on_off {
	display: block;
	position: relative;
	background: #1a292f;
}

/*
 *---------------------------------------------------------------
 * SOCIAL ICONS
 *---------------------------------------------------------------
 *
 */

.social_icons {
	display: none;
	margin: 0 auto;
	width: 130px;
	clear: both;
	z-index: 10;
}

.social_icons a {
	float: left;
	display: block;
	height: 100;
	width: 25%;
}

.social_icons a img {
	display: block;
	float: left;
	height: auto;
	width: 100%;
	padding-left: 10px;
}

.footer .social_icons {
	display: none;
    z-index: 1;
}

/*
 *---------------------------------------------------------------
 * FOOTER MENU & COPY
 *---------------------------------------------------------------
 *
 */

.footer {
	background: #456f81;
	padding: 20px ;
	color: #bcb9cf;
	position: relative;
}

.footer ul {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
	float: left;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 1em;
}

.footer ul li {
	padding: 0 0  0 0;
	font-size: 0.8888em;
	margin: 0 0 10px 0;
	float: left;
	width: 100%;
}

.footer ul li:last-child {
	margin-bottom: 0px;
}

.footer li, .footer a {
	color: #ccd7df;
	font-weight: 600;
}

.footer .c_1 {
	color: #FFFFFF;
	margin-bottom: 20px;
}

.footer .copy {
	font-weight: 600;
	color: #ccd7df;
}

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

.home-slider {
	background: #c3d0d9;
	float: left;
	clear: both;
	width: 100%;
	display: block;
	float: left;
}

.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%;
   height: 280px; 
   left: 0;
   top: 0;
   background-size: cover;
   background-position: center center;
}

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

.jsSlides img {
   display: block;
   height: auto;
   float: left;
   width: 100%;
   border: 0;
   position: relative;
   z-index: 5;
}

.jsSlides li .cap_text {
    position: relative;
	text-align: left;
	z-index: 10;
	font-weight: 600;
	padding: 20px;
	color: #FFF;
	background: none;
	width: 100%;
	z-index: 10;
}

.jsSlides li .cap_text h2 {
	/*font-family: BetterTimes;*/
	font-weight: 600;
	font-style: normal;
	margin: 0;
	text-align: center;
	font-size: 1.4em;
	color: #FFF;
	line-height: normal;
}

.jsSlides li .cap_text h2 span {
    /*outline: 1px solid red;*/
    display: inline-block;
    font-weight: normal;
	/*line-height: 0em;*/
	font-size: 190%;
    margin-top: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFF;
    clear: both;
}

.jsSlides li .cap_text h4 {
    text-align: center;
    color: #FFF;
    font-size: 1em;
    margin: 0;
}

.rslides1_tabs {
	display: none;
}

.jsSlides li .cap_buy {
	font-size: 0.82em;
	float: left;
	clear: both;
}

.jsSlides li .cap_buy {
	background: #c3d0d9;
	display: block;
	text-align: center;
	border-radius: 5px;
	width: auto;
	z-index: 10;
	font-weight: 600;
	color: #FFF;
	margin-top: 20px;
}

.jsSlides li .cap_buy a {
	position: relative;
	text-align: left;
	background: none;
	border-radius: 5px;
	display: block;
	clear: both;
	width: 128px;
	line-height: 30px;
	padding: 0 8px;
	color: #456f81;
	vertical-align: middle;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1.3em;
}

.product_content .buy_now, .buy_now  {
    overflow: hidden;
	position: relative;
	text-align: left;
	background: #c3d0d9;
	border-radius: 5px;
	display: block;
	color: #456f81;
	vertical-align: middle;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1em;
	margin: 20px 0px 20px 0;
	border: 0;
	padding-right: 25px;
	float: left;
	cursor: pointer;
    min-width: 150px;
    width: 100%;
}

.buy_now.sub {
    background: #456f81;
    font-size: 0.7em;
    padding: 0;
    color: #FFFFFF;
}

.buy_now.sub input {
    color: #FFFFFF;
}

.buy_now.sub:hover input {
    color: #456f81;
}

.buy_now.sub:after {
   content: none;
}

.product_content .cartForm .buy_now {
    min-width: 200px;
    font-size: 1.5em;
    margin-bottom: 0;
}

.product_content .cartForm .buy_now.sub {
    font-size: 1em;
}

.product_content .buy_now:hover, .buy_now:hover {
	background: #e6edf2;
}

.product_content .buy_now:hover input, .buy_now:hover input {
	cursor: pointer;
}

.product_content .buy_now input, .buy_now input {
	margin-top: 0px;
	font-weight: 600;
	background: none;
	width: 100%;
	border: 0;
	padding: 15px ;
	color: #456f81;
}

.product_content .buy_now.sub:hover {
	background: #c3d0d9;
}

.product_content .buy_now.sub:hover input {
	color: #FFF;
}


.jsSlides li .cap_buy a:hover {
	background: #FFFFFF;
}

.jsSlides li .cap_buy a:after, .product_content .buy_now:after, .buy_now:after {
	content:  url('/application/themes/default/assets/basket.svg');
	vertical-align: middle;
	position: absolute;
	width: 17px;
	right: 8px;
	bottom: 0;
	z-index: 1;
	height: 46px;
    line-height: 46px;
}

.product_content .cartForm .buy_now:after {
    height: 54px;
    line-height: 54px;
}

.product_content .buy_now:after {
	line-height: 54px;
	margin-bottom: 0;
}

.jsSlides li .cap_buy a:after {
	height: 28px;
	line-height: 28px;
	margin-bottom: 0;
}

.product_content .buy_now.sub {
	background: #e6edf2;
	margin: 20px 0;
	padding-right: inherit;
	float: left;
}

.product_content .buy_now.sub:after {
	display: none;
}







/*
 *---------------------------------------------------------------
 * DUFFYS HOMEPAGE BOXES
 *---------------------------------------------------------------
 *
 */

.duffys_boxes {
	background: #456f81;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	float: left;
	display: block;
	width: 100%;
	margin-bottom: 20px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
    min-height: 300px;
    position: relative;
}

.duffys_boxes a {
	text-align:center;
	color: #FFF;
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;

}

.duffys_boxes a:hover {
	background: rgba(72, 105, 124, 0.4);
    /*background: green !important;*/


}

.duffys_boxes i {
    text-transform: uppercase;
	/*font-family: BetterTimes;*/
	font-weight: 600;
	font-style: normal;
	font-size: 2em;
	/*line-height: 0.8em;*/
	margin-top: -20px;
	/*min-height: 300px;*/
	width: 100%;
	float: left;
	clear: both;
}

.duffys_boxes span {
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
    text-align: center;
	background: #456f81;
    color: #FFFFFF;
	line-height: 1.5em;
	font-weight: 600;
	padding: 10px;
	width: 100%;
	float: left;
	clear: both;
    position: absolute;
    left: 0;
    bottom: 0;
}

.duffys_boxes.subscribe {
	background-image:  url('../assets/subscribe.jpg');
}

.duffys_boxes.shop {
	background-image:  url('../assets/shop.jpg');
}

.duffys_boxes.latest {
	background-image:  url('../assets/latest.jpg');
}

.duffys_boxes.new {
	background-image:  url('../assets/new.jpg');
}

.duffys_boxes.check {
	background-image:  url('../assets/check.jpg');
}

.duffys_boxes.from {
	background-image:  url('../assets/from.jpg');
}

/*
 *---------------------------------------------------------------
 * HOMEPAGE BLUE AREA
 *---------------------------------------------------------------
 *
 */

.single {
	text-align: center;
	background: #456f81;
	display: block;
	float: left;
	width: 100%;
	padding: 20px;
	font-size: 1em;
	font-weight: 600;
	clear: both;
	color: #FFF;
}

.single h2 {
	color: #FFF;
}

.single p {
	line-height: 1.5em;
}

/*
 *---------------------------------------------------------------
 * HOMEPAGE SOCIAL MEDIA
 *---------------------------------------------------------------
 *
 */

.instagram_facebook {
	background: url('../assets/soical_bg.jpg');
	background-size: cover;
	background-repeat: repeat;
	text-align: center;
	clear: both;
	display: block;
	float: left;
	width: 100%;
	color: #456f81;
	/*font-family: BetterTimes;*/
	font-weight: normal;
	font-style: normal;
}

.instagram_facebook .container {
	position: relative;
	max-width: 90%;
	margin: 0 auto;
}

.instagram_facebook h2, .instagram_facebook h3 {
	/*font-family: BetterTimes;*/
	font-weight: 600;
    text-transform: uppercase;
	font-style: normal;
	position: relative;
	margin: 0 0 20px 0;
	font-size: 1.2em;
	color: #456f81;
	width: auto;
    padding-right: 35px;
}

.instagram_facebook h3 {
	text-align: left;

	/*width: 150px;*/
	margin: 0px auto;
    margin-bottom: 20px;
}

.instagram_facebook h3:after {
	content: '';
    background: url('/application/themes/default/assets/arrow-if.svg') no-repeat center center;
	/*height: 20px;*/
	width: 20px;
	color: #456f81 ;
	display: block;
	position: absolute;
	top:0;
	right: -0;
    bottom: 0;
}

.instagram_facebook h2 {
	font-size: 3em;
}

.instagram_facebook .container {
	padding: 20px 20px 40px 20px;
}

.widget {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
}

.widget div {
	text-align: center;
	width: 100%;
	margin: 0 0% 3% 0%;
}

.instagram_facebook .fb_holder {
	display: block;
	margin: 0 auto;
	clear: both;
	width: auto;
	float: none;
	border-radius: 5px;
	max-width: 300px;
}

html:before {
	position: fixed;
	top: 0;
	content: 'mobile';
	background: red;
	padding: 5px;
	font-size: 9px;
	z-index: 999;
	display: none;
	width: auto;
	float: left;
}

/*
 *---------------------------------------------------------------
 * HOMEPAGE PRODUCTS
 *---------------------------------------------------------------
 *
 */

.related .productListWrap .clear {
    text-align: center;
    padding: 40px;
    position: relative;
}

.related .productListWrap .clear .w20 {
    margin-bottom: 20px;
}

.related .productListWrap .clear .w20 img {
    margin: 0 auto;
    max-width: 225px;
}

.related .productListWrap .clear .w80 {
    text-align: center;
    display: block;
}

.related .productListWrap .clear .w80 a {
    font-weight: 600;
    color: #456f81;
    font-size: 1em;
}

.related .productListWrap > div {
    padding: 0;
    border: 0px;
}

.related .productListWrap > div:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}

.related header {

}

.related h2 {
    font-family: BetterTimes;
    font-weight: normal;
    font-style: normal;
    font-size: 4em;
    margin: 20px 0;
}

/*
 *---------------------------------------------------------------
 * MISC
 *---------------------------------------------------------------
 *
 */

.content_container {
	padding: 20px;
	float: left;
	clear: both;
	width: 100%;
}

.home .content_container {
	border-top: 0px;
	padding-bottom:0px;
	padding-top: 0px;
}

.home .content_container article header {
	border-bottom: 0px;
}

.subscription {
    display: none;
}
/*
 *---------------------------------------------------------------
 * COOKIES WARNING
 *---------------------------------------------------------------
 *
 */

.cc-color-override-530831885.cc-window {
	background: #3e6576 !important;
}

.cc-color-override-530831885 .cc-btn {
	text-decoration: none;
	background: #c3d0d9 !important;
	color: #456f81 !important;
}

.cc-color-override-530831885 .cc-btn:hover {
	background: #FFF !important;
}

.content_container header {
	border-bottom: #ccd7df solid 1px;
}

/*
 *---------------------------------------------------------------
 * FANCY BOX
 *---------------------------------------------------------------
 *
 */

.fancy_box {
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  	position: relative;
	border: 3px solid #ccd7df;
	border-radius: 3px;
	max-width: 500px;
	display: block;
	clear: both;
	width: 100%;
}

.fancy_box:hover {
	  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.fancy_box:after {
	content: url('/application/themes/default/assets/play.svg');
	display: block;
	z-index: 1;
	width: 100px;
	height: 80px;
	opacity: 0.6;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -40px 0 0 -50px;
}

.fancy_box img {
	width: 100%;
	height: auto;
}

.fancy_box:hover:after {
	opacity: 1;
}

/*
 *---------------------------------------------------------------
 * BLOG
 *---------------------------------------------------------------
 *
 */

.blog_detail article header {
	margin-bottom: 20px;
}

.blog article {
	width: 100%;
	padding: 0;
	float: left;
	padding-bottom: 20px;
	margin: 20px 0 0 0;
	border-bottom:  solid 1px #ccd7df;
}

.blog article .w_10 {
	width: 25%;
	
	-webkit-box-shadow: 0 6px 14px -6px rgba(0, 0, 0, .4);
    box-shadow: 0 6px 14px -6px rgba(0, 0, 0, .4);
	border: 5px  solid #a6b6bf;
    -webkit-transition: box-shadow .3s ease, border .3s ease;
    -o-transition: box-shadow .3s ease, border .3s ease;
    transition: box-shadow .3s ease, border .3s ease;
}

.blog article .w_90 {
	width: 75%;
	padding-left:50px;
}

.blog .w_90 a.title {
	line-height: 30px;
	font-weight: 600;
	font-size: 1.3em;
}

/*
 *---------------------------------------------------------------
 * PAGING
 *---------------------------------------------------------------
 *
 */

ul.paging {
	list-style: none;
	float: left;
	width: 100%;
	padding: 0;
	margin: 0 0 20px 0;
}

ul.paging li {
	border-bottom: #ccd7df solid 1px;
	border-left: #ccd7df solid 1px;
	border-top: #ccd7df solid 1px;
	overflow: visible;
	margin-top: 20px;
	display: block;
	float: left;
}

ul.paging li:last-child {
	border-right: #ccd7df solid 1px;
}

ul.paging li.selected {
	padding: 0;
	line-height: 30px;
	font-weight: 600;
	font-size: 15px;
	color: #b58b4b;
}

ul.paging li a {
	padding: 5px 15px;
	text-decoration: none;
	line-height: 40px;
	font-weight: 600;
	font-size: 15px;
	display: block;
}

ul.paging li a:hover {
	background: #456f81;
	color: #FFF;
}

/*
 *---------------------------------------------------------------
 * CONTACTS
 *---------------------------------------------------------------
 *
 */
 
section.contacts .w_70 {
	margin-top: 20px;
	width: 100%;
}

section.contacts .w_30 {
	text-align: left;
	margin-top: 20px;
	width: 100%;
	margin-bottom: 50px;
	line-height: 1.6em;
	margin-top: 20px;
}

.contacts fieldset {
	margin: 0;
 }

.contacts input, .contacts select, .contacts textarea {
	margin-bottom: 20px;
	font-weight: 600;
	border-radius: 3px;
	padding: 12px 18px;
	font-size: 16px;
}

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

.contacts label {
	margin-bottom: 10px;
	padding: 0px;
}

.contacts input {
	margin-bottom: 20px;
}

.contacts input#submit.submit_field {
	background: #ccd7df;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
	border-radius: 3px;
	font-size: 20px;
	border: 0;
	color: #456f81;
	width: 100%;
	max-width: 150px;
	float: left;
	cursor: pointer;
}

.contacts input#submit.submit_field:hover {
	background: #e6edf2;
	color: #456f81;
}

section.contacts .w_70 p {
	text-align: left;
	margin: 0 0 20px 0;
}

.contacts p.mto {
	margin-top: 0px;
}

.contacts p.mbo {
	margin-bottom: 0px;
}

.contacts p, .contacts .adr, .contacts .tel, .contacts .email {
	line-height: 1.6em;
	font-size: 1.2em;
}

.contacts strong {
	color: #456f81;
}

.contacts h2.address {
	margin-top: 4px;
}

/*
 *---------------------------------------------------------------
 * PAGE BANNERS
 *---------------------------------------------------------------
 *
 */

.banners ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.banners ul li {
	background-position: center center;
	background-size: cover;
	min-height: 100px;
}

/*
 *---------------------------------------------------------------
 * PRODUCT PAGE (IMAGES)
 *---------------------------------------------------------------
 *
 */

.productsImage {
	position: relative;
}

.productsImage img {
	margin: 0 auto;
	max-height: 400px;
}

.productsImage a:after {
	opacity: 0.5;
	height: 35px;
	padding:10px;
	width: 35px;
	position: absolute;
	content: url('/application/themes/default/assets/mag.svg');
	background: #456f81;
	border-radius: 100px;
	color: #FFF;
	display: block;
	top: 10px;
	right: 10px;
}

.productsImage a:hover:after {
	transition: background-color 0.8s ease;
	background: #456f81;
	opacity: 1;
}

ul.thumbnail-list {
	list-style: none;
	width: 100%;
	clear: both;
	display: block;
	padding: 0;
	margin: 20px 0;
	float: left;
	text-align: center;
}

.thumbnail-list:after {
	content: '';
	display: inline-block;
	line-height: 0px;
	width: 100%;
	height: 0;
}

.thumbnail-list li {
	border: 1px solid #ccd7df;
	width: 100px;
	margin-bottom: 10px;
	padding: 0;
	height: 100px;
	display: inline-block;
}

.thumbnail-list li:last-child {
	margin-right: 0px !important;
}

.thumbnail-list li:nth-child(6) {
	float: left;
	margin-right: 2.5%;
}

.thumbnail-list li:nth-child(7) {
	float: left;
	margin-right: 2.5%;
}

.thumbnail-list li a {	
	display: block;
	height: 100%;
    width: 100%;
    position: relative;
}

.thumbnail-list li a img {
	max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.thumbnail-list li:hover {
	border-color: #6f6f6f;
	transition: 0.3s;
}

/*
 *---------------------------------------------------------------
 * PRODUCT PAGE (CONTENT)
 *---------------------------------------------------------------
 *
 */

.product_content.title_price h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 600;
	font-size: 2em;
}

.product_content .productPrice {
	margin: 20px 0;
	font-weight: 500;
	font-size: 1.9em;
	color: #456f81;
}

.product_content .rate_stars {
	clear: both;
	float: left;
	width: 100%;
}

.product_content .rate_stars .starRating {
	margin-left: -30px;
}

.product_content .rate_stars .starRating label {
	font-size: 2em;
}

.product_content .rate_stars .starRating:not(old) {
	width: 170px;
	height: 2em;
}

.product_content .rate_stars .avg_rating {
	margin: 20px auto;
	clear: both;
	float: none;
	display: block;
}

.product_content  .quantity input {
	text-align: center;
	max-width: 40px;
	margin-right: 10px;
	padding: 10px 0;
	float: left;
}

.product_content  .quantity label {
	font-weight: 600;
	margin-bottom: 10px;
	clear: both;
	width: 100%;
}

/*
 *---------------------------------------------------------------
 * PRODUCT PAGE TABS
 *---------------------------------------------------------------
 *
 */

.tabs:after {
	display: block;
	content: '';
	width: 100%;
	float: left;
	clear: both;
}

ul.tabs {
	display: none;
	border-bottom: none;
	margin: 0 0 0 0;
	padding: 0px;
	list-style: none;
	float: left;
	width: 100%;
}

ul.tabs:after {
	display: block;
	content: '';
	width: 100%;
	float: left;
	clear: both;
}

ul.tabs li {
	text-align: center;
	color: #456f81;
	display: block;
	padding: 5px 10px;
	cursor: pointer;
	width: auto;
	margin: 0;
	float: left;
	font-weight: 600;
	font-size: 0.7em;
}

ul.tabs li:last-child {
	border-right: 0px;
}

ul.tabs li.current {
	background: #ccd7df !important;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	color: #456f81 !important;
}

ul.tabs li:hover {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	background: #ccd7df !important;
	color: #FFFFFF !important;
	opacity: 0.8;
}

div.tab-link {
	position: relative;
	cursor: pointer;
	background: #c3d0d9;
	color: #456f81;
	font-size: 1em;
	font-weight: 600;
	padding: 10px;
	width: 100%;
	float: left;
	margin-top: 5px;
	clear: both;
}

div.tab-link:hover {
	background: #e6edf2;
}

div.tab-link:after {
	content: '';
	background: url('../assets/arrow.svg') no-repeat center center;
	background-size: 10px;
	position: absolute;
	display: inline-block;
	right: 0;
	top: 0;
	width: 36px;
	height: 36px;
	
	-ms-transform: rotate(-90deg); /* IE 9 */
	-webkit-transform: rotate(-90deg); /* Safari prior 9.0 */
	transform: rotate(-90deg); /* Standard syntax */
}

div.tab-link:after img {
	background: green;
}

/*
 *---------------------------------------------------------------
 * PRODUCT PAGE TAB CONTENT
 *---------------------------------------------------------------
 *
 */

.tab-content h2.txt_c {
	font-size: 160%;
	margin-bottom: 0px;
}

.tab-content {
	border: solid 1px #ccd7df !important;
	display: none;
	padding: 0 20px 20px 20px;
	line-height: 1.5em;
	margin-top: 5px;
	clear: both;
}

.tab-content.current{
	display: block;
}  

.rate_stars {
	float: left;
}

.tab-content .tab_con_box h2 {
	width: 100%;
	float: left;
	clear: both;
	color: #000000;
	text-transform: uppercase;
	font-size: 90%;
}

.tab-content ul {
	list-style: none;
	padding: 0px;
	margin: 20px 0;
	float: left;
}

.tab-content ul li {
	background: url('../assets/blue-dot.png') no-repeat center left;
	background-size: 15px;
	margin-bottom: 20px;
	padding-left: 25px;
	float: left;
	width: 100%;
}

.tab-content .awards ul li {
	background: url('../assets/awards.png') no-repeat top left;
	background-size: 20px;
}

/*
 *---------------------------------------------------------------
 * NUTRITION AND PAGE TABLE STLYING
 *---------------------------------------------------------------
 *
 */

.title_price table, .table_style {
	width: 100%;
	padding: 0;
}

.title_price th, .title_price  td, .table_style th, .table_style  td {
	margin: 0;
}

.title_price table, .table_style table {
	border-top: 1px solid #456f81;
	border-right: 1px solid #456f81;
	border-left: 1px solid #456f81;
	background: #FFFFFF;
	overflow: visible;
	width: 100%;
	 border-collapse: collapse;
	 color: #456f81;
	 font-weight: 600;
}

.title_price table .title, .table_style table .title {
	background: #f8f8f8;
	color: #456f81;
}

.title_price table tr, .table_style table tr {
	border-bottom: 1px solid #456f81;
}

.title_price table tr:nth-child(odd), .table_style table tr:nth-child(odd) {
	background: #e6edf2;
}

.title_price table td, .table_style table td  {
	border: 1px solid #ccd7df;
	padding: 1%;
	padding-left: 0 \;
}

.title_price table th.title, .table_style table th.title {
	border-right: 1px solid #456f81;
	font-weight: normal;
	padding: 1%;
	padding-left: 0 \;
}

.title_price table strong, .table_style table strong {
	color: #363636;
}

.title_price table, .table_style table {
	font-size: 14px \;
}

/*
 *---------------------------------------------------------------
 * RELATED PRODUCTS H2 AND LINE
 *---------------------------------------------------------------
 *
 */

.product_detail h2.txt_c.rel {
	font-family: BetterTimes;
	font-weight: normal;
	font-style: normal;
	font-size: 4em;
	margin: 20px 0;
}

header.rel {
	border-bottom: #ccd7df solid 1px;
}

.shopping_header {
	margin-bottom: 20px;
}

/*
 *---------------------------------------------------------------
 * CART & BILLING 
 *---------------------------------------------------------------
 *
 */

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

.cart_button, .itemInfo input[type="submit"], .cartLoginOptions input[type="submit"], .cartContinue {
    font-weight: 600;
    border-radius: 3px;
    background: #c3d0d9;
    color: #456f81;
    padding: 15px 0;
    width: 100%;
    font-size: 20px;
    display: block;
    text-align: center;
    cursor: pointer;
    /*float: left;*/
    margin: 1em 0;
}

.cartContinue {
    margin-top: 20px;
}

.cart_button:hover, .itemInfo input[type="submit"]:hover, .cartLoginOptions input[type="submit"]:hover, .cartContinue:hover {
    background: #456f81;
    color: #FFF;
}

.cart > div {
    width: 100%;
}

.cart {
    border-top: #ccd7df solid 1px !important;
}
.cartSummary {
    border: 1px solid #ccd7df !important;
    margin-bottom: 20px;
}

.applyVoucher {
    border: 1px solid #456f81 !important;
}

.applyVoucher:hover, a.cartCheckout {
    background: #456f81 !important;
}

.addMoreSubs {
    padding: 1em;
    text-align: center;
    display: block;
    font-weight: bold;
    border: 1px solid #456f81;
    margin-left: 5%;
    text-transform: uppercase;
    transition: background-color 0.2s ease-in;
    float: right;
    margin-bottom: 1em;
}
.addMoreSubs:hover {
    background: #456f81;
    color: white;
    text-decoration: none;
}

.cartTotal, .cartDeliveryTotal {
    /*border-top: #ccd7df solid 1px !important;*/

}

.itemInfo {
    /*border-bottom: 0 !important;*/
}

.cartItems {
    padding-right: 0em !important;
}

.itemInfo .w70 {
    padding-left: 1em;
}

.cartSubTitle, .cartSummaryTitle {
    border-bottom: #ccd7df solid 1px !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
    line-height: 30px;
}

.cartSummaryTitle {
    line-height: 20px;
}

.customerDetailsForm .step1 {
    border: 1px solid #ccd7df !important;
    position: relative;
    margin: 0 0 20px 0;
    padding: 1em;
}

.customerDetailsForm .step2 {
    border: 1px solid #ccd7df !important;
    position: relative;
    margin: 0 0 20px 0;
    padding: 1em;
}

.customerDetailsForm .step3 {
    border: 1px solid #ccd7df !important;
    position: relative;
    margin-bottom: 20px;
    padding: 1em;
}

.customerDetailsForm .step4 {
    border: 1px solid #ccd7df !important;
    position: relative;
    margin-bottom: 20px;
    padding: 1em;
}

.customerDetailsForm .step5 {
    border: 1px solid #ccd7df !important;
    position: relative;
    margin-bottom: 20px;
    padding: 1em;
}

.customerDetailsForm .step6 {
    border: 1px solid #ccd7df !important;
    position: relative;
    margin-bottom: 20px;
    padding: 1em;
}

.cartEdit {
    background: #456f81;
    padding: 5px 10px;
    position: absolute;
    color: #FFF !important;
    font-weight: 600;
    border-radius: 3px;
    right: 15px;
    top: 15px;
}

.cartEdit:hover {
    background: #c3d0d9;
    color: #456f81 !important;
}

.customerDetailsForm .step1.active, .customerDetailsForm .step2.active, .customerDetailsForm .step3.active, .customerDetailsForm .step4.active, .customerDetailsForm .step5.active {
    border: none !important;
}

.full_w.active {
    padding: 0;
}

.cartGiftWrap > span {
    padding-left: 10px;

}

.cartGiftWrap .cartSummaryTitle {
    background: #e6edf2 url('../assets/gift-wrap.svg') no-repeat center  right 10px;
    background-size: 30px;
    border-bottom: 0 !important;
    border: #ccd7df 1px solid;
    border-radius: 5px;
    text-align: center;
    padding: 5px 40px 5px 5px;
    color: #456f81;
    margin: 0 15px 20px 0;
}

.cartGiftWrap span.customCheckbox {
    outline: #456f81 solid 1px;
    float: left;
    display: block;
    padding: 0 5px;
    margin-top: 2px;
}





/*
 *---------------------------------------------------------------
 * SUBSCRIPTION LINK
 *---------------------------------------------------------------
 *
 */

a.subscription_link {
	text-align: center;
	background: #ccd7df;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
	border-radius: 3px;
	font-size: 20px;
	border: 0;
	color: #456f81;
	width: 100%;
	float: left;
	font-weight: 600;
	padding: 15px 0;
}

a.subscription_link:hover {
	background: #e6edf2;
	color: #456f81;
}

/*
 *---------------------------------------------------------------
 * ACCOUNT
 *---------------------------------------------------------------
 *
 */

.pink_box {
    border: #ccd7df solid 1px;
/* 	background: #ebebeb; */
	border-radius: 5px;
	display: block;
	float: left;
	padding: 40px;
	color: #252525;
	margin-top: 20px;
	width: 100%;
}

.pink_box input, .pink_box select {
    border: #ccd7df solid 1px;
    background: #FFFFFF;
	border-radius: 3px;
	/*outline: none;*/
	color: #252525;
	padding: 10px;
	font-weight: 400;
	margin-bottom: 20px;
	min-height: 40px;
}

.order_shipping .pink_box input, .pink_box select {
	margin-bottom: 0px;
	background: #FFFFFF url('../assets/arrow_dark.png') right 10px center no-repeat;
	background-size: 20px;
}

.pink_box input::placeholder {
	color: #d1d1d1;
	opacity: 1;
}

.pink_box input:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #d1d1d1;
}

.pink_box input::-ms-input-placeholder { /* Microsoft Edge */
	color: #d1d1d1;
}

.pink_box input[type="submit"] {
	font-weight: 600;
	border-radius: 3px;
	margin-top: 10px;
	background: #c3d0d9;
	color: #456f81;
	padding: 15px 0;
	width: 100%;
	font-size: 20px;
}

.my_account input[type="submit"] {
	width: 150px;
}

.pink_box input[type="submit"]:hover {
	background: #e6edf2;
	color: #456f81;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

.forgotten_box {
    margin-top: 20px;
    float: left;
}

ul.my_account {
	list-style: none;
	padding: 0 !important;
	margin: 0 0 0 0;
	font-size: inherit !important;
	width: 100%;
	float: left;
}

.my_account li {
	margin-right: 20px;
	margin-bottom: 20px;
	float: left;
	padding: 0;
}

.my_account li a {
	text-decoration: none;
	font-weight: 400;
	background: #fa4087;
	border-radius: 3px;
	padding: 10px 20px;
	display: block;
	color: #FFFFFF;
	float: left;
}

/*
 *---------------------------------------------------------------
 * ACCOUNT
 *---------------------------------------------------------------
 *
 */

.users ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.users ul li {
    float: left;
    min-width: 200px;
    width: 100%;
    margin-bottom: 20px;

}

.users ul li a {
    font-weight: 600;
    border-radius: 3px;
    background: #c3d0d9;
    color: #456f81;
    padding: 15px 0;
    width: 100%;
    font-size: 20px;
    display: block;
    text-align: center;
}

.users ul li a:hover {
    background: #e6edf2;
    color: #456f81;
}

.users .user_form {
    width: 100%;
}

.users.orderTable .light_row {
    text-align: center;
    display: table-row;
    float: none;
}
.users.orderTable table {
    padding: 0;
    border-spacing: 0;
    border-top:1px solid #d1d1d1;
    border-right:1px solid #d1d1d1;
}
.users.orderTable table th, .users.orderTable table td {
    border-top:0;
    border-right:0;
    border-bottom: 1px solid #d1d1d1;
    border-left: 1px solid #d1d1d1;
}

.users.orderTable #totals_table {
    outline: none !important;
    margin-top: 20px;
}

.users.orderTable #totals_table tbody {
    width: 100%;
    text-align: center;
    display: table;
}

.users .order_info, .users .company_details {
    width: 100%;
    float: left;
    border-top:1px solid #d1d1d1;
    border-right:1px solid #d1d1d1;
    margin-bottom: 20px;
}

.users .billing_details, .users .delivery_info {
    border-bottom: 1px solid #d1d1d1;
    width: 100%;
    float: left;
}

.users .order_info > div, .users .company_details > div, .users .billing_details > div, .users .delivery_info > div {
    border-bottom: 1px solid #d1d1d1;
    border-left: 1px solid #d1d1d1;
    width: 100%;
    float: left;
}

.users .billing_details > div, .users .delivery_info > div {
    border-top:1px solid #d1d1d1;
    border-right:1px solid #d1d1d1;
    border-bottom: 0;
}

.users .order_info > div > div, .users .company_details > div > div, .users .billing_details > div > div, .users .delivery_info > div > div {
    padding: 0 10px;
    display: block;
    line-height: 30px;
    width: 50%;
    float: left;
}

.users h4 {
    color: #456f81;
    font-size: 1.4em;
    margin-top: 20px;
    float: left;
}

/*
 *---------------------------------------------------------------
 * STOCKISTS
 *---------------------------------------------------------------
 *
 */

.bh-sl-container button#bh-sl-submit {
    border: 2px solid #456f81 !important;
    background: #456f81 !important;
    width: 100% !important;
}

.bh-sl-container button#bh-sl-submit:hover {
    border: 2px solid #a6b6bf !important;
    background: #a6b6bf !important;
    color: #FFF;
}

.bh-sl-container .bh-sl-map-container a {
    color: #456f81 !important;
}

.bh-sl-container .form-input input, .bh-sl-container .form-input select {
    border-color: #456f81 !important;
}

/*
 *---------------------------------------------------------------
 * SHIPPING SELECT DROPDOWN
 *---------------------------------------------------------------
 *
 */

.shipping_select {
	display: block;
	float: left;
	position: relative;
	width: 100%;
	background: #FFF;
	border-radius: 5px;
}

.shipping_select:after {
	position: absolute;
	content: url('../assets/arrow_down.svg');
	vertical-align: middle;
	display: table-cell;
	line-height: 50px;
	height: 100%;
	width: 30px;
	top: 0;
	right: 10px;
}

.shipping_select form {
	position: relative;
	background: none;
	z-index: 1;
	float: left;
	display: block;
	width: 100%;
}

.shipping_select form select {
	background: none;
}

.shipping_select:hover:after {
	opacity: 0.7;
}

.lightwidget {
	float: left !important;
	display: block !important;
}

/*
 *---------------------------------------------------------------
 * SHOP PRODUCTS
 *---------------------------------------------------------------
 *
 */
 
.products .w30 {
	float: left;
	width: 100%;
	margin: 20px 0;
}
 
.productFilters .filterBox {
	padding: 10px;
}
 
.filterBox .filterTitle {
	line-height: 25px;
	color: #456f81;
}

.filterBox .filterAll {
	margin-top: 20px;
}

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

.productFilters {
	border: 2px solid #ccd7df !important;
}

.productFilters .filterBox {
	border-bottom: 2px solid #ccd7df;
}




.products .w70 {
/* 	outline: blue solid 1px; */
	width: 100%;
}

.productSpinner {
    margin: 40px auto 40px auto;
}

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

.newProduct {
    position: absolute;
    left: 0;
    top:10px;
    width: 50px;
}

.newProduct span {
    float: left;
    background: lightgreen;
    padding:1.2em 0;
    font-weight: 600;
    color: #456f81;
    border-radius: 100px;
    box-sizing: border-box;
    width: 50px;
    display: block;
}

.productListWrap .w80 {
	width: 100%;
}

.productListWrap .w20 img {
	margin: 0 auto;
	width: 100%;
}

.productListWrap .w80 {
	text-align: left;
}

.productListWrap .w80 div {
	margin: 10px 0;
}


.productListWrap > div {
/* 	outline: red solid 1px; */
/*	border-bottom: solid 1px #ccd7df;*/
}


.productListWrap .title, .productListWrap .price {
	font-weight: 600;
	color: #456f81;
	font-size: 18px;
}

.productListWrap .price .price {
	color: #c3d0d9;
}

.subscriptionOptions p {
	font-size: 0.8em;
	font-weight: 600;
	color: #456f81;
}


/*.cartForm input[type="submit"] {*/
/*	border-radius: 5px;*/
/*	background-color: #c3d0d9;*/
/*	background-image: url('/application/themes/default/assets/basket.svg');*/
/*	background-position:  right 10px center;*/
/*	background-repeat: no-repeat;*/
/*	background-size: 20px;*/
/*	max-width: 150px;*/
/*	position: relative;*/
/*	margin: 0 auto;*/
/*	float: none;*/

/*	clear: both;*/
/*	width: 150px;*/
/*	line-height: 40px;*/
/*	padding: 0 12px;*/
/*	color: #456f81;*/
/*	vertical-align: middle;*/
/*	text-transform: uppercase;*/
/*	text-decoration: none;*/
/*	text-align: left;*/
/*	font-size: 1.4em;*/
/*	font-weight: 600;*/
/*    cursor: pointer;*/
/*}*/

/*.cartForm input[type="submit"]:hover {*/
/*    background-color: #FFFFFF;*/
/*}*/

.cartForm {
    width: 100%;
	/*max-width: 240px;*/
	margin: 20px 0;
}

.productListWrap .w80 .subscription {
/* 	background: #f3f7f9; */
	border-radius: 5px;
	text-align: left;
	padding: 0;
	margin-bottom: 0px;
}

.itemQty {
	border: 0px !important;
	border: #ccd7df 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: #456f81 solid 2px !important;
	border-radius: 2px;
	float: left;
	width: 35px;
	text-align: center;
}

.addToCartWrap {
    position: relative;
    float: left;
    /* 	outline: green solid 1px; */
    /* 	background: pink */
    clear: both;
    padding-bottom: 25px;
}

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

.subscriptionCustom {
	background: #FFF;
}

.subscriptionCustom input {
	border: 0px !important;
	border: #ccd7df solid 1px !important;
	margin: 0 10px 10px 0 !important;
	padding: 0 !important;
	line-height: 32px;
	float: left;
	width: 50px !important;
	text-align: center;
	background: #FFFFFF;
}

.subscriptionCustom select {
	border: 0px !important;
	border: #456f81 solid 2px !important;
	margin: 0 10px 10px 0 !important;
	padding: 0 1em !important;
	line-height: 30px;
	float: left;
	width: 95px !important;
	text-align: center;
/* 	background: #FFFFFF; */
}

/*.productListWrap .new > div:first-child {*/
/*    outline: red solid 1px;*/
/*}*/

.productListWrap.rslides {
    position: relative;
    overflow: hidden;
    width: 100%;
    float: left;
    display: block;
}

.productListWrap.rslides > div {
    width: 100%;
    /*outline: black solid 1px;*/
    float: left;
}

.productListWrap > div {
    text-align: center;
    padding: 40px 40px 20px 40px;
    position: relative;
}

.products .productListWrap .duffysChoice {
    position: relative;
    border: 3px #456f81 solid;
    padding: 10px;
    background: rgb(255,255,255);
    background: url("../assets/duffys-logo-light.svg") no-repeat center;
    padding-top: 60px;
    float: left;
    border-radius: 4px;
}

.products .productListWrap .duffysChoice:after {
    background: #e6edf2;
    text-align: center;
    position: absolute;
    content: "Subscribe & Save to Duffy's Choice";
    color: #456f81;
    font-weight: 300;
    display: block;
    padding: 10px;
    font-size: 1.2em;
    border-bottom: 1px solid #ccd7df;
    left: 0;
    top: 0;
    width: 100%;
}

.products .productListWrap .duffysChoice img {
    border: 3px solid #FFF;
    -webkit-box-shadow: 0px 0px 4px 0px rgba(189,189,189,1);
    -moz-box-shadow: 0px 0px 4px 0px rgba(189,189,189,1);
    box-shadow: 0px 0px 4px 0px rgba(189,189,189,1);
}

.products .productListWrap .duffysChoice .w20 img {
    width: 80%;
}

.productListWrap.rslides div > div {
    /*background: pink;*/
}

.productListWrap.rslides .w20, .productListWrap.rslides .w80 {
    /*outline: green solid 1px;*/
    text-align: center;
    width: 100%;
    display: block;
}

.productListWrap.rslides img {
    width: 100%;
    height: auto;
    max-width: 250px;
}

.bestsellers .productListWrap .title, .bestsellers .productListWrap .price {
    font-size: 1.1em;
}

.bestsellers {
    position: relative;
}

.bestsellers .rslides_nav {
    position: absolute;
    top:140px;
    width: 50px;
    height: 50px;
    font-size: 0;
    display: none;
}

.bestsellers .rslides_nav.prev {
    background: url("../assets/arrow.svg") no-repeat center;
    left: 30px;
}

.bestsellers .rslides_nav.next {
    background: url("../assets/arrow11.svg") no-repeat center;
    right: 30px;
}

.menuTabs {
    width: 100%;
    clear: both;
}

.menuTabs a {
    font-family: Arial;
    background: #456f81;
    color: #FFFFFF;
    padding: 1em;
    display: block;
    float: left;
    width: 100%;
    border-radius: 5px;
    font-family: 600;
}

.menuTabs a:hover {
    background:#c3d0d9;
    color: #456f81;
}

.menuTabs > div {
    float: left;;
    width: 100%;
    display: block;
    margin-top: 10px;
}

.productsCatDescTop,
.mobilefilters {
    display: none;
}

.mobilefilters.show {
    display: block;
}

.mobilefiltertrigger {
    position: relative;
    display: block;
    border: 2px solid #456f81;
    font-family: Arial;
    font-weight: 600;
    background: #456f81;
    color: #FFFFFF !important;
    padding: 1.4em;
    width: 100%;
    border-radius: 5px;
    font-family: 600;
    margin-bottom: 20px;
}

.mobilefiltertrigger:hover {
    background: #c3d0d9;
    color: #456f81 !important;
}

.mobilefiltertrigger:after {
    position: absolute;
    background: url("../assets/filters.svg") no-repeat center;
    background-size: 50%;
    content: '';
    display: block;
    overflow: hidden;
    height: 100%;
    width: 50px;
    top: 0;
    right: 0;
}

.mobilefiltertrigger:hover:after {
    background: url("../assets/filter-2.svg") no-repeat center;
    background-size: 50%;
}

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

/*
 *---------------------------------------------------------------
 * FANCY CONFIRM
 *---------------------------------------------------------------
 *
 */

.fc-content {
    max-width: 600px;
}

.fc-content .btn {
    font-weight: 600;
    border-radius: 3px;
    border: 0;
    background: #c3d0d9;
    color: #456f81;
    padding: 15px 0;
    width: 100%;
    font-size: 20px;
    display: block;
    text-align: center;
    cursor: pointer;
    /*float: left;*/
    margin: 2em 0 0 0;
}

.fc-content .btn:hover {
    background: #456f81;
    color: #FFF;
}

.fc-content .data-fancybox-close {
    outline: red solid 1px;
}

.fc-content [data-value="0"] {
    /* Attribute has this exact value */
    border-radius: 3px;
    border: solid #c3d0d9 1px;
    padding: 10px;
    cursor: pointer;
    color: #c3d0d9;
}

.fc-content [data-value="0"]:hover {
    background: #c3d0d9;
    color: #456f81;
}

.sub_to_this {
    border: #ccd7df 1px solid;
    border-radius: 5px;
    padding: 20px;
    background: #e6edf2;
    margin-top: 20px;
}

.sub_to_this svg:hover .st0 {
    fill: #456f81;
}
.sub_to_this a {
    background: #456f81;
    padding: 1em;
    text-align: center;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    border-radius: 3px;
    font-size: 20px;
    width: 100%;
}

.sub_to_this a:hover {
    background: #a6b6bf;
}

.sub_to_this > span {
    width: 30%;
    float: left;
    margin-bottom: 20px;
}

.sub_to_this > span.text {
    padding: 0 20px;
    margin-bottom: 20px;
    width: 70%;
    font-weight: bold;
    font-style: italic;
    color: #456f81;
}



/*
 *---------------------------------------------------------------
 * RESPONSIVE WIDTH 400px OR LESS
 *---------------------------------------------------------------
 *
 * To adjust responsive width change the setting in database and
 * also below...
 *
 */
 
 
@media (min-width: 500px) {
	
	#menu_item_15 {
		display: none;
	}
	
	.header_top .top_icon.account {
		display: block;
	}
	
}
 
@media (min-width: 600px) {


	.duffys_boxes {
		position: relative;
		width: 49%;
		float: left;
	}
		
	.duffys_boxes.shop i br {
		/*display: none;*/
	}
	
	.duffys_boxes:nth-child(odd) {
		float: right;
	}
	
	.duffys_boxes span {
		position: absolute;
		bottom: 0;
		left: 0;
	}

	#paypalCheckoutContainer {
		margin: 20px auto 0 auto;
		float: right;
		max-width: 300px;
	}
	
	#cart_links .one,
	#cart_links .two {
		width: 48%;
		max-width: 300px;
	}
	
	#cart_links .two {
		float: right;
	}
	
	#cart_links .continue,
	#cart_links .empty {
		margin-right: 10px;
		float: left;
	}
	
	#cart_links .update,
	#cart_links .checkout {
		margin-left: 10px;
		float: right;
	}
	
	#cart_voucher {
		max-width: 300px;
		margin: 0 auto 20px auto;
	}
	
	.sum_container {
		max-width: 300px;
		float: right;
		width: 74%;
	}

	.customer_form .summary {
		clear: none;
		float: left;
		width: 48%;
	}
	
	.customer_form .delivery, .customer_form .add_info {
		float: right;
	}
	
    .customer_form .add_info {
		 width: 100%;
	 }
	
	.payzone-form input.submit_field {
		float: right;
		max-width: 48%;
		width: 48%;
	}
	
	a.subscription_link {
		max-width: 300px;
	}
	
	.your_fav a.rslides_nav {
		display: block;
	}

    .related .productListWrap .clear {
        padding: 40px 10px;
        width: 50%;
        float: left;
    }

    .related .productListWrap .clear .w80 {
        /*overflow: hidden;*/
        margin: 0 auto;
        /*height: 85px;*/
        /*width: 60%;*/
    }

    .liveSearch.active {
        top: 115px
    }

    .liveSearch .product_list .product  {
        float: left;
        width: 33.3%;
        padding: 0 1em;
    }

}
 
@media (min-width: 700px) {
	
	div.tab-link {
		display: none;
	}
	
	ul.tabs {
		display: block;
	}
	
	.tab-content {
		margin-top: 0px;
	}
	
	.widget div {
		width: 31%;
		margin: 0 2% 3% 0%;
	}

    .users ul li {
        max-width: 200px;
        margin-right: 20px;
    }

    .searchBox {
        height:100px;
    }

    .scroll_hidden {
        display: none;
    }

	
}

@media (min-width: 900px) {

    .product_content .buy_now, .buy_now {
        max-width: 150px;
    }

    .cartForm {
        max-width: 240px;
    }
	
	.product_content.title_price.tabb {
		width: 100%;
	}
	
	.product_content {
		width:39%;
		float: left;
	}
	
	.product_content.title_price {
		float: right;
		width: 59%;
	}
	
	.productsImage img {
		outline: #ccd7df solid 1px;
	}
	
	ul.tabs li {
		font-size: 0.7em;
	}
	
	ul.tabs li {
        background: #e6edf2 !important;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        color: #456f81 !important;
        margin-right: 2px;
	}
	
	ul.tabs li {
		padding: 10px 15px;
	}
	
	html:before {
		content: '800px';
		background: pink;
	}
	
	.wrapper {
		background: #FFFFFF;
		width: 800px;
		margin: 0 auto;
	}
	
	.top_container {
		margin: 0 auto;
		width: 100%;
		clear: both;
		position: relative;
	}
	
	header.header_top {
		height: 130px;
	}
	
	.top_container {
		height: 100%;
	}
	
	.header_top .logo {
		width: 140px;
		height: 100%;
	}
	
	.header_top .logo a {
		height: 100%;
		float: left;
		width: 100%;
	}
	
	.header_top .logo a img {
		width: 100%;
		height: auto;
	}
	
	.header_top .rsp_nav, .header_top .rsp_nav_sub, .header_top .menuIcon {
		display: none;
	}
	
    .header_top .left_position {
        /*outline: 1px solid red;*/
		display: block;
		background: none;
		width: 500px;
		height: 50px;
		margin: 0 auto;
		padding-top: 17px;
		position: absolute;
		clear: both;
		bottom: 0;
		top: auto;
        z-index: inherit;
	}
	
	.main_menu .main_menu {
		border-top: 0px;
	}
	
	.main_menu li {
		border-right: 2px solid #456f81;
		border-bottom: 0px;
		display: inline-block;
		float: left;
		background: none;
		width: auto;
		padding-top: 2px;
		position: relative;
	}
	
	.main_menu li:last-child, .main_menu li:first-child {
		border: 0px;
	}
	
	.main_menu li a {
		color: #456f81;
		line-height: 15px;
		padding: 0 6px 0 6px;
	}
	
	.main_menu > li a:hover {
		opacity: 0.5;
	}
	
	.main_menu li a.menuLink1 {
		font-size: 0px;
		line-height: 0px;
	}
	
	a.menuLink1:after {
		content: url('/application/themes/default/assets/home.svg');
		height: 15px;
		width: 20px;
		display: block;
	}
	

	
	.main_menu li ul {
		list-style: none;
		margin: 0;
		padding: 16px 0 0 0;
		position: absolute;
		display: none;
		width: 300px;
		min-width: 300px;
	}
	
	.main_menu .main_menu.on_off {
		display: none;
	}
	
	.main_menu > li:hover ul, .main_menu > li:hover ul.main_menu.on_off {
		background: #FFFFFF;
		display: block;
		position: absolute;
		top: auto;
		bottom: auto;
	}
	
	.main_menu li ul li, .main_menu ul li:nth-child(2) {
		background: #ccd7df;
		display: block;
		width: 100%;
		border:0px;
		margin: 0px;
		padding: 0px;
	}
	
	.main_menu li ul li a:hover {
		background: #456f81;
		opacity: 1;
		color: #FFFFFF;
	}

	.main_menu li ul li a {
		padding: 10px;
		font-size: 0.6em;
		border-bottom: solid 1px #e5f0f1;
	}
	
	.main_menu li ul li:last-child a {
		border-bottom: 0px;
	}
	
	.header_top .logo {
		margin: 0;
		float: left;
	}
	
	.header_top .top_icon {
		width: 120px;
		font-size: 0.9em;
		font-weight: 600;
		color: #456f81;
		text-transform: uppercase;
	}
	
	.header_top .top_icon img {
		margin-right: 10px;
	}
	
	.header_top .top_icon.account, .header_top .top_icon.mobile {
		display: block;
	} 
	
	.header_top .top_icon.account {
        right: 130px;
		width: 150px;
	}
	
	.header_top .top_icon.account img, .header_top .top_icon.mobile img {
		width: 20px;
	}
	
	.header_top .top_icon.mobile {
		width: 170px;
		right: 270px;
	}

    .header_top .top_icon.basket {
        text-align: left;
        width: 120px;
        right: 20px;
    }

    .header_top .item_in_cart .top_icon.basket {
        /*background: pink;*/
    }




    .header_top .top_icon.basket img {
        margin: 0 0 0 10px;
    }

    .header_top .top_icon .miniCart img {
        margin: 0;
    }

    a.jsMiniCartOpen {
        font-size: 1em;
        text-align: left;
        color: #456f81;
        padding-left: 45px;
    }
	
	.header_top .mag {
		display: none;
	}

	.por_listsec {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.searchBox {
		display: block !important;
		padding: 0;
	}
	
	.searchBox form input {
		display: block;
		position: absolute;
		max-width: 320px;
		line-height: 20px;
		right: 20px;
		top: 55px;
		border-radius: 5px;
		padding: 5px 0;
	}
	
	.social_icons {
		position: absolute;
		display: block;
		float: right;
		width: auto;
		right: 10px;
		bottom: 10px;
		width: 130px;
        /*z-index: 99;*/
	}
	
	.bottom_container {
		width: 100%;
		float:  left;
		display: table;
	}
	
	
	.bottom_container div {
		width: 33.3%;
		height: 100%;
		position: relative;
		display: table-cell;
		vertical-align: top;
		border-left: #FFF solid 2px;
	}
	
	.bottom_container div:first-child {
		border-left: 0px;
	}

	.footer ul {
		width: 100%;
		position: relative;
		height: 100%;
		padding-left: 20px;
		margin-bottom: 0px;
	}
	
	.footer ul li {
		padding-left: 20px;
	}
	
	.footer ul:first-child {
		padding-left: 0px;
	}
	
	.jsSlides li {
		height: 400px;
	}
	
	.jsSlides li .cap_text {
		padding-top: 80px;
		width: 60%;
	}
	
	.jsSlides li .cap_text h2 {
		/*line-height: 1em;*/
		/*text-align: center;*/
		/*font-size: 5.6em;*/
	}

    .jsSlides li .cap_text h2 span {
        /*font-size: 150%;*/
    }
	
	.jsSlides li .cap_text {
		text-align: center;
		position: relative;
		height: 400px;
	}
	
	/*.jsSlides li .cap_text span {*/
	/*	font-size: 1.3em;*/
	/*}*/
	
	.jsSlides li .cap_buy {
		position: absolute;
		bottom: 20px;
	}

    .jsSlides li .cap_text h4 {
        position: absolute;
        z-index: 999;
        color: #FFF;
        left: 50px;
        top: 50px;
    }
	
	.home-slider {
		position: relative;
	}
	
	.rslides1_tabs {
		list-style: none;
		padding: 0;
		margin: 0;
		display: block;
		position: absolute;
		z-index: 10;
		bottom: 20px;
		right: 10px;
	}
	
	.rslides1_tabs li {
		opacity: 0.5;
		border-radius: 100px;
		width: 30px;
		height: 30px;
		background: #FFF;
		margin-right: 10px;
		float: left;
	}
	
	.rslides1_tabs li.rslides_here {
		opacity: 1;
	}
	
	.rslides1_tabs li a {
		font-size: 0px;
		display: block;
		height: 100%;
		width: 100%;
	}

	.single {
		font-size: 1.2em;
	}
	
	.instagram_facebook h2 {
		/*font-size: 5em;*/
	}
	
	
	.your_fav .container {
		width: 90%;
		margin: 0 auto;
		float: none;
	}
	
	.footer .social_icons {
		display: block;
		bottom: auto;
		top: -12px;
	}
	
	section.contacts .w_70 {
		clear: none;
		float: left;
		width: 66%;
	}
	
	section.contacts .w_30 {
		clear: none;
		float: right;
		width: 30%;
		margin-top: 20px;
	}
	
	.exist_form_one {
		width: 69%;
		float: left;
	}
	
	.exist_form_two {
		width: 29%;
		float: right;
	}
	
	.exist_form_two .dark_row {
		margin-top: 0px;
	}
	
	.liveSearch .product_list .product {
		width: 50%;
	}
	
	.productsImage img {
		max-height: none;
	}



    .bh-sl-container button#bh-sl-submit {
        width: 25% !important;
    }

    .productListWrap.rslides .w20 {
        width: 100%;
    }

   .productListWrap.rslides div > div {
        width: 100%;
    }

    .productListWrap.rslides .clear {
        min-height: 320px;
        padding: 0 20px;
        width: 25%;
        float: left;
    }

    .productListWrap.rslides {
        width: 90%;
        margin: 0 auto;
        float: none;
    }



    .cart_button, .itemInfo input[type="submit"], .cartLoginOptions input[type="submit"], .cartContinue {
        min-width: 200px;
        width: 25%;
    }

    .cart .w60 {
        width: 60%;
    }

    .cart .w40 {
        width: 40%;
    }

    .cartItems {
        padding-right: 2em !important;
    }

    .customerDetailsForm .step1 {
        /*width: 49%;
        float: left;*/
    }

    .customerDetailsForm .step2 {
        /*width: 49%;
        float: right;*/
    }

    .customerDetailsForm .step3, .full_w.active {
        width: 100%;
    }

    .liveSearch.active {
        top: 142px
    }

    .productsCatDescTop,
    .mobilefilters {
        display: block;
    }

    .mobilefiltertrigger {
        display: none;
    }
}

@media (min-width: 900px) {
	
	
	.products .w30 {
		width: 20%;
        padding-right: 1em;
	}
	
	
	.products .w70 {
		width: 80%;
		float: right;
	}

    .productListWrap .new {
        border-bottom: #ccd7df solid 1px;
        float: left;
        width: 100%;
    }

	.productListWrap .new > div {
		float: left;
		width: 50%;
	}


		
	html:before {
		content: '900px';
		background: #ffc247;
	}
		
	.wrapper {
		background: #FFFFFF;
		width: 900px;
		margin: 0 auto;
	}

    .header_top .left_position {
	    width: 600px;
    }
    
    .main_menu li a {
	    padding: 0 12px 0 12px;
    }
    
	.header_top .logo {
		width: 150px;
		left: 20px;
	}
	
	.bottom_container {
		width: 70%;
		float:  right;
	}
	
	.bottom_container .list_one, .bottom_container .list_two {
		width: 22%;
	}
	
	.bottom_container .list_three {
		width: 50%;
	}
	
	.footer .copy {
		position: absolute;
		bottom: 60px;
	}
	
	.jsSlides li {
		height: 500px;
	}
	
	.jsSlides li .cap_text {
		padding-top: 100px;
		height: 500px;
		width: 50%;
	}
	
	.single {
		font-size: 1.4em;
	}
	
	.banners ul li {
		min-height: 200px;
	}

	.pink_box {
		margin-top: 40px;
		float: left;
		width: 49%;
	}
	
	#existing_customer .pink_box, .order_shipping .pink_box {
		margin-top: 0px;
		width: 100%;
	}
	
	.forgotten_box {
		float: right;
		width: 49%;
	}
	
	.create_account {
		width: 100%;
	}
	
	.create_account .fields {
		float: left;
		width: 48%;
	}
	
	.create_account .last_nameField, 
	.create_account .emailField, 
	.create_account .address_1Field,
	.create_account .cityField,
	.create_account .post_codeField,
	.create_account .passwordField {
		float: right;
	}
	
	.my_account .passwordField {
		float: right;
	}
	
	.pink_box input.create_account_button {
		max-width: 49%;
		margin: 0 auto;
		float: none;
		display: block;
		margin-top: 20px;
		clear: both;
	}
	
	.liveSearch .product_list .product {
		width: 33.3%;
	}
	
	.footer .social_icons {
		display: block;
		bottom: auto;
		top: -20px;
	}

    .bestsellers .rslides_nav {

        display: block;
    }

    .related .productListWrap .clear {
        padding: 40px 0;
        width: 25%;
        float: left;
    }

    .related .productListWrap .clear .w20,.related .productListWrap .clear .w80 {
        width: 100%;
    }



}

@media (min-width: 1000px) {
	
	

	
	html:before {
		content: '1000px';
		background: #ffff49;
	}
	
	.wrapper {
		background: #FFFFFF;
		width: 1000px;
		margin: 0 auto;
	}
	
	.social_icons {
		width: 190px;
		right: 20px;
		bottom: -33px;
	}
	
	.header_top .logo {
		position: absolute;
		width: 160px;
		bottom: -25%;
		left: 20px;
		z-index: 10;
	}
	
	.duffys_boxes.shop i, .duffys_boxes.new i {
		/*padding-top: 150px;*/
		/*font-size: 5em;*/
	}
	
	.duffys_boxes {
		min-height: 400px;
	}
	
	.duffys_boxes, .duffys_boxes:nth-child(odd) {
		float: left;
		width: 24.3%;
		margin-bottom: 40px;
	}
	
	.duffys_boxes.shop {
		margin: 0 2.7%;
		width: 46%;
	}
	
	.duffys_boxes.new {
		width: 46%;
	}
	
	.duffys_boxes.check {
		margin: 0 2.7%;
	}
	
	.duffys_boxes i {
		/*font-size: 4em;*/
	}
	
	.duffys_boxes span {
		/*text-align: left;*/
		/*font-size: 1.2em;*/
		/*min-height: 60px;*/
	}
	
	.single {
		font-size: 1.6em;
	}
	
	.inst {
		text-align: left;
		font-size: 1.5em;
		width: 63%;
		float: left;
		margin-top: -7px;
	}

	.face {
		text-align: left;
		font-size: 1.5em;
		width: 34%;
		float: right;
	}
	
	.instagram_facebook .container {
		padding: 40px 40px 100px 40px;
	}
	
	.instagram_facebook h2 {
		/*font-size: 7em;*/
	}

	.instagram_facebook h3 {
		float: left;
		text-align: left;
		/*width: 220px;*/
	}
	
	.instagram_facebook .face h3 {
		/*width: 200px;*/
	}
	
	
	.liveSearch .product_list .product {
		width: 25%;
	}

    .productListWrap .w20 {
        padding: 0.2em !important;
        width: 50%;
    }

    .productListWrap .w80 {
        width: 50%;
    }

}

@media (min-width: 1200px) {
	
	.productListWrap > div {
/*
		float: left;
		width: 33.3%;
*/
	}
	
	html:before {
		content: '1200px';
		background: #42ff97;
	}
	
	.wrapper {
		background: #FFFFFF;
		width: 1200px;
		margin: 0 auto;
	}
	
	header.header_top {
		height: 160px;
	}
	
	
	.header_top .logo {
		position: absolute;
		width: 260px;
		bottom: -25%;
		left: 20px;
        z-index: 9999;
	}
	
	.searchBox form input {
		top: 90px;
	}
	
	.header_top .top_icon {
		top: 20px;
		right: 20px;
	}
	
	.header_top .top_icon img {
		width: 45px;
	}
	
	.header_top .top_icon.account img, .header_top .top_icon.mobile img {
		width: 25px;
	}
	
	.header_top .top_icon.account {
		right: 165px;
	}
	
	.header_top .top_icon.mobile {
		right: 315px;
	}

    .header_top .top_icon.basket {
        width: 145px;
    }

    a.jsMiniCartOpen {
        padding-left: 65px;
    }
	
	.jsSlides li {
		height: 600px;
	}

	.jsSlides li .cap_text h2 {
		font-size: 2em;
	}
	
	.jsSlides li .cap_text {
		padding-top: 180px;
		height: 600px;
		width: 60%;
	}
	
	/*.jsSlides li .cap_text span {*/
	/*	font-size: 1.8em;*/
	/*}*/
	
	.footer {
		padding-top: 60px;
		padding-bottom: 50px;
	}
	
	.duffys_boxes.one i {
		margin-top: -50px;
	}

    .duffys_boxes.one i {
        margin-top: -50px;
    }

    .duffys_boxes.four i {
        margin-top: 10px;
    }
	
	.duffys_boxes.shop i, .duffys_boxes.new i {
		/*font-size: 6em;*/
	}
	
	.duffys_boxes span {
		/*text-align: left;*/
		/*font-size: 1.4em;*/
		/*min-height: 70px;*/
	}
	
	.single {
		font-size: 1.8em;
	}
	
	.content_container {
		padding: 40px;
	}
	
	.banners ul li {
		min-height: 300px;
	}
	
	.product_content.title_price.tabb {
		width: 59%;
	}

    .liveSearch.active {
        top: 165px
    }
}

@media (min-width: 1450px) {
	
	html:before {
		content: '1450px';
		background: silver;
	}
	
	.wrapper {
		background: #FFFFFF;
		width: 1450px;
		margin: 0 auto;
	}
	
	.header_top .left_position {
		padding-top: 12px;
		width: 740px;
	}
	
	.header_top .logo {
		width: 320px;
	}
	
	.bottom_container div {
		border-left: 0px;
	}
	
	.bottom_container .list_one:after, .bottom_container .list_two:after {
		position: absolute;
		background: #FFF;
		display: block;
		right: 8%;
		content: '';
		width: 2px;
		height: 100%;
	}
	
	.main_menu li a {
		font-size: 0.95em;
	}
	
	.main_menu li {
		margin-top: 5px;
	}
	
	.main_menu li:first-child {
		margin-top: 0px;
	}
	
	.main_menu li:nth-child(2) {
		border-left: solid 2px #456f81;
	}
	
	.main_menu li a {
		padding: 0 20px;
	}
	
	a.menuLink1:after  {
		content: url('/application/themes/default/assets/home.svg');
		height: 25px;
		width: 30px;
		display: block;
	}
	
	.social_icons {
		width: 220px;
		bottom: -36px;
	}
	
	ul.tabs {
		margin-top: 20px;
	}
	
	ul.tabs li {
		font-size: 0.9em;
		margin-right: 5px;
	}

    .jsSlides li .cap_text h2 {
        font-size: 2.4em;
    }
	
}