/*
 *---------------------------------------------------------------
 * LAYOUT & UTILITIES
 *---------------------------------------------------------------
 *
 */
 
@import url('https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:300,400,500,600');
 
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');

@import url('https://fonts.googleapis.com/css?family=Caveat');


html {
    box-sizing: border-box;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 100%;
    background: #252525;
}

body {
	background: #1a1a1a;
	font-family: 'Open Sans', sans-serif;
    /*font-size: 0.75em;*/ /*12px*/
    font-size: 0.875em; /*14px*/
    /*font-size: 1em;*/ /*16px*/
    color: #000000;
}

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

.w_90 {
    width:90%;
}

.w_80 {
    width:80%;
}

.w_70 {
    width:70%;
}

.w_60 {
    width:60%;
}

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

.w_40 {
    width:40%;
}

.w_33_3, .third {
    width:33.3333333%;
}

.w_30 {
    width:30%;
}

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

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

.w_16_6, .sixth {
    width:16.6666666%;
}

.w_12_5, .eighth {
    width:12.5%;
}

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

.cc-color-override-530831885 .cc-btn {
	background: #fa4087 !important;
	float: right !important;
}

.cc-color-override-530831885 .cc-btn:hover {
	background: #FFFFFF !important;
	text-decoration: none !important;
	color: #fa4087;
}

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

.cc-message {
	float: left;
}

/*
 *---------------------------------------------------------------
 * SITE LINKS
 *---------------------------------------------------------------
 *
 */

a:link {
    text-decoration: none;
    color: #fa4087;
    font-weight: 400;
}

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

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

a:active {
    text-decoration: underline;
}

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

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




/*
 *---------------------------------------------------------------
 * TEXT COLOURS
 *---------------------------------------------------------------
 *
 */

h1 {
/*     color:#2c82c9; */
}

h2 {
	font-family: 'Encode Sans Condensed', sans-serif;
	font-weight: 600;
}

h3 {
/*     color: #13c975; */
}

.c_1 {
    color: #000;
}

.c_2 {
    color: #fff;
}

.c_3 {
    color:#2c82c9;
}

.c_4 {
    color: #bb1cc9;
}

.c_5 {
    color: #13c975;
}

.c_6 {
    color: #c92a12;
}

b {
	font-weight: 600;
}

/*
 *---------------------------------------------------------------
 * INTERNAL PAGE STYLING (About Us, Testimonialsm In The Press, etc)
 *---------------------------------------------------------------
 *
 */


/*
.main_con .page h1 {
    font-family: 'Caveat';
    font-size: 3em;
    color: #111111;
    font-weight: 400;
    margin-bottom: 40px;
}
*/
/*
.main_con .page h1:after {
	border-bottom: 1px solid #c4c3c3;
	display: block;
	content: '';
	margin-top: 30px;
	width: 100%;
	height: 1px;
}
*/

.main_con #internal_pages, section.contacts {
	margin-bottom: 40px;
	padding: 0 20px;
	width: 100%;
	float: left;
}

.home .main_con #internal_pages {
	margin-bottom: 0px !important;
}


/*
 *---------------------------------------------------------------
 * BACKGROUND COLOURS
 *---------------------------------------------------------------
 *
 */

.bg_c_1 {
    background-color: #000;
}

.bg_c_2 {
    background-color: #fff;
}

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

.bg_c_4 {
    background-color: #bb1cc9;
}

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

.bg_c_6 {
    background-color: #c92a12;
}




/*
 *---------------------------------------------------------------
 * FORMS
 *---------------------------------------------------------------
 *
 */

fieldset {
    border: none;
    padding: 0;
}

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

input, select, textarea {
    border:1px solid #d1d1d1;
    width:100%;
    padding: 0.5em;
    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/down_arrow.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-top: 0.2em;
    background-color:#2c82c9;
    color: #fff;
    transition: background-color 0.8s ease;
}

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

::-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, .error select {
	border: 0;
	outline: #fa4087 solid 1px;
    background-color: #ffd8e7;
    color: #fa4087;
}

.create_account .error input, .create_account .error textarea, .create_account .error select,
.login .error input {
	outline: #fa4087 solid 1px;
	border-radius: 3px;
    background-color: #ffd8e7;
    color: #fa4087;
}

.error input::-webkit-input-placeholder, .create_account .error input::-webkit-input-placeholder, .login .error input::-webkit-input-placeholder {
    color: #fa4087;
}

.voucher_expired	{
	text-align: center;
	padding: 10px 0;
	outline: #fa4087 solid 1px;
	border-radius: 3px;
    background-color: #ffd8e7;
    color: #fa4087;
    display: block;
    width: 100%;
    margin-top: 20px;
    float: left;
}

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

table {
    padding:0.4em;
}

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

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

/*
 *---------------------------------------------------------------
 * SITE NAVIGATION
 *---------------------------------------------------------------
 *
 */

/*.main_menu {
    display: block;
}

.main_menu li {
    display: inline;
}*/

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

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

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

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

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

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

/*.rsp_title, .rsp_nav, .rsp_nav_sub, .menu_link {
    display: none;
}

.rsp_nav {
    border: 2px solid #000;
    position: absolute;
    padding-top: 12px;
    height:30px;
    width:44px;
    right: 12px;
    top: 0;
    z-index: 999;
}

.rsp_nav span, .rsp_nav_sub span {
    margin: 0 auto 3px;
    background: #000;
    display: block;
    width: 24px;
    height: 4px;
}

.rsp_nav_sub {
    border: 2px solid #000;
    padding: 12px 0 0 0;
    float: right;
    height:28px;
    width:40px;
    margin-right: 13px;
    margin-top: 5px;
    box-shadow: none;
}*/

/*
 *---------------------------------------------------------------
 * LIVE SEARCH
 *---------------------------------------------------------------
 *
 */
 
.search_top {
    background: #fbfbfb;
	width: 100%;
	float: left;
	display: block;
}

.search_box {
    width:100%;
    text-align: center;
    display: none;
    height:54px;
    position: relative;
    z-index: 100;
    clear: both;
}



.search_box .search {
	width: 100%;
	position: relative;
	left: 0;
	height: 100%;
	font-size: 1.2em;
	font-weight: 500;
	margin: 0;
	overflow: hidden;
}

.search_box input {
    width:100%;
    margin: 0 auto;
    padding: 20px;
    height: 100%;
    background: #fbfbfb;
    border: 0;
    outline: none;
}

.search_box input:focus {
    outline-width: 0;
}

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

.close_search {
    cursor: pointer;
    position: absolute;
    z-index: 999;
    right: 0;
     text-align: center;
    height: 100%;
    width: 52px;
    line-height: 54px;
    display: block;
}

.close_search  img {
	 vertical-align: middle;
	 display: inline-block;
}

.live_search {
    background-color: #FFF;
    left: -9999px;
    min-height: auto;
    position: relative;
    z-index: 999;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);

}

.live_search.active {
    background-color: #FFF;
    overflow: scroll;
    min-height: 100%;
    left: auto;
   	padding: 0 20px 20px 20px;

}

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

.no_product {
/* 	border-top: #ebebeb solid 1px; */
	padding-top: 20px;
}

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

.live_search .product_list .product .product_price span {
	margin: 0 5px;
}

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

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

.search_box input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fa4087;
  opacity: 1; /* Firefox */
 font-weight: 500;

}

.search_box input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fa4087;
 	font-weight: 500;

}

.search_box input::-ms-input-placeholder { /* Microsoft Edge */
  color: #fa4087;
 	font-weight: 500;

}

/*
 *---------------------------------------------------------------
 * PRODUCTS SLIDESHOW JS PLUGIN
 *---------------------------------------------------------------
 *
 */


/*.slide_container {
    width:100%;
}

.slide_container .slide .featured_items {
    width:230px;
    height:420px;
    float:left;
    margin-left: 20px;
    text-align: center;
}*/

/*PRODUCT RATING*/

.starRating:not(old){
    display        : inline-block;
    width          : 8em;
    height         : 1.6em;
    overflow       : hidden;
    vertical-align : bottom;
}

.starRating:not(old) > input{
    margin-right : -100%;
    opacity      : 0;
    width:auto;
}

.starRating:not(old) > label{
    display         : block;
    float           : right;
    position        : relative;
    background      : url('/application/themes/default/assets/star-off.svg');
    background-size : contain;
    padding: 0;
    
    width           : 20px;
    height          : 20px;
}

