/* CSS Document */

/*
////////// External CSS
*/

@import url('jquery/jquery-ui.css');
@import url('fonts/web.css');
@import url('fonts/awesome.css');
@import url('sizes.css');
@import url('animate.css');
@import url('fancybox.css');

/*
////////// Reset CSS
*/

@import url('reset.css');

/*
////////// Main Classes & Text
*/

body { 
	font-size:12px;
	font-family: 'PT-Sans', Arial, Helvetica, sans-serif;
	font-weight:400;
	background:#fff;
}

a { 
	text-decoration:none; 
	outline:none;
	color:#222; 
}

p {
	font-family: 'PT-Sans', Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.clear { clear:both; }
.left { float:left; }
.right { float:right; }
.center { margin:0 auto; }
.show { display:block; }
.hide { display:none; }
.txt-left { text-align:left; }
.txt-right { text-align:right; }
.txt-center { text-align:center; }
.capitalize { text-transform:capitalize; }
.uppercase { text-transform:uppercase; }
.lowercase { text-transform:lowercase; }
h1,h2,h3,h4,h5,h6 { font-weight:400; }

.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/*
////////// Tweaks
*/

input::-moz-focus-inner { border:0; }
::-webkit-scrollbar { height:0 !important; width:0 !important; }

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

/*
////////// Responsivness Objects
*/


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

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

/*
////////// Javascript Disabled
*/

div.no-java {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	height: 100vh;
	width: 100vw;
	background: rgba(255,255,255,0.6);
	z-index: 9999;
}

div.no-java p {
	position:absolute;
	height:22px;
	width:100%;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
	z-index:100;
	font-family: "Times New Roman", Times, serif;
	color: #666;
	font-size: 22px;
	text-align: center;
}

/*
////////// Effects & Tools
*/

.dark { background:#fbfbfb; }
.light { background:#fff; }

.red { color: #cc0000; }

a,
a:hover,
button,
button:hover,
input[type=submit],
input[type=submit]:hover { 
	transition:background 0.5s; 
}

.flash { 
	-moz-animation:flash 2s ease-out; 
	-moz-animation-iteration-count:1; 
	-webkit-animation:flash 2s ease-out; 
	-webkit-animation-iteration-count:1; 
	-ms-animation:flash 2s ease-out; 
	-ms-animation-iteration-count:1; 
}

@-webkit-keyframes flash { 
	0% { background-color:none; } 
	50% { background-color:#fbf8b2; } 
	100% {background-color:none; } 
}

@-moz-keyframes flash { 
	0% { background-color:none; } 
	50% { background-color:#fbf8b2; } 
	100% { background-color:none; } 
}

@-ms-keyframes flash { 
	0% { background-color:none;} 
	50% { background-color:#fbf8b2; } 
	100% { background-color:none; } 
}

.dot-top { border-top:1px dotted #ccc; }
.dot-bottom { border-bottom:1px dotted #ccc; }

div#loading { 
	position:absolute; 
	height:100px; 
	width:100px; 
	top:0; 
	right:0; 
	bottom:0; 
	left:0; 
	margin:auto; 
	background:url(../img/loading_big.gif) center center no-repeat transparent; 
	background-size:100px 100px; 
	z-index:100; 
}

div#spinner {
	display:table;
	margin:0 auto; 
	width:100%;
	background:url(../img/loading_big.gif) center center no-repeat transparent; 
	background-size:50px 50px; 
}

/*
////////// Logo
*/

div.logo {
	float:left;
	display:table;
}

div.logo h1 {
	width:365px;
	height:38px;
	margin: 18px 0;
	font-size: 45px;
	line-height: 45px;
	text-transform: uppercase;
}

/*
////////// Offline
*/

div.offline { }

div.offline h1 {
	margin:100px 0 0 0;
	padding:0 10px;
	font-size:36px;
	text-align:center;
	color:#555;
	line-height:100px;
	letter-spacing:20px;
	text-transform:uppercase;
	font-family:"Times New Roman", Times, serif;
	font-weight:bolder;
	border-top:1px solid #ccc;
	border-bottom:1px solid #ccc;
}

div.offline p {
	margin:20px 0 0 0;
	padding:0 10px;
	text-align:center;
	font-size:20px;
	color:#666;
	font-family:"Times New Roman", Times, serif;	
}

div.offline p span {
	color:#000;	
}

div.offline div.form {
	margin:50px auto;
	width:300px;
}

div.offline div.form p {
	font-family:"Times New Roman", Times, serif;
	color:#555;
	font-size:12px;
	text-align:left;
	letter-spacing:1px;
	margin:0;
	padding:0;
}

div.offline div.form input[type=text],
div.offline div.form input[type=password] {
	border:none;
	border-bottom:1px dashed #ccc;
	background:none;	
}

/*
////////// Form Elements
*/

input[type=text],
input[type=password],
textarea { 
	-webkit-appearance:none;
	font-family: 'DroidSans';
}

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

input[type=radio] { 
	float:left; 
	border:none; 
}

select,
input[type=text],
input[type=password] { 
	height:30px; 
	width:100%; 
	padding:0 8px; 
	border:1px solid #ccc;
	background:#fff;
	font-size:12px;
	font-family: 'DroidSans';
}

input[type=text].big {
	height:35px;
	padding:0 8px;
}

textarea { 
	width:100%;
	padding:8px;
	border:1px solid #ccc;
	background:#fff;
	resize:none;
	font-size:12px;
}

input[type=checkbox],
input[type=radio] { 
	display:none; 
}

input[type=checkbox] + label.check,
input[type=radio] + label.check,
div.checkbox { 
	float:left; 
	display:block; 
	height:18px; 
	width:18px;
	line-height:18px; 
	border:1px solid #ccc;
	vertical-align:middle;
	background:#fff; 
	cursor:pointer; 
}

input[type=checkbox] + label.check-big,
input[type=radio] + label.check-big { 
	float:left; 
	display:block; 
	height:28px; 
	width:28px;
	line-height:28px; 
	border:1px solid #ccc;
	vertical-align:middle; 
	background:#fff; 
	cursor:pointer; 
}

input[type=checkbox]:checked + label.check,
input[type=radio]:checked + label.check,
input[type=checkbox]:checked + label.check-big,
input[type=radio]:checked + label.check-big,
div.checkbox.check { 
	background:url(../img/check@2x.png) center center no-repeat #fff; 
	background-size:16px 16px; 
}

.selectboxit-container .selectboxit,
.selectboxit-container .selectboxit-options,
.selectboxit-option-first,
.selectboxit-option-last {
	font-family:'DroidSans';
	border-radius: 0px;
}

.selectboxit-btn {
	border:1px solid #ccc;
}

.selectboxit-container .selectboxit-options {
	max-height: 84px;
}

div.captcha {
	height:30px;
	width:100px;
}

div.captcha.c1 {
	background:url(../img/captcha/case1.png) top left no-repeat;
}

div.captcha.c2 {
	background:url(../img/captcha/case2.png) top left no-repeat;
}

div.captcha.c3 {
	background:url(../img/captcha/case3.png) top left no-repeat;
}

div.captcha.c4 {
	background:url(../img/captcha/case4.png) top left no-repeat;
}

div.captcha.c5 {
	background:url(../img/captcha/case5.png) top left no-repeat;
}

/*
////////// Validator
*/

label.error,
p.error { 
	float:right; 
	padding:2px;
	color:#c52026;
	font-size:11px;
	font-family:'DroidSans'; 
}

textarea.error,
input.error {
	border-color:#e6a0a0;
	background:#f7e2e2;
}

div#check_class label.error,
div#radio_release label.error,
div#check_pay label.error { 
	float:none;
	font-size:18px;
	line-height:18px;
	color:#c52026;
	font-weight:bold;
}

input#tot_quote.error,
input.quote_value.error { 
	border-color:#c52026; 
}

input.list.error {
	color:#c52026;
}

/*
////////// Buttons
*/

a.text,
a.text-big,
a.text-huge,
a.icon,
a.icon-big,
a.toggle,
a.text-cart,
input.text,
input.text-big,
input.text-huge,
input.icon,
input.icon-big,
button.text,
button.text-big,
button.icon,
button.icon-big {
	display:block;
	cursor:pointer;
	text-align:center;
	text-decoration:none;
	color:#fff;
	background:#cc0000;
}

a.text:hover,
a.text-big:hover,
a.text-huge:hover,
a.icon:hover,
a.icon-big:hover,
a.toggle:hover,
a.toggle#active,
a.text-cart:hover,
input.text:hover,
input.text-big:hover,
input.text-huge:hover,
input.icon:hover,
input.icon-big:hover,
button.text:hover,
button.text-big:hover,
button.icon:hover,
button.icon-big:hover {
	background:#333;
}

a.text,
input.text,
button.text {
	height:30px;
	min-width:75px;
	padding:0 15px;
	font-size:12px;
	line-height:30px;
	text-transform:uppercase;
}

a.text-cart,
a.text-big,
input.text-big,
button.text-big {
	height:35px;
	min-width:75px;
	padding:0 15px;
	font-size:11px;
	letter-spacing:0.5px;
	line-height:35px;
	text-transform:uppercase;
}

a.text-huge,
input.text-huge {
	padding:0 20px;
	height:55px;
	font-size:13px;
	letter-spacing:0.5px;
	line-height:55px;
	text-transform:uppercase;
}

a.text-cart {
	padding:0 12px;
}

a.text-big.disabled {
	background:#ddd;
	color:#111;
}

a.icon,
input.icon,
button.icon {
	padding:0;
	height:25px;
	width:25px;
	white-space:nowrap;
}

a.icon-big,
input.icon-big,
button.icon-big {
	padding:0;
	height:35px;
	width:35px;
	white-space:nowrap;
}

a.button {
	padding:0;
	height:23px;
	width:23px;
	line-height:21px;
	text-align:center;
}

a.icon {
	line-height:25px;
}

a.icon-big {
	line-height:35px;
}

input.paypal {
	display:block;
	cursor:pointer;
	padding:0;
	width:230px;
	height:45px;
	border:none;
	background:url(../img/web/pp_button.png) top left no-repeat;
}

input.paypal.small {
	width:179px;
	height:35px;
	background-size:179px 35px;
}

.ok { display:block; height:22px; color:#9ee59e; }
.ko { display:block; height:22px; color:#e6a0a0; }

/*
////////// Margins
*/

.ml-1 { margin-left:1px; }
.ml-2 { margin-left:2px; }
.ml-5 { margin-left:5px; }
.ml-10 { margin-left:10px; }
.ml-15 { margin-left:15px; }
.ml-20 { margin-left:20px; }
.mr-1 { margin-right:1px; }
.mr-2 { margin-right:2px; }
.mr-5 { margin-right:5px; }
.mr-10 { margin-right:10px; }
.mr-15 { margin-right:15px; }
.mr-20 { margin-right:20px; }
.mb-1 { margin-bottom:1px; }
.mb-2 { margin-bottom:2px; }
.mb-5 { margin-bottom:5px; }
.mb-10 { margin-bottom:10px; }
.mb-15 { margin-bottom:15px; }
.mb-20 { margin-bottom:20px; }
.mt-1 { margin-top:1px; }
.mt-2 { margin-top:2px; }
.mt-5 { margin-top:5px; }
.mt-10 { margin-top:10px; }
.mt-15 { margin-top:15px; }
.mt-20 { margin-top:20px; }

/*
////////// Page Containers & Wrappers
*/

div.wrapper {
	display:table;
	margin:0 auto;
	padding:0 15px;
	width:1200px;
}

div.home-container {
	display:table;
	margin:90px auto;
	width:1200px;
	background:#fff;
}

div.home-banner {
	display:table;
	width:100%;
}

div.main-container,
div.grid-container {
	display:table;
	margin:0 auto;
	padding:15px;
	width:1200px;
	background:#fff;
}

div.brand-container {
	width:100%;
	padding:15px 0;
	background:#f0f0f0;
	border-top:1px solid #dcdcdc;
	border-bottom:1px solid #dcdcdc;
}

div.printing-container {
	width:100%;
	padding:70px 0;
	margin: 0 0 50px 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

div.main-container {
	padding-bottom:80px;
}

header,
footer {
	width:100%;
}

header {
	position:relative;
	z-index:10;
	border-bottom: 1px solid #ddd;
}

footer {
	display:table;
}

div.footer-info {
	border-top: 1px solid #ddd;
	padding:20px 10px;
}

div.footer-info p {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 1px;
	color: #666;
}

header div.top-nav {
	width: 100%;
	height: 50px;
}

header div.main-nav {
	width:100%;
	min-height:150px;
	background:#fff;
}

header div.main-nav div.wrapper {
	padding:0 15px;
}

header div.category-nav {
	position: relative;
	height:50px;
}

div#nav-bar {
	float: right;
}

div#nav-bar ul {
	list-style-type: none;
}

div#nav-bar > ul > li {
	display: inline-block;
	margin-left: 25px;
}

div#nav-bar ul li a {
	text-transform: uppercase;
	font-weight:500;
	font-size: 14px;
	letter-spacing: 1px;
	line-height: 50px;
}

iframe.catalog {
	margin:20px 0 10px 0;
	width:100%;
	height:900px;
}

/*
////////// Common Elements
*/

div.separator { 
	margin:10px 0; 
	height:2px; 
	width:100%; 
	background:#ccc; 
	border-bottom:1px solid #fff; 
}

div.separator-dash {
	margin:20px 0;
	height:1px;
	width:100%;
	border-bottom:1px dashed #ccc;
}

p.title { 
	padding:0 0 0 10px;
	line-height:35px;
	font-size:20px;
	color:#222;
}

p.subtitle { 
	padding:0 0 0 10px;
	font-size:20px;
	line-height:40px;
	color:#222;
}

div.dashboard {
	display:table;
	width:1000px;
	padding:10px 10px 20px 10px;
	margin:0 auto 20px auto;
	border-bottom:1px solid #ccc;
}

div.dashboard h1 {
	margin:0 0 20px 0;
	line-height: 30px;
    font-weight: 700;
    font-size: 22px;
    color: #010101;
    text-transform: uppercase;
	text-align:center;
}

div.dashboard p {
	font-size:15px;
}

h2.slogan {
	color:#fff;
	font-family:'PT-Sans';
	font-weight:200;
	font-size:40px;
	text-align:right;
	padding:0 0 10px 0;
}

h3.slogan-text {
	color:#ddd;
	font-family:'PT-Sans';
	font-weight:300;
	font-size:18px;
	text-align:right;
}

/*
////////// 404
*/

div.not-found { 
	margin:100px auto; 
	text-align:center; 
	width:400px;
}

div.not-found h3 { 
	color:#ddd; 
	font-family:"Times New Roman", Times, serif;
	font-size:150px; 
	letter-spacing:1px;
	padding:0 0 30px 0;
	line-height:50px;
}

div.not-found h4 { 
	color:#ddd; 
	font-size:27px;
	margin:0 0 20px 0;
	font-family:"Times New Roman", Times, serif;
}

div.not-found p { 
	color:#ccc;
	font-size:16px;
	font-style:italic;
	font-family:"Times New Roman", Times, serif;
}

div.not-found div.btn {
	margin:10px auto;
	width:150px;
}

/*
////////// Login
*/

p#error { 
	display:none; 
	padding:0 0 10px 0; 
	text-align:center; 
	font-size:10px; 
	color:#cc0000; 
}

/*
////////// Breadcrumb and Title
*/

section.breadcrumb {
	width:100%;
	padding:25px 0;
	margin:0 0 25px 0;
	border-bottom:1px solid #ddd;
}

div.bc {
	border-collapse:collapse;
	background: #fff;
}

div.bc a {
	display:table-cell;
	border:1px solid #ddd;
	line-height:28px;
	text-align:center;
	font-weight:500;
	font-size: 14px;
	color:#333;
	padding:0 10px;
}

div.bc a:hover {
	color: #111;
	background: #ddd;
}

div.bc a.home {
	color:#cc0000;
	padding:0 15px;
}

div.bc a.home:hover {
	color: #fff;
	background: #cc0000;
}

div.page-title {
	margin:20px 0 0 0;
	width:100%;
}

div.page-title h1 {
	font-size:20px;
	font-weight:500;
	letter-spacing:1px;
	text-transform:uppercase;
}

div.page-title h2 {
	font-size:22px;
	font-weight:500;
	letter-spacing:1px;
	text-transform:uppercase;
}

/*
////////// Notice Box
*/

div.error_box,
div.success_box,
div.warn_box { 
	margin:10px 0 20px 0; 
	font-family:'DroidSans';
}

div.error_box {	
	border:1px solid #e6a0a0; 
	background:#f7e2e2;
}

div.success_box { 
	border:1px solid #9ee59e;
	background:#e2f7e2;
}

div.warn_box { 
	border:1px solid #fde800; 
	background:#fffcda;
}

div.error_box div.wrp,
div.success_box div.wrp,
div.warn_box div.wrp { 
	padding:15px; 
}

div.error_box p,
div.success_box p,
div.warn_box p { 
	font-size:16px;
	color:#050708;
}

div.error_box ul,
div.success_box ul,
div.warn_box ul {
	list-style-type:disc; 
	margin:10px 0 0 15px; 
	color:#050708; 
	line-height:20px; 
}

/*
////////// Menu
*/

ul.info {
	float:right;
	list-style-type:none;
	margin:0 0 15px 0;
	height:20px;
}

ul.info li {
	display:inline-block;
	margin:0 0 0 20px;
}

ul.info li p,
ul.info li a {
	font-size:12px;
	color:#fff;
	font-family:'PT-Sans';
}

ul.info li i {
	font-size:18px;
}

div.cart-wrapper {
	float: right;
}

div#cart-box {
	display: table;
	height: 50px;
	margin: 50px 0 0 0;
}

div#cart-box a {
	float: left;
	display: block;
	height: 50px;
	line-height: 50px;
	background: #f5f5f5;
	font-family: 'PT-Sans';
	font-size: 14px;
	padding:0 20px;
}

div#cart-box i {
	float: left;
	width: 50px;
	height: 50px;
	background: #cc0000;
	color: #fff;
	line-height: 50px;
	text-align: center;
	font-size: 20px;
}

div.search-header {
	display:table;
	width:300px;
	background:#cc0000;
	margin: 20px 0 0 0;
}

div.search-header input[type=text] {
	float:left;
	background:none;
	border:none;
	color:#fff;
	height:40px;
	line-height:40px;
	padding:0 10px;
	width:calc(100% - 40px);
}

div.search-header button[type=submit] {
	float:right;
	border:none;
	background:none;
	color:#fff;
	height:40px;
	width:40px;
}

nav.main-lang {
	width:90px;
}

nav.main-lang p {
	padding:0 10px;
	height:50px;
	line-height:50px;
	font-weight:500;
	font-size: 14px;
	letter-spacing: 1px;
	color: #333;
	text-transform:uppercase;
	cursor:pointer;
}

nav.main-lang p i {
	float:right;
	font-size:10px;
	line-height:48px;
	color: #bbb;
}

nav.main-lang p:hover {
	color:#111;
}

nav.main-lang ul {
	display:none;
	list-style-type:none;
	position: absolute;
	background: #fff;
	top:40px;
	width:inherit;
	z-index:10;
}

nav.main-lang > ul > li {
	height:30px;
	margin: 0;
}

nav.main-lang ul li:hover {
	color:#111;
	transition: all 0.2s linear 0s;
}

nav.main-lang ul li#active {
	background: #f2f2f2;
	transition: all 0.2s linear 0s;
}

