/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/* Background */
body{
	background-color: #252525;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Format */
body, select, input, textarea{
	font-family: Helvetica, Arial, sans-serif;
	color: #3b3b3b;
}
h1, h2, h3, h4, h5, h6 {
	color: #3b3b3b;
}
h1{
	font-size:36px;
	line-height: 1.4;
}
h2{
	font-size:24px;
	margin: 0 0 20px 0;
	font-weight: 600;
	line-height: 1.4;
}
h3{
	font-size:18px;
	margin-bottom: 20px;
	line-height: 1.4;
}
h4{
	font-size:16px;
	line-height: 1.4;
}
h5{
	font-size:14px;
}
h6{
	font-size:12px;
}
p{
	font-size:14px;
	color:#666;
	line-height: 1.6;
}
a {
	text-decoration: none;
	
	transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
}

.align-right {
	text-align: right;
}
.align-center {
	text-align: center;
}

.export_csv_form {
	float: right;
    margin-left: 10px;
}

.export_csv_button {
	width: 133px;
	cursor: pointer;
	display: inline-block;
	background: #a2b022;
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	text-decoration: none;
	position: relative;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
}

/* HEADER */	

header {
	background: #252525;
	border-top: 3px solid #3c3c3c;
}
#logo {
	background: #2d2d2d;
	background-image: linear-gradient(#3c3c3c, #2d2d2d);
	float: left;
}
#logo a {
	display: block;
	padding: 7px 20px 16px 20px;
}
#mobile-logo, #toggle-nav, #mobile {
	display: none;
}

#subnav {
	float: right;
	padding-top: 18px;
}
#subnav ul {
	display: inline-block;
	vertical-align: bottom;
	border: 1px solid #3c3c3c;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 0;
}
#subnav ul li {
	display: inline-block;
	border-right: 1px solid #3c3c3c;
}
#subnav ul li:last-child {
	border-right: none;
}
#subnav ul li a {
	color: #aaa;
	font-weight: 700;
	font-size: 12px;
	display: block;
    text-decoration: none;
    padding: 13px 15px;
}
#subnav ul li a:hover {
	color: #fff;
}
#subnav .btn-icon {
	display: inline-block;
	vertical-align: baseline;
	margin-left: 15px;
}

#main-nav {
	background: #fff;
	border-bottom: 1px solid #e0e0e0;
}
#main-nav .container {
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
}
#main-nav ul {
	float: left;
	font-size: 0;
}
#main-nav ul li {
	border-right: 1px solid #e0e0e0;
	display: inline-block;
}
#main-nav ul li a {
	background: #fff;
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #3b3b3b;
	padding: 15px 20px;
}
#main-nav ul li a:hover, #main-nav ul li a.active {
	background: #fff;
	background-image: linear-gradient(#fff, #f7f6f6);
}
#main-nav p {
	float: right;
	text-align: right;
	padding: 15px 25px 15px 15px;
	line-height: 1;
}

/* STRUCTURE */

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

#main {
	padding: 40px 0;
	background: #f7f6f6;
}

#body-text {
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 15px 25px;
}
#body-text p {
	margin-bottom: 15px;
}

.content-box {
	margin-bottom: 25px;
}
.content-box:last-child {
	margin-bottom: 0;
}
.content-box header {
	background: #f2f2ec;
    color: #a2b022;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
}
.content-box header > * {
	color: #a2b022;
}
.content-box .body {
	background: #fff;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-top: none;
}
.content-box p {
	margin-bottom: 0;
}

.btn {
	display: inline-block;
	background: #a2b022;
	border: none;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	text-decoration: none;
	padding: 15px;
	cursor: pointer;
	
	transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
}
.btn.small {
	font-size: 13px;
	padding: 10px;
}
.btn-icon {
	display: inline-block;
	background: #a2b022;
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	text-decoration: none;
	padding: 12px 55px 12px 12px;
	position: relative;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
}
.btn-icon:hover {
	background: #8b971c;
}
.btn-icon:after {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	font-family: FontAwesome;
	content: '\f067';
	background: #8b971c;
	padding: 12px 15px;
	border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	-webkit-border-radius: 0 5px 5px 0;
}
.btn-icon.print:after {
	content: '\f02f';
}