.starRating:not(old) > label:before{
    content         : '';
    display         : block;
    width           : 1.6em;
    height          : 2em;
    
	width           : 20px;
    height          : 20px;
    
    background      : url('/application/themes/default/assets/star-on.svg');
    background-size : contain;
    opacity         : 0;
    transition      : opacity 0.2s linear;
}

.starRating:not(old) > label:hover:before,
.starRating:not(old) > label:hover ~ label:before,
.starRating:not(:hover) > :checked ~ label:before{
    opacity : 1;
}

/*
 *---------------------------------------------------------------
 * STRUCTURAL ELEMENTS
 *---------------------------------------------------------------
 *
 */

.main_header {
	background: #000000;
}

.menu_wrapper_1_0 {
	background: #252525;
}

.promo_wrapper {
	background: #ebebeb;
	float: left;
	width: 100%;
	display: none;
}

.promo_wrapper div {
	text-align: center;
	float: right;
	width: 33.33%;
}

.top, .main_menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.content_wrapper {
	background: #FFFFFF;
	float: left;
	display: block;
	width: 100%;
}

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

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

/*
 *---------------------------------------------------------------
 * TOP SECTION
 *---------------------------------------------------------------
 *
 */
 
.logo  {
	color: transparent;
	display: block;
	font-size: 0px;
	max-width: 270px;
	width: 30%;
	height: 60px;
	float: left;
}

.logo a {
	background: url("../assets/logo.svg") no-repeat center center;
	background-size: 90%;
	display: block;
	height: 100%;
	width: 100%;
	float: left;
}
 
.phone_number {
	background: #252525;
	color: #FFFFFF;
	clear: both;
	display: block;
	text-align: center;
}

.phone_number div {
	margin: 0 auto;
	background: green;
	outline: green solid 1px;
	display:inline-block;
	width: auto;
	background: url('../assets/phone.svg') left center no-repeat;
}

/*
 *---------------------------------------------------------------
 * TOP LINKS
 *---------------------------------------------------------------
 *
 */

.menu_wrapper_0_0 {
	float: right;
	width: 50%;
}

.top {
	width: 100%;
}

.top li:first-child {
 	display: none;
	cursor: default;
}

.top li {
	width: 25%;
	min-width: 30px;
	float: left;
	height: 60px;
	padding: 10px 0;
}
 
.top li a {
	color: transparent;
	text-decoration: none;
	font-size: 0px;
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 25px;
}

.top li a:hover {
	color: #b7b7b7;
}

.top li a:after {
	content: '';
	height: 22px;
	width: 2px;
	background: #4c4c4c;
	display: block;
	float: right;
	margin: 10px 0;
}

.top li#menu_item_1 a {
	background-image: url('../assets/phone.svg');
	background-image: url('../assets/phone.png');
	background-position: left center;
}

.top li#menu_item_2 a {
	background-image: url('../assets/search.svg');
	background-image: url('../assets/search.png');
}

.top li#menu_item_3 a {
	background-image: url('../assets/account.svg');
	background-image: url('../assets/account.png');
}

.top li#menu_item_4 a {
	background-image: url('../assets/wishlist.svg');
	background-image: url('../assets/wishlist.png');
}

.top li#menu_item_5 a {
	background-image: url('../assets/basket.svg');
	background-image: url('../assets/basket.png');

}

/*
.top li#menu_item_5 a {
	background-image: url('../assets/basket.svg');
}
*/

.top li a:hover {
	filter: invert(20%) sepia(20%) saturate(10%) hue-rotate(157deg) brightness(61%) contrast(91%);
}

.rsp_nav {
	background: no-repeat center center url('../assets/menu.svg');
	background-size: 25px;
	display: block;
	width: 14%;
	height: 60px;
	float: right;
}

.rsp_title {
	display: none;
}

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

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

.main_menu {
	display: none;
}

.main_menu li {
	box-shadow: inset 0px 1px 0px black;
	display: block;
	float: left;
	width: 100%;
}

.main_menu li a {
	text-decoration: none;
	padding: 15px;
	display: block;
	color: #FFFFFF;
}

.main_menu li a:hover {
	background: #fa4087;
}

.main_menu.on_off {
	display: block;
}

.main_menu li .main_menu li {
	background: #727171;
	display: block;
}

#menu_item_10 {
	background: #fa4087;
}

.menu_wrapper_1_8 {
/* 	display: none; */
}

.main_menu li a.rsp_nav_sub {
	position: absolute;
	right: 0;
	display: block;
	min-width: 46px;
	min-height: 46px;
	
	background: no-repeat center center url('../assets/menu.svg');
	background-size: 25px;
}

.main_menu {
/* 	display: block; */
}

.main_menu #menu_item_46 a.link_1_8, .main_menu #menu_item_46 a.rsp_nav_sub {
	display: none !important;
}

#menu_item_8 {
	background: #464646;
}

#darkness  {
	background: none;
	min-height: 0px;
}

/*
 *---------------------------------------------------------------
 * FOOTER MENUS
 *---------------------------------------------------------------
 *
 */

footer {
	color: #FFFFFF;
	font-weight: 600;
}

.footer_links {
	padding: 20px;
}

.footer_menu {
	margin: 10px 0 20px 0;
}

.footer_menu li a {
	text-decoration: none;
	line-height: 20px;
	color: #b7b7b7;
	font-weight: 300;
}

.footer_menu li a:hover {
	color: #FFFFFF;
}

.footer_menu span {
	display: block;
	float: left;
	width: 100%;
	clear: both;
}

.copy {
	text-align: center;
	background: #252525;
	display: block;
	clear: both;
	width: 100%;
	padding: 30px 20px;
	font-weight: 600;
	color: #FFF;
}

.cards, .social {
/* 	outline: red solid 1px; */
	float: left;
	width: 100%;
}