nav.main-lang ul li a {
	display:block;
	height:30px;
	line-height:30px;
	color:#666;
	font-weight:500;
	font-size: 14px;
	letter-spacing: 1px;
	padding:0 10px;
	text-transform:uppercase;
}

nav.main-lang ul li#active a {
	color: #111;
}

nav.main-menu {
	position:relative;
}

nav.main-menu ul {
	list-style-type:none;
}

nav.main-menu > ul {
	text-align: right;
}

nav.main-menu > ul > li {
	display:inline-block;
	padding:0 0 0 20px;
}

nav.main-menu > ul > li:hover,
nav.main-menu > ul > li#active {
	
}

nav.main-menu > ul > li:hover > a {
	color:#000;
}

nav.main-menu > ul > li > a {
	display:block;
	padding:0 10px;
	color:#333;
	font-size:14px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height:50px;
	height:50px;
	text-transform:uppercase;
}

nav.main-menu > ul > li > ul {
	display:none;
	position:absolute;
    left:0;
	width:100%;	
	padding:20px;
	background:#fff;
	z-index:99;
	box-shadow: 0 5px 13px rgba(0, 0, 0, 0.5);
}

nav.main-menu > ul > li:hover > ul { 
	display:table;
	width:100%;
}

nav.main-menu > ul > li > ul > li {
	display: inline-table;
	margin:2px 5px;
	width:calc(20% - 10px);
}