/* Forms */

label {
	margin-bottom: 10px;
    display: block;
    font-size: 14px;
    font-weight: bold;
}
input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type='number'] {
    -moz-appearance:textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input, textarea, select {
	background: #fff;
	border: 1px solid #e0e0e0;
	padding: 10px;
	font-size: 14px;
	
	transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
}
input:focus, textarea:focus, select:focus {
	outline: none;
    border: 1px solid #a2b022;
}
label, input, textarea, select {
	width: 100%;
}
select {
	background: #fff url(../images/select.png) no-repeat right center;
    background-size: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    padding-right: 30px;
}
.form-item {
	margin-bottom: 15px;
}
.form-item.warning input, .form-item.warning textarea {
	border-color: #e1b2b3;
}

p.warning, p.success {
    padding: 10px;
    margin-bottom: 25px;
    position: relative;
}
p.warning {
	border:1px solid #E1B2B3;
	background: #FBE3E4;
	color: #985053;
}
p.success {
	border: 1px solid #8ebf59;
	background: #dff2bf;
	color: #669020;
}

/* Login */

#login {
    margin: 200px auto 0 auto;
    width: 400px;
    text-align: center;
}
	
#login-form {
	width: 100%;
	background-color: #fff;
	padding: 40px;
	margin: 15px auto 0 auto;
	text-align: center;
    -moz-border-radius: 3px; 
  	-webkit-border-radius: 3px; 
    border-radius: 3px;
	-moz-box-shadow: 0 3px 10px #333;
	-webkit-box-shadow: 0 3px 10px #333;
	box-shadow: 0 3px 10px #333;
}
#login-form label {
	font-weight: 400;
	text-align: left;
}		
	
/* Breadcrumbs */

.breadcrumbs{
	margin:0 0 5px 0;
}
	
.breadcrumbs li{
	float:left;
	font-size:12px;
	font-weight:bold;
	margin-right: 10px;
	margin-bottom: 10px;
}
	
.breadcrumbs li {
	color:#a2b022;
}
	
.breadcrumbs li a{
	color:#858484;
	background:transparent url(../images/breadcrumb-arrow.png) no-repeat right;
	padding:0 15px 0 0;
	text-decoration:none;
}
	
.breadcrumbs li a:hover{
	text-decoration:underline;
}
	
.breadcrumbs li.title{
	color:#858484;
}	
.breadcrumbs li.home a{
	float:left;
	width:14px;
	height:13px;
	padding:0;
	background:transparent url(../images/home-icon.png) no-repeat 0 0;
	text-indent:-9999px;
}	
.breadcrumbs li.home a:hover{
	background-position:0 -13px;
}

/* Pagination */

.pagination {
	padding: 40px 0 0 0;
}
.pagination li {
	color: #666;
	float: left;
	font-size: 14px;
	border: 1px solid #e0e0e0;
	border-right: none;
	background: #fff;
}
.pagination li:last-child {
	border-right: 1px solid #e0e0e0;
}
.pagination a {
	display: block;
    padding: 10px 13px;
    color: #666;
    background: #fff;
    
    transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.pagination a:hover {
	color: #fff;
	background: #a2b022;
}
.pagination .current {
    padding: 10px 13px;
    background: #a2b022;
    color: #fff;
}	
.pagination .disabled {
	color:#ccc;
    padding: 10px 13px;
}	
.pagination .pagination_break {
    padding: 10px 13px;
}

/* Page title */

.page-title {
	margin: 0 0 30px 0;
	border-bottom: 1px solid #e0e0e0;
}
.spacer {
	margin: 40px 0 30px 0;
	border-bottom: 1px solid #e0e0e0;
}
.page-title h1, .page-title h2, .page-title h3, .page-title h4 {
	float: left;
	width: 70%;
}
.page-title aside {
	float: right;
	width: 30%;
	text-align: right;
}

/* Looking good */

#looking-good {
	list-style: none;
}
#looking-good li {
	width: 288px;
	float: left;
}
#looking-good.owl-carousel li {
	width: 100%;
}
#looking-good .inner {
    margin: 0 10px;
    width: calc(100% - 20px);
    background: #fff;
}
#looking-good .inner-img {
	height: 270px;
	position: relative;
}
#looking-good img {
    display: block;
    max-height: 100%;
    width: auto;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