.cards li, .social li {
	margin: 20px 0 0 0;
	line-height: 20px;
	color: #b7b7b7;
	font-weight: 300;
	font-size: 0px;
	color: transparent;
	height: 30px;
	max-width: 50px;
	width: 100%;
	float: left;
	background-repeat: none;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.social li  {
	background-position: left center;
	max-width: 50px;
}

.cards li {
	margin-right:10px;
}

.cards li:last-child {
	margin-right: 0px;
}

.cards li:first-child, .social li:first-child {
	margin-top: 20px;
}

.cards li.visa {
	background-image: url('../assets/visa.svg');
/* 	outline: red solid 1px; */
	max-width: 45px;
}

.cards li.mastercard {
	background-image: url('../assets/mastercard.svg');
	max-width: 30px;
}

.cards li.maestro {
	background-image: url('../assets/maestro.svg');
	max-width: 30px;
}

.cards li.paypal {
	background-image: url('../assets/paypal.svg');
/* 	outline: red solid 1px; */
	max-width: 75px;
}

.social li.facebook {
	background-image: url('../assets/facebook.svg');
}

.social li.twitter {
	background-image: url('../assets/twitter.svg');
}

.social li.youtube {
	background-image: url('../assets/youtube.svg');
}

.social li.instagram {
	background-image: url('../assets/instagram.svg');
}

.social li a {
	display: block;
	height: 100%;
}

.social li:hover {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/*
 *---------------------------------------------------------------
 * NEWSLETTER
 *---------------------------------------------------------------
 *
 */

.signup {
	background: #252525;
	width: 100%;
	color: #FFFFFF;
	clear: both;
}

.signup .container {
	padding: 10px 20px 20px 20px;
	clear: both;
}

.signup .container .wrap {
	margin: 0 auto;
	text-align: center;
	max-width: 340px;
	width: 100%;
	clear: both;
}

.signup .container .wrap:after {
	content: '';
	display: block;
	width: 100%;
	clear: both;
}

.signup h3 {
	font-weight: 400;
	font-size: 160%;
	color: #FFFFFF;
}

.signup p {
	line-height: 30px;
	font-weight: 300;
	color: #afafaf;
}

.sign_up {
	max-width: 400px;
	margin: 0 auto;
}

.sign_up input {
	border-radius: 2px;
	margin-bottom: 15px;
	font-size: 18px;
	padding: 20px 15px;
	border: 0px;
}

.sign_up input[type="submit"] {
	-webkit-box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
	-moz-box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
	box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
	font-weight: 600;
	background: none;
	border-radius: 2px;
	width: 100%;
	border: 0px;
	margin-top: 0px;
	font-size: 18px;
	display: block;
	cursor: pointer;
}

.sign_up input[type="submit"]:hover {
	-webkit-box-shadow: inset 0px 0px 0px 2px rgba(250,64,135,1);
	-moz-box-shadow: inset 0px 0px 0px 2px rgba(250,64,135,1);
	box-shadow: inset 0px 0px 0px 2px rgba(250,64,135,1);
	background: #fa4087;
}

p.unsubscribe {
	text-align: center;
	color: #FFFFFF;
	margin-top: 10px;
}

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

ul.mn_slides {
	position: relative;
	float: left;
	display: block;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.mn_slides li {
	text-align: center;
	position: relative;
	background-repeat: no-repeat;
	width: 100%;
}

ul.mn_slides li .contain_block {
	background: rgba(0, 0, 0, 0.3);
	height: 100%;
	display: block;
}

ul.mn_slides li span {
	padding: 60px 0;
	font-weight: 400;
	display: block;
	color: #FFFFFF;
}

ul.mn_slides li span h1 {
	font-family: 'Caveat';
	text-decoration: none;
	font-size: 3.5em;
	clear: both;
	display: block;
	margin-top: 0px;
	margin-bottom: 2px;
	color: #FFF;
}

ul.mn_slides li span a {
	max-width: 200px;
	color: #FFFFFF;
	margin: 20px auto 0 auto;
	font-size: 1em ;
	float: none;
}

ul.mn_slides li span a:hover {
	text-decoration: none;
	color: #fa4087;
}

ul.mn_slides li {
	background: url('/application/media/images/slider/silde-1.jpg') center center;
	background-size: cover;
}

ul.mn_slides li.two {
	background: url('/application/media/images/slider/silde-2.jpg') center center;
	background-size: cover;
	
}

ul.mn_slides li.three {
	background: url('/application/media/images/slider/silde-3.jpg') center center;
	background-size: cover;
	
}
/*
 *---------------------------------------------------------------
 * BRIGHT IDEAS (HOMEPAGE)
 *---------------------------------------------------------------
 *
 */

.bright_ideas {
/* 	background: #ebebeb; */
	display: block;
	float: left;
	width: 100%;
	padding: 20px 0;
	margin-bottom: 20px;
	position: relative;
}

.bright_ideas .odd_left {
	position: relative;
}

.bright_ideas .five {
	right: 0;
	position: absolute;
}


.bright_ideas .odd_left > div, .bright_ideas .odd_right > div,
.bright_ideas.responsive > div, .bright_ideas.responsive .top_block > div, .bright_ideas.responsive .mid_block > div {
	position: relative;
	display: block;
	width: 48%;
	min-height: 175px;
/* 	min-height: 300px; */
	margin-bottom: 20px;
}

.bright_ideas > div:last-child {
	margin-bottom: 0px;
}

.bright_ideas div a {
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	font-size: 1.1em;
}

.bright_ideas div a span {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	color: #FFF;
	font-weight: 400;
	padding-bottom: 20px;
	text-transform: uppercase;
}

.bright_ideas .idea {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.bright_ideas .one {
	background-image: url("/application/media/images/bright_ideas-1.jpg");
}

.bright_ideas .two {
	background-image: url("/application/media/images/bright_ideas-2.jpg");
	background-position: right center;
}

.bright_ideas .three {
	background-image: url("/application/media/images/bright_ideas-3.jpg");
}

.bright_ideas .four {
	background-image: url("/application/media/images/bright_ideas-4.jpg");
}

.bright_ideas .five {
	background-image: url("/application/media/images/bright_ideas-5.jpg");
}

.bright_ideas .six {
	background-image: url("/application/media/images/bright_ideas-6.jpg");
	background-position: center center;
}

.width_800_links {
	display: none;
}

.bright_ideas.responsive .top_block {
	width: 100%;
}

.bright_ideas.responsive .one {
	float: left;
}

.bright_ideas.responsive .five {
	float: right;
}

.bright_ideas.responsive .two {
	width: 100%;
}

.bright_ideas.responsive .mid_block {
	position: relative;
	width: 100%;
}

.bright_ideas.responsive .mid_block .six {
	position: absolute;
	right: 0;
	top: 0;
	margin-bottom: 0px;
	bottom: 0;
}

/*
 *---------------------------------------------------------------
 * H2 TITLES WITH LINE
 *---------------------------------------------------------------
 *
 */

.home .content h2, h1.line_title, h2.txt_c, .por_listsec h2 {
	position: relative;
	font-family: 'Caveat';
	font-size: 3em;
	text-align: center;
	color: #111111;
	font-weight: 400;
	z-index: 2;
	margin-bottom: 20px;
}

.home .content h2 span, h1.line_title span, h2.txt_c span, .por_listsec h2 span{
	background: #FFFFFF;
	padding: 0 20px
}

.home .content h2:before, h1.line_title:before, h2.txt_c:before, .por_listsec h2:before {
	position: absolute;
	background: #c4c3c3;
	content: '';
	width: 100%;
	height: 1px;
	left: 0;
	top: 50%;
	z-index: -1;
}

.home .content p, .underline_para {
	text-align: center;
	color: #000000;
	margin-bottom: 30px;
}

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

.content p, .category_description_bottom {
	line-height: 1.5em;
}

#internal_pages ul {
	padding-left: 20px;
	font-weight: 300;
	font-size: 1.2em;
}

#internal_pages ul li {
	line-height: 1.5em;
}

h2.bright {
	max-width: 1200px;
	margin: 20px auto 0 auto;
}

.product_detail h2.txt_c {
	margin-bottom: 40px;
}

/*
 *---------------------------------------------------------------
 * YOUR FAVOURITES / PRODUCT LIST PAGE / RELATED & RECENTLY VIEWD
 *---------------------------------------------------------------
 *
 */

.fav_item_holder {
	display: block;
	float: left;
	width: 100%;
	min-height: 425px;
}

.fav_image, .product_image {
/*
	background-image: url('/application/media/images/prod-1.jpg');
	background-position: center center;
	background-size: cover;
*/
	width: 100%;
	max-width: 200px;
	min-height: 200px;
	border: solid 1px #dadde0;
	margin-bottom: 10px;
	position: relative;
	margin: 0 auto 10px auto;
}

.expand, a.link_1_46 {
    white-space: nowrap;
	position:relative;
	display:inline-block;
	z-index: 2;
}

.expand:after, a.link_1_46:after {
	display:block;
	content: '';
	border-bottom: solid 5px #fa4087;  
	transform: scaleX(0);  
	transition: transform 250ms ease-in-out;
	transform-origin:100% 50%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.expand:hover:after, a.link_1_46:hover:after { 
	transform: scaleX(1);
	transform-origin:0 50%;
}


.fav_image .newarrival {
	background: #dadde0;
	position: absolute;
	z-index: 1;
	color: #000000;
	font-size: 60%;
	padding: 6px;
}

.fav_image:hover .newarrival {
	background: #fa4087;
	color: #FFFFFF;
}

.fav_image .helper {
    position: relative;
    height: 100%;
    width: 100%;
}

.fav_image img {
	max-height: 80%;  
    max-width: 80%; 
    width: auto;
    height: auto;
    position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
    margin: auto;
}

.fav_image:hover, .product_image:hover {
	border: solid 1px #fa4087;
	cursor: pointer;
}

.fav_image a {
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
}

.fav_title {
	text-align: center;
	line-height: 1.8em;
	min-height: 50px;
}

.fav_title a, .product_title a {
	font-family: 'Encode Sans Condensed', sans-serif;
	color: #000000;
}

.fav_title a:hover {
	text-decoration: none;
	color: #fa4087;
}

.fav_rating {
	height: auto;
	width: 100%;
	margin: 10px 0;
}

.fav_price {
	font-family: 'Encode Sans Condensed', sans-serif;
	text-align: center;
	font-weight: 300;
	margin-bottom: 20px;
}

.your_fav {
	padding: 0 20px;
}

.your_fav .container {
	padding: 0 0 20px 0;
}

.fav_rating span {
	margin: 0 auto;
	display: block !important;
	text-align: center;
}

.fav_rating span.starRating {
	max-width: 100px;
}

.fav_item_holder .stock {
	text-align: center;
}

.home .content .main_con {
	padding: 0 20px;
}


/*
 *---------------------------------------------------------------
 * PRODUCT LIST PAGE PINK SORT BY & TOTAL
 *---------------------------------------------------------------
 *
 */

.totals_bar {
	border: #fa4087 solid 1px;
	background: #fa4087;
	border-radius: 3px;
	display: block;
	max-width: 200px;
	margin: 0 auto 30px auto;
	clear: both;
}



.totals_bar .count {
	background: #FFFFFF;
	text-align: center;
	border: 0;
	padding: 8px;
	float: right;
	display: block;
	height: 33px;
	width: 50%;
}

.totals_bar .selected {
	position: relative;
	float: left;
	width: 50%;
}

.totals_bar select {
	border: 0;
	padding: 8px;
	background-size: 20px;
	color: #FFFFFF;
	font-weight: 300;
	height: 33px;
	width: 100%;
}

.totals_bar:after {
	content: '';
	clear: both;
	width: 100%;
	display: block;
	height: 0;
}


.totals_bar .selected {
	background: #fa4087 url('../assets/arrow.png') left 10px center no-repeat;
	background-size: 20px;
	padding-left: 40px;
	position: relative;
}

.totals_bar select::-ms-expand {
    display: none;
}

/*
.totals_bar .selected:before {
	position: absolute;
	content: '';
	background: #fa4087 url('../assets/arrow.svg')  center no-repeat;
	background-size: 20px;
	z-index: 999;
	display: block;
	height: 30px;
	width: 30px;
	right:0;
}
*/





.products {
	margin-bottom: 20px;
	padding: 0 20px;
}


/*
 *---------------------------------------------------------------
 * PRODUCT PAGE
 *---------------------------------------------------------------
 *
 */
 
.product_detail {
	padding: 20px;
}
 
.product_content {
	width: 100%;
	display: block;
}

.product_detail .thumbnails {
	border-left: solid 1px #dadde0;
	border-right: solid 1px #dadde0;
	border-bottom: solid 1px #dadde0;	
	width: 100%;
	clear: both;
	float: right;
	overflow-x: hidden;
	display: block;
	justify-content: center;
	align-items: center;
}

.product_detail .thumbnail-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    font-size: 0;
    width: auto;
  flex-shrink: 0;
  	
  display: block;
	justify-content: flex-start;
	align-items: flex-start;

}

.product_detail .thumbnails .thumbnail_container {
	border-left: solid 1px #dadde0;	
	width: 25%;
	height: 100px;
	display: block;
	float: left;
}

.product_detail .thumbnails .thumbnail_container:first-child {
	border-left: 0px;
}

.product_detail .thumbnails .thumbnail_container:last-child {
/* 	border-right: 0px !important; */
}

.product_detail .thumbnails .thumbnail_container img {
/* 	outline: green solid 1px; */
	margin: 0 auto;
	padding: 0;
	display:block;
	height: 100px;
	width: 100px;
}

/*
.product_detail .thumbnails .thumbnail_container:hover:before {
	outline: 1px solid #fa4087;
	position: absolute;
	top: 0;
	content: '';
	height: 100%;
	width: 100%;
	z-index: 1;
}
*/

.product_detail .thumbnails .thumbnail_container:last-child {
	border-right: solid 1px #dadde0;	
}

.product_detail .product_image {
	position: relative;
	width: 100%;
	clear: both;
	max-width: 100%;
	max-height: 100%;
	margin-bottom: 0px;
	float: left;
}

.product_detail .product_image a:after {
	background: url('../assets/zoom.svg') left center no-repeat;
	padding-left: 20px;
	top:0;
	content: 'Click The Image To Zoom In';
	font-size: 80%;
	display: block;
	width: auto;
	text-align: left;
	float: left;
	margin: 20px ;
	position: absolute;
}

.product_price {
	font-family: 'Encode Sans Condensed', sans-serif;
	float: left;
	margin-bottom: 20px;
	width: 100%;
	font-size: 100%;
}

.wishlist {
	margin-top: 20px;
}

.product_content.title_price {
	position: relative;
	clear: both;
	float: left;
}

.product_price .oldprice {
	text-decoration: line-through;
	font-weight: 300;
}

.product_price .saleprice {
	width: 100%;
	clear: both;
	float: left;
	margin: 0 5px;
	font-size: 190%;
	color: #fa4087;
	margin-top: 10px;
}

.title_price h1 {
	font-family: 'Encode Sans Condensed', sans-serif;
	max-width: 80%;
	float: left;
	color: #000000;
	clear: both;
}

.quantity {
	margin-top: 20px;
	max-width: 40px;
	clear: both;
	float: left;
	width: 100%;
}

.quantity input {
	margin-top: 10px;
}

.buy_now {
	margin-top: 20px;
	clear: both;
	float: left;
	width: 100%;
}

.buy_now input {
	background: #fa4087;
	cursor: pointer;
	border: 0;
	border-radius: 3px;
	padding: 15px 15px;
	font-weight: 600;
	font-size: 18px;
	margin: 0;
	display: block;
	width: 100%;
}

.buy_now input:hover {
	background: #53c68c;
}

.wishlist {
	background: url('../assets/wishlist-c.svg') center center no-repeat;
	position: absolute;
	right: 0;
	float: right;
	color: transparent !important;
	font-size: 0px;
	width: 20px;
	height: 20px;
	text-align: center;
}

.wishlist:hover {

}

.wishlist:hover:after {
	background: url('../assets/wishlist-b.svg') center center no-repeat;
	position: absolute;
	content: 'red';
	display: block;
	width: 20px;
	height: 20px;
}

.wishlist.filled {
	background: url('../assets/wishlist-b.svg') center center no-repeat;
}

/* Pulse */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
	-webkit-animation-name: hvr-pulse;
	animation-name: hvr-pulse;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}


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

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

ul.tabs {
	border: solid 1px #c4c3c3;
	border-bottom: none;
	margin: 40px 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 {
	background: #ebebeb;
	text-align: center;
	color: #fa4087;
	display: block;
	padding: 20px 0;
	cursor: pointer;
	width: 20%;
	margin: 0;
	color: #000000;
	float: left;
	font-weight: 600;
	border-bottom: solid 1px #c4c3c3;
	border-right: solid 1px #c4c3c3;
	font-size: 50%;
}

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

ul.tabs li.current {
	border-bottom: solid 1px #FFFFFF;
	background: #FFF;
	color: #fa4087;
}

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

.tab-content h2.txt_c {
	font-size: 160%;
}

.tab-content {
	border: solid 1px #c4c3c3;
	border-top: none;
	display: none;
	padding: 0 40px 40px 40px;
	line-height: 1.5em;
	clear: both;
}

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

.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/pink-dot.png') no-repeat center left;
	background-size: 15px;
	margin-bottom: 20px;
	padding-left: 25px;
	float: left;
	width: 100%;
}

.tab-content .features {
	padding-left: 60px;
	float: left;
	width: 100%;
	margin: 20px 0;
}

.tab-content .features h4 {
	margin-top: 0px;
}

.tab-content .qoi1alt {
	background: url('../assets/warranty.png') no-repeat left top;
	background-size: 40px;
}

.tab-content .qoi2alt {
	background: url('../assets/no_mains.png') no-repeat left top;
	background-size: 40px;
}

.tab-content .qoi3alt {
	background: url('../assets/winter.png') no-repeat left top;
	background-size: 40px;
}

.tab-content .qoi4alt {
	background: url('../assets/single_led.png') no-repeat left top;
	background-size: 40px;
}

.av_cu_rat ul {
	list-style: none;
	padding: 0;
	margin: 20px 0 10px 0;
}

.av_cu_rat ul li {
	margin: 0 10px 10px 0;
	width: auto;
	padding: 0;
	background: none;
	float: left;
	display: block;
}

.av_cu_rat ul li a {
	display: block;
	background: #fa4087;
	color: #FFFFFF;
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 80%;
}

.cust_rating {
	float: left;
	clear: both;
	margin-bottom: 20px;
}

.review_stars {
	float: left;
	width: 100%;
	display: block;
	clear: both !important;
	margin-bottom: 10px;
}

.helpful {
	float: left;
	width: 100%;
	font-weight: 300;
	margin-top: 10px;
}

.question {
	background: #fa4087;
	color: #FFFFFF;
	border-radius: 3px;
	margin-bottom: 10px;
	padding: 5px;
}

.question_block {
	float: left;
	display: block;
	margin-bottom: 20px;
	width: 100%;
}

.quest_text {
/* 	color: #fa4087; */
}

.quest_text p {
		font-weight: 600;
}

.ask_question_block {
	float: right;
	display: block;
	width: 100%;
}

.question_by {
	font-family: 'Encode Sans Condensed', sans-serif;
	font-weight: 600;
	margin: 10px 0;
}

.answer {
	font-style: italic;
	font-weight: 600;
	color: #636363;
}

.answer strong {
	color: #fa4087;
}

.question_title_link {
	font-family: 'Encode Sans Condensed', sans-serif;
	color: #fa4087;
}

.question_title_link:hover {
	color: #ebebeb;
	text-decoration: none;
}

.ask_question_block {
	background: #ebebeb;
	margin-bottom: 20px;
	border-radius: 3px;
	padding: 20px;
}

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

.contacts .address {
	line-height: 1.5em;
	width: 100%;
	display: block;
	float: left;
}

.contacts .address a {
	font-weight: 600;
}

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

.ask_question_block input, .ask_question_block textarea {
	border: 0;
	border-radius: 3px;
	margin-bottom: 20px;
	min-height: 40px;
}

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

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

.ask_question_block input[type="submit"]:hover {
	background: #53c68c;
}

.ask_question_block form .starRating {
	margin-top: 20px;
}

.pink_box {
	background: #ebebeb;
	border-radius: 5px;
	display: block;
	float: left;
	padding: 40px;
	color: #252525;

	width: 100%;
}

.pink_box input, .pink_box select {
	background: #FFFFFF;
	border-radius: 3px;
	outline: none;
	color: #252525;
	border: 0;
	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; /* Firefox */
}

.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: #fa4087;
	color: #FFFFFF;
	padding: 10px 0;
	width: 100%;
	font-size: 15px;
}

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