nav.main-menu > ul > li > ul > li div.img {
	width:100%;
	height:75px;
	background-size:cover;
	margin:0 0 15px 0;
}

nav.main-menu > ul > li > ul > li a {
	display:block;
	color:#333;
	font-size:13px;
	font-weight: 500;
	letter-spacing: 1px;
	padding:0 0 10px 0;
	text-align:left;
}

nav.main-menu > ul > li > ul > li a:hover {
	color:#000;
}

nav.main-menu > ul > li > ul > li ul {
	display:table;
}

nav.main-menu > ul > li > ul > li ul li {
	display:block;
	float:none;
	width:100%;
}

nav.main-menu > ul > li > ul > li ul li a {
	line-height:20px;
	padding:0;
	color:#111;
	font-size:12px;
	font-weight: 500;
	letter-spacing: 1px;
	text-align:left;
	border-bottom:1px dotted #ddd;
}

nav.main-mobile {
	display:none;
	margin:5px 0 10px 0;
	width:100%;
	height:55px;
	background:#2c2c2c;
}

nav.main-mobile p {
	display:inline-block;
	padding:0 20px;
	height:55px;
	width:100%;
	line-height:55px;
	font-weight:500;
	color:#fff;
	font-size:20px;
	text-transform:uppercase;
	cursor:pointer;
	transition: all 0.2s linear 0s;
}

nav.main-mobile p i,
nav.main-mobile a i {
	float:right;
	font-size:25px;
	height:50px;
	line-height:55px;
}

nav.main-mobile a i {
	line-height:50px;
}

nav.main-mobile p:hover {
	background:#cc0000;
	transition: all 0.2s linear 0s;
}

nav.main-mobile ul {
	display:none;
	list-style-type:none;
	background:#4e4e4e;
	width:100%;
}

nav.main-mobile ul li {
	width:100%;
}

nav.main-mobile ul li a {
	display:block;
	height:50px;
	line-height:50px;
	color:#fff;
	padding:0 20px;
	font-size:15px;
	text-transform:uppercase;
	transition:all 0.2s linear;
}

nav.main-mobile ul li a:hover {
	background:#cc0000;
	transition:all 0.2s linear;
}

nav.main-mobile ul li a.active {
	background:#2d2d2d;
}

nav.main-mobile ul li ul {
	display:none;
	background:#2d2d2d;
	padding:10px 10px 20px 10px;
	box-shadow:0 5px 13px rgba(0, 0, 0, 0.2);
}

nav.main-mobile ul li ul li {
	display:inline-table;
	width:50%;
}

nav.main-mobile ul li ul li a {
	background:#2d2d2d;
	padding:0 10px;
	height:30px;
	line-height:30px;
	color:#fff;
	font-weight:500;
	font-size:14px;
}

nav.main-mobile ul li ul li a:hover {
	background:#2d2d2d;
	color:#cc0000;
}

nav.main-mobile ul li ul li ul {
	display:block;
	padding:5px 0 15px 0;
	box-shadow:none;
}

nav.main-mobile ul li ul li ul li {
	display:block;
	width:100%;
}

nav.main-mobile ul li ul li ul li a {
	background:none;
	padding:0 10px 5px 10px;
	line-height:20px;
	color:#fff;
	font-weight:400;
	font-size:11px;
	color:#cc0000;
}

nav.main-mobile ul li ul li ul li a:hover {
	color:#fff;
}

nav.main-mobile ul li ul li ul li ul {
	display:none;
	padding:0 0 5px 10px;
}

nav.footer-menu {
	margin:50px 0 0 0;
}

nav.footer-menu ul {
	list-style-type:none;
}

nav.footer-menu ul li {
	display:inline-table;
	padding:0 12px 10px 12px;
	width:calc(25% - 3px);
}

nav.footer-menu ul li a {
	font-weight:500;
	font-size:20px;
	letter-spacing: 1px;
	height:auto;
	color:#7e7a7d;
	text-transform:uppercase;
}

nav.footer-menu ul li a:hover {
	color:#111;
}

nav.footer-menu ul li div.text,
nav.footer-menu ul li ul {
	display:table;
	padding:15px 0;
}

nav.footer-menu ul li ul li {
	display:table;
	height:25px;
	width:100%;
	padding:0 0 5px 0;
}

nav.footer-menu ul li div i {
	float:left;
	color:#cc0000;
	width:30px;
	padding:0 10px 0 0;
}

nav.footer-menu ul li div p {
	float:left;
	color:#111;
	font-size:14px;
	line-height:22px;
}

nav.footer-menu ul li div p span {
	float:left;
	color:#111;
	font-size:12px;
	line-height:18px;
}

nav.footer-menu ul li ul li a {
	line-height:25px;
	font-size:14px;
	color:#aaa;
	font-weight:500;
	padding:0;
}

nav.footer-menu ul li ul li a:hover {
	color:#cc0000;
}

nav.tab-menu {
	display:table;
	padding:5px 0 0 0;
	width:100%;
	margin:25px 0 0 0;
	text-align:center;
}

nav.tab-menu ul {
	list-style-type:none;
	display:inline-table;
	text-align:center;
}

nav.tab-menu ul li {
	float:left;
	padding:0 20px;
	border-left:1px solid #ccc;
}

nav.tab-menu ul li:first-child {
	border:none;
}

nav.tab-menu ul li a {
	display:block;
	line-height:30px;
	font-weight:700;
	font-size:16px;
	color:#010101;
	text-transform:uppercase;
}

nav.tab-menu ul li a:hover {
	color:#111;
}

/*
////////// Grids
*/

table.grid,
table.grid-cart,
table.grid-checkout {
	border-collapse:collapse;
	width:100%;
	border: 1px solid #e9e9e9;
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease-in 0s;
	font-family: 'Roboto';
}