#looking-good .title-bar {
	background: #fff;
	padding: 20px 25px;
}
#looking-good .title-bar p {
	font-weight: 700;
}
	
/* Tables */

.table {
	border: 1px solid #e0e0e0;
	font-size: 13px;
}
.table-heading {
	border-bottom: 1px solid #e0e0e0;
	color: #a2b022;
	background: #fff;
	font-weight: bold;
}
.table-row {
	color: #666;
	position: relative;
}
.table-row:nth-child(odd) {
	background: #fafaf7;
}
.table-row:nth-child(even) {
	background: #f2f2ec;
}
.table-row a {
	color: #a2b022;
	border-bottom: 1px solid #a2b022;
}

.table-category {
	background: #a2b022;
	color: #fff;
	font-weight: bold;
	font-size: 15px;
    border-bottom: 1px solid #e0e0e0;
}
.table-category .cell {
	float: left;
	padding: 15px 25px;
	border-right: 1px solid #e0e0e0;
	min-height: 45px;
}
.table-category .cell.empty {
	width: 15%;
}
.table-category .cell.fill {
	width: 85%;
}
.table-category .cell:last-child {
	border-right: none;
}

.table-row-lg {
	background: #fff;
	border-bottom: 1px solid #e0e0e0;
	position: relative;
}
.table-row-lg:last-child {
	border-bottom: none;
}
.table-row-lg .col {
	padding: 25px;
	margin-top: 0;
	margin-bottom: 0;
}
.table-row-lg .right {
	background: #fafaf7;
    border-left: 1px solid #e0e0e0;
}

/* Offer ribbons */

.ribbon {
    position: absolute;
    top: 10px;
    left: -8px;
    padding: 0 10px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1px;
    z-index: 1;
    height: 0;
    border: 15px solid;
    border-left: 0 solid;
    border-right: 7px solid rgba(0,0,0,0) !important;
    -o-text-overflow: clip;
    text-overflow: clip;
}
.ribbon:after {
	content: '';
	position: absolute;
	left: 0;
	top: 15px;
	width: 0;
	height: 0;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #000;
}
.ribbon.new {
	border-color: #de3d29;
}
.ribbon.new:after {
	border-right-color: #92291c;
}
.ribbon.scented {
	border-color: #a823b0;
}
.ribbon.scented:after {
	border-right-color: #5a115f;
}
.ribbon.trolley {
	border-color: #8dcced;
}
.ribbon.trolley:after {
	border-right-color: #538dab;
}
.ribbon.shelf {
	border-color: #24aeae;
}
.ribbon.shelf:after {
	border-right-color: #147b7b;
}
.ribbon.shelf-2 {
	border-color: #2e9dd5;
}
.ribbon.shelf-2:after {
	border-right-color: #1e6d94;
}
.ribbon.best-seller {
	border-color: #e5cc29;
}
.ribbon.best-seller:after {
	border-right-color: #b7a31e;
}
.ribbon.special {
	border-color: #e59f2d;
}
.ribbon.special:after {
	border-right-color: #b57919;
}
.ribbon.halloween {
	border-color: #e59f2d;
}
.ribbon.halloween:after {
	border-right-color: #b57919;
}

.images {
	float: left;
	width: 15%;
    border-right: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}
.images a {
	display: block;
	width: 100%;
	height: 100%;
}
.images img {
    max-height: 100%;
    display: block;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;}

.mobile-images {
	display: none;
}

.details-lg {
	float: left;
	width: 35%;
	padding: 25px;
}
.details-med {
	float: left;
	width: 50%;
	padding: 25px;
}

.table-row-lg p.label {
	color: #3b3b3b;
}
.table-row-lg p {
	color: #666;
}

.table-five {
	float: left;
	width: 20%;
	padding: 15px;
}
.table-six {
	float: left;
	width: 16.6667%;
	padding: 15px;
}