.pink_box input[type="submit"]:hover {
	background: #53c68c;
}

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

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

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

#cart_links {
	float: left;
	width: 100%;
}

#cart_links div {
	margin-top: 20px;
	display: block;
	width: 100%;
	float: left;
}

#paypalCheckoutContainer {
/* 	outline: red solid 1px !important; */
	margin-top: 0px !important;
}

#cart_links div a {
	font-weight: 600;
	text-decoration: none;
	background: #fa4087;
	text-align: center;
	border-radius: 3px;
	display: block;
	color: #FFFFFF;
	padding: 20px 0;
	width: 100%;
	display: block;
	font-size: 15px;
}

#cart_links div a:hover {
	background: #53c68c;
}

#cart_form {
	float: left;
	width: 100%;
}

.light_row, .dark_row {
	border-bottom: #dadde0 solid 1px;
	float: left;
	width: 100%;
	padding-bottom: 30px;
	margin-bottom: 20px;
	display: block;
	clear: both;
}

.item_info.one {
	margin-right: 4%;
	float: left;
	width: 23%;
	padding: 5px;
	outline: #dadde0 solid 1px;
	max-width: 155px;
}

.item_info.two {
	float: left;
	width: 73%;
}

.item_title {
	font-weight: 600;
	margin-bottom: 10px;
}