table.grid td,
table.grid-cart td {
	height:35px;
	vertical-align:middle;
	padding:5px 8px;
	border:1px solid #f0f0f0;
}

table.grid-checkout td {
	border:none;
	padding:10px;
	vertical-align:middle;
	font-family: 'DroidSans';
}

table.grid-checkout td h2 {
	font-size:15px;
	margin:0 0 2px 0;
}

table.grid-cart td.color-box {
	display:none;
}
table.grid-cart td.color-text {
	display:table-cell;
}

table.grid td.action {
	padding:5px;
}

table.grid thead,
table.grid-cart thead {
	vertical-align:middle;
	background:#fff;
	color:#282828;
	font-size:11px;
	text-transform:uppercase;
	font-weight:500;
	letter-spacing:0.5px;
}

table.grid thead td,
table.grid-cart thead td {
	height:16px;
	line-height:16px;
}

table.grid-cart thead td {
	background:#f0f0f0;
	border:1px solid #ddd;
}

table.grid-cart td input[type=text] {
	border:none;
	height:25px;
	line-height:25px;
	padding:0;
}

table.grid-cart td input.error {
	color:#cc0000;
}

table.grid thead a {
	display:block;
	color:#282828;
}

div.color-sample {
	height:20px;
	width:20px;
	border:1px solid #ddd;
	background:#fff;
}

div.color-sample div {
	margin:1px;
	height:16px;
	width:16px;
}

div#brand-list {
	position:relative;
	width:1200px;
	height:100px;
	margin:0 auto;
	padding:10px;
}

div#brand-list ul { 
	opacity: 0;
	-webkit-transition: opacity 1s ease-out;
	-moz-transition: opacity 1s ease-out;
	-ms-transition: opacity 1s ease-out;
	-o-transition: opacity 1s ease-out;
	transition: opacity 1s ease-out;
}
		
div#brand-list.ready ul{ opacity: 1; }

/*
////////// Category Tree
*/

ul.preview-tree,
ul.check-tree { 
	list-style-type:none;
}

ul.preview-tree li { 
	margin:0 0 2px 0;
	height:37px;
	border:1px solid #ddd;
	background:#fff;
	line-height:35px;
}

ul.preview-tree li span.level { 
	display:block;
	height:35px;
	width:35px;
	border-right:1px solid #ddd;
	text-align:center;
}

ul.preview-tree li p { 
	padding:0 10px;
}

ul.preview-tree li div.right-box { 
	float:right;
	padding:5px;
}


ul.preview-tree ul,
ul.preview-tree ul ul,
ul.preview-tree ul ul ul,
ul.preview-tree ul ul ul ul,
ul.preview-tree ul ul ul ul ul { 
	margin-left:37px; 
}

/*
////////// Editor Boxes
*/

div.col-half {
	display:table;
	margin:0 0 20px 0;
	width:calc(50% - 10px);
	background:#fff;
    border:1px solid #e9e9e9;
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
}

div.col-full,
div.col-media {
	display:table;
	margin:0 0 20px 0;
	width:100%;
	background:#fff;
    border:1px solid #e9e9e9;
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
}

div.col-btn { 
	display:table;
	width:100%; 
	padding:15px; 
	background:#fff;
    border:1px solid #e9e9e9;
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
}

div.col-half h2,
div.col-full h2,
div.col-media h2 { 
	color:#212121;
	margin:0 10px; 
	font-size:12px; 
	line-height:40px;
	letter-spacing:0.5px;
	padding:0 0 0 2px;
	border-bottom:1px solid #ccc;
	text-transform:uppercase;
}

div.col-half h2.nb,
div.col-full h2.nb,
div.col-media h2.nb { 
	border:none;
}

div.col-half div.wrp,
div.col-full div.wrp {
	
}

div.col-half div.wrp div.form,
div.col-full div.wrp div.form {
	padding:15px 18px;
}

div.col-full div.wrp div.media {
	padding:15px 22px;
}

div.inline {
	padding:5px 10px;
	color:#444; 
	line-height:30px;
}

div.field { 
	display:table; 
	padding:5px 0;
	height:30px;
	width:100%; 
}

div.field p.label {
	float:left;
	font-family: 'DroidSans';
	font-size:11px; 
	color:#222;
	line-height:30px;
	min-width:150px;
	text-transform:capitalize;
}

div.field div.input {
	float:right;
	width:calc(100% - 150px);
}

div.field div.input-color {
	float:right;
	width:calc(100% - 190px);
}

div.field div.input div.textarea {
	width:100%;
	padding:8px;
	border:1px solid #ccc;
	background:#fff;
	font-size:12px;
}

div.field div.check {
	float:left;
	padding:6px 0 0 0;
}

div.check-list { 
	float:left; 
	width:119px; 
	padding:0 5px; 
}

div.check-list p.menu { 
	margin:0 0 5px 0; 
	font-size:12px; 
	line-height:30px; 
	border-bottom:1px solid #eee; 
	text-align:center; 
}

div.check-list p.label { 
	float:left; 
	font-size:9px; 
	color:#222; 
	line-height:25px; 
}

div.check-list div.check { 
	float:left; 
	padding:3px 5px 0 0; 
}

div.sep-list { 
	float:left; 
	height:200px; 
	width:1px; 
	background:#eee; 
}

/*
////////// Popups
*/

div.popup { 
	min-width:350px;
	max-width:600px; 
}

div.popup h2 { 
	color:#212121;
	margin:0 10px; 
	font-size:12px; 
	line-height:40px;
	letter-spacing:0.5px;
	padding:0 0 0 2px;
	border-bottom:1px solid #ccc;
	text-transform:uppercase;
	font-family: 'Roboto';
	font-weight: 600;
}

div.popup h2 a {
	margin-top:10px;
}

div.popup div.input {
	width:calc(100% - 100px);
}

div.popup div.field p.label {
	min-width:100px;
}

div.popup div.box { 
	padding:15px; 
}

div.popup p {
	font-family: 'Roboto';
}

div.popup div.box-media { 
	padding:15px 30px; 
}

div.popup p.empty {
	line-height:60px;
	text-align:center;
}

/*
////////// Pagination
*/

div.pagination {
	margin:15px 10px 30px 10px;
}

div.pagination ul {
    margin:10px 0;
    padding-left:0;
	list-style:none;
}

div.pagination ul > li:first-child > a {
}

div.pagination ul > li:last-child > a,
div.pagination ul > li:last-child > p {
}

div.pagination ul > li > a,
div.pagination ul > li > p {
	float:left;
    background:#fff;
    border:1px solid #ccc;
    color:#666;
    margin:0 0 3px 1px;
    padding:0 12px;
	line-height:28px;
    position:relative;
}

div.pagination ul > li > a:hover {
	color:#111;
}

div.pagination ul > li > a#active {
    background:#cc0000;
	border-color:#cc0000;
	color:#fff;
}

div.pagination p.total {
	float:right;
	border:1px solid #cc0000;
	background: #cc0000;
	padding:6px 12px;
	text-align:center;
	color: #fff;
}

/*
////////// Banners and Sliders
*/

div.home-banner img {
	position:relative;
}

.nivo-caption {
	top: 25%;
	background: none;
	padding: 0;
	opacity: 1;
}

.nivo-caption h1 {
	font-size: 60px;
	font-weight: 600;
	line-height: 60px;
	color: #111;
}

.nivo-caption p {
	padding: 3px 0 0 8px;
	font-size: 22px;
	line-height: 22px;
	color: #111;
}

/*
////////// Product Box
*/

div.product-box {
	position:relative;
	min-height:350px;
}

div.product-box > a.text-big {
	font-size:14px;
}

div.product-box > div.img {
	position:relative;
	overflow:hidden;
	height:225px;
	width:100%;
	border: 1px solid #ddd;
}

div.product-box > div.img > img {
	padding:10px;
}

div.product-box > div.img div.bar {
	opacity:0;
	position:absolute;
	top:0;
	left:0;
	padding-top:30%;
	height:calc(100% - 20px);
	width:100%;
	transition:all 0.3s linear;
}

div.product-box > div.img:hover div.bar {
	opacity:1;
	transition:all 0.3s linear;
}

div.product-box > div.img div.bar a.slide-left,
div.product-box > div.img div.bar a.slide-right {
	display:inline-table;
	border-radius:50em;
	padding:10%;
	background:rgba(229,83,76,0.6);
	color:#fff;
}

div.product-box > div.img div.bar:hover .slide-left {
	animation-name: moveFromRight;
	animation-duration: 300ms;
	animation-timing-function: ease-in-out;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: none;
	animation-play-state: initial;	
}

div.product-box > div.img div.bar:hover .slide-right {
	animation-name: moveFromLeft;
	animation-duration: 300ms;
	animation-timing-function: ease-in-out;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: none;
	animation-play-state: initial;	
}