.title {
	font-size: 16px;
	color: #a2b022 !important;
	margin-bottom: 10px;
}
.barcode {
	color: #aaa;
}
.item-info {
	float: left;
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid #e0e0e0;
}
.item-info:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}
.item-info p {
	line-height: normal;
	margin-bottom: 0 !important;
}
.table-row-lg .right .item-info {
	border-right: none;
	width: 30%;
	margin-right: 0;
}
.table-row-lg .right .item-info.sm-input {
	width: 40%;
}
.table-row-lg .right .item-info p {
    margin-bottom: 10px !important;
}
.table-row-lg .right .item-info:last-child {
    border-left: 1px solid #e0e0e0;
    padding-left: 10px;
}
.table-row-lg .right .item-info:last-child p {
    color: #a2b022;
}

/* Order pages */

span.gray {
	color: #666;
}

#order-details {
	min-height: 60px;
	margin-bottom: 40px;
}
#order-details p, #order-details label {
	font-size: 15px;
	color: #3b3b3b;
	margin-bottom: 10px;
}
#order-details p span, #order-details label span {
	color: #666;
}

.large-icon {
	padding-left: 75px;
	position: relative;
}
.large-icon:before {
	content: '';
	font-family: FontAwesome;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	background: #a2b022;
	position: absolute;
	top: 0; left: 0;
	text-align: center;
	color: #fff;
	font-size: 24px;
	line-height: 55px;
}
.ref:before {
	content: '\f0f6';
}
.date:before {
	content: '\f073';
}

#order-notes:before {
	content: '\f016';
	font-family: FontAwesome;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	background: #a2b022;
	position: absolute;
	top: 0; left: 0;
	text-align: center;
	color: #fff;
	font-size: 24px;
	line-height: 55px;
}
#order-notes {
	padding-left: 75px;
	position: relative;
	margin: 40px 0;
	min-height: 60px;
}
#order-notes p {
	margin-bottom: 10px;
}

#delivery_day, #delivery_month, #delivery_year {
	float: left;
	width: 33.3333%;
}
#delivery_day, #delivery_month {
	border-right: none;
}

.inline-label {
	position: relative;
}
.inline-label label {
    position: absolute;
    border-right: 1px solid #e0e0e0;
    padding: 12px 10px 10px 10px;
    width: auto;
    top: 0; bottom: 0; left: 0;
    margin: 0;
}
.inline-label input {
	padding-left: 40px;
}

.sm-input input {
	width: 35%;
	float: left;
	border-right: none;
}
.sm-input select {
	width: 65%;
}

.charsRemaining {
	margin-top: 15px;
    font-size: 12px;
    color: #666;
}

.form_submit {
	margin-top: 25px;
}

#change-password {
	width: 50%;
}

.hidden {
	display: none;
}

/* Footer */

footer {
	background: #252525;
}
footer .container {
	padding: 60px 0;
}
footer p, footer p a {
	color: #aaa;
	font-size: 12px;
}
footer p a:hover {
	border-bottom: 1px solid #aaa;
}
footer #subnav {
	padding-top: 0;
}
#footer-nav {
	float: left;
}
#footer-nav ul {
	margin-bottom: 10px;
}
#footer-nav ul li {
	float: left;
	margin-right: 25px;
}
#footer-nav ul li a {
	color: #fff;
	font-size: 14px;
	font-weight: bold;
}	
#footer-nav ul li a:hover {
	border-bottom: 1px solid #aaa;
}
	
/* Messages */

.message {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	text-align: center;
	padding: 10px;
}
.message p, .message a {
	font-size: 13px;
	margin-bottom: 0 !important;
}
.message a {
	border-bottom: 1px solid;
}

.message.info {
	background: #cde8f5;
	border: 1px solid #b3d9ed;
	color: #538bb6;
}
.message.info p, .message.info a {
	color: #538bb6;
}
.message.info a {
	border-color: #538bb6;
}

.message.success{
	border: 1px solid #8ebf59;
	background: #dff2bf;
}
.message.success p, .message.success a {
	color: #669020;
}
.message.success a {
	border-color: #669020;
}
	
.message.error{
    border:1px solid #E1B2B3;
	background: #FBE3E4;
}
.message.error p, .message.error a {
	color: #985053;
}
.message.error a {
	border-color: #985053;
}
	
	
/* My Account */
#my_account{
	float:left;
	width:100%;
	padding:0 0 30px 0;
	}
	