.item_sku {
	margin-bottom: 10px;
}

.sub_price .cart_label {
	font-weight: 600;
	margin-bottom: 10px;
}

#cart_voucher {
	float: left;
	width: 100%;
}

#cart_voucher input {
	margin-bottom: 20px;
}

#cart_voucher .remove_link, .customer_form #submit, a.delivery, .payzone-form input.submit_field {
	text-decoration: none;
	background: #fa4087;
	text-align: center;
	border-radius: 3px;
	border: 0;
	display: block;
	color: #FFFFFF;
	padding: 20px 0;
	width: 100%;
	display: block;
	font-weight: 600;
	outline: none !important;
	font-size: 15px;
}

#cart_voucher .remove_link:hover, 
.payzone-form input.submit_field:hover, 
.customer_form a.delivery:hover, 
.customer_form #submit:hover {
	background: #53c68c;
}

a.delivery {
	background: #d5d5d5;
}



.qty_input {
	text-align: center;
	font-weight: 600;
	max-width: 35px;
	margin: 10px 0;
}

.qty_input input {
	border-radius: 2px;
	text-align: center;
	margin-top: 10px;
}

#totals_table {
	outline: #dadde0 solid 1px;
	margin: 0 0 0 0;
	width: 100%;
	float: left;
	display: block;
}

.order_shipping  .pink_box   #totals_table  {
	outline: 0px;
}

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

#totals_table > div {
	text-align: center;
/* 	border-bottom: 1px solid #dadde0; */
	padding: 10px;
	width: 100%;
	float: left;
}

.order_shipping  .pink_box   #totals_table > div {
	padding: 0;
}

.order_shipping #totals_table > div .cart_label {
/* 	line-height: 40px; */
}

.order_shipping .pink_box  #totals_table > div .totals_cell {
	text-align: left;
	width: 100%;
}


#totals_table.totals_summary {
	margin-bottom: 20px;
}

#totals_table.totals_summary > div {
	width: 25%;
}

#totals_table > div:last-child {
	border-right: 0px;
}

#totals_table > div .cart_label {
	font-weight: 600;
	width: auto;
	margin-right: 10px;
	float: left;
}

#totals_table > div .totals_cell {
	width: auto;
	outline: red  1px;
	float: left;
}


.fields label {
	font-weight: 600;
}


.billing_details, .delivery_details {
	margin: 0 0 20px 0;
}

.customer_form #submit  {
	float: right;
	margin-top: 20px;
}

.billing_details .fields {
	margin-top: 10px;
	display: block;
}

.delivery_details .fields {
	margin-top: 10px;
	display: block;
}

.billing_details .fields input, .delivery_details .fields input, .billing_details .fields select, .delivery_details .fields select,
.pass_details .fields input, .additional_infoField textarea, select.form-control {
	border-radius: 3px;
	padding: 10px;
	line-height: 24px;
}

select#shippingMethod {
	border-radius: 3px;
	padding: 10px;
	line-height: 24px;
	background: #FFFFFF url('../assets/arrow_dark.png') right 10px center no-repeat;
	background-size: 20px;

}

.pink_box.please_select {
	margin-top: 0px;
	float: left;
	width: 100%;
}

a.delivery  {
	margin-top: 20px;
	margin-bottom: 20px;
	float: left;
	width: 100%;
}

.delivery_details {
	margin-bottom: 20px;
/* 	background: red; */
	display: none;
	float: left;
	width: 100%;
}

.delivery_details.delivery_show {
	display: block;
}

.delivery_details.open_error {
	display: block;
}

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

.customer_form .billing, .customer_form .delivery, .customer_form .add_info {
	outline: #dadde0 solid 1px;
/* 	outline: green solid 1px; */
	margin: 0 0 20px 0;
}

.customer_form .summary > div {
	border-top: 1px solid #dadde0;
	width: 100%;
	display: block;
	float: left;
	clear: both;
}

.customer_form .summary h3 {
	margin-left: 10px;
}

.customer_form .summary div > div {
/* 	background: pink; */

	padding:10px 10px;
	float: left;
}

.customer_form .summary .one {
	min-width: 25%;
	font-weight: 600;
	width: auto;
}

.customer_form .summary .two {
		width: 75%;
}






.exist_form_one {
	width: 100%;
}

.exist_form_two .dark_row {
	padding-bottom: 0px;
	margin-top: 20px;
}

.exist_form_two .item_info {
	width: 49%;
	float: right;
}


.exist_form_two .item_info.sec_info_two {
	float: left;
}


.order_details {
/* 	outline: red solid 1px; */
}



.sp {
	border: #dadde0 solid 1px;
	background: #FFF;
	padding: 20px;
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

.order_details #paypalCheckoutContainer {
	float: left;
	width: 100%;
}

/*
 *---------------------------------------------------------------
 * RESPONSIVE WIDTH 400px OR LESS
 *---------------------------------------------------------------
 *
 * To adjust responsive width change the setting in database and
 * also below...
 *
 */
 
 