@-webkit-keyframes moveFromRight { 
	0% { margin-left:1000px; } 
	50% { margin-left:100px; } 
	100% { margin-left:0px; } 
}

@-moz-keyframes moveFromRight { 
	0% { margin-left:1000px; } 
	50% { margin-left:100px; } 
	100% { margin-left:0px; } 
}

@-ms-keyframes moveFromRight { 
	0% { margin-left:1000px; } 
	50% { margin-left:100px; } 
	100% { margin-left:0px; } 
}

@-webkit-keyframes moveFromLeft { 
	0% { margin-left:-1000px; } 
	50% { margin-left:-100px; } 
	100% { margin-left:0px; } 
}

@-moz-keyframes moveFromLeft { 
	0% { margin-left:-1000px; } 
	50% { margin-left:-100px; } 
	100% { margin-left:0px; } 
}

@-ms-keyframes moveFromLeft { 
	0% { margin-left:-1000px; } 
	50% { margin-left:-100px; } 
	100% { margin-left:0px; } 
}

div.product-box div.text {
	text-align: left;
	padding:10px 5px 20px 5px;
}

div.product-box div.text h5 {
	font-weight:700;
	font-size:14px;
	color:#282828;
	padding:5px 0;
	height:25px;
	letter-spacing: 1px;
	text-transform:uppercase;
}

div.product-box div.text div.short {
	padding:5px 0 15px 0;
	height:60px;
	font-size:12px;
	color:#ccc;
}

span.discount {
	display: block;
	position: absolute;
	top:10px;
	right:10px;
	background:#c52026;
	border-radius:50em;
	width:50px;
	height:50px;
	color: #fff;
	font-family:'PT-Sans';
	font-weight:700;
	font-size:17px;
	line-height:50px;
	text-align: center;
}

span.price-new {
	color:#cc0000;
	font-size:20px;
	font-family:'PT-Sans';
	font-weight:800;
	line-height:50px;
}

span.price-old {
	color:#ababab;
	font-size:16px;
	font-family:'PT-Sans';
	font-weight:400;
	text-decoration:line-through;
	padding:0 0 0 5px;
	line-height:50px;
}

span.price-grid {
	color:#cc0000;
	font-size:14px;
	font-family:'PT-Sans';
	font-weight:800;
	padding:0 3px;
	line-height:30px;
}

div.product-row {
	display:table;
}

div.product-row div.img {
	float:left;
	position:relative;
	overflow:hidden;
	height:65px;
	width:65px;
	margin:0 10px 0 0;
}

div.product-row div.text {
	float:left;
	width:calc(100% - 75px);
}

div.product-row div.text h5 {
	font-weight:700;
	font-size:14px;
	color:#282828;
	padding:5px 0;
}

div.product-row div.text span.price-new,
div.product-row div.text span.price-old {
	line-height:25px;
}

ul.cart-selector {
	list-style-type:none;
}

ul.cart-selector li {
	display:inline-table;
	vertical-align:top;
	margin:2px;
}

ul.cart-selector li input[type=radio] + label.color {
	display:block;
	height:30px;
	width:30px;
	padding:2px;
	cursor:pointer;
	border:1px solid #ddd;
}

ul.cart-selector li input[type=radio] + label.color div.sample {
	height:24px;
	width:24px;
}

ul.cart-selector li input[type=radio]:checked + label.color {
	border:1px solid #2d2d2d;
}

ul.cart-selector li input[type=radio] + label.text,
ul.cart-selector li input[type=radio] + label.size {
	display:block;
	height:30px;
	line-height:28px;
	padding:0 10px;
	font-size:12px;
	color:#777;
	cursor:pointer;
	border:1px solid #ddd;
}

ul.cart-selector li input[type=radio]:checked + label.text,
ul.cart-selector li input[type=radio]:checked + label.size {
	background:#2d2d2d;
	color:#fff;
}

/*
////////// Product Pagination
*/

ul.album,
ul.product-grid,
ul.product-home,
ul.product-related,
ul.product-category {
	list-style-type:none;
}

ul.product-grid > li,
ul.product-home > li,
ul.product-related > li {
	display:inline-table;
	text-align:center;
	padding:0 10px 10px 10px;
	margin:0 0 25px 0;
	width:25%;
	vertical-align:top;
}

ul.product-category li {
	display:table;
	width:100%;
	padding:10px 0;
	border-bottom:1px solid #ddd;
}

ul.product-grid > li {
	width:25%;
}

ul.product-related > li {
	width:25%;
}

ul.album > li {
	position: relative;
	display:inline-table;
	text-align:center;
	padding:10px;
	margin: 0 0 5px 0;
	width: 160px;
	height: 160px;
	vertical-align:middle;
	border: 1px solid #ddd;
}

ul.color-sample {
	list-style-type:none;
	text-align:center;
}

ul.color-sample li {
	display:inline-block;
	margin:2px;
	border:1px solid #ddd;
	padding:1px;
	background:#fff;
	height:19px;
	width:19px;
}

ul.color-sample li div {
	height:15px;
	width:15px;
}

div.col-left {
	float:left;
	width:23%;
	background:#fff;
	margin:0 20px 0 0;
}

div.col-right {
	float:right;
	width:23%;
	background:#fff;
	margin:0 0 0 20px;
}

div.col-content,
div.col-product,
div.col-main,
div.col-single {
	float:left;
	display:table;
	padding:10px 0;
	width:calc(77% - 20px);
}

div.col-product {
	width:calc(77% - 80px);
}

/* Hack for Mobile order */
div.col-left,
div.col-content,
div.col-main {
	float:right;
}

div.col-single {
	width:100%;
}

div.col-content {
	border:none;
	padding:0;
}

div.col-right h4.title,
div.col-left h4.title {
	padding:10px;
	margin: 0 0 25px 0;
	font-weight:400;
	font-size:20px;
	text-transform:uppercase;
	color:#010101;
	border-bottom:1px solid #000;
}

div.col-right h5.subtitle,
div.col-left h5.subtitle {
	padding:0 0 5px 0;
	color:#333;
	font-weight:700;
	font-size:15px;
	text-transform:capitalize;
}

ul.tree-section,
ul.tree-content {
	list-style-type:none;
	padding:0 0 20px 0;
	margin:0 0 20px 0;
}

ul.tree-content {
	padding:0 0 20px 5px;
}

ul.tree-section li {
	border-bottom:1px dotted #eee;
}

ul.tree-section li a {
	display:block;
	float:left;
	color:#010101;
	line-height:28px;
	font-size:14px;
	font-weight:400;
	padding:0 8px;
	width:calc(100% - 20px);
	transition:all 0.4s ease 0s;
}

ul.tree-section li a:hover {
	padding-left:14px;
	transition:all 0.3s ease 0s;
}

ul.tree-section li a.close {
	background:#fff;
}

ul.tree-section li a.open {
	background:#f0f0f0;
	border-bottom:1px solid #ccc;
}

ul.tree-section li.check {
	display:table;
	width:100%;
	padding:3px 0;
}

ul.tree-section li.check a {
	line-height:18px;
	padding:0 0 0 8px;
}

ul.tree-section li.check span.sample {
	float:left;
	height:18px;
	width:18px;
	border:1px solid #ddd;
	padding:1px;
	margin:0 5px 0 0;
}

ul.tree-section li i {
	display:block;
	float:right;
	width:20px;
	line-height:28px;
	font-size:15px;
	text-align:center;
	cursor:pointer;
	box-sizing:border-box;
}

ul.tree-section li i.close {
	color:#010101;
	background:#fff;
	transition: background 0.5s ease 0s;
}

ul.tree-section li i.open {
	color:#cc0000;
	background:#f0f0f0;
	border-bottom:1px solid #ccc;
	transition: background 0.5s ease 0s;
}

ul.tree-section li ul {
	display:none;
	list-style-type:none;
	padding:0 0 0 10px;
}

ul.tree-section > li > ul li:last-child {
	border:none;
}

ul.tree-section li ul.active {
	display:block;
}

ul.tree-section li ul li a {
	font-size:13px;
	font-weight:400;
}

ul.tree-section li ul li a:hover {
	color:#cc0000;
}

ul.tree-content li a {
	display:block;
	color:#010101;
	font-size:13px;
	line-height:22px;
	padding:0 5px;
	width:100%;
	transition:all 0.4s ease 0s;
}

ul.tree-content li a:hover {
	padding-left:14px;
	transition:all 0.3s ease 0s;
}

ul.tree-content li i {
	line-height:22px;
	margin:0 4px 0 0;
}

div.col-img {
	float:right;
	width:40%;
}

div.product-img {
	position:relative;
	border:1px solid #ddd;
	padding:9px;
	width:100%;
	/*height:450px;
	max-height:450px;*/
}

ul.additional-img {
	margin: 5px 0 0 0;
	list-style-type:none;
}

ul.additional-img li {
	position:relative;
	display:inline-table;
	width:calc(20% - 5px);
	height:50px;
	margin:0 2.5px 2.5px 2.5px;
	border:1px solid #ddd;
	padding:3px;
	vertical-align:top;
}