#my_account h3{
	font-size:2.8em;
	color:#4b4b4b;
	padding:0 0 10px 0;
	}
	
#my_account p{
	font-size:1.4em;
	padding:0 0 20px 0;
	}
	
#my_account p.tel strong{
	color:#a2b022;
	}
	
#my_account div.button a{
	font-size:1.4em;
	}
	
#client_address{
	float:right;
	width:290px;
	padding:20px 20px 0 20px;
	background-color:#f2f2f2;
	border:#e7e2e2 solid 1px;
	-webkit-border-radius:5px; 
	-moz-border-radius:5px;
	border-radius:5px;
	}
	
#client_address h4{
	color:#a2b022;
	font-size:1.8em;
	border-bottom:#dfdada solid 1px;
	margin:0 0 10px 0;
	}
	
#client_address p{
	color:#4b4b4b;
	font-size:1.4em;
	padding:0 0 20px 0;
	}
	
/* Contact */
#contact_form, #change_password{
	float:left;
	width:100%;
	padding:0 0 30px 0;
	}
	
#contact_form .form_item, #contact_form .form_submit, #change_password .form_item, #change_password .form_submit{
	float:left;
	width:100%;
	}
	
#contact_form .form_item, #change_password .form_item{
	padding:0 0 20px 0;
	}
	
#contact_form .form_item textarea, #change_password .form_item input{
	float:left;
	width:50%;
	padding:5px;
	margin:0;
	border:#d4d5cd solid 1px;
	background-color:#fff;
	color:#777575;
	font-size:14px;
	}
	
#contact_form .form_item textarea.focus_field, #change_password .form_item input.focus_field, #change_password .form_item input.focus_field{
	border:#b4b4b0 solid 1px;
	}
	
#contact_form .form_item label, #change_password .form_item label{
	float:left;
	width:100%;
	font-size:1.4em;
	padding:0 0 5px 0;
	color:#6D6E71;
	font-weight:bold;
	}
	
#contact_form .form_item .warning, #change_password .form_item .warning{
	color:#FF002E;
	}
	
#contact_form .form_submit input, #change_password .form_submit input{
	font-size:1.4em;
	}
	
/* Change Password */
#change_password{
	float:left;
	width:100%;
	padding:0 0 30px 0;
	}
	
/***********
GRID 
***********/

/*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	margin: 1% 0 1% 3%;
}
.col:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }

/*  GRID OF TWELVE  */
.span_12_of_12 {
	width: 100%;
}

.span_11_of_12 {
  	width: 91.41%;
}
.span_10_of_12 {
  	width: 82.83%;
}

.span_9_of_12 {
  	width: 74.25%;
}

.span_8_of_12 {
  	width: 65.66%;
}

.span_7_of_12 {
  	width: 57.08%;
}

.span_6_of_12 {
  	width: 48.5%;
}

.span_5_of_12 {
  	width: 39.91%;
}

.span_4_of_12 {
  	width: 31.33%;
}

.span_3_of_12 {
  	width: 22.75%;
}

.span_2_of_12 {
  	width: 14.16%;
}

.span_1_of_12 {
  	width: 5.583%;
}

/*  GO FULL WIDTH BELOW 768 PIXELS */
@media only screen and (max-width: 768px) {
	.col {  margin: 0 0 30px 0; }
    
    .col img {
	    width: 100%;
    }
    
    .span_1_of_12, .span_2_of_12, .span_3_of_12, .span_4_of_12, .span_5_of_12, .span_6_of_12, .span_7_of_12, .span_8_of_12, .span_9_of_12, .span_10_of_12, .span_11_of_12, .span_12_of_12 {
	width: 100%; 
	}
}

@media only screen and (max-width: 1200px) {
	
	#main-nav ul li a {
		padding: 15px 12px;
	}
	#main-nav p {
		padding: 15px 15px 15px 10px;
		font-size: 13px;
	}
	
	#footer-nav ul li {
	    margin-right: 15px;
	}
	footer #subnav ul li a {
		padding: 13px 10px;
	}
}