@media (min-width: 400px) {
	
	html:after {
		background: red;
		padding: 5px;
		content: '400px +';
		font-size: 0.7em;
		position: fixed;
		color: #FFFFFF;
		z-index: 999;
		left: 0;
		top: 0;
	}
	
	.fav_item_holder {
		float: left;
		width: 49%;
	}
	
	.fav_item_holder:nth-child(2n) {
		float: right;
	}
} 
 

 
@media (min-width: 600px) {
	
	html:after {
		content: '600px +';
	}
	
	/*
	*--------------------
	* WIDTH         	+600px
	*--------------------
	*/
	
	.container {
		max-width: 600px;
		margin: 0 auto;
		width: 100%;
		padding: 0 20px;
	}
	
	.container.clear.main_con {
		padding: 20px;
	}
	
	/*
	*--------------------
	* HEADER / MAIN     +600px
	*--------------------
	*/
	
	.main_menu li a.rsp_nav_sub {
		display: none;
	}
	
	.menu_wrapper_0_0 {
		position: relative;
		width: auto;
	}
	
	#menu_1_0 {
		width: 600px;
		display: block;
		margin: 0 auto;
		
		display: flex;
		align-items: stretch; /* Default */
		justify-content: space-between;
	}
	
	.main_menu li:first-child {
		display: none;
	}
	
	.main_menu li {
		box-shadow: none;
		width: auto;
		float: none;
		display: block;
		flex: 0 1 auto; /* Default */
		position: relative;
	}
	
	.main_menu li a:hover {
		background: #FFFFFF;
		color: #fa4087;
	}
	
	.main_menu li a {
		text-align: center;
		display: block;
		padding: 15px 23px ;
	}
	
	.main_menu li .menu_wrapper_1_8 {
		display: none;
	}
		
	.main_menu li:hover .menu_wrapper_1_8 {
		min-width: 500px;
		background: #FFFFFF;
		position: absolute;
		z-index: 999999;
		display: block;
		top: 40px;

	}
	
	.main_menu li ul {
		display: block;
		background: #FFFFFF;
	}
	
	.main_menu li ul#menu_1_8 {
		padding: 20px;
		float: left;
	}
	
	.main_menu li .main_menu li {
		background: #FFFFFF;
		width: 100%;
		display: block;
		float: left;
	}
	
	
	.main_menu li .main_menu li a {
		text-align: left;
		font-weight: 400;
		color: #000;
		font-size: 100%;
		padding: 10px;
		cursor: pointer;
	}
	
	.main_menu li .main_menu li a:hover {
		background: none;
		color: #fa4087;
	}
	
	.main_menu li .main_menu li#menu_item_25 > a,
	.main_menu li .main_menu li#menu_item_39 > a,
	.main_menu li .main_menu li#menu_item_42 > a, 
	.main_menu li .main_menu li#menu_item_46 > a {
		font-weight: 600;
	}
	
	
	
	.main_menu li .main_menu > li {
		display: inline-block;
		width: 100%;
	}
	
	#menu_item_25,
	#menu_item_39,
	#menu_item_42,
	#menu_item_46 {
		display: block;
		width: 50%;
	}
	
	#menu_item_46 {
		display: none;
	}
	
	#menu_item_8 {
		display: inline;
		background: none;
	}
	
	.menu_wrapper_1_8 {
		position: absolute;
		left: -100%;
		right: 50%:
	}
	
	.menu_open {
		background: #fff !important;
		color: #fa4087 !important;
		z-index: 10 !important;
		position: relative !important;
	}
	
	.main_menu li:hover a:after {
		border-bottom: #fa4087 solid 3px;
		margin-top: 5px;
		content: '';
		width: 100%;
		display: block;
		z-index: 999;
	}
	
	.main_menu > li:hover  a {
		padding-bottom: 7px;
	}
	
	.main_menu li .main_menu li#menu_item_25 a:after,
	.main_menu li .main_menu li#menu_item_39 a:after,
	.main_menu li .main_menu li#menu_item_42 a:after {
		display: none;
	}
	
	#darkness {
	    background:rgba(0, 0, 0, 0.7);
	    display:none;
	    height:100%;
	    left:0;
	    position:absolute;
	    top:0;
	    width:100%;
	    z-index:5;
	    min-height: 3042px;
	}
	
	/*
	*--------------------
	* IE10 MENU LI FIX     +600px
	*--------------------
	*/
	
	html[data-useragent*='MSIE 10.0'] #menu_1_0 {
	  display:table;
	}
	
	html[data-useragent*='MSIE 10.0'] .main_menu li#menu_item_7,
	html[data-useragent*='MSIE 10.0'] .main_menu li#menu_item_8,
	html[data-useragent*='MSIE 10.0'] .main_menu li#menu_item_9,
	html[data-useragent*='MSIE 10.0'] .main_menu li#menu_item_10 {
	  display: block;
	  float: left;
	  color: blue;
	  width: 25%;
	}
		
	/* IE10-specific styles go here */  

	:root #menu_1_0 {
		display:table\0/IE9;
	}
	
	:root .main_menu li#menu_item_7,
	:root .main_menu li#menu_item_8,
	:root .main_menu li#menu_item_9,
	:root .main_menu li#menu_item_10 {
		display: block\0/IE9;
		float: left\0/IE9;
		color: blue\0/IE9;
		width: 25%\0/IE9;
	}
		
	.rsp_nav {
		display: none;
	}
	
	.top {
		width: auto;
		float: right;
	}
	
	.top li {
		width: auto;
		margin-left: 20px;
	}
	
	.top li a {
		line-height: 40px;
		color: #FFFFFF;
		font-size: 1em;
		padding-left: 30px;
		text-align: right;
	}
	
	.top li a {
		background-position: left center;
	}
	
	.top li a:after {
		display: none;
	}
	
	.top li#menu_item_2 {
		margin-left: 0px;
	}
	
	/*
	*--------------------
	* PROMO             +600px
	*--------------------
	*/
	
	.promo_wrapper .container {
		float: none;
		width: 100%;
	}
	
	.logo a {
		background-position: left center;
	}
	
	.promo_wrapper {
		display: none;
	}
	
	/*
	*--------------------
	* FOOTER       		+600px
	*--------------------
	*/
	
	.footer_links {
		padding: 20px 0;
	}
	
	.footer_links:after {
		content: '';
		display: block;
		width: 100%;
		clear: both;
	}
	
	.menu_wrapper_2_0, .menu_wrapper_3_0, .menu_wrapper_4_0 {
		float: left;
		width: 33.33%; 
	}
	
	.menu_wrapper_5_0 {
		width: 100%;
		float: left;
	}
	
	.cards {
		float: left;
		width: 50%;
	}
	
	.social {
		float: right;
		width: 40%;
	}
	
	/*
	*--------------------
	* SLIDER       		+600px
	*--------------------
	*/
	
	ul.mn_slides li span br  {
		display: none;
	}
	
	ul.mn_slides li span u {
		margin-bottom: 20px;
	}
	
	/*
	*--------------------
	* BRIGHT IDEAS      +600px
	*--------------------
	*/
	
	.bright_ideas {
		padding: 0;
	}
	
	.bright_ideas .odd_left .one, .bright_ideas .odd_left .three, .bright_ideas .odd_right .six  {
		width: 48%;
		float: left;
	}
	
	.bright_ideas .odd_left .two, .bright_ideas .odd_left .four, .bright_ideas .odd_left .five {
		width: 48%;
		float: right;
	}
	
	/*
	*--------------------
	* YOUR FAV          +600px
	*--------------------
	*/
	
	.your_fav {
		max-width: 1200px;
		margin: 0 auto;
	}
	
	.your_fav .container {
		clear: both;
/* 		margin-bottom: 50px; */
	}
	
	.fav_item_holder, .fav_item_holder:nth-child(2n) {
		display:block; 
		float: left;
		width: 22%;
		margin-bottom: 40px;
		margin-right: 4%;
	}
	
	.fav_item_holder:nth-child(4n) {
		margin-right: 0%;
	}
	
	.fav_title {
		text-align: left;
	}
	
	.fav_title a {
		font-size: 130%;
	}
	
	.fav_rating {
		background-position: left center;
	}
	
	.fav_price {
		text-align: left;
		margin: 20px 0;
	}
	
	.stretch { width: 100%; display: inline-block; font-size: 0; line-height: 0;}
	

	.fav_rating span {
		text-align: left;
		margin: 0;
		float: left;
		line-height: 22px;
		margin-right: 5px;
	}
	
	.fav_price {
		width: 100%;
		float: left;
	}
	
	.fav_item_holder .stock {
		width: 100%;
		text-align: left;
		display: block;
		float: left;
	}
	
	.fav_image {
		max-width: none;
		min-height: 150px;	
	}
	
	/*
	*--------------------
	* PRODUCT_DETAIL    +600px
	*--------------------
	*/

	.product_detail {
		padding: 0;
	}
	
	.buy_now input {
		background: #fa4087;
		border: 0;
		border-radius: 3px;
		padding: 15px 0;
		margin: 0;
		display: block;
		width: 100%;
	}
	
	/*
	*--------------------
	* TAB TITLE         +600px
	*--------------------
	*/
	
	.tab-content h2.txt_c {
		font-size: 200%;
	}
	
	/*
	*--------------------
	* INTERNAL PAGE     +600px
	*--------------------
	*/
	
	.main_con #internal_pages, section.contacts {
		margin-bottom: 40px;
		padding: 0;
	}
	
	#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 {