ul.additional-img li img {
	padding:3px;
}

ul.additional-img li i {
	height:50px;
	width:50px;
	line-height:50px;
	text-align:center;
}

div.col-details {
	float:right;
	width:60%;
	padding:0 0 0 30px;
}

div.col-details h1 {
	font-size:20px;
	padding:0 0 10px 0;
	text-transform:uppercase;
	font-weight:700;
}

div.col-details div.price {
	display:table;
	margin:10px 0;
	width:100%;
}

div.col-details div.price span.price-new {
	color:#c52026;
	font-size:30px;
}

div.col-details div.price span.special {
	display: block;
	float:right;
	background:#c52026;
	border-radius:50em;
	width:50px;
	height:50px;
	color: #fff;
	font-family:'PT-Sans';
	font-weight:700;
	font-size:17px;
	line-height:50px;
	text-align: center;
	margin:0 40px 0 0;
}

div.col-details p.info {
	font-size:14px;
	line-height:20px;
	text-transform:capitalize;
}

div.col-details p.info span {
	color:#c52026;
	font-weight:700;
}

div.qty-selector {
	float:left;
	height:36px;
	width:60px;
}

div.qty-selector input[type=text] {
	float:left;
	height:36px;
	width:41px;
	text-align:center;
	border:1px solid #ddd;
	border-radius: 0;
	background:none;
}

div.qty-selector a {
	float:right;
	height:18px;
	width:18px;
	font-size:10px;
	line-height:17px;
	background:none;
	border:1px solid #ddd;
	color: #666;
	text-align:center;
}

button.add-to-cart {
	font-size:13px;
	padding:10px 12px;
	height:auto;
	line-height:14px;
}

button.add-to-cart i {
	margin:0 10px 0 0;
}

div.sort-by {
	margin:0 0 30px 10px;
}

div.sort-by p {
	line-height:30px;
	padding:0 10px 0 0;
	font-size:12px;
	font-weight:600;
}

div.category-header {
	display:table;
	padding:0 0 10px 10px;
	margin:0 0 20px 0;
	width:100%;
}

div.category-header h1 {
	font-size:30px;
	text-transform:capitalize;
	font-weight:400;
	color:#000;
}

div.category-header h2 {
	font-size:14px;
}

div.category-header img {
	float:left;
	height:150px;
	margin:0 20px 20px 0;
}

div.category-header div.text {
	padding:0 0 20px 0;
}

div.category-header div.sub {
	border-top:1px solid #ddd;
	padding:20px 0 0 0;
}

ul.subcategory {
	display:table;
	list-style-type:none;
	margin:0 0 10px 0;
	width:100%;
}

ul.subcategory li {
	display:inline-block;
	margin:9.5px;
	width:100px;
	text-align:center;
	vertical-align:top;
}

ul.subcategory li div.img {
	height:100px;
	width:100px;
	margin:0 0 5px 0;
	border:2px solid #ddd;
	transition:all 0.3s linear;
}

ul.subcategory li div.img:hover {
	border:2px solid #666;
	transition:all 0.3s linear;	
}

div.related-box {
	margin:50px 0 0 0;
	width:100%;
	padding:20px 0;
}

div.related-box h3 {
	color:#333;
	text-transform:uppercase;
	font-weight:400;
	font-size:20px;
	padding:10px;
	margin: 0 10px 25px 10px;
	border-bottom:1px solid #000;
}

p.no-image {
	font-family:'PT-SansCondensed';
	font-weight:600;
	color:#eee;
	text-align:center;
	text-transform:uppercase;
	font-size:25px;
	padding:60px 0;
}

p.no-image.small {
	padding:15px 0;
	font-size:14px;
}

i.no-image {
	color:#eee;
	text-align:center;
	padding:20px 12.5px;	
}

/*
////////// 404 Error
*/

div.missing {
	padding:50px 0;
	width:100%;
	min-height:500px;
}

div.missing h3 {
	color:#eee; 
	font-family:"Times New Roman", Times, serif;
	font-size:100px;
	letter-spacing:1px;
	text-align:center;
}


div.missing h4 {
	color:#ddd; 
	font-family:"Times New Roman", Times, serif;
	font-size:25px;
	padding:25px 0;
	text-align:center;
}

/*
////////// Checkout
*/

ul.checkout-step {
	display:table;
	list-style-type:none;
	width:100%;
	margin:0 0 30px 0;
}

ul.checkout-step li {
	float:left;
	width:calc(25% - 2px);
	border-bottom:5px solid #2d2d2d;
	background:#efefef;
	padding:15px 20px;
	margin:1px;
}

ul.checkout-step li.current {
	background:#cc0000;
}

ul.checkout-step li h3 {
	font-family:'PT-Sans';
	font-weight:300;
	font-size:24px;
	line-height:24px;
	float:left;
}

ul.checkout-step li p,
ul.checkout-step li a {
	font-family:'PT-Sans';
	font-weight:400;
	font-size:16px;
	color:#444;
	padding:4px 0 0 5px;
	text-transform:uppercase;
	float:left;
}

ul.checkout-step li.current h3,
ul.checkout-step li.current p {
	color:#fff;
}

div.box-quantity {
	width:52px;
}

div.box-quantity span {
	display:block;
	border:1px solid #ddd;
	height:25px;
	width:auto;
	line-height:25px;
	text-align:center;
	margin:0 0 2px 0;
}

div.product-cart {
	width:100%;
}

div.product-cart > div {
	width:calc(100% - 65px);
}

div.product-cart h4 {
	font-size:14px;
	padding:5px 0 2px 0;
	font-weight:400;
}

div.product-cart p {
	font-size:11px;
	color:#555;
	padding:2px 0 0 0;
}

div.product-cart span {
	color:#777;
	font-size:10px;
}

p.product-total {
	line-height:25px;
	font-size:12px;
	color:#555;
}

table.checkout-recap {
	width:100%;
}

table.checkout-recap td {
	padding:0 0 10px 0;
}

div.empty {
	display:table;
	padding:75px 0;
	width:100%;
}

div.empty h3 {
	color:#eee; 
	font-family:"Times New Roman", Times, serif;
	font-size:30px;
	text-align:center;
}

div.checkout-page {
	min-height:700px;
}

div.checkout-page h2.title {
	font-size:16px;
	text-align:center;
}

div.coords,
div.order-note {
	margin:0 auto;
	max-width:400px;
}

/*
////////// Content Pages
*/

div.col-25 {
	width: calc(25% - 25px);
}

div.col-30 {
	width: calc(30% - 25px);
}

div.col-40 {
	width: calc(40% - 25px);
}

div.col-50 {
	width: calc(50% - 15px);
}

div.col-60 {
	width: calc(60% - 25px);
}

div.col-70 {
	width: calc(70% - 25px);
}

div.col-75 {
	width: calc(75% - 25px);
}

.title {
	font-size:25px;
	padding:0 0 15px 0;
	font-family:'PT-Sans';
	text-transform:uppercase;
}

.title-small {
	font-size:20px;
	padding:0 0 15px 0;
	font-family:'PT-Sans';
	text-transform:uppercase;
}

div.content-text {
	font-weight:400;
}

div.content-text strong {
	font-weight:600;
}

div.content-text p {
	font-size: 13px;
}

div.content-text ul {
	font-size: 13px;
	margin: 10px 15px;
}

div.content-text h1,
div.content-text h2,
div.content-text h3 {
	font-size:20px;
	padding:0 0 15px 0;
	font-family:'PT-Sans';
	text-transform:uppercase;
}

div#map {
	width:100%;
	height:400px;
	margin:0 0 20px 0;
	border:1px solid #ddd;
	box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
}

ul.content {
	margin:0 0 0 15px;
}

/*
////////// Configurator
*/

div#configurator {
	padding: 50px 0;
}

div#configurator p {
	font-size: 14px;
}

div.wrapper-config {
	margin: 20px 0;
}

div.uploader-button {
	width: 180px;
	margin: 0 auto;
}

.uploadifive-button {
	padding:0 25px;
	cursor:pointer;
	text-align:center;
	text-decoration:none;
	color:#fff;
	background:#cc0000;
	font-size:13px;
	line-height:50px;
	text-transform: uppercase;
	letter-spacing:0.5px;
}

.uploadifive-button:hover {
	color:#fff;
	background: #333;
}

.uploadifive-queue-item {
	background-color: #F5F5F5;
	border: 1px solid #ddd;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin-top:5px;
	width:100%;
	padding: 10px;
}

.uploadifive-queue-item .close {
	background: url(../img/cancel_icon.png) 0 0 no-repeat;
	float: right;
	height:	16px;
	text-indent: -9999px;
	width: 16px;
}

.uploadifive-queue-item .progress {
	background-color: #E5E5E5;
	margin-top: 10px;
	height: 3px;
	width: 100%;
}