@media only screen and (max-width: 1024px) {
	
	/* Header */
	
	#main-nav {
		display: none;
	}
	#subnav ul {
		display: none;
	}
	#toggle-nav {
		display: block;
		margin-left: 25px;
	}
		
	#mobile {
		display: block;
		position: fixed;
	    top: 0;
	    right: -260px;
	    width: 260px;
	    bottom: 0;
	    background: #2f2e2e;
	    z-index: -1;
	    padding: 25px;
	    
	    transition: all 0.2s;
		-o-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-webkit-transition: all 0.2s;
	}
	#mobile.active {
		right: 0;
	}
	#mobile ul li.account a {
	    color: #8e8e8e;	
	}
	#mobile ul li.sep {
	    margin: 15px 0;
		border-top: 1px solid #424141;
	}
	#mobile ul li a {
		color: #fff;
		display: block;
		padding: 12px 0;
		font-size: 14px;
	}
	
	#toggle-nav {
	    float: right;
	    font-size: 24px;
	    color: #fff;
	    margin-top: 25px;
	    cursor: pointer;
	}
	
	body {
		position: relative;
		left: 0;
		transition: all 0.2s;
		-o-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-webkit-transition: all 0.2s;
	}
	body.active {
		left: -260px;
	}
		
	/* Order tables */
	
	.table-category .cell.empty {
	    width: 20%;
	}
	.table-category .cell.fill {
	    width: 80%;
	}
	.details-med {
		width: 100%;
	}
	.details-lg {
		width: 80%;
	}
	.images {
		width: 20%;
	}
	.reference {
		display: none;
	}
	.table-six {
		width: 20%;
	}
}

@media only screen and (max-width: 768px){
	
	header {
		border-top: none;
	}
	header .container {
	    width: 100%;
		padding: 0 5% 0 0;
	}
	#desktop-logo {
		display: none;
	}
	#mobile-logo {
		display: block;
	}
	
	.page-title h1, .page-title h2, .page-title h3, .page-title h4 {
		width: 100%;
	    margin: 0 0 10px 0;
	}
	.page-title aside {
	    float: left;
	    margin-bottom: 20px;
	    width: 100%;
	    text-align: left;
	}
	
	.breadcrumbs li.title {
		display: block;
		width: 100%;
	}
	
	/* Order tables */
	
	#order-details {
		margin-bottom: 0;
		min-height: inherit;
	}
	.delivery {
		display: none;
	}
	.table-six {
		width: 25%;
	}
	
}

@media only screen and (max-width: 667px) {
	
	.table-row-lg .col, .table-category .cell {
		padding: 15px;
	}
	
	.table-category .cell.empty, .images {
		display: none;
	}
	.details-lg, .details-med {
		width: 100%;
	}
	.table-row-lg .right {
		border-left: none;
	}
	
	.mobile-images {
		display: block;
		margin-top: 10px;
	}

	
}

@media only screen and (max-width: 568px) {
	
	.col {
	    margin: 0 0 15px 0;
	}
	
	#mobile-logo {
		width: 30px;
	}
	#toggle-nav {
	    margin-top: 17px;
	}
	#subnav {
	    padding-top: 12px;
	}
	#subnav .btn-icon {
		margin-left: 0;
	    padding: 10px 55px 10px 12px;
	}
	#subnav .btn-icon:after {
		padding: 10px 15px;
	}
	
	.item-info {
		margin-bottom: 5px;
	}
	.table-row-lg .right .item-info {
		width: 100%;
	    margin-right: 0;
	    padding-right: 0;
	    margin-bottom: 10px;
	}
	.table-row-lg .right .item-info:last-child {
		padding-left: 0;
		border-left: none;
	}
	
	/* Order tables */
	
	.large-icon, #order-notes {
		padding-left: 0;
	}
	.large-icon:before, #order-notes:before {
		display: none;
	}
	.order-date {
		display: none;
	}
	.table-six {
		width: 33.3333%;
	}
	
	footer .container {
		padding: 30px 0;
	}
	#footer-nav ul li {
		display: block;
		float: none;
		margin-bottom: 5px;
	}
}

@media only screen and (max-width: 480px) {
	
	/* Order tables */
	
	.week {
		display: none;
	}
	.table-six {
		width: 50%;
	}
	
	
	#login {
		width: auto;
		margin: 50px auto 0 auto;
	}
	#login-form {
	    padding: 25px;
	}
}