/* 		outline: red solid 1px; */
max-width: 300px;
		float: right;
		width: 74%;
	}
	
/*
	#cart_voucher .remove_link {
		max-width: 200px;
	}
*/


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

}

@media (min-width: 800px) {
	
	html:after {
		content: '800px +';
	}

	/*
	*--------------------
	* WIDTH         	+800px
	*--------------------
	*/
	
	.container {
		max-width: 800px;
	}
	
	/*
	*--------------------
	* HEADER / MAIN     +800px
	*--------------------
	*/
	
	.main_header > .container {
		padding: 20px;
	}
	
	.main_header .container:after {
		content: '';
		display: block;
		width: 100%;
		clear: both;
	}
	
	.logo {
		padding: 10px 0;
	}
	
	.logo a {
		background-size: contain;
	}
	
	#menu_1_0 {
		width: 800px;
	}
	
	#menu_1_0 .columb_menu {
		width: 50%;
		float: left;
	}
	
	#menu_item_46 a.link_1_8 {
		display: none;
	}
	
	.main_menu li a {
		font-size: 130%;
		letter-spacing: 0.04em;
	}
	
	.main_menu li:hover .menu_wrapper_1_8 {
		min-width: 700px;
		left: -200px;
		
	}
	
	#menu_item_46 {
		width: 100%;
		display: block;
		float: right;
	}
	
	
	#menu_1_46 li {
		width: 48%;
		max-width: 160px;
		position: relative;
		display:block;
		margin-bottom: 15px;
	}
	
	#menu_1_46 li#menu_item_51,
	#menu_1_46 li#menu_item_52 {
		margin-bottom: 0px;
	}
	
	#menu_1_46 li:nth-child(even) {
		float: right;
	}
	
	#menu_1_46 li a {
		background-position: center center;
		background-size: cover;
		text-align: center;
		position: absolute;
		min-height: 155px;
		font-weight: 400;
		font-size: 80%;
		color: #FFFFFF;
		height: 100%;
		padding: 0;
		width: 100%;
		position: relative;
	}
	
	#menu_1_46 li a i {
		font-style: normal;
		position: absolute;
		padding-bottom: 20px;
		left: 0;
		right: 0;
		bottom: 0;
	}
	
	#menu_item_46 li:nth-child() a {
		display: none;
	}
	
	#menu_item_47 a {
			background-image: url("/application/media/images/bright_ideas-2.jpg");
			background-position: right center;
	}
	
	#menu_item_48 a {
			background-image: url("/application/media/images/bright_ideas-6.jpg");
	}
	
	#menu_item_49 a {
		background-image: url("/application/media/images/bright_ideas-3.jpg");
	}
	
	#menu_item_50 a {
		background-image: url("/application/media/images/bright_ideas-4.jpg");
	}
	
	#menu_item_51 a {
		background-image: url("/application/media/images/bright_ideas-1.jpg");
	}
	
	#menu_item_52 a {
		background-image: url("/application/media/images/bright_ideas-5.jpg");
		background-position: center center;
	}
	
	.main_menu li .main_menu li a {
		font-size: 95%;
		padding: 7px;
	}
	
	/*
	*--------------------
	* PROMO             +800px
	*--------------------
	*/
	
	.promo_wrapper .container > div {
		line-height: 42px;
		font-weight: 600;
		font-size: 0.9em;
	}
	
	.promo_wrapper .container > div:after {
		content: '';
		height: 22px;
		width: 2px;
		background: #c4c3c3;
		display: block;
		float: right;
		margin: 10px 0;
	}
	
	.promo_wrapper .container .reviews:after {
		display: none;
	}
	
	.promo_wrapper {
		display: block;
	}
	
	/*
	*--------------------
	* FOOTER       		+800px
	*--------------------
	*/
	
	.menu_wrapper_2_0, .menu_wrapper_3_0, .menu_wrapper_4_0, .menu_wrapper_5_0 {
		float: left;
		width: 25%; 
	}
	
	.menu_wrapper_2_0 ul, .menu_wrapper_3_0 ul, .menu_wrapper_4_0 ul {
		margin-bottom: 0px;
	}
	
	.cards, .social {
		float: right;
		width: 100%;
	}
	
	.footer_links {
		padding: 40px 0;
	}
	
	.footer_menu li {
		line-height: 25px;
	}
	
	.menu_wrapper_5_0 ul {
		margin-top: 0px;
	}
	
	.cards li, .social li, .cards li:first-child, .social li:first-child {
		margin-top: 10px;
	}
	
	/*
	*--------------------
	* NEWSLETTER        +800px
	*--------------------
	*/
	
	.signup {
		background: no-repeat url('../assets/sign_up_bg.jpg');
		background-position: center center;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
	
	.signup .container .wrap {
		text-align: left;
		max-width: 100%;
	}
	
	.sign_up {
		width: 100%;
		float: left;
		
	}
	
	.sign_up input, .sign_up input[type="submit"] {
		line-height: 24px;
		margin-bottom: 0px;
		padding: 10px 10px;
		float: left;
		width: 35%;
	}
	
	.sign_up input:nth-child(2) {
		margin: 0 2.5%;
	}
	
	.sign_up input[type="submit"] {
		width: 25%;
	}
	
	.sign_up {
		max-width: 100%;
	}
	
	.signup .container .wrap {
		font-size: 130%;
		color: #FFFFFF;
	}
	
	.signup p {
		color: #FFFFFF;
	}
	
	.signup h3 {
		font-weight: 600;
		font-size: 190%;
		margin-bottom: 20px;
	}
	
	p.unsubscribe {
		text-align: left;
		margin-top: 10px;
		float: left;
		width: 100%;
		display: block;
		clear: both;
		font-size: 120%;
	}
	
	/*
	*--------------------
	* SLIDER       		+800px
	*--------------------
	*/
	
	ul.mn_slides li span a {
		font-size: 80%;
	}

	
	ul.mn_slides li span {
		font-size: 150%;
		padding: 100px 0;
	}
	
	.content_wrapper {
		padding-top: 30px;
	}
	
	/*
	*--------------------
	* BRIGHT IDEAS      +800px
	*--------------------
	*/
	
	.width_800_links {
		display: block;	
	}
	
	.bright_ideas {
		position: relative;
	}
	
	.bright_ideas .odd_left > div, .bright_ideas .odd_right > div {
		margin-bottom: 0px;
		min-height: 300px;
	}
	
	.bright_ideas .odd_left {
		float: left;
		width: 70.8%;
	}
	
	.bright_ideas .odd_right {
		position: absolute;
		right: 0;
		width: 28%;
		top: 0;
		bottom: 0;
	}
	
	.bright_ideas .odd_left .one {
		width: 33.333333333333333%;
	}
	
	.bright_ideas .odd_left .two {
		width: 64.6%;
	}
	
	.bright_ideas .odd_left .three, .bright_ideas .odd_left .four, .bright_ideas .odd_left .five {
		width: 33.333333333333333%;
		margin-top: 20px;
	}
	
	.bright_ideas .odd_left .four {
		margin-right: 2%;
		width: 31.333333333333333%;
	}
	
	.bright_ideas .odd_left .five {
		width: 31.333333333333333%;
	}
	
	.bright_ideas .odd_right .six {
		background-position: center center;
		position: absolute;
		width: 100%;
		min-height: 100%;
		bottom: 0;
	}
	
	.bright_ideas.responsive {
		display: none;
	}
	
	/*
	*--------------------
	* HOME PARA      +800px
	*--------------------
	*/
	
	.home .content p {
		margin-bottom: 60px;
	}
	
	/*
	*--------------------
	* YOUR FAV          +800px
	*--------------------
	*/
	
	.fav_image {
		max-width: none;
		min-height: 200px;	
	}
	
	/*
	*--------------------
	* PRODUCT LIST      +800px
	*--------------------
	*/
	
	.products {
		margin-bottom: 40px;
	}
	
	/*
	*--------------------
	* PRODUCT_DETAIL    +800px
	*--------------------
	*/
	
	.title_price_img {
		position: relative;
		display: block;
		float: left;
		width: 100%;
	}
	
	.product_content {
		background: #FFFFFF;
		width: 50%;
		display: block;
		float: left;
	}
	
	.product_content.title_price {
/* 		outline: 1px solid red; */
		height: 100%;
		display: block;
		position: absolute;
		right: 0;
		top:0;
		bottom:0;
		margin:auto;
/* 		max-height: 350px; */
		width: 45%;
	}
	
	/*
	*--------------------
	* TAB TITLE         +800px
	*--------------------
	*/
	
	ul.tabs li {
		font-size: 80%;
	}
	
	/*
	*--------------------
	* TAB CONTENT       +800px
	*--------------------
	*/
	
	.tab_con_box {
		margin-top: 20px;
		float: left;
		width: 49%;
	}
	
	.tab_con_box.fr {
		float: right;
	}
	
	.tab-content h2.txt_c {
		font-size: 300%;
	}
	
	.ask_container {
		position: relative;
		display: block;
/* 		background: red; */
		float: left;
		width: 100%;
	}
	
	.ask_question_block {
		margin-top: 20px;
		width: 49%;
	}
	
	/*
	*--------------------
	* INTERNAL PAGE     +800px
	*--------------------
	*/
	
	.main_con #internal_pages, section.contacts {
		margin-bottom: 80px;
		padding: 0;
	}
	
	/*
	*--------------------
	* CONTACT US PAGE     +800px
	*--------------------
	*/
	
	.contacts .ask_question_block {
		padding: 40px;
		width: 68%;
	}
	
	.contacts .address {
		margin-top: 20px;
		float: right;
		width: 28%;
	}
	
	
	.exist_form_one {
		width: 69%;
		float: left;
	}
	
	.exist_form_two {
		width: 29%;
		float: right;
	}
	
	
	.exist_form_two .dark_row {
		margin-top: 0px;
	}
	
	.additional_password {
		width: 48%;
		float: right;
	}
	
	.additional_password.delivery_show, .delivery_error_show {
		clear: both;
		width: 48%;
		float: left;
	}
	
	.customer_form #submit {
		clear: both;
		width: 100%;
		margin: 20px auto 0 auto;
		float: none;
		display: block;
	}
	
	/*
	*--------------------
	* SEARCH      		+800px
	*--------------------
	*/


	.live_search .product_list .product {
		width: 50%;
	}
	
	.wishlist {
		margin-top: 0px;
	}
	
}