.uploadifive-queue-item .progress-bar {
	background:#333;
	height:3px;
	width:1px;
}

div#queue-multi {
	margin:0 0 20px 0;
	border:2px dashed #ddd;
	padding:10px;
	min-height:230px;
	background:url(../img/web/dnd.svg) center center no-repeat #fff;
	background-size: 225px 150px;
}

input.config.error {
	border-color:#e6a0a0;
	background:#f7e2e2;
}

div.preview-img {
	border: 1px solid #ddd;
}

div.preview-setting {
	background: #f4f4f4;
	padding: 20px;
}

div.box-price {
	display: table;
	height: 53px;
	line-height: 55px;
	width: 130px;
	border:1px solid #ddd;
	background: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #111;
}

div.box-price div.currency {
	float: right;
	height: 53px;
	line-height: 55px;
	width: 30px;
}

div.box-price input[type=text] {
	float: left;
	height: 53px;
	line-height: 53px;
	width: calc(100% - 30px);
	padding: 0;
	text-align: right;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #111;
	border: none;
	background: none;
}

div.copy-selector {
	display: table;
	height:56px;
	width:83px;
}

div.copy-selector input[type=text] {
	float:left;
	height:55px;
	width:55px;
	line-height: 53px;
	text-align:center;
	border:1px solid #ddd;
	border-radius: 0;
	background: #fff;
	color: #111;
	font-size: 18px;
	font-weight: 700;
}

div.copy-selector a {
	float:right;
	margin: 0 0 1px 0;
	height:27px;
	width:27px;
	font-size:12px;
	line-height:27px;
	background:none;
	border:1px solid #ddd;
	color: #111;
	text-align:center;
	background: #fff;
}

div#error > div {
	border: 1px solid #e6a0a0;
	background:#f7e2e2;
	padding:10px;
}

nav.preview-tab {
	margin: 50px auto;
	position:relative;
}

nav.preview-tab ul {
	list-style-type:none;
}

nav.preview-tab > ul > li {
	display:inline-block;
}

nav.preview-tab > ul > li > a {
	display: block;
	line-height: 50px;
	padding: 0 25px;
	font-size: 14px;
	text-transform: uppercase;
	color: #666;
}

nav.preview-tab > ul > li > a:hover,
nav.preview-tab > ul > li > a#active {
	background: #f4f4f4;
	color: #111;
}

nav.preview-tab div.options {
	width: 100%;
	background: #f4f4f4;
	padding: 30px;
}

div.options table {
	border-collapse: separate;
	border-spacing: 10px;
	width: 100%;
}

div.options table td {
	vertical-align: top;
	font-size: 13px;
}

div.options table td h2 {
	font-size: 18px;
	text-transform: uppercase;
}

div.options table td p.weight {
	padding: 5px 0 0 0;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 14px;
	color: #666;
}

div.options table td.text {
	padding: 8px;
	background: #fff;
}

div.options table td.text p.title {
	padding: 0;
	line-height: normal;
}

input[type=radio] + label.check-img {
	display:block;
	height:75px;
	width:75px;
	border:2.5px solid #ccc;
	background:#fff;
	cursor:pointer;
}

input[type=radio]:checked + label.check-img {
	border-color: #cc0000;
}

nav.album {

}

nav.album ul {
	list-style-type:none;
}

nav.album ul > li {
	position: relative;
	display:inline-table;
	text-align:center;
	padding:10px;
	margin: 2px 0;
	vertical-align:middle;
	border: 1px solid #ddd;
}

nav.album ul > li > div.box {
	position: relative;
	width: 142px;
	height: 142px;
}

nav.album ul > li > a.delete {
	position: absolute;
	top:0;
	right: 0;
	width: 25px;
	height: 25px;
	line-height: 23px;
	color: #333;
	z-index: 10;
	background: #fff;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

nav.album ul > li > p.count {
	position: absolute;
	bottom:0;
	left: 0;
	padding:2px 5px;
	font-size: 11px;
	color: #333;
	z-index: 9;
	background: #fff;
	border-right: 1px solid #ddd;
	border-top: 1px solid #ddd;
}

input[type=checkbox] + label.check-album {
	position: absolute;
	top:0;
	left:0;
	display:block;
	width: 164px;
	height: 164px;
	cursor:pointer;
	z-index: 9;
}

input[type=checkbox]:checked + label.check-album {
	background: rgba(255,255,255,0.3);
	z-index: 11;
}

input[type=checkbox]:checked + label.check-album:after {
	font-family: FontAwesome;
	content:"\f058";
	color: #cc0000;
	font-size: 50px;
	line-height: 164px;
}

div.preview-summary {
	position: relative;
	width: 75px;
	height: 75px;
}

span.border {
	display: inline-block;
	border:1px solid #ddd;
	padding:1px 4px;
	margin:5px 1px 0 0;
}

/*
////////// Cookie Notice
*/

div.cookie-notice {
	display:none;
	width:100%;
	background:#333;
	padding:5px 0;
}

div.cookie-notice p {
	color:#fff;
	line-height:30px;
}

div.cookie-notice p a {
	color:#fff;
	text-decoration:underline;
}

div.cookie-notice a.agree {
	background:#666;
	padding:3px 10px 2px 10px;
	width:75px;
	text-align:center;
	color:#fff;
	text-transform:uppercase;
	margin:0 10px;
	text-decoration:none;
}

div.cookie-notice a.agree:hover {
	background:#000;
}

/*
////////// Responsive Media Queries
*/

@media only screen and (min-width: 320px) and (max-width: 439px) {
	div.offline h1 {
		margin:10px 0 0 0;
		font-size:26px;
		text-align:center;
		color:#555;
		line-height:50px;;
		letter-spacing:2px;
	}
	div.logo { 
		float:none;
		text-align:center;
		margin:0 auto 10px auto;
	}
	div.logo h1 {
		margin:0 auto;
		width:290px;
		height:115px;
		background-size: 290px 84px;
	}
	header div.top-nav {
		float:none;
		margin:0 auto;
		padding:0;
		width:100%;
	}
	header div.main-nav div.wrapper {

	}
	div.home-banner {
		display:none;
	}
	ul.info {
		float:none;
		text-align:center;
		height:auto;
	}
	ul.info li {
		display:block;
		margin:5px 0;
	}
	ul.info li p {
		font-size:16px;
	}
	ul.info li i {
		font-size:20px;
	}
	div#nav-bar {
		display: none;
	}
	div.cart-wrapper {
		float: none;
	}
	div#cart-box {
		margin:10px 0 0 0;
	}
	nav.main-lang {
		float:right;
	}
	div.category-nav {
		display:none;
	}
	nav.main-menu {
		display:none;
	}
	nav.main-mobile { 
		display:table;
	}
	nav.main-mobile ul li ul li {
		display:inline-block;
		width:100%;
	}
	div.search-header {
		position:relative;
		margin:15px auto 5px auto;
		width:100%;
	}
	div.grid-container {
		padding:15px 0;
	}
	div.col-left,
	div.col-right,
	div.col-content,
	div.col-product,
	div.col-main,
	div.col-single {
		float:none;
		width:100%;
		margin:0;
	}
	ul.product-grid > li,
	ul.product-home > li {
		float:none;
		width:100%;
	}
	ul.product-related > li {
		width:100%;
	}
	div.product-box > div.img div.bar {
		padding-top:15%;
	}
	div.product-box > div.img div.bar a.slide-left,
	div.product-box > div.img div.bar a.slide-right {
		padding:15%;
	}
	div.col-half.left,
	div.col-half.right {
		float:none;
		width:100%;
	}
	div.col-40.left,
	div.col-40.right,
	div.col-50.left,
	div.col-50.right,
	div.col-60.left,
	div.col-60.right {
		float:none;
		width:100%;
	}
	div.field p.label {
		float:none;
		line-height:normal;
	}
	div.field div.input {
		width:100%;
	}
	nav.tab-menu ul li {
		float:none;
		padding:0 20px;
		border:none;
	}
	div.popup { 
		min-width:250px;
	}
	div.col-img,
	div.col-details {
		float:none;
		width:100%;
	}
	div.col-details {
		padding:0;
	}
	table.grid.block {
		border:none;
	}
	table.grid.block thead {
		position:absolute;
		visibility:hidden;
		top:-9999px;
	}
	table.grid.block tr {
		border:1px solid #f2f2f2;
	}
	table.grid.block td {
		display:block;
		padding:8px;
		float:left;
		height:auto;
		width:100%;
		border:none;
		line-height:normal;
		text-align: left;
	}
	table.grid.block td:before { 
		content: attr(data-title) '\A';
		white-space: pre-wrap;
		font-weight: 600;
	}
	table.grid.block td table.grid-cart {
		display:table;
	}
	table.grid.block td table.grid-cart thead {
		position:relative;
		visibility:visible;
		top:0;
	}
	table.grid.block td table.grid-cart td.hideable {
		font-size:0;
	}
	table.grid.block td table.grid-cart td {
		display:table-cell;
		float:none;
		width:2%;
		table-layout:fixed;
		border:1px solid #e9e9e9;
	}
	table.grid.block td table.grid-cart td.row {
		display:table-cell;
		float:none;
		width:100%;
	}
	table.grid.block td table.grid-cart td.color-text {
		display:none;
	}
	table.grid.block td table.grid-cart td.color-box {
		display:table-cell;
	}
	ul.checkout-step li {
		width:100%;
	}
	nav.footer-menu > ul > li {
		padding:0 15px 10px 15px;
		width:100%;
	}
	a.text,
	input.text {	
		padding:0 11px;
	}
	a.text-big,
	input.text-big {
		padding:0 12px;
	}
	div.col-40.left,
	div.col-40.right,
	div.col-50.left,
	div.col-50.right,
	div.col-60.left,
	div.col-60.right {
		float:none;
		width:100%;
		margin: 0 0 10px 0;
	}
	nav.album {
		text-align: center;
	}
	nav.album ul > li > div.box {
		position: relative;
		width: 120px;
		height: 120px;
	}
	input[type=checkbox] + label.check-album {
		width: 140px;
		height: 140px;
	}
	input[type=checkbox]:checked + label.check-album:after {
		font-size: 40px;
		line-height: 140px;
	}
	nav.preview-tab > ul > li > a {
		display: block;
		line-height: 40px;
		padding: 0 15px;
		font-size: 13px;
		text-transform: uppercase;
		color: #666;
	}
	nav.preview-tab div.options {
		padding: 10px;
	}
	div.box-price.right {
		float: left;
		margin: 10px 0 0 0;
	}
	div.preview-summary {
		width: 100%;
		height: 100px;
	}
	a.summary,
	input.summary {
		float: none;
		margin: 0 0 10px 0;
		width: 100%;
	}
}

@media only screen and (min-width: 440px) and (max-width: 729px) {
	div.logo { 
		float:none;
		text-align:center;
		margin:0 auto 10px auto;
	}
	div.logo h1 {
		margin:0 auto;
	}
	header div.top-nav {
		float:none;
		margin:0 auto;
		padding:0 0 5px 0;
	}
	header div.main-nav div.wrapper {
		background-size:600px 400px;
	}
	div#nav-bar {
		float:none;
	}
	ul.info {
		float:none;
		text-align:center;
	}
	ul.info li {
		margin:0 10px;
	}
	div.search-header {
		position:relative;
		float:none;
		margin:15px auto 0 auto;
		width:100%;
	}
	div.category-nav {
		display:none;
	}
	nav.main-menu {
		display:none;
	}
	nav.main-mobile { 
		display:table;
	}
	div.grid-container {
		padding:15px 0;
	}
	div.col-left,
	div.col-right,
	div.col-content,
	div.col-product,
	div.col-main,
	div.col-single {
		float:none;
		width:100%;
		margin:0;
	}
	div.col-img,
	div.col-details {
		float:none;
		width:100%;
	}
	div.col-details {
		padding:0;
	}
	ul.product-grid > li,
	ul.product-home > li {
		width:50%;
	}
	ul.product-related > li {
		width:33%;
	}
	div.col-half.left,
	div.col-half.right {
		float:none;
		width:100%;
	}
	div.field p.label {
		min-width:120px;
	}
	div.field div.input {
		width:calc(100% - 120px);
	}
	ul.checkout-step li {
		padding:10px;
	}
	ul.checkout-step li h3,
	ul.checkout-step li p,
	ul.checkout-step li a {
		float:none;
		padding:0;
	}
	ul.checkout-step li h3 {
		font-size:20px;
	}
	ul.checkout-step li p,
	ul.checkout-step li a {
		font-size:12px;
	}
	nav.footer-menu > ul > li {
		width:calc(50% - 3px);
	}
	table.grid.block {
		border:none;
	}
	table.grid.block thead {
		position:absolute;
		visibility:hidden;
		top:-9999px;
	}
	table.grid.block tr {
		border:1px solid #f2f2f2;
	}
	table.grid.block td {
		display:block;
		padding:8px;
		float:left;
		height:auto;
		width:100%;
		border:none;
		line-height:normal;
	}
	table.grid.block td:before { 
		content: attr(data-title); 
	}
	table.grid.block td table.grid-cart {
		display:table;
	}
	table.grid.block td table.grid-cart thead {
		position:relative;
		visibility:visible;
		top:0;
	}
	table.grid.block td table.grid-cart td.hideable {
		font-size:0;
	}
	table.grid.block td table.grid-cart td {
		display:table-cell;
		float:none;
		width:2%;
		table-layout:fixed;
		border:1px solid #e9e9e9;
	}
	table.grid.block td table.grid-cart td.row {
		display:table-cell;
		float:none;
		width:100%;
	}
	table.grid.block td table.grid-cart td.color-text {
		display:table-cell;
	}
	table.grid.block td table.grid-cart td.color-box {
		display:none;
	}
	nav.footer-menu > ul > li {
		padding:0 15px 10px 15px;
		width:calc(50% - 3px);
	}
	h2.slogan {
		font-size:20px;
	}
	h3.slogan-text {
		font-size:10px;
	}
	div.col-40.left,
	div.col-40.right,
	div.col-50.left,
	div.col-50.right,
	div.col-60.left,
	div.col-60.right {
		float:none;
		width:100%;
		margin: 0 0 10px 0;
	}
	nav.album {
		text-align: center;
	}
	nav.album ul > li > div.box {
		position: relative;
		width: 120px;
		height: 120px;
	}
	input[type=checkbox] + label.check-album {
		width: 140px;
		height: 140px;
	}
	input[type=checkbox]:checked + label.check-album:after {
		font-size: 40px;
		line-height: 140px;
	}
	nav.preview-tab > ul > li > a {
		display: block;
		line-height: 40px;
		padding: 0 15px;
		font-size: 13px;
		text-transform: uppercase;
		color: #666;
	}
	nav.preview-tab div.options {
		padding: 10px;
	}
	div.box-price.right {
		float: left;
		margin: 10px 0 0 0;
	}
	div.preview-summary {
		width: 100%;
		height: 100px;
	}
	a.summary,
	input.summary {
		padding: 0 10px;
		font-size: 12px;
		height: 35px;
		line-height: 35px;
	}
}

@media only screen and (min-width: 730px) and (max-width: 1023px) {
	div.logo { 
		float:none;
		text-align:center;
		margin:10px auto;
	}
	div.logo h1 {
		margin:0 auto;
	}
	header div.top-nav {
		float:none;
		margin:0 auto;
		padding:0 0 5px 0;
	}
	header div.main-nav div.wrapper {

		background-size:600px 400px;
	}
	div#nav-bar {
		float:none;
	}
	ul.info {
		float:none;
		text-align:center;
	}
	ul.info li {
		margin:0 10px;
	}
	div.search-header {
		position:relative;
		float:none;
		margin:15px auto 0 auto;
		width:100%;
	}
	nav.main-menu {
		float:none;
		text-align:center;
		margin:0 0 15px 0;
	}
	nav.main-menu {
		float:none;
	}
	nav.main-menu > ul {
		text-align: center;
	}
	nav.main-menu ul li {
		margin:0 12px;
	}
	nav.main-menu ul li a {
		font-size:15px;
		padding:0;
	}
	nav.main-menu > ul > li > ul li {
		width:calc(25% - 10px);
	}
	div.grid-container {
		padding:15px 5px;
	}
	ul.product-home li {
		width:25%;
	}
	ul.product-grid li {
		width:33%;
	}
	div.col-half div.field div.input,
	div.col-full div.field div.input {
		width:100%;
	}
	div.col-half div.field p.label,
	div.col-full div.field p.label {
		float:none;
		line-height:normal;
	}
	div.col-left,
	div.col-right,
	div.col-content,
	div.col-product,
	div.col-main,
	div.col-single {
		float:none;
		width:100%;
		margin:0;
	}
	table.grid.block td table.grid-cart td.hideable {
		font-size:0;
	}
	nav.footer-menu > ul > li {
		padding:0 10px 10px 10px;
		width:calc(50% - 3px);
	}
	h2.slogan {
		font-size:30px;
	}
	h3.slogan-text {
		font-size:10px;
	}
	div.col-40.left,
	div.col-40.right,
	div.col-50.left,
	div.col-50.right,
	div.col-60.left,
	div.col-60.right {
		float:none;
		width:100%;
		margin: 0 0 10px 0;
	}
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
	nav.footer-menu > ul > li {
		padding:0 10px 10px 10px;
		width:calc(25% - 3px);
	}
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
	div.wrapper,
	div.dashboard,
	div.home-container,
	div.main-container,
	div.grid-container {
		display:table;
		width:100%;
	}
	div.col-content {
		padding:0 0 30px 0;
	}
	div#brand-list {
		width:100%;
	}
	div.home-banner div.text {
		padding:20px 20px 0 0;
		width:calc(100% - 20px);
	}
}