@media (min-width: 900px) {
	
	html:after {
		content: '900px +';
	}
	
	/*
	*--------------------
	* WIDTH         	+900px
	*--------------------
	*/
	
	.container {
		max-width: 900px;
	}
	
	/*
	*--------------------
	* HEADER      		+900px
	*--------------------
	*/
	
	.top li:first-child {
		margin-right: 20px;
		display: block;
	}
	
	/*
	*--------------------
	* FOOTER      		+900px
	*--------------------
	*/
	
	.cards li {
		max-width: 60px;
	}
	
	.pink_box {
		margin-top: 20px;
		float: right;
		width: 49%;
	}
	
	#existing_customer .pink_box, .order_shipping .pink_box {
		margin-top: 0px;
		width: 100%;
	}
	
	
	.forgotten_box {
		float: left;
		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;
	}
	
	/*
	*--------------------
	* SEARCH      		+9000px
	*--------------------
	*/
	
	.live_search .product_list .product {
		width: 33.33%;
	}

}

@media (min-width: 1000px) {
	
	html:after {
		content: '1000px +';
	}
	
	/*
	*--------------------
	* WIDTH         	+1000px
	*--------------------
	*/
	
	.container {
		max-width: 1000px;
	}
	
	/*
	*--------------------
	* HEADER            +1000px
	*--------------------
	*/
	
	.main_header > .container {
		padding: 30px;
	}
	
	.logo {
		padding: 5px 0 ;
	}
	
	.top li {
	}
	
	.top li a {
		font-size: 115%;
	}
	
	.top li:first-child {
	}
	
	.main_menu li:hover .menu_wrapper_1_8 {
		width: 900px;
		left: -300px;
	}
	
	.main_menu li ul#menu_1_8 {
		padding: 25px 20px;
	}
	
	#menu_1_46 li, #menu_1_46 li:nth-child(even) {
		float: left;
		width: 31%;
	}
	
	#menu_item_48, #menu_item_51 {
		margin: 0 3%;	
	}
	
	#menu_1_46 li a {
		min-height: 155px;
		font-size: 100%;
	}
	
	#menu_1_0 .columb_menu {
		width: 58%;
	}
	
	#menu_1_8 div:first-child {
		border-right: 1px solid #dbdee1;
		margin-right: 4%;
		width: 38%;
	}
	
	.main_menu li:hover .menu_wrapper_1_8 {
		top: 50px;
	}
	
	/*
	*--------------------
	* PROMO             +1000px
	*--------------------
	*/
	
	.promo i {
		background-repeat: no-repeat;
		background-position: left center;
		background-size: contain;
		font-style: normal;
	}
	
	.reviews.promo i {
		background-image: url('../assets/five-star.png');
		background-position: left center;
		padding-left: 102px;
	}
	
	.money_back.promo i {
		background-image: url('../assets/money-back.png');
		background-position: left center;
		padding-left: 25px;
	}
	
	.free.promo i {
		background-image: url('../assets/delivery.png');
		background-position: left center;
		padding-left: 45px;
	}
	
	/*
	*--------------------
	* SLIDER            +1000px
	*--------------------
	*/
	
	ul.mn_slides li span {
		font-size: 200%;
		padding: 140px 0;
	}

	/*
	*--------------------
	* BRIGHT IDEAS      +1000px
	*--------------------
	*/
	
	.bright_ideas div a {
		font-weight: 600;
		font-size: 1.2em;
	}
	
	.fav_image {
		max-width: none;
		min-height: 250px;	
	}
	
	
	ul.tabs li {
		font-size: 100%;
	}

	/*
	*--------------------
	* SEARCH      		+9000px
	*--------------------
	*/
	
	.live_search .product_list .product {
		width: 25%;
	}
}

@media (min-width: 1200px) {
	
	html:after {
		content: '1200px +';
	}
	
	/*
	*--------------------
	* WIDTH         	+1200px
	*--------------------
	*/
	
	.container {
		max-width: 1200px;
	}
	
	.home .content .container {
		max-width: 1500px;
	}
	
	/*
	*--------------------
	* HEADER            +1200px
	*--------------------
	*/
	
	.main_menu li a {
		font-size: 140%;
	}
	
	
	.main_menu li:hover .menu_wrapper_1_8 {
		top: 52px;
	}
	
	/*
	*--------------------
	* PROMO             +1200px
	*--------------------
	*/
	
	.promo_wrapper .container > div {
		line-height: 55px;
	}
	
	.promo_wrapper .container > div:after {
		height: 34px;
	}
	
	.free.promo i {
		padding-left: 55px;
	}
	
	.money_back.promo i {
		padding-left: 30px;
	}
	
	.reviews.promo i {
		padding-left: 125px;
	}
	
	.promo i {
		font-size: 125%;
	}
	
	/*
	*--------------------
	* FOOTER         	+1200px
	*--------------------
	*/
	
	.footer_links {
		padding: 90px 0;
	}
	
	footer .container {
		max-width: 1200px;
	}
	
	.foot_menu {
		font-size: 120%;
	}
	
	.footer_menu {
		margin-top: 20px;
	}
	
	.cards li {
		max-width: 70px;
	}
	
	.cards li.paypal {
		max-width: 90px;
	}
	
	.cards li.visa {
		max-width: 55px;
	}
	
	.cards li.mastercard {
		max-width: 43px;
	}
	
	.cards li.maestro {
		max-width: 43px;
	}
	
	/*
	*--------------------
	* NEWSLETTER        +1200px
	*--------------------
	*/
	
	.signup .container {
		padding: 45px 20px 70px 20px;
	}
	
	/*
	*--------------------
	* BRIGHT IDEAS      +1200px
	*--------------------
	*/
	
	.bright_ideas div a {
		font-weight: 600;
		font-size: 1.4em;
	}
	
	.order_details #paypalCheckoutContainer {
		padding-left: 3%;
	}
	
}
