/*
300 light
400 Regular
600 semi bold
700 bold
800 extra bold
*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800);
/*--------------------------------------------------------------
	CSS OVERVIEW
----------------------------------------------------------------
		1. Forms
		2. Tables
		3. Typography
		4. Color schemes
		5. Header
			5.1 Header Version 1 - Top
			5.2 Header Version 1 - Middle
			5.3 Header Version 1 - Bottom
			5.4 Header Version 2 - Middle
			5.5 Header Version 2 - Bottom
			5.6 Header Version 3 - Bottom
		7. Content
		8. Home version 1
		9. Home version 2
		10. Home version 3
		11. Home version 4
		12. Top Bar
		13. Under construction page
		14. Blog & Single post
		15. Contact page
		16. FAQs page
		17. Landing page
		18. Popup newsletter
		19. Services page
		20. Testimonial
		21. Topbar notification
		22. Popup Banner
		23. Under construction
		24. About us page
		25. Shop page - List style
		26. Shop page - Grid style
		27. Shop cart page
		28. Shop checkout page
		29. Single product
		30. Footer

--------------------------------------------------------------*/

label{
	font-weight: normal !important;
}

table{
	font-size: inherit;
}

#loader { 
	position: fixed; 
	left: 0; top: 0; 
	z-index: 999999999999999; 
	width: 100%; 
	height: 100%; 
	overflow: visible; 
	background: url(../_imgs/73.gif) no-repeat scroll center center #fff;
}

#loaderCompra {
	background: url(../_imgs/73.gif) no-repeat scroll center center #fff !important;
}

#loaderFiltros { 
	position: fixed; 
	left: 0; top: 0; 
	z-index: 999999999999999; 
	width: 100%; 
	height: 100%; 
	overflow: visible; 
	background: rgba(0, 0, 0, 0.48);
}

#loaderImg {
  animation: animate 1.5s linear infinite;
  clip: rect(0, 80px, 80px, 40px); 
  height: 80px;
  width: 80px;
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
}

@keyframes animate {
  0% { 
    transform: rotate(0deg)
  }
  100% { 
    transform: rotate(220deg)
  }
}

#loaderImg:after {
  animation: animate2 1.5s ease-in-out infinite;
  clip: rect(0, 80px, 80px, 40px);
  content:'';
  border-radius: 50% !important; 
  height: 80px;
  width: 80px;
  position: absolute; 
} 

@keyframes animate2 {
  0% {
    box-shadow: inset #fff 0 0 0 17px;
    transform: rotate(-140deg);
  }
  50% {
    box-shadow: inset #fff 0 0 0 2px;
  }
  100% {
    box-shadow: inset #fff 0 0 0 17px;
    transform: rotate(140deg);
  }
}



html {
	-ms-text-size-adjust: 100%; /* 2 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

ul li{
	list-style: none;
}

*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
	border-radius: 0 !important;
}
html, body {
	width: 100%;
	height: 100%;
	max-width: 1920px;
	margin: 0 auto !important; 
	float: none !important; 
}
body {
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #000000;
	right: 0;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;  
	-webkit-transition: right .4s ease-in-out 0s;
	-moz-transition:    right .4s ease-in-out 0s;
	transition:         right .4s ease-in-out 0s;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
progress,
video {
	display: inline-block; /* 1 */
	vertical-align: baseline; /* 2 */
}
audio:not([controls]) {
	display: none;
	height: 0;
}
[hidden],
template {
	display: none;
}
a {
	color: #000;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition:    all .3s ease-in-out;
	transition:         all .3s ease-in-out;
}
a:hover,
a:focus {
	color: #bcc702;
}
a,
a:active,
a:hover,
a:focus {
	outline: 0;
	text-decoration: none;
}
abbr[title] {
	border-bottom: 1px dotted;
}
b,
strong {
	font-weight: 600;
}
dfn {
	font-style: italic;
}
mark {
	background: #ff0;
	color: #000;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
img {
	
	max-width: 100%;
	height: auto;
}
svg:not(:root) {
	overflow: hidden;
}
figure {
	margin: 1em 40px;
}
hr {
	box-sizing: content-box;
	height: 0;
}
pre {
	overflow: auto;
}
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
ol, ul {
	padding: 0;
}

/* Forms
   ========================================================================== */
button,
input,
optgroup,
select,
textarea {
	color: inherit; /* 1 */
	font: inherit; /* 2 */
	margin: 0; /* 3 */
}
button {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button; /* 2 */
	cursor: pointer; /* 3 */
}
button[disabled],
html input[disabled] {
	cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input {
	line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	box-sizing: content-box; /* 2 */
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}
legend {
	border: 0; /* 1 */
	padding: 0; /* 2 */
}
textarea {
	overflow: auto;
}
optgroup {
	font-weight: bold;
}

/* Tables
   ========================================================================== */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td,
th {
	padding: 0;
}

/* Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	color: #000000;
	font-weight: 600;
}
h1 {
	font-size: 3.6rem;
}
h2 {
	font-size: 3rem;
}
h3 {
	font-size: 2.4rem;
}
h4 {
	font-size: 1.6rem;
}
h5 {
	font-size: 1.4rem;
}
h6 {
	font-size: 1.2rem;
}
p {
	margin-bottom: 1.5em;
	line-height: 1.42857;
}
.title-1 {
	font-weight: 600;
	border-bottom: 1px solid #dedede;
	padding: 18px 0;
}
.h-line-mid {
	position: relative;
	text-align: center;
}
.h-line-mid:before {
	background: #dedede;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	top: calc(50% - 0.5px);
	width: 100%;
}
.h-line-mid * {
	font-weight: 600;
	background: #fff;
	display: inline-block;
	margin: 0;
	padding: 0 20px;
	position: relative;
}
.textup {
	text-transform: uppercase;
}
.title-2 {
	color: #4e4e4e;
}
.sub-title {
	font-family: Georgia;
	font-style: italic;
	font-size: 14px;
	color: #9d9d9d;
}

/* Color schemes
   ========================================================================== */
.bgwhite {
	background: #fff;
}
.text-white {
	color: #fff;
}

/* Header
   ========================================================================== */
.menu .sub-menu {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: 1000;
	background: #fff;
/*
	-webkit-transition: all .2s ease-in-out;
	-moz-transition:    all .2s ease-in-out;
	transition:         all .2s ease-in-out;
*/
}
.menu li:hover > .sub-menu,
.menu li:focus > .sub-menu {
	opacity: 1;
	visibility: visible;
}
.menu .sub-menu:not(.mega-submenu) li {
	display: block;
	width: 100%;
}
.menu,
#site-header .extra-info ul  {
	list-style: none;
	float: left;
	margin: 0;
}
.menu li,
#site-header .extra-info ul li {
	float: left;
	position: relative;
}
.menu li i,
#site-header .extra-info ul li i {
	margin-right: 5px;
	font-size: 12px;
}
#top-menu li a,
#site-header .extra-info ul li a {
	padding: 5px 0;
	display: block;
}
#site-header .extra-info ul > li {
	margin-left: 15px;
}

/* Header Version 1 - Top
   ========================================================================== */
#site-header .top {
	background: #000000;
	text-transform: uppercase;
	font-size: 10px;
}
#site-header .top .col-md-4 {
	text-align: right;
}
#site-header .top,
#site-header .top a {
	color: #fff;
}
#site-header .top a:hover {
	color: #bcc702;
}
#top-menu .menu > li {
	margin-right: 25px;
}
#top-menu .menu .sub-menu {
	width: 180px;
	background: #000000;
}
#top-menu .menu .sub-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	padding: 0 10px;
}
#top-menu .menu ul ul {
	left: 180px;
	top: 0;
}
#site-header .extra-info ul {
	float: right;
}

/* Header Version 1 - Middle
   ========================================================================== */
.logo {
	margin: 20px 0;
}
.search-cat.navbar-default {
	background: none;
	margin: 18px 0;
	border-color: #dedede;
	-webkit-border-radius: 0;
	-moz-border-radius:    0;
	-ms-border-radius:     0;
	border-radius:         0;
}
.search-cat.navbar-default .nav > li:after {
	background: #dee5ef;
	content: "";
	height: 31px;
	position: absolute;
	right: -18px;
	top: 9px;
	right: -5px;
	width: 1px;
}
.search-cat.navbar-default .navbar-nav li a.dropdown-toggle,
.search-cat.navbar-default .navbar-nav li a:hover {
	background: none;
}
.search-cat.navbar-default .navbar-nav li a.dropdown-toggle {
	text-transform: uppercase;
	color: #685e52;
	font-weight: 600;
	font-size: 14px;
}
.search-cat.navbar-default .navbar-nav li a .caret {
	margin-left: 10px;
	margin-top: -3px;
	border-top-color: #a3a29e;
}
.search-cat.navbar-default .navbar-left {
	padding: 0 0 0 15px;
}
.search-cat.navbar-default .input-group .form-control,
.search-cat.navbar-default .input-group .input-group-addon {
	border: 0;
	box-shadow: none;
	font-size: 13px;
}
.search-cat.navbar-default .input-group .form-control {
	width: 345px;
}
.search-cat.navbar-default .input-group .form-control::-moz-placeholder {
	color: #d4d4d4;
}
.search-cat.navbar-default .input-group .input-group-addon {
	background: none;
	font-size: 16px;
	padding-right: 4px;
	padding-top: 4px;
}
.shop-cart {
	padding: 20px 0;
}
.cart-control {
	border: 1px dashed #dedede;
	color: #000000;
	display: block;
	font-size: 16px;
	font-weight: 600;
	height: 48px;
	line-height: 42px;
	text-align: center;
	width: 170px;
}
.cart-control .cart-item {
	position: relative;
}
.cart-control .cart-item span {
	background: #000000;
	color: #fff;
	font-size: 10px;
	font-weight: 300;
	height: 16px;
	line-height: 16px;
	position: absolute;
	right: -2px;
	top: -4px;
	width: 16px;
	-webkit-border-radius: 50%;
	-moz-border-radius:    50%;
	-ms-border-radius:     50%;
	border-radius:         50%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition:    all 0.3s ease-in-out;
	transition:         all 0.3s ease-in-out;
}
.cart-control:hover .cart-item span {
	background: #bcc702;
}
.cart-control .cart-price {
	margin-left: 16px;
}
.shop-cart-open {
	position: relative;
	right: 280px;
}
.shop-cart .shop-item {
	position: fixed;
	width: 280px;
	height: 100%;
	top: 0;
	background: #25221f;
	z-index: 100001;
	padding: 0 20px;
	color: #000000;
	right: -280px;
	overflow-x: scroll;
	-webkit-transition: right .4s ease-in-out 0s;
	-moz-transition:    right .4s ease-in-out 0s;
	transition:         right .4s ease-in-out 0s;
}
.shop-cart .shop-item.active {
	right: 0;
}
.admin-bar .shop-cart .shop-item {
	top: 28px;
}
.shop-cart .shop-item .shop-item-title {
	color: #000000;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	border-bottom: 1px solid #000000;
	padding: 15px 0;
	margin-bottom: 28px;
}
.shop-cart .shop-item .shop-item-title i {
	color: #635d56;
	font-size: 30px;
	position: absolute;
	right: 24px;
	top: 3px;
	font-style: normal;
}
.shop-cart .shop-item .shop-item-title i:hover,
.shop-cart ul.cart_list li a:hover,
.shop-cart .buttons a.button:hover {
	color: #97c03c;
	background: none;
}
.shop-cart ul.cart_list {
	list-style: none;
	margin: 0;
}
.shop-cart ul.cart_list li {
	border-bottom: 1px dashed #000000;
	margin: 0 0 15px;
	padding: 0 0 15px;
}
.shop-cart ul.cart_list li:last-child {
	border-bottom-style: solid;
}
.shop-cart ul.cart_list li .remove {
	position: absolute;
	right: 20px;
	color: #635d56 !important;
	font-weight: 300;
	font-size: 20px;
}
.shop-cart ul.cart_list li .remove:hover {
	color: #97c03c !important;
	background: none;
}
.shop-cart ul.cart_list li a {
	color: #b2b2b2;
	font-weight: 400;
}
.shop-cart ul.cart_list li img {
	float: left;
	width: 40px;
	height: 40px;
	margin: 0 15px 0 0;
}
.shop-cart ul.cart_list li .quantity {
	display: block;
}
.shop-cart .total {
	margin-bottom: 30px;
}
.shop-cart .total strong {
	font-weight: 500;
	font-size: 14px;
}
.shop-cart .total .amount {
	font-size: 20px;
	color: #bcc702;
	float: right;
	margin-top: -5px;
}
.shop-cart .buttons a.button {
	background: none;
	border: 2px solid #000000;
	width: 100%;
	margin-bottom: 10px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #000000;
	height: 50px;
	line-height: 48px;
	display: block;
	text-transform: uppercase;
	padding: 0;
	-webkit-border-radius: 2px;
	-moz-border-radius:    2px;
	-ms-border-radius:     2px;
	border-radius:         2px;
}
.shop-cart .buttons a.button.checkout {
	background: #bcc702;
	border-color: #bcc702;
	color: #fff !important;
}
.shop-cart .buttons a.button.checkout:hover {
	background: #78a224;
}

/* Header Version 1 - Bottom
   ========================================================================== */
.dl-menuwrapper {
	display: none;
}
#site-header .bot {
	background: #fff;
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #dedede;
}

#site-header .bot2 {
	background: #0;
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #dedede;
}
#site-header .top.sticky {
	top: 0;
	width: 100%;
	z-index: 99;
}
#site-header .bot.sticky {
	top: 34px;
	width: 100%;
	z-index: 90;
}

#site-header .bot2.sticky {
	top: 85px;
	width: 100%;
	z-index: 80;
}


#site-header .bot.sticky #left-menu .menu {
	opacity: 0;
	visibility: hidden;
}
#site-header .bot2.sticky #left-menu .menu {
	top: 34px;
	width: 100%;
	z-index: 90;
}
#site-header .bot .container {
	position: relative;
}
#site-header .bot [class*="col-"] {
	position: inherit;
}
#site-header .bot2 .container {
	position: relative;
}
#site-header .bot2 [class*="col-"] {
	position: inherit;
}
#main-menu {
	float: left;
}
#main-menu .menu > li {
	font-size: 11px;
	padding: 11px 0;
	margin-left: 4px;
}
#main-menu .menu > li.new:before,
#main-menu .menu > li.new:after,
#main-menu .menu > li.hot:before,
#main-menu .menu > li.hot:after {
	content: "";
	position: absolute;
}
#main-menu .menu > li.new:before,
#main-menu .menu > li.hot:before {
	content: "NEW";
	width: 29px;
	height: 15px;
	text-align: center;
	color: #fff;
	font-size: 7px;
	background: #6dcff6;
	line-height: 15px;
	right: 0;
	top: -6px;
	-webkit-border-radius: 2px;
	-moz-border-radius:    2px;
	-ms-border-radius:     2px;
	border-radius:         2px;
}
#main-menu .menu > li.new:after,
#main-menu .menu > li.hot:after {
	border: 3px solid transparent;
	border-top: 3px solid #6dcff6;
	right: 18px;
	top: 9px;
}
.sticky #main-menu .menu > li.new:before,
.sticky #main-menu .menu > li.hot:before {
	top: 0;
}
.sticky #main-menu .menu > li.new:after,
.sticky #main-menu .menu > li.hot:after {
	top: 15px;
}
#main-menu .menu > li.hot:before {
	content: "HOT";
	background: #ff6565;
}
#main-menu .menu > li.hot:after {
	border-top-color: #ff6565;
}
.site-header.v2 #main-menu > li.new:before {
	background: #5d7ac3;
}
.site-header.v2 #main-menu > li.new:after {
	border-top-color: #5d7ac3;
}
.site-header.v2 #main-menu > li.hot:before {
	background: #f54b31;
}
.site-header.v2 #main-menu > li.hot:after {
	border-top-color: #f54b31;
}
#main-menu .menu > li > a {
	display: block;
	padding: 6px 18px;
	text-transform: uppercase;
	font-weight: 600;
	-webkit-border-radius: 2px;
	-moz-border-radius:    2px;
	-ms-border-radius:     2px;
	border-radius:         2px;
}
#main-menu .menu li.active > a,
#main-menu .menu > li > a:hover {
	background: #bcc702;
	color: #fff;
}
#main-menu .menu li a i {
	font-size: 14px;
}
#main-menu .sub-menu {
	width: 220px;
	background: #fff;
	top: 100px;
	left: 50%;
	margin-left: -110px;
	border: 1px solid #ededed;
}
#main-menu li:hover > .sub-menu {
	top: 48px;
}
#main-menu .sub-menu:not(.mega-submenu) li {
	padding: 0 20px;
}
#main-menu .sub-menu li.parent:after {
	content: "\f105";
	font-family: FontAwesome;
	font-size: 14px;
	position: absolute;
	right: 20px;
	top: 14px;
	color: #ddd;
}
#main-menu .sub-menu li a {
	border-bottom: 1px solid #ededed;
	padding: 15px 0;
	display: block;
	font-size: 13px;
	color: #667279;
}
#main-menu .sub-menu li a:hover {
	color: #bcc702;
}
#main-menu .sub-menu li:last-child a {
	border: 0;
}
#main-menu .sub-menu ul {
	left: 218px;
	margin: 0;
	top: 50px;
}
#main-menu .sub-menu li:hover ul {
	top: -1px;
}
#main-menu .sub-menu .rtl ul {
	left: -220px;
}
/*
#main-menu li.mega-menu {
	position: static;
}
*/
#main-menu li.mega-menu ul {
	width: auto;
	max-width: 1170px;
}
#main-menu li.mega-menu > .mega-submenu {
	left: 0;
	margin: 0;
	background: #fff;
	padding: 30px 15px;
}
#main-menu li.mega-menu .mega-submenu li,
#left-menu .menu .mega-menu .sub-menu li {
	position: relative;
	list-style: none;
}
#main-menu li.mega-menu .mega-submenu li .mega-title,
#left-menu .menu .mega-menu .sub-menu li .mega-title {
	font-size: 12px;
	text-transform: uppercase;
	color: #000;
	font-weight: 600;
}
#main-menu li.mega-menu .mega-submenu li a,
#left-menu .menu .mega-menu .sub-menu li a {
	border: 0;
	padding: 12px 0;
}
#main-menu li.mega-menu .mega-submenu ul li {
	display: block;
	width: 100%;
}
#main-menu li.mega-menu .text-block,
#left-menu .menu .mega-menu .text-block {
	font-size: 13px;
	color: #667279;
	line-height: 2;
	padding: 8px 0;
}
#left-menu {
	background: #fff;
	border-color: #dedede;
	border-style: solid;
	border-width: 0 1px;
	width: 270px;
}
#left-menu button {
	background: none;
	color: #bcc702;
	font-size: 14px;
	font-weight: 600;
	height: 48px;
	padding: 0 15px;
	position: relative;
	text-align: left;
	text-transform: uppercase;
	width: 100%;
	border: 0;
}
#left-menu button i {
	margin-right: 10px;
}
#left-menu .menu {
	background: #fff;
	left: 0;
	margin-top: 1px;
	opacity: 0;
	position: absolute;
	visibility: hidden;
	width: 270px;
	border-color: #dedede;
	border-style: solid;
	border-width: 0 1px 1px;
	z-index: 10;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition:    all 0.3s ease-in-out;
	transition:         all 0.3s ease-in-out;
}
#left-menu .menu.active,
#left-menu.expand .menu {
	opacity: 1;
	visibility: visible;
}
#left-menu .menu > li,
#left-menu .menu li:not(.mega-menu) li {
	display: inline-block;
	width: 100%;
	padding: 0 20px;
}
#left-menu .menu li.parent:after {
	content: "\f105";
	position: absolute;
	font-family: FontAwesome;
	right: 20px;
	top: 13px;
	color: #ddd;
}
#left-menu .menu li a {
	border-bottom: 1px solid #dedede;
	font-size: 11px;
	font-weight: 600;
	padding: 0;
	text-transform: uppercase;
	display: block;
	padding: 15px 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition:    all 0.3s ease-in-out;
	transition:         all 0.3s ease-in-out;
}
#left-menu .menu li:last-child > a {
	border: 0;
}
#left-menu .menu .sub-menu {
	left: 120%;
	width: 270px;
	border: 1px solid #dedede;
	top: -1px;
}
#left-menu .menu li:hover .sub-menu {
	left: 100%;
}
#left-menu .menu .sub-menu li a {
	color: #667279;
	text-transform: none;
	font-size: 13px;
	font-weight: 400;
}
#left-menu .menu .sub-menu li a:hover {
	color: #bcc702;
}
#left-menu .menu .mega-menu .sub-menu {
	width: 600px;
	background: url('../placeholder/bg_mega_menu.jpg') no-repeat 0 0 / cover;
	padding: 35px 40px;
}
#left-menu .menu .mega-menu .sub-menu li {
	padding: 0;
}

/* Header Version 2 - Middle
   ========================================================================== */
#site-header.v2 .search-cat.navbar-default .input-group .form-control {
	width: 245px;
}
.menu-box {
	display: inline-block;
	width: 100%;
	list-style: none;
	margin: 20px 0;
	text-align: right;
}
.menu-box li {
	display: inline-block;
	margin: 0 3px;
}
.menu-box li a {
	border: 1px dashed #dedede;
	display: block;
	padding: 6px 12px;
	text-align: center;
	min-width: 72px;
}
.menu-box li a:hover {
	border-color: #bcc702;
}
.menu-box li a span {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
}

/* Header Version 2 - Bottom
   ========================================================================== */
#site-header.v2 #main-menu .menu li.active > a,
#site-header.v2 #main-menu .menu > li > a:hover {
	background: none;
	color: #685e52;
}
#site-header.v2 #main-menu .menu > li > a:hover {
	color: #000;
}
#site-header.v2 #main-menu .menu > li {
/* 	border-right: 1px solid #dedede; */
	border-top: 1px solid #fff;
	margin: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition:    all 0.3s ease-in-out;
	transition:         all 0.3s ease-in-out;
}
/*
#site-header.v2 #main-menu .menu > li:first-child {
	border-left: 1px solid #dedede;
}
*/
#site-header.v2 #main-menu .menu li.active,
#site-header.v2 #main-menu .menu > li:hover,
#site-header.v2 #main-menu .menu li.shop-cart-v2 {
	border-top: 1px solid #bcc702;
}
#site-header.v2 #main-menu .menu li.shop-cart-v2 span {
	color: #ff6565;
}

/* Header Version 3 - Bottom
   ========================================================================== */
#site-header.v3 .bot {
	background: none;
	border: 0;
}
#site-header.v3 .bot > .container {
	background: url('../placeholder/pattern/pattern_01.png') repeat 0 0;
}
#site-header.v3 .bot.sticky > .container {
	width: 100%;
}
#site-header.v3 .bot.sticky > .container .row {
	max-width: 1170px;
	margin: auto;
}
#site-header.v3 #main-menu {
	float: left;
}
#site-header.v3 #main-menu li a {
	background: none;
	position: relative;
}
#site-header.v3 #main-menu li > a:after {
	content: "";
	position: absolute;
	background: rgba(255, 255, 255, .1);
	width: 1px;
	height: 30px;
	right: 0;
	top: 0;
}
#site-header.v3 #main-menu li:last-child > a:after {
	background: none;
}
#site-header.v3 .bot.sticky #main-menu li.mega-menu > .mega-submenu {
	left: 50%;
	margin-left: -585px;
}

/* Content
   ========================================================================== */
.container {
	padding: 0;
}
.boxed {
	background: #f2f2f2;
}
.boxed .wrapper {
	max-width: 1170px;
	margin: auto;
	width: 100%;
	background: #fff;
}
.boxed .container {
	padding: 0 10px;
}

/* Home version 1
   ========================================================================== */
.page-section.v1-one .wr-element:before {
	content: "";
	position: absolute;
	height: 41px;
	width: 1px;
	background: #dedede;
	right: 0;
	top: 40px;
}
.page-section.v1-one .col-md-3:last-child .wr-element:before {
	background: none;
}
.page-section.v1-two .container {
	border: 1px solid #dedede;
}
.page-section.v1-two .title-1 {
	margin: 0 20px 10px;
}
.page-section.v1-two .col-md-6:last-child > div {
	border-left: 1px solid #dedede;
	padding-bottom: 20px;
}
.page-section.v1-three .col-md-3:after {
	background: #dedede;
	content: "";
	height: 108px;
	position: absolute;
	right: 0;
	top: 30px;
	width: 1px;
}
.page-section.v1-three .col-md-3 h4 {
	margin: 20px 0;
}
.client a {
	margin: 0 15.7px;
	display: inline-block;
}
.client a:hover {
	opacity: .6;
}
.client a:last-child {
	margin-right: 0;
}

/* Home version 2
   ========================================================================== */
.page-section.v2-one {
	background: #000;
	padding: 12px 0;
}
.page-section.v2-one .social li a {
	background: none;
	border: 0;
}
.page-section.v2-one .subscribe .form-group label {
	color: #fff;
    font-weight: 400;
    margin: 5px !important;
    text-transform: uppercase;
    font-size: 15px !important;
    padding-top: 2px;
    float: left;
}
.page-section.v2-one .subscribe .form-group:before {
	left: 116px;
}
.page-section.v2-two .container {
	overflow: hidden;
	border-right: 1px solid #dedede;
}
.page-section.v2-two .col-md-3:not(:first-child) {
	border-width: 1px 1px 1px 0;
	border-style: solid;
	border-color: #dedede;
}
.page-section.v2-two .col-md-3:first-child {
	padding-right: 0;
}
.banner-text {
	background: #f54b31;
	position: relative;
	padding: 25px 25px 32px;
	color: #fff;
}
.banner-text:after {
	content: "";
	position: absolute;
	border: 20px solid transparent;
	border-left: 20px solid #f54b31;
	right: -35px;
	top: 70px;
	z-index: 10;
}
.banner-text h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 27px;
	font-weight: 100;
}
.banner-text h2 span {
	text-transform: none;
	font-size: 50px;
	font-weight: 700;
}
.banner-text .btn {
	color: #fff;
	margin-top: 15px;
}
.page-section.v2-two .product.style-2 {
	padding: 25px 0;
}
.page-section.v2-three .container {
	border: 1px solid #dedede;
}
.page-section.v2-three .row > .col-md-6:last-child {
	border-left: 1px solid #dedede;
	padding-left: 0;
}
.page-section.v2-five .product.style-4.has-border {
	margin: 0 0 -1px;
	clear: none;
}
.page-section.v2-five .product.style-4.has-border:nth-child(2n) {
	margin-left: -1px;
}
.products-title {
	border: 1px solid #dedede;
	margin-right: 1px;
	overflow: hidden;
	border-bottom: 0;
	text-transform: uppercase;
}
.products-title h4 {
	float: left;
	margin: 17px;
}
.products-title a {
	float: right;
	font-size: 11px;
	display: block;
	padding: 18px;
	border-left: 1px solid #dedede;
}
.page-section.v2-five {
	background: #f7f7f7;
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #dedede;
}
.page-section.v2-five .icon-box {
	padding: 10px 0;
	overflow: hidden;
}
#site-footer .product {
	margin-bottom: 15px;
}
#site-footer .icon-box {
	padding: 0;
}
#site-footer .icon-box .text span {
	font-size: 11px;
	display: block;
	text-align: right;
}

/* Home version 3
   ========================================================================== */
.page-section.v3-one .product.style-1 {
	background: #f5f5f5;
	overflow: hidden;
}
.page-section.v3-one .product.style-1 .p-image img,
.page-section.v3-three .product.style-1 .p-image img {
	margin: 0;
	padding: 0;
}
.page-section.v3-one .product.style-1 .p-info {
	margin-top: 140px;
	padding-bottom: 25px;
}
.page-section.v3-one .product .p-info .p-action a {
	background: #fff
}
.page-section.v3-two .container {
	background: url('../placeholder/pattern/pattern_01.png') repeat 0 0;
	position: relative;
	padding: 0 40px;
}
.page-section.v3-two .container:before,
.page-section.v3-two .col-md-4:before,
.page-section.v3-three .row .col-md-6:last-child:after {
	content: "";
	position: absolute;
}
.page-section.v3-two .container:before {
	background: url('../_imgs/icons/badge-trending.png') no-repeat 0 0;
	width: 35px;
	height: 35px;
	left: 0;
	top: 0;
}
.page-section.v3-two .col-md-4:before {
	background: rgba(255, 255, 255, .1);
	height: 90px;
	width: 1px;
	right: 15px;
	top: 40px;
}
.page-section.v3-two .col-md-4:last-child:before {
	background: none;
}
.page-section.v3-two .icon-box .text {
	padding-left: 25px;
}
.page-section.v3-two .icon-box .icons,
.page-section.v3-two .icon-box .text h4 {
	color: #fff;
}
.page-section.v3-two .icon-box .text p {
	color: #999;
	margin-top: 10px;
}
.page-section.v3-three {
	background: #000;
}
.page-section.v3-three .row .col-md-6:last-child:after {
	background: #f5f5f5;
	left: 0;
	height: 100%;
	width: 500%;
	top: 0;
}
.page-section.v3-three .row .col-md-6:last-child > div {
	position: relative;
	z-index: 10;
	padding: 30px 0 70px 45px;
}
.page-section.v3-three .product.style-1 {
	background: #fff;
}
.page-section.v3-three .product.style-1 .p-image {
	width: 44%;
}
.page-section.v3-three .product.style-1 .p-info {
	padding: 10px 0;
}
.page-section.v3-three .owl-theme.navtop .owl-controls {
	right: -10px;
}
.page-section.v3-five,
.page-section.v3-seven {
	background: #f3f3f3;
}
.page-section.v3-five .row .col-md-6:last-child {
	padding-left: 35px;
}
.page-section.v3-five .head-title {
	background: url('../_imgs/bg-heading.png') no-repeat 0 0;
	height: 129px;
	position: relative;
	width: 350px;
	padding-top: 20px;
	padding-left: 25px;
}
.page-section.v3-five .head-title h3 {
	color: #ffcb15;
}
.page-section.v3-five .head-title h5 {
	color: #fff;
}
.page-section.v3-five .row .col-md-6:last-child p,
.page-section.v3-five .row .col-md-6:last-child a:hover {
	color: #999;
}
.page-section.v3-five .row .col-md-6:last-child a {
	color: #bcc702;
}
.page-section.v3-seven {
	border-bottom: 1px solid #dedede;
}
.page-section.v3-seven .title-1 {
	color: #685e52;
	margin-bottom: 20px;
}
.page-section.v3-seven .product.style-4 {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dashed #dedede;	
}
.page-section.v3-seven .p-image {
	width: 19%;
}
.page-section.v3-seven .p-image img {
	border: 0;
}
.page-section.v3-seven .product.style-4 .p-info .price .amount,
.page-section.v3-seven .product.style-4 .p-info h4 {
	font-size: 14px;
}
.page-section.v3-seven .product.style-4 .p-info h4 {
	margin-top: -2px;
}
.page-section.v3-seven .product .p-info .star-rating {
	margin: 10px 0 5px;
}
.page-section.v3-seven .product .p-info .price {
	margin: 0;
}

/* Home version 4
   ========================================================================== */
.page-section.v4-one {
	background: url('../placeholder/pattern/pattern_02.png') repeat 0 0;
}
.page-section.v4-one .container:first-child {
	padding-bottom: 50px;
}
.page-section.v4-one .title-2 {
	margin-bottom: 0;
}
.page-section.v4-two .product.style-2 .p-image:hover:before {
	opacity: 0;
}
.page-section.v4-three {
	background: url('../placeholder/home-v4/bg_01.jpg') repeat 0 0;
}
.page-section.v4-three .title-2 {
	color: #fff;
}

/* Top Bar
   ========================================================================== */
.topbar {
	background: #000000;
}
.topbar .page-title {
	background: #2b2621;
	float: left;
	text-align: center;
	width: 269px;
}
.topbar .page-title .page-title-inner {
	height: 197px;
}
.topbar .page-title h1 {
	color: #ffffff;
	font-size: 24px;
	font-weight: 600;
	padding: 0 10px;
	margin: 0;
	position: relative;
	text-transform: uppercase;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform:    translateY(-50%);
	-ms-transform:     translateY(-50%);
	-o-transform:      translateY(-50%);
	transform:         translateY(-50%);
}
.breadcrumbs {
	margin: 0;
	padding: 15px 0;
}
.breadcrumbs li {
	color: #000;
	display: inline-block;
	font-size: 12px;
	font-weight: normal;
	margin-left: 20px;
	position: relative;
	text-transform: uppercase;
}
.breadcrumbs li:after {
	content: ">";
	position: absolute;
	right: -16px;
	top: 0;
	color: #5f5f5f ;
}
.breadcrumbs li.current,
.breadcrumbs li:after {
	font-weight: 100;
}
.breadcrumbs li a {
	font-size: 10px ;
	color: #5f5f5f ;
}
.breadcrumbs li a:hover {
	color: #bcc702;
}
.breadcrumbs li:last-child::after {
	content: "";
}

.breadcrumbs li:first-child{
	margin-left: 0;
}

/* Under construction page
   ========================================================================== */
.offline-content {
	height: 200px;
}
.offline-content .before-countdown {
	width: 285px;
	float: left;
	background: #f7f7f7;
	height: 200px;
	position: relative;
	border: 1px solid #dedede;
	padding: 30px 25px;
}
.offline-content .before-countdown:after {
	background: #f7f7f7;
	content: "";
	height: 16px;
	position: absolute;
	right: -8px;
	top: 50%;
	margin-top: -8px;
	width: 16px;
	-webkit-box-shadow: 1px 1px 0 0 #dedede;
	-moz-box-shadow:    1px 1px 0 0 #dedede;
	box-shadow:         1px 1px 0 0 #dedede;
	-webkit-transform: rotate(-45deg);
	-moz-transform:    rotate(-45deg);
	-ms-transform:     rotate(-45deg);
	-o-transform:      rotate(-45deg);
	transform:         rotate(-45deg);
}
.offline-content .subscribe .form-group .form-control {
	width: 235px;
	height: 42px;
	padding-left: 15px;
	padding-right: 40px;
}
.offline-content .subscribe .form-group:before {
	left: auto;
	right: 9px;
	top: 15px;
}
.offline-content > .countdown > span {
	width: 220px;
	display: inline-block;
	text-align: center;
	font-size: 60px;
	color: #5c5e62;
	height: 200px;
	font-weight: 300;
	border-width: 1px 1px 1px 0;
	border-color: #dedede;
	border-style: solid;
	padding-top: 35px;
}
.offline-content .countdown > span span {
	text-transform: uppercase;
	display: block;
	font-size: 12px;
	color: #afafaf;
	font-weight: 600;
}

/* Blog & Single post
   ========================================================================== */
.blog-main .post {
	margin-bottom: 80px;
}
.blog-main .entry-header {
	position: relative;
}
.blog-main .entry-header > .entry-thumb {
	overflow: hidden;
}
.blog-main .entry-header > .entry-thumb img {
	width: 100%;
}
.blog-main .entry-header > .entry-thumb .mask {
	background: rgba(0, 0, 0, .7);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition:    all .3s ease-in-out;
	transition:         all .3s ease-in-out;
}
.blog-main .entry-header > .entry-thumb .mask a {
	background: #fff;
	display: block;
	height: 40px;
	left: 50%;
	line-height: 40px;
	margin-left: -20px;
	margin-top: -40px;
	position: absolute;
	text-align: center;
	top: 30%;
	width: 40px;
	opacity: 0;
}
.blog-main .entry-header > .entry-thumb:hover .mask,
.blog-main .entry-header > .entry-thumb:hover .mask a {
	opacity: 1;
}
.blog-main .entry-header > .entry-thumb:hover .mask a {
	top: 50%;
}
.blog-main .entry-header > .cat-links {
	bottom: 95px;
	left: 70px;
	position: absolute;
	max-height: 225px;
	overflow: hidden;
}
.entry-header > .entry-thumb .gallery .gallery-caption {
	display: none;
}
.entry-header > .entry-thumb .gallery .owl-controls {
	margin: 0;
}
.entry-header > .entry-thumb .gallery .owl-controls .owl-pagination {
	z-index: 1000;
}
.gallery .gallery-icon {
	text-align: center;
}
.entry-header > .cat-links a {
	display: inline-block;
	background: #ff6565;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	height: 40px;
	line-height: 40px;
	padding: 0 16px;
	font-weight: 600;
	margin-top: 5px;
}
.entry-header > .cat-links a:hover {
	background: #f24545;
}
.blog-main .post .entry-content {
	width: 632px;
	background: #fff;
	position: relative;
	margin: -85px 0 0 70px;
	padding: 20px 30px 0;
	color: #000000;
}
.entry-content .more-link {
	color: #bcc702;
	display: inline-block;
	margin-top: 10px;
	padding-left: 20px;
	background: url('../_imgs/icons/read-more.png') no-repeat left 7px;
}
.entry-meta .entry-title {
	margin: 0 0 15px;
}
.entry-meta .entry-title a {
	color: #000000;
	font-weight: 400;
}
.entry-meta .entry-title a:hover,
.post-meta a:hover {
	color: #bcc702;
}
.post-meta {
	border-bottom: 1px dashed #c2c2c2;
	padding-bottom: 12px;
	margin: 5px 0 15px;
}
.post-meta a {
	color: #7a7773;
}
.post-meta .comments-link {
	float: right;
}
.page-nav {
	border: 1px solid #dedede;
	padding: 20px;
	text-align: right;
	margin-top: 120px;
}
.shop-main.fullwidth .page-nav {
	margin: 0;
}
.page-nav .pull-left {
	margin-left: 15px;
}
.page-nav a,
.page-nav .current {
	display: inline-block;
	width: 20px;
	text-align: center;
	position: relative;
	margin-left: 10px;
	font-weight: 600;
}
.page-nav a:hover,
.page-nav .current {
	color: #bcc702;
}
.page-nav a:after,
.page-nav .current:after {
	content: "/";
	position: absolute;
	left: -10px;
	color: #000000;
	font-weight: 300;
}
.page-nav a.prev:after,
.page-nav a.next:after,
.page-nav .prev + .page-numbers:after,
.page-nav span:first-child.current:after {
	content: "";
}
.page-nav a.prev,
.page-nav a.next {
	float: left;
	height: 20px;
	border: 1px solid #dedede;
	line-height: 18px;
}
.page-nav a.prev {
	margin: 0 10px 0 0;
}
.nav-shop .navbar-nav {
	width: 160px;
	text-transform: uppercase;
}
.nav-shop .navbar-nav > li,
.nav-shop .navbar-nav > li > a,
.nav-shop .dropdown-menu > li > a {
	width: 100%;
	text-align: left;
}
.nav-shop .navbar-nav > li > a {
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-weight: 700;
}
.nav-shop .dropdown a:after {
	content: "";
}
.nav-shop .dropdown-toggle i {
	border: 1px solid #dedede;
	color: #000000;
	font-weight: 700;
	height: 20px;
	line-height: 18px;
	text-align: center;
	width: 20px;
	margin-left: 10px;
}
.nav-shop .nav .open > a,
.nav-shop .nav .open > a:focus,
.nav-shop .nav .open > a:hover,
.nav-shop .nav a,
.nav-shop .nav a:focus,
.nav-shop .nav a:hover {
	background: none;
	border: 0;
}
.nav-shop .navbar-nav > li > .dropdown-menu {
	margin-top: 10px;
}
.nav-shop .navbar-nav,
.page-nav a.next,
.blog-single .hentry {
	margin: 0;
}
.blog-single .entry-title {
	margin-top: 30px;
}
.blog-single .entry-content {
	width: 100%;
	margin: 0;
	padding: 0;
}
.blog-single .entry-content ul {
	list-style: inside;
}
.blog-single .entry-content {
	color: #000000;
}
.blog-single .entry-content blockquote {
	border: 1px dashed #dedede;
	margin: 40px;
	color: #868482;
	font-size: 13px;
	padding: 30px 40px;
	line-height: 22px;
}
.blog-single .post-meta > span {
	color: #000000;
	margin-right: 20px;
}
.blog-single .post-meta .comments-link {
	margin: 0;
}
.blog-single .entry-header .entry-title {
	font-size: 24px;
	margin-top: 20px;
}
.blog-single .post-meta {
	padding-bottom: 20px;
}
.entry-footer {
	margin-bottom: 55px;
}
.entry-footer .tags-links {
	display: block;
	padding: 15px 0;
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #dedede;
}
.entry-footer .tags-links i {
	font-size: 18px;
	color: #010101;
}
.entry-footer .tags-links a {
	position: relative;
	margin-left: 35px;
}
.entry-footer .tags-links a:before {
	width: 5px;
	height: 5px;
	background: #bfbcb9;
	content: "";
	position: absolute;
	left: -10px;
	top: 8px;
	-webkit-border-radius: 5px;
	-moz-border-radius:    5px;
	-ms-border-radius:     5px;
	border-radius:         5px;
}
.single-share {
	display: inline-block;
	width: 100%;
	padding: 18px 0;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	line-height: 35px;
	text-align: right;
	color: #000000;
}
.single-share .social {
	float: right;
}
.single-share .social li a {
	position: relative;
}
.single-share .social li:first-child a {
	margin-left: 30px;
}
.single-share .social li span {
	background: rgba(0, 0, 0, .7);
	bottom: 10px;
	font-size: 11px;
	height: auto;
	left: 50%;
	line-height: 20px;
	margin-left: -35px;
	opacity: 0;
	padding: 3px 6px;
	pointer-events: none;
	position: absolute;
	text-align: center;
	text-indent: 0;
	width: 70px;
	z-index: 999;
	color: #fff;
	text-transform: none;
	-webkit-border-radius: 3px;
	-moz-border-radius:    3px;
	-ms-border-radius:     3px;
	border-radius:         3px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition:    all .3s ease-in-out;
	transition:         all .3s ease-in-out;
}
.single-share .social li a:hover span {
	bottom: 40px;
	opacity: 1;
}
.single-share .social li span:after {
	border-left: 5px solid rgba(0, 0, 0, 0);
	border-right: 5px solid rgba(0, 0, 0, 0);
	border-top: 5px solid rgba(0, 0, 0, 0.7);
	bottom: -5px;
	content: "";
	left: 50%;
	margin-left: -4px;
	position: absolute;
}
.author-info {
	padding: 15px;
	border: 1px dashed #d1d1d1;
	background: #fbfbfb;
	overflow: hidden;
}
.author-info,
.author-info img {
	-webkit-border-radius: 2px;
	-moz-border-radius:    2px;
	-ms-border-radius:     2px;
	border-radius:         2px;
}
.author-info img {
	border: 5px solid #fff;
	float: left;
	margin-right: 12px;
}
.author-info .author-bio {
	overflow: hidden;
	color: #858585;
}
.author-info .author-bio h3 {
	margin: 5px 0 8px;
}
.author-info .author-bio h3 span {
	color: #bcc702;
}
#related-posts {
	position: relative;
	overflow: hidden;
	margin-bottom: 50px;
}
.author-info .author-bio h3,
#related-posts h3,
.comments-area h3 {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
}
#related-posts h3 {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #dedede;
}
#related-posts ul {
	list-style: none;
	margin: 0;
}
#related-posts figure {
	margin: 0;
}
#related-posts .c-nav {
	position: absolute;
	right: 0;
	top: 14px;
}
#related-posts .c-nav a {
	color: #9e9e9e;
	font-size: 20px;
	cursor: pointer;
}
#related-posts .c-nav a:hover,
#related-posts figcaption a:hover {
	color: #bcc702;
}
#related-posts .c-nav a.next {
	margin-left: 20px;
}
#related-posts .owl-carousel {
	width: calc(100% + 30px);
}
#related-posts .owl-item {
	padding-right: 30px;
}
#related-posts figure .mask {
	height: calc(100% - 22px);
	position: absolute;
	text-align: center;
	top: 0;
	width: calc(100% - 30px);
}
#related-posts figure .mask a {
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	background: #fff;
	display: inline-block;
	margin: 0 5px;
	opacity: 0;
}
#related-posts figure .mask a:hover {
	background: #bcc702;
	color: #fff;
}
#related-posts figure .mask a:first-child {
	-webkit-transform: translateY(100px);
	-moz-transform:    translateY(100px);
	-ms-transform:     translateY(100px);
	-o-transform:      translateY(100px);
	transform:         translateY(100px);
}
#related-posts figure .mask a:last-child {
	-webkit-transform: translateY(30px);
	-moz-transform:    translateY(30px);
	-ms-transform:     translateY(30px);
	-o-transform:      translateY(30px);
	transform:         translateY(30px);
}
#related-posts figure:hover .mask a {
	opacity: 1;
	-webkit-transform: translateY(60px);
	-moz-transform:    translateY(60px);
	-ms-transform:     translateY(60px);
	-o-transform:      translateY(60px);
	transform:         translateY(60px);
}
#related-posts figcaption {
	background: #fff;
	width: 228px;
	position: relative;
	margin: -42px 0 0 18px;
	padding: 10px 20px;
}
#related-posts figcaption h4 {
	line-height: 20px;
	margin-top: 0;
	font-weight: 400;
}
#related-posts figcaption a {
	font-size: 14px;
	color: #000000;
}
.comments-area .comment-list {
	border: 1px solid #dedede;
	padding: 20px;
}
.comments-title {
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid #dedede;
}
.comments-area ol {
	list-style: none;
	margin: 0;
	position: relative;
}
.comments-area .comment-body {
	display: inline-block;
	width: 100%;
	border-bottom: 1px dashed #dedede;
	margin-bottom: 20px;
	padding-bottom: 20px;
	color: #000000;
}
.comments-area .comment-list > li:last-child .comment-body {
	border: 0;
	margin: 0;
}
.comments-area .comment-list > li,
.comments-area .comment-body .comment-meta {
	overflow: hidden;
}
.comments-area .comment-body .comment-avatar {
	float: left;
	margin-right: 15px;
	text-align: center;
	position: relative;
}
.comments-area .comment-body .comment-avatar img {
	padding: 10px;
	border: 1px dashed #d1d1d1;
}
.comments-area .comment-body .comment-author {
	font-style: normal;
}
.comments-area .comment-body .comment-author,
.comments-area .comment-body .comment-author a {
	font-size: 13px;
	color: #000000;
	font-weight: 600;
}
.comments-area .comment-body .comment-meta time {
	color: #000000;
}
.comments-area .comment-body .comment-content {
	margin-top: 10px;
	padding-left: 85px;
}
.comments-area .comment-body .comment-content p {
	margin: 0;
}
.comments-area .comment-body footer {
	padding-left: 75px;
}
.comments-area .action-link {
	float: right;
}
.comments-area .action-link a {
	font-size: 10px;
	display: inline-block;
	padding: 3px 10px;
	margin-left: 5px;
	border: 1px dashed #dedede;
}
.comments-area .action-link a:hover {
	border-color: #bcc702;
}
.comments-area .children li {
	margin-left: 90px;
}
.comment-respond {
	background: #fcfcfc;
	padding: 20px;
	margin-top: 50px;
	overflow: hidden;
}
.comment-respond .comment-reply-title {
	margin: 0 0 20px;
}
.comment-respond .comment-form label {
	font-weight: 500;
	color: #3d3d3d;
	margin-bottom: 5px;
	display: block;
}
.comment-respond .comment-form .pull-right {
	width: 45%;
}
.comment-respond .comment-form .pull-right > p {
	margin-bottom: 15px;
}
.comment-respond .comment-form .pull-right + .comment-form-comment {
	float: left;
	width: 52%;
}
.comment-respond .comment-form [class*="comment-form"] input,
.comment-respond .comment-form .comment-form-comment textarea {
	padding: 10px;
	width: 100%;
	border: 1px solid #dedede;
	border-radius: 0;
	height: auto;
}
.comment-respond .comment-form [class*="comment-form"] input:focus,
.comment-respond .comment-form .comment-form-comment textarea:focus {
	border-color: #000000;
}
.comment-respond .comment-form .form-submit {
	float: left;
	position: relative;
	margin-left: 25px;
}
.comment-respond .comment-form .form-submit:before {
	font-family: FontAwesome;
	content: "\f075";
	left: 16px;
	top: 8px;
	position: absolute;
	color: #000000;
}
.comment-respond .comment-form .form-submit input[type="submit"] {
	display: block;
	text-transform: uppercase;
	border-radius: 0;
	border: 1px dashed #d1d1d1;
	font-weight: 600;
	font-size: 11px;
	background: none;
	padding-left: 40px;
	padding-right: 20px;
	height: 42px;
}
.comment-respond .comment-form .form-submit input[type="submit"]:hover {
	border-color: #bcc702;
	color: #bcc702;
}

/* 404 page
   ========================================================================== */
.error-404 {
	padding: 190px 0;
}
.error-404 h1 {
	font-size: 173px;
	color: #e0e0e0;
	font-weight: 900;
}
.error-404 h3 {
	font-weight: 400;
	line-height: 34px;
}
.error-404 ul li {
	list-style: none;
	display: block;
	margin-bottom: 12px;
}
.error-404 ul li a {
	color: #bcc702;
}
.error-404 ul li a:hover {
	color: #000000;
}

/* Blank page
   ========================================================================== */
.blank .page-section.one {
	background: #ffc30d;
}
.blank .page-section.one h2 {
	font-weight: 700;
	margin-bottom: 0;
	margin-top: 100px;
}
.blank .page-section.one h2.color-white {
	color: #fff;
	margin: 10px 0 35px;
}
.blank .page-section.two {
	background: #eff3f6;
}
.blank #site-footer {
	background: #3c3e43;
	font-size: 11px;
	color: #747880;
	padding-top: 20px;
}

/* Contact page
   ========================================================================== */
.page-section.contact-one {
	background: url('../placeholder/bg_contact.jpg') no-repeat left bottom / cover;
}
.page-section.contact-one * {
	color: #fff;
}
.page-section.contact-two .form-control {
	border-color: #dedede;
	box-shadow: none;
}
.page-section.contact-two .form-control,
.page-section.contact-two .btn {
	-webkit-border-radius: 2px;
	-moz-border-radius:    2px;
	-ms-border-radius:     2px;
	border-radius:         2px;
}
.page-section.contact-two .form-control::-moz-placeholder {
	color: #d0ccc7;
	font-size: 11px;
}
.page-section.contact-two .btn {
	background: #bcc702;
	text-transform: uppercase;
	border: 0;
	color: #fff;
	font-size: 11px;
	padding: 10px 20px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition:    all .3s ease-in-out;
	transition:         all .3s ease-in-out;
}
.page-section.contact-two .btn:hover {
	background: #78a224;
}

/* FAQs page
   ========================================================================== */
.page-section.faq-one {
	background: #000000;
}
.page-section.faq-one h4 {
	color: #fff;
}
.page-section.faq-one .search-cat.col-md-6 {
	float: none;
	margin: 25px auto 20px;
	padding: 0;
	width: 560px;
	background: #fff;
}
.page-section.faq-one .icon-box.style-3 .icons {
	background: #26221e;
	color: #bcc702;
	font-size: 18px;
}
.page-section.faq-one .icon-box.style-3 .text h4 {
	font-size: 14px;
	margin-top: 20px;
}
.page-section.faq-three {
	background: #bcc702;
}
.page-section.faq-three * {
	color: #fff;
}
.page-section.faq-three .btn {
	background: #87af34;
	font-size: 11px;
	-webkit-border-radius: 2px;
	-moz-border-radius:    2px;
	-ms-border-radius:     2px;
	border-radius:         2px;
}

/* Landing page
   ========================================================================== */
.page-section.landing-one {
	background: url('../placeholder/landing/bg.jpg') no-repeat left bottom / cover;
	position: relative;
	color: #fff;
}
.page-section.landing-one:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #3c3832;
	opacity: .9;
}
.page-section.landing-one h4 {
	font-weight: 600;
	color: #fff;
	position: relative;
}

/* Popup newsletter
   ========================================================================== */
.modal-backdrop {
	background: #000000;
}
.modal-backdrop.in {
	opacity: .97;
}
.newsletter .modal-dialog {
	width: 448px;
}
.newsletter .modal-content {
	border-radius: 0;
	background: url('../_imgs/bg_newsletter.png') repeat-x 0 0 #fff;
	box-shadow: none;
	border: 0;
}
.newsletter .modal-content h4 {
	padding-bottom: 20px;
	position: relative;
}
.newsletter .modal-content h4:after {
	content: "";
	position: absolute;
	height: 1px;
	width: 112px;
	background: #e9e5e2;
	left: 50%;
	margin-left: -56px;
	bottom: 4px;
}
.newsletter .modal-content .close {
	background: #bcc702;
	color: #fff;
	height: 30px;
	line-height: 20px;
	text-align: center;
	width: 30px;
	opacity: 1;
	position: absolute;
	right: -13px;
	top: -12px;
	border: 3px solid #fff;
	font-size: 14px;
	font-weight: 100;
	z-index: 100;
	-webkit-border-radius: 50%;
	-moz-border-radius:    50%;
	-ms-border-radius:     50%;
	border-radius:         50%;
}
.newsletter .modal-content .close:hover {
	background: #87af34;
}
.newsletter .modal-body {
	padding: 25px;
}
.newsletter .subscribe {
	max-width: 364px;
	margin: 40px auto 0;
}

/* Services page
   ========================================================================== */
.page-section.services-one {
	background: url('../placeholder/bg_services.jpg') no-repeat left bottom / cover;
}
.page-section.services-one *,
.page-section.testimonial-one * {
	color: #fff;
}
.page-section.services-two h4.textup {
	margin-top: 0;
}
.page-section.services-two .icon-box {
	padding: 0;
}
.page-section.services-three {
	background: #f4f4f4;
}
.page-section.services-three .icon-box .icons {
	background: #000000;
}

/* Testimonial
   ========================================================================== */
.page-section.testimonial-one {
	background: url('../placeholder/bg_testimonial.jpg') no-repeat left bottom / cover;
}
.page-section.testimonial-two .testimonial {
	margin-bottom: 50px;
}
.page-section.testimonial-three {
	background: url('../placeholder/bg_member.jpg') no-repeat left bottom / cover;
}
.page-section.testimonial-three * {
	color: #fff;
}
.page-section.testimonial-three .search-cat.col-md-6 {
	float: none;
	margin: 25px auto 20px;
	padding: 0;
	width: 560px;
	background: #fff;
}

/* Topbar notification
   ========================================================================== */
.topbar-noti {
	background: #ea593c;
}
.topbar-noti .container * {
	color: #fff;
	text-align: center;
	font-size: 18px;
	margin: 0;
}
.topbar-noti .container .btn {
	font-size: 12px;
	background: #363636;
	margin-left: 20px;
}
.topbar-noti .container .btn:hover {
	background: #000;
}

/* Popup Banner
   ========================================================================== */
.p-banner .modal-dialog {
	width: 660px;
}
.p-banner .modal-content {
	box-shadow: none;
	border: 0;
}
.p-banner .modal-content h4 {
	padding-bottom: 20px;
	position: relative;
}
.p-banner .modal-content h4:after {
	content: "";
	position: absolute;
	height: 1px;
	width: 112px;
	background: #e9e5e2;
	left: 50%;
	margin-left: -56px;
	bottom: 4px;
}
.p-banner .modal-content .close {
	color: #000;
	text-align: center;
	opacity: 1;
	position: absolute;
	right: 10px;
	top: 5px;
	font-size: 24px;
	font-weight: 400;
	z-index: 100;
}
.p-banner .modal-content .close:hover {
	color: #888;
}
.p-banner .modal-body {
	padding: 0;
}
.p-banner .modal-body .col-md-6:first-child img {
	-webkit-border-radius: 6px;
	-moz-border-radius:    6px;
	-ms-border-radius:     6px;
	border-radius:         6px;
}
.p-banner .modal-body .col-md-6:last-child {
	padding-right: 30px;
}

/* Under construction
   ========================================================================== */
.offline #site-header {
	background: #000000;
}

/* About us page
   ========================================================================== */
.page-section.about-one {
	background: #bcc702;
}
.page-section.about-one *,
.page-section.about-one .icon-box.style-5 .text * {
	color: #fff;
}
.page-section.about-two {
	background: #f4f4f4;
}
.page-section.about-three .wr-element {
	float: left;
	width: 20%;
}
.page-section.about-three .wr-element > div {
	float: right;
}
.page-section.about-three .col-md-3:after {
	content: "";
	position: absolute;
	right: 0;
	height: 216px;
	width: 1px;
	background: #dedede;
	top: 10px;
}

/* Shop page - List style
   ========================================================================== */
.shop-main .products.list .product {
	border-bottom: 1px dashed #dedede;
	overflow: hidden;
	padding-bottom: 44px;
	margin-bottom: 30px;
}
.shop-main .products.list .product:last-child {
	margin: 0;
	border: 0;
}
.shop-main .products.list .product > div {
	float: left;
}
.shop-main .products.list .product .p-image {
	width: 33.3333%;
}
.shop-main .products.list .product .p-info {
	width: 66.6666%;
	padding-left: 20px;
}
.shop-main .products.list .product .p-info h4 a {
	color: #000000;
}
.shop-main .products.list .product .p-info .price .amount {
	font-size: 18px;
}
.shop-main .products.list .product .p-info .price del {
	font-size: 13px;
}
.shop-main .products.list .product .p-info .p-desc {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dashed #dedede;
}
.shop-main .products.list .product .p-info .p-desc p,
.shop-main .col-md-9 .nav-shop:last-child {
	margin: 0;
}
.shop-main .col-md-9 .nav-shop:first-child {
	margin: 0 0 30px;
}
.style-switch {
	position: relative;
	padding-left: 6px;
	margin-left: 20px;
}
.style-switch:before {
	content: "";
	position: absolute;
	width: 1px;
	background: #dedede;
	height: 37px;
	left: 0;
	top: -8px;
}
.style-switch a {
	cursor: pointer;
	display: block;
	margin: 4px 0 0 15px;
	float: left;
}
.style-switch a:after {
	content: "";
}
.style-switch a.grid {
	background: url('../_imgs/icons/grid.png') no-repeat 0 -26px;
	height: 14px;
	width: 14px;
}
.style-switch a.list {
	background: url('../_imgs/icons/list.png') no-repeat 0 -26px;
	height: 16px;
	width: 16px;
}
.style-switch a:hover,
.style-switch a.active {
	background-position: 0 0;
	cursor: pointer;
}

/* Shop page - Grid style
   ========================================================================== */
.shop-main .products.grid .product .p-mask {
	position: relative;
}
.shop-main .products.grid .product .p-mask a {
	width: 40px;
	height: 38px;
	border: 1px dashed #dedede;
	display: block;
	text-align: center;
	line-height: 36px;
	color: #a1978d;
	font-size: 18px;
	position: absolute;
	opacity: 0;
	left: -10px;
	bottom: 10px;
	background: #fff;
	-webkit-transition-delay: .16s;
	-moz-transition-delay:    .16s;
	transition-delay:         .16s;
}
.shop-main .products.grid .p-image:hover .p-mask a {
	opacity: 1;
	left: 10px;
}
.shop-main .products.grid .product .p-mask a.add-to-cart {
	bottom: 104px;
	-webkit-transition: all .24s ease 0s;
	-moz-transition:    all .24s ease 0s;
	transition:         all .24s ease 0s;
}
.shop-main .products.grid .product .p-mask a.add-to-wishlist {
	bottom: 57px;
	-webkit-transition-delay: .08s;
	-moz-transition-delay:    .08s;
	transition-delay:         .08s;
}
.shop-main .products.grid .product .p-mask a span {
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	opacity: 0;
	padding: 0 15px;
	position: absolute;
	white-space: nowrap;
	height: 27px;
	line-height: 25px;
	top: 5px;
	left: 65px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition:    all .3s ease-in-out;
	transition:         all .3s ease-in-out;
	-webkit-border-radius: 2px;
	-moz-border-radius:    2px;
	-ms-border-radius:     2px;
	border-radius:         2px;
}
.shop-main .products.grid .product .p-mask a span:before {
	border: 6px solid transparent;
	border-right: 6px solid rgba(0, 0, 0, 0.8);
	left: -12px;
	top: 8px;
	content: "";
	position: absolute;
}
.shop-main .products.grid .product .p-mask a:hover span {
	opacity: 1;
	left: 48px;
}
.shop-main .products.grid .p-image {
	text-align: center;
}
.shop-main .products.grid .p-image img {
	-webkit-transition: opacity .35s ease-in-out;
	-moz-transition:    opacity .35s ease-in-out;
	transition:         opacity .35s ease-in-out;
}
.shop-main .products.grid .p-image:hover img {
	opacity: .4;
}
.shop-main .products.grid + .nav-shop {
	margin-top: 60px;
}

/* Shop cart page
   ========================================================================== */
.woo-cart-empty {
	text-align: center;
	width: 536px;
	height: 356px;
	border: 1px dashed #dedede;
	margin: 35px auto 0;
}
.woo-cart-empty .cart-empty {
	color: #685e52;
	margin: 35px 0;
}
.woo-cart-empty img {
	margin-top: 40px;
}
.woo-cart-empty .return-to-shop .button {
	color: #fff;
	font-size: 12px;
	height: 52px;
	line-height: 52px;
	margin: 0;
	font-weight: 600;
	background: #bcc702;
	text-transform: uppercase;
	padding: 0 35px;
	display: inline-block;
	-webkit-border-radius: 2px;
	-moz-border-radius:    2px;
	-ms-border-radius:     2px;
	border-radius:         2px;
}
.woo-cart-empty .return-to-shop .button:hover {
	background: #78a224;
}
.cart form {
	display: inline-block;
	width: 100%;
	padding: 10px 0;
}
.cart form > * {
	float: left;
}
.cart form > table {
	width: 65%;
	border: 0;
	border-radius: 0;
}
.cart .cart-collaterals {
	width: 35%;
	padding-left: 30px;
}
.cart .cart-collaterals .cart_totals {
	width: 100%;
}
.cart table.shop_table th,
.cart .cart-collaterals .cart_totals h2,
.cart table.wishlist_table th {
	font-size: 14px;
	color: #685e52;
	text-transform: uppercase;
	font-weight: 600;
}
.cart .cart_totals_inner table {
	width: 100%;
}
.cart table.shop_table th,
.cart table.shop_table td,
.cart .cart_totals_inner table,
.cart .cart_totals_inner table th,
.cart .cart_totals_inner table td,
.cart table.shop_table,
.cart table.shop_table td,
.cart table.shop_table th,
.cart table.shop_table,
.cart table.shop_table td,
.cart table.shop_table th,
.cart table.wishlist_table thead th,
.cart table.wishlist_table tbody th,
.cart table.wishlist_table tfoot td,
.cart table.wishlist_table tfoot th {
	border: 0;
}
.cart table.shop_table td,
.cart table.shop_table th,
.cart table.wishlist_table td,
.cart table.wishlist_table th,
.cart table.wishlist_table thead th,
.cart table.wishlist_table thead td {
	border-bottom: 1px dashed #dedede;
	padding: 15px;
}
.cart .cart-collaterals .cart_totals table td,
.cart .cart-collaterals .cart_totals table th {
	line-height: 2em;
	padding: 6px 0;
	vertical-align: top;
}
.cart .cart-collaterals .cart_totals table th {
	width: 25%;
	color: #000000;
}
.cart table.shop_table .cart_item td:first-child {
	border-left: 1px dashed #dedede;
	width: 80px;
	padding-right: 0;
}
.cart .woocommerce table.shop_table .cart_item td:last-child {
	border-right: 1px dashed #dedede;
	width: 80px;
}
.cart table.cart img {
	width: 80px;
	height: 80px;
}
.cart table.cart .product-name > * {
	display: block;
}
.cart table.cart .product-name > a {
	color: #000000;
	font-size: 16px;
}
.cart table.cart .product-name > a:hover,
.cart table.cart .amount,
.cart table.cart .amount {
	color: #bcc702;
}
.cart table.cart .amount,
.cart table.cart .amount {
	font-size: 20px;
}
.cart table.cart .product-remove a,
.cart table.wishlist_table .product-remove a {
	border: 1px dashed #dedede;
	border-radius: 0;
	color: #000000 !important;
	font-size: 26px;
	font-weight: 300;
	height: 40px;
	width: 42px;
	line-height: 36px;
	display: block;
	text-align: center;
}
.cart table.cart .product-remove a:hover,
.cart table.wishlist_table .product-remove a:hover,
.cart ul.product_list_widget li a.remove:hover {
	background: none !important;
	color: #ff5555 !important;
}
.cart .cart-collaterals .cart_totals h2 {
	margin: 15px 0;
}
.cart .cart_totals_inner {
	background: #fafafa;
	padding: 10px 20px 20px;
}
.cart .cart_totals_inner table th {
	font-weight: 600;
}
.cart .cart_totals_inner table th,
.cart .cart_totals_inner table td,
.cart table.shop_table td,
.cart table.shop_table th {
	border-bottom: 1px dashed #dedede;
}
.cart .cart-collaterals .cart_totals table select {
	padding: 10px;
}
.cart .cart-collaterals .cart_totals table .shipping-calculator-form #calc_shipping_country_field {
	padding: 0;
}
.cart .cart-collaterals .cart_totals table select,
.cart .cart-collaterals .cart_totals table .shipping-calculator-form input {
	border: 1px dashed #dedede;
}
.cart .cart-collaterals .cart_totals table .shipping-calculator-form #calc_shipping_postcode_field,
.cart .cart-collaterals .cart_totals table .shipping-calculator-form #calc_shipping_postcode_field + p {
	float: left;
	width: 50%;
	padding: 0;
	margin-top: 10px;
}
.cart .cart_totals_inner .wc-proceed-to-checkout .button {
	display: block;
	font-size: 14px;
	font-weight: 600;
	height: 55px;
	line-height: 54px;
	padding: 0;
	text-shadow: none;
	text-transform: uppercase;
	width: 100%;
	text-align: center;
}
.cart .cart_totals_inner .wc-proceed-to-checkout input.button {
	background: #fff !important;
	border: 2px solid #d1d1d1;
	margin: 15px 0 10px;
	line-height: 50px;
}
.cart .cart_totals_inner .wc-proceed-to-checkout input.button:hover {
	color: #bcc702;
}
.cart .cart_totals_inner .wc-proceed-to-checkout a.button {
	background: #bcc702;
	color: #fff;
	margin-bottom: 40px;
}
.cart .cart_totals_inner .wc-proceed-to-checkout a.button:hover,
.cart #payment #place_order:hover,
.cart .woo-cart-empty .return-to-shop .button:hover,
.cart form input[type="submit"]:hover {
	background: #78a224;
}
.cart .cart_totals_inner .coupon label {
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	color: #685e52;
	font-weight: 600;
	margin: 5px 0 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #dedede;
}
.cart .cart_totals_inner .coupon .input-text {
	border-style: dashed;
	width: 211px;
	height: 40px;
	padding: 0 12px;
}
.cart .cart_totals_inner .coupon .button,
.cart .cart-collaterals .cart_totals table .shipping-calculator-form .button,
.cart form.checkout_coupon input.button,
.cart form.login input.button,
.cart form.lost_reset_password input.button,
.cart table.wishlist_table .button {
	background: #000000;
	color: #fff;
	font-weight: 300;
	border-radius: 0;
	margin-left: 10px;
	height: 40px;
	padding: 0 15px;
	border: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
}
.cart .cart_totals_inner .coupon .button:hover,
.cart .cart-collaterals .cart_totals table .shipping-calculator-form .button:hover,
.cart form.checkout_coupon input.button:hover,
.cart form.login input.button:hover,
.cart form.lost_reset_password input.button:hover,
.cart table.wishlist_table .button:hover {
	background: #7a6e60;
}
.cart .cart-collaterals .cart_totals table .shipping-calculator-form .button {
	margin-left: 20px;
}
.quantity .qty {
	width: 90px;
	text-align: center;
}
.quantity .qty,
div.product form.cart button.single_add_to_cart_button,
div.product .summary .add_to_wishlist,
div.product .summary .yith-wcwl-wishlistexistsbrowse,
div.product .summary .yith-wcwl-wishlistaddedbrowse {
	border: 1px dashed #dedede;
	height: 40px;
}

/* Shop checkout page
   ========================================================================== */
.checkout input {
	padding: 8px;
	border: 1px solid #dedede;
	color: #000000;
	height: 38px;
	border-radius: 0;
	box-shadow: none;
}
.checkout input:focus {
	border-color: #69bf29;
	box-shadow: none;
}
.checkout input[type="checkbox"],
.checkout input[type="radio"] {
	height: auto;
	padding: 0;
}
.checkout form.checkout_coupon,
.checkout form.login,
.checkout form.lost_reset_password {
	border: 0;
	background: #fafafa;
}
.checkout form.lost_reset_password {
	padding: 20px;
}
.checkout #coupon_code {
	width: 100%;
}
.checkout h3 {
	margin-top: 0;
	font-size: 14px;
	color: #685e52;
	text-transform: uppercase;
	font-weight: 600;
	border: 1px dashed #dedede;
	padding: 15px;
	width: 100%;
	margin-bottom: 25px;
}
.checkout form .form-row label {
	color: #000000;
	float: left;
	width: 250px;
	margin: 5px 0;
	font-weight: 500;
}
.checkout form .form-row .required,
.user-login sup {
	color: #ff5555;
}
.checkout #customer_details p {
	background: #fafafa;
	padding: 10px 20px;
	width: 100%;
	margin: 0 0 10px;
	display: inline-block;
}
.checkout form .form-row .select2-container,
.checkout form .form-row input.input-text,
.checkout form .form-row select,
.checkout form .form-row textarea.input-text {
	width: 270px;
}
.checkout form .form-row textarea.input-text {
	height: 8em;
}
.checkout form .select2-container .select2-choice {
	height: 38px;
	border-radius: 0;
	border-color: #dedede;
}
.checkout form .select2-container .select2-choice > .select2-chosen {
	margin-top: 4px;
}
.checkout #order_review {
	background: #fafafa;
	padding: 18px;
	border: 1px solid #d1d1d1;
	margin-top: 40px;
}
.checkout h3.order_review_heading {
	border: 0;
	border-bottom: 1px solid #d1d1d1;
	padding: 0 0 15px;
	margin-top: 0;
}
.checkout table.shop_table {
	width: 100%;
}
.checkout table.shop_table td,
.checkout table.shop_table th {
	padding: 15px 0;
	border-bottom: 1px dashed #d1d1d1;
	font-weight: 600;
	color: #000000;
}
.checkout table.shop_table th.product-total,
.checkout table.shop_table td.product-total,
.checkout table.shop_table .cart-subtotal td,
.checkout table.shop_table .shipping td,
.checkout table.shop_table .order-total td {
	text-align: right;
}
.checkout table.shop_table .amount {
	font-size: 20px;
	color: #2b2621;
}
.checkout table.shop_table .order-total td,
.checkout table.shop_table .order-total th {
	border: 0;
}
.checkout table.shop_table #createaccount {
	margin-top: 10px;
}
.checkout table.shop_table .shipping td,
.checkout #payment div.payment_box {
	color: #000000;
	font-weight: 400;
}
.checkout #payment {
	margin-top: 40px;
}
.checkout #payment div.payment_box {
	margin-top: 0;
	padding-left: 30px;
}
.checkout #payment ul.payment_methods {
	list-style: none;
}
.checkout #payment ul.payment_methods li {
	border-bottom: 1px dashed #dedede;
	margin-bottom: 20px;
}
.checkout #payment ul.payment_methods label {
	font-weight: 600;
	color: #000000;
}
.checkout #payment #place_order {
	height: 56px;
	background: #bcc702;
	padding: 0 35px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	margin: 10px 0 20px;
	border: 0;
	color: #fff;
}
.checkout #payment .place-order label {
	width: 100%;
	margin-top: 20px;
}
.checkout form.login input.button,
.checkout form.lost_reset_password input.button {
	margin: 0;
}
.radio-styled {
	position: relative;
}
.radio-styled .inner {
	cursor: pointer;
	display: inline-block;
	padding-left: 30px;
	position: relative;
	vertical-align: text-top;
}
.radio-styled .inner:before,
.radio-styled input:checked ~ .inner:after {
	content: "";
	position: absolute;
	z-index: 1;
	-webkit-border-radius: 50%;
	-moz-border-radius:    50%;
	-ms-border-radius:     50%;
	border-radius:         50%;
}
.radio-styled .inner:before {
	border: 1px solid #dedede;
	height: 14px;
	left: 0;
	width: 14px;
	top: 2px;
}
.radio-styled input:checked ~ .inner:after {
	width: 8px;
	height: 8px;
	background: #bcc702;
	left: 3px;
	top: 5px;
}
.radio-styled input {
	z-index: -1;
	position: absolute;
	opacity: 0;
}
.user-login {
	background: #fafafa;
	padding: 22px;
}
.user-login h5 {
	color: #685e52;
	margin: 0 0 20px;
	border-bottom: 1px solid #d1d1d1;
	padding-bottom: 15px;
}
.user-login input {
	border: 1px dashed #dedede;
	background: #fff;
}
.user-login label {
	font-weight: 500;
	color: #000000;
}
.user-login .btn {
	width: 100%;
	margin: 20px 0 30px;
	font-weight: 700;
	font-size: 14px;
	padding: 15px 20px;
}
.user-login .coupon #coupon_code {
	width: 185px;
}
.user-login .coupon .button {
	background: #000000;
	color: #fff;
	border: 0;
	margin-left: 12px;
	padding: 0 20px;
}

/* Single product
   ========================================================================== */
.shop-details .p-info h1 {
	font-size: 24px;
	font-weight: 500;
}
.shop-details .p-rate,
.shop-details .p-info .p-action {
	border-bottom: 1px dashed #dedede;
	margin-bottom: 20px;
	padding-bottom: 10px;
}
.shop-details .p-rate .pull-right {
	margin-top: -5px;
	color: #000000;
}
.shop-details .p-info .p-action {
	margin-top: 0;
	padding-bottom: 25px;
}
.shop-details .p-info .p-action h5 {
	margin-bottom: 20px;
}
.shop-details .p-info input {
	border: 1px dashed #dedede;
	height: 40px;
	float: left;
	width: 60px;
	text-align: center;
	margin-right: 10px;
}
.shop-details .p-meta ul li {
	list-style: none;
	margin-bottom: 12px;
}
.shop-details .p-meta ul li span,
.shop-details .p-share span {
	width: 145px;
	display: inline-block;
	color: #000000;
	font-weight: 600;
}
.shop-details .p-meta a {
	color: #bcc702;
}
.shop-details .p-meta > div {
	border-bottom: 1px dashed #dedede;
	margin-bottom: 15px;
	padding-bottom: 5px;
}
#p-preview,
.p-image {
	overflow: hidden;
	margin-bottom: 20px;
}
#p-preview .owl-controls {
	margin: 0;
}
#p-preview .owl-buttons > div {
	background: #fff;
	bottom: -32px;
	font-size: 18px;
	height: 32px;
	line-height: 32px;
	position: absolute;
	right: 0;
	text-align: center;
	width: 32px;
	color: #000000;
	-webkit-transition: all .3s ease;
	-moz-transition:    all .3s ease;
	transition:         all .3s ease;
}
#p-preview:hover .owl-buttons > div {
	bottom: 0;
}
#p-preview .owl-buttons > div.owl-prev {
	right: 33px;
}
#p-preview .item ,
.p-image .item{
	position: relative;
	text-align: center;
}
#p-preview .item .zoom i,
.p-image .item .zoom i{
	background: #fff;
	color: #000000;
	height: 0;
	right: -40px;
	position: absolute;
	bottom: 0;
	width: 0;
	line-height: 40px;
	opacity: 0;
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: 20px;
	-webkit-transition: all .3s ease-in-out .4s;
	-moz-transition:    all .3s ease-in-out .4s;
	transition:         all .3s ease-in-out .4s;
}
#p-preview .item:hover .zoom i,
.p-image .item:hover .zoom i {
	opacity: 1;
	right: 0;
}
#p-preview .item .zoom:before,
.p-image .item .zoom:before {
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, -100%, 0px);
	-moz-transform:    scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, -100%, 0px);
	-ms-transform:     scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, -100%, 0px);
	-o-transform:      scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, -100%, 0px);
	transform:         scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, -100%, 0px);
	-webkit-transition: transform 1s ease 0s;
	-moz-transition:    transform 1s ease 0s;
	transition:         transform 1s ease 0s;
}
#p-preview .item:hover .zoom:before, 
.p-image .item:hover .zoom:before {
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, 100%, 0px);
	-moz-transform:    scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, 100%, 0px);
	-ms-transform:     scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, 100%, 0px);
	-o-transform:      scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, 100%, 0px);
	transform:         scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, 100%, 0px);
}
#p-thumb {
	width: calc(100% - 30px);
}
#p-thumb img {
	width: 100px;
	opacity: .6;
	cursor: crosshair;
}
#p-thumb .synced img {
	opacity: 1;
}
#p-thumb .owl-controls {
	position: absolute;
	right: -30px;
	top: 0;
	margin: 0;
}
#p-thumb .owl-controls .owl-buttons > div {
	width: 30px;
	height: 46px;
	border: 1px dashed #dedede;
	color: #000000;
	font-size: 18px;
	line-height: 38px;
	background: #fff;
	display: block;
}
#p-thumb .owl-controls .owl-buttons > div:hover {
	color: #bcc702;
}
#p-thumb .owl-controls .owl-buttons > div.owl-prev {
	margin-bottom: 8px;
}
#p-thumb .owl-item {
	padding-right: 30px;
}
.shop-details .product-tab {
	border: 1px solid #dedede;
	padding: 0 20px 20px;
	margin-top: 90px;
}
.shop-details .nav-tabs > li {
	font-size: 14px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
	margin-right: 50px;
}
.shop-details .nav-tabs > li > a {
	padding: 16px 0;
	color: #000000;
}
.shop-details .nav-tabs > li.active a {
	color: #000000;
}
.shop-details .nav-tabs > li > a,
.shop-details .nav-tabs > li.active > a,
.shop-details .nav-tabs > li.active > a:focus,
.shop-details .nav-tabs > li.active > a:hover {
	border: 0;
}
.shop-details .nav > li > a:focus,
.shop-details .nav > li > a:hover {
	background: none;
	border: 0;
}
.shop-details .product-tab h5 {
	border-bottom: 1px dashed #dedede;
	margin: 25px 0 18px;
	padding-bottom: 20px;
}
.shop-details .shop_attributes {
	width: 100%;
	margin-bottom: 20px;
}
.shop-details .shop_attributes th,
.shop-details .shop_attributes td {
	padding: 10px;
	border-bottom: 1px dashed #dedede;
}
.shop-details .shop_attributes .alt th,
.shop-details .shop_attributes .alt td {
	background: rgba(0, 0, 0, .024)
}
.shop-details #reviews > div {
	float: left;
}
.shop-details #reviews #comments {
	width: 100%;
}
.shop-details #reviews #review_form_wrapper {
	width: 35%;
	padding-left: 30px;
}
.shop-details #reviews #review_form_wrapper form {
	margin-top: 20px;
}
.shop-details #reviews #review_form_wrapper .form-control {
	border-radius: 0;
	border-color: #dedede;
	box-shadow: none;
	height: 50px;
	padding: 0 15px;
	font-size: 13px;
	margin-bottom: 15px;
}
.shop-details #reviews #review_form_wrapper textarea.form-control {
	height: auto;
	padding: 15px;
}
.shop-details #reviews #review_form_wrapper .btn-dashed {
	background: none;
	font-size: 11px;
	padding: 12px 20px;
	font-weight: 600;
	color: #000000;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition:    all .3s ease-in-out;
	transition:         all .3s ease-in-out;
}
.shop-details #reviews #review_form_wrapper .btn-dashed i {
	margin-right: 10px;
}
.shop-details #reviews #comments ol.commentlist li {
	min-height: 85px;
	list-style: none;
	border-bottom: 1px dashed #dedede;
	margin-bottom: 15px;
}
.shop-details #reviews #comments ol.commentlist li:last-child {
	border-bottom: none;
}
.shop-details #reviews #comments ol.commentlist li img.avatar {
	width: 80px;
	height: 80px;
	padding: 10px;
	background: #fff;
	border: 1px dashed #dedede;
	float: left;
}
.shop-details #reviews #comments ol.commentlist li .comment-text {
	border: 0;
	padding: 0;
}
.shop-details #reviews #comments ol.commentlist li .comment-text .star-rating,
.shop-details #reviews #comments ol.commentlist li .comment-text .meta {
	margin-bottom: 10px;
}
.shop-details #reviews #comments ol.commentlist li .comment-text .meta strong {
	color: #000000;
}
.shop-details #reviews #comments ol.commentlist li .comment-text .meta > * {
	font-size: 13px;
}
.shop-details #reviews #comments input {
	height: 50px;
}
.shop-details #reviews #comments input[type="radio"] {
	height: 5px;
}
.shop-details .product-related {
	border: 1px solid #dedede;
	margin-top: 50px;
	padding: 0 20px;
}
.shop-details .product-related .p-info .p-action {
	border: 0;
	margin: 0;
}
.product-detail .modal-content {
	padding: 15px 0;
	overflow: hidden;
}
.product-detail .modal-content .p-meta {
	margin: 20px;
}
.product-detail .p-info input {
	border: 1px dashed #dedede;
	height: 40px;
	float: left;
	width: 60px;
	text-align: center;
	margin-right: 10px;
}
.product-detail #p-thumb .item {
	float:left;
	margin: 0 10px;
}
.product-detail .p-info h1 {
	font-size: 24px;
	font-weight: 500;
	margin: 0 0 25px;
}
.product-detail .p-rate, .product-detail .p-info .p-action {
	border-bottom: 1px dashed #dedede;
	margin-bottom: 20px;
	padding-bottom: 10px;
}
.product-detail .p-rate .pull-right {
	margin-top:-5px;
}
.product-detail .p-meta ul li span {
	width: 145px;
	display: inline-block;
	color: #000000;
	font-weight: 600;
}
.product-detail .p-meta > div {
	margin-top: -10px;
	border: 0;
}
.product-detail .p-info .p-action {
	margin-top:0;
	padding-bottom:20px;
}
.product-detail button.close {
	position: absolute;
	right: 10px;
	top: 5px;
	font-size: 2em;
	z-index: 999;
}
.product-detail .p-image {
	margin: 0;
}
.product-detail .p-image .item img {
	width: 100%;
}
.product-detail .p-info {
	padding-top: 5px;   
}

/* Footer
   ========================================================================== */
#site-footer .top {
	background: #fcfcfc;
	border-top: 1px solid #dedede;
	border-bottom: 1px solid #dedede;
	padding: 14px 0;
}
#site-footer .social {
	float: right;
}
#site-footer .bot .bot-main a:hover {
	color: #bcc702;
}
#site-footer .mid {
	padding: 35px 0;
}
#site-footer .bot {
	text-align: center;
}
#site-footer .bot .bot-top {
	background: #dedede;
	padding: 15px 0;
	color: #aaa297;
}
#site-footer .bot .bot-main {
	padding: 25px 0;
	background: #000000;
	font-size: 11px;
}
#site-footer .bot .bot-main,
#site-footer .bot .bot-main a,
#site-footer .widget,
#site-footer .widget a {
	color: #000000;
}
#site-footer .bot .bot-main .site-info {
	line-height: 25px;
}
#site-footer .widget {
	border: 0;
	padding: 0;
	font-weight: 400;
}
#site-footer .widget .widget-title {
	border: 0;
	padding-bottom: 8px;
}
#site-footer .widget ul li {
	text-transform: none;
	font-size: 13px;
}
#site-footer .widget ul li a {
	margin-bottom: 15px;
}
#site-footer .widget a {
	font-weight: 400;
}
#site-footer .widget a:hover {
	color: #bcc702;
}
#site-footer .contact-info li {
	margin-bottom: 25px;
}
#site-footer .contact-info li i {
	float: left;
	font-size: 24px;
	margin-right: 20px;
	margin-top: 6px;
	color: #d3cec4;
}
#site-footer .contact-info li span {
	overflow: hidden;
}
#site-footer .site-info p {
	margin: 0;
}
#footer-menu {
	margin-bottom: 20px;
}
#footer-menu li {
	display: inline-block;
	margin: 0 10px;
	position: relative;
	font-size: 10px;
	text-transform: uppercase;
}
#footer-menu .menu {
	float: none;
	display: inline-block;
}
#footer-menu .menu > li:after {
	content: "";
	position: absolute;
	width: 1px;
	height: 9px;
	background: #000000;
	right: -10px;
	top: 4px;
}
#footer-menu .menu > li:last-child:after {
	background: none;
}
#footer-menu .menu .sub-menu {
	opacity: 1;
	visibility: visible;
	position: inherit;
	display: inline-block;
	margin: 0;
}

#searchstr{
	border: none !important;
}

#searchForm{
	width: 100%;
}

#searchForm .input-group{
	position: inherit !important;
	width: 100%;
}

#pesquisaOutput{
	right: 0 !important;
    top: 20px !important;
    width: 500px !important;
}

#menu .col-md-Menu{
	width: 163px;
	padding: 0 5px;
}

#main-menu #menu .menu-item.mega-menu > ul.sub-menu{
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	
	-webkit-flex-flow: row;
    -moz-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row ;
}

html[data-useragent*='rv:11.0'] #main-menu #menu .menu-item.mega-menu{
	position: static !important;
}

html[data-useragent*='rv:11.0'] #main-menu #menu .menu-item.mega-menu > ul.sub-menu{
	position: absolute;
	left: 0;
	right: 0;
}


#menu.menu .mega-menu .mega-submenu .col-md-Menu ul > li > a{
	padding: 0 !important;
}

#menu.menu .mega-title .vw-menu-imagem{
	margin-bottom: 15px;
}

#site-header .extra-info .dropdown-menu li a{
	color: #000;
	padding: 0;
}

#site-header .extra-info .dropdown-menu{
	border-radius: 0 !important;
}

#site-header .extra-info .dropdown-menu li{
	width: 100%;
	margin: 0;
}

#site-header .extra-info .dropdown-menu li a{
	font-size: 12px;
	padding: 5px;
}

#site-header .blocoCarrinho{
	float: right;
	position: relative;
}

#site-header .blocoCarrinho .cart-box{
	padding: 14px;
	background: #000;
}

#site-header .blocoCarrinho .cart-box img{
	height: 22px;
}

.produtosCarrinho{
	right: 0 !important;
	left: auto !important;
}

.subscribe a{
	border: none;
	border-radius: 0 !important;
	background: #3c3e43 !important;
	color: #fff;
	margin-left: 15px;
}

label.tituloSocial{
	display: inline-block;
	color: #fff;
	font-size: 15px;
	margin: 6px 5px !important;
	font-weight: 400;
	text-transform: uppercase;
}

ul.social{
	display: inline-block;
}

ul.social li a img{
	height: 33px;
}

.blocoCarrinho .produtosCarrinho{
	top: 99px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition:    all .3s ease-in-out;
	transition:         all .3s ease-in-out;
}

.blocoCarrinho:hover .produtosCarrinho{
	top: 50px;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition:    all .3s ease-in-out;
	transition:         all .3s ease-in-out;
}

.blocoCarrinho .produtosCarrinho.open{
	top: 50px;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition:    all .3s ease-in-out;
	transition:         all .3s ease-in-out;
}

.caracteristicasHome .container{
	padding: 25px 30px;
	border: 1px solid #dedede;
}

.caracteristicasHome .detalheCaracteristicas{
	display: table-cell;
	padding: 0 25px;
	min-height: 85px;
	vertical-align: middle;
}

.caracteristicasHome .detalheCaracteristicas:first-child{
	border-right: 1px solid #dedede;
	padding-left: 0;
}

.caracteristicasHome .detalheCaracteristicas:last-child{
	padding-right: 0;
}

.caracteristicasHome .detalheCaracteristicas p{
	margin: 0;
}

.col-no-padding{
	padding: 0;
}

.carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img{
	width: 100%;
}

.produtos .tituloProdutos{
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	padding: 0 0 20px 0;
	margin-top: 0;
	position: relative;
}

.produtos .contentCatProdutos{
	text-align: center;
}


.contentCatProdutos ul li{
	display: inline-block;
	padding: 15px 0;
	position: relative;
}

.contentCatProdutos ul li.active::before{
	background: #fff none repeat scroll 0 0;
    top: 0;
    content: "";
    height: 1px;
    position: absolute;
    width: 65%;
    left: 50%;
    transform: translate(-50%, 0px);
}

.contentCatProdutos ul li a{
	color: #fff;
	text-transform: uppercase;
	padding: 0 25px;
	border-right: 1px solid #fff;
}

.contentCatProdutos ul li:last-child a{
	border-right: none;
}

.produtos .listagemProdutos{
	background: #fff;
	overflow: hidden;
	padding: 50px 15px 0 15px;
}

.produtos div.container .imagem{
	height: 250px;
	border: 1px solid #dedede;
/* 	overflow: hidden; */
	position: relative;
}

.produtos .descricaoProduto > div{
	text-align: center;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

.produtos .descricaoProduto .marca{
	color: #a2a2a2;
	margin-top: 20px;
	margin-bottom: 10px;
}

.produtos .descricaoProduto .nome{
	height: 35px;
	overflow: hidden;
}

.price-box{
	text-align: center;
	height: 32px;
}

.old-price {
    display: inline;
    margin-right: 15px;
}

.old-price .price {
    color: #777777 !important;
    font-size: 13px;
    font-weight: normal;
    margin-right: 6px;
    text-decoration: line-through;
}

.special-price {
    display: inline;
    margin: 0;
    padding: 3px 0;
}

.special-price .price {
    color: #bcc702;
    font-size: 17px;
}

.regular-price {
    display: inline;
}

.regular-price .price {
    color: #bcc702;
    font-size: 16px;
}

.produtos div.container .listagemProdutos .col-md-3{
	margin-bottom: 50px;
}

.widget-images .img-animation img {
    transition: all 0.6s ease-in-out 0s;
}

.widget-images .img-animation:hover img {
    transform: scale(1.1);
    transition: all 0.6s ease-in-out 0s;
}

.widget-images .image-item {
    overflow: hidden;
    position: relative;
}

/* Efeito listagem produtos */

.imagem:hover .item-thumb-product::before {
    opacity: 1;
    visibility: visible;
}

.item-thumb-product{
	height: 100%;
	width: 100%;
}

.areaClicavelGrid{
	height: 100%;
	width: 100%; 
	position: absolute; 
	z-index: 49;
}

.item-thumb-product::before {
    background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.5s ease-out 0s;
    visibility: hidden;
    width: 100%;
    z-index: 9;
}

.status-product-new {
    background: #bcc702 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    right: 0;
    padding: 0 10px 1px;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    z-index: 10;
}

.status-product-promotion{
	background: #ff8d00 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    right: 0;
    padding: 0 10px 1px;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    z-index: 10;
}

.status-product-used {
    background: #c79900 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    right: 0;
    padding: 0 10px 1px;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    z-index: 10;
}

.status-product-percent-promotion {
    background: #bcc702 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    left: 0;
    padding: 0 10px 1px;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    z-index: 10;
    font-weight: bold;
}

.status-product-percent-promotion.detalhe{
	font-size: 16px;
    padding: 5px 15px;
}

.informacaoDatasPromocao{
	color: #787878;
}

.status-product-outlet {
    background: #bc0000 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    right: 0;
    padding: 0 10px 1px;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    z-index: 10;
}

.imagem:hover .item-thumb-product .info-product-cart {
    opacity: 1;
    visibility: visible;
}

.info-product-cart {
    border: 1px solid #bcc702;
    bottom: 0;
    height: 120px;
    left: 0;
    margin: auto;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    transition: all 0.5s ease-out 0s;
    visibility: hidden;
    width: 180px;
    z-index: 50;
}

.inner-info-product-cart {
    height: 100%;
    position: relative;
    transition: all 0.5s ease-out 0s;
    width: 100%;
}

.imagem:hover .item-thumb-product .inner-info-product-cart ul {
    margin: 20px 0 0;
}

.inner-info-product-cart ul {
    left: 0;
    margin: -60px 0 0;
    padding: 0;
    position: absolute;
    top: 0;
    transition: all 0.5s ease-out 0s;
    width: 100%;
}

.imagem:hover .item-thumb-product .inner-info-product-cart .link-product-add-cart {
    bottom: 0;
    color: #fff;
}

.inner-info-product-cart .link-product-add-cart {
    bottom: -40px;
    left: 0;
    margin-left: 20px;
    position: absolute;
    transition: all 0.5s ease-out 0s;
    width: 140px;
    cursor: pointer;
}

.link-product-add-cart {
    background: #bcc702 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-transform: uppercase;
    transition: all 0.5s ease-out 0s;
}

.inner-info-product-cart > ul > li {
    display: inline-block;
}

.inner-info-product-cart ul li a {
    color: #fff;
    display: block;
    height: 40px;
    text-align: center;
    transition: all 0.5s ease-out 0s;
    width: 40px;
}

.inner-info-product-cart ul li a i {
    line-height: 40px;
}

.status-product-sale {
    background: #df0b1a none repeat scroll 0 0;
    color: #fff;
    padding: 0 10px 1px;
    position: absolute;
    left: 0;
    text-transform: lowercase;
    top: 0;
    z-index: 10;
}

/* Efeito listagem produtos */

.noticias .noticia{
	height: 250px;
}

.noticias .noticia{
	margin-bottom: 30px;
}

.noticias .bannerNoticia{
	height: 530px;
}

.noticias .detalheNoticia{
	display: table;
	width: 100%;
	height: 100%;
	position: relative;
}

.noticias .detalheNoticia > div{
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	overflow: hidden;
	position: relative;
}

.noticias .detalheNoticia .tituloNoticia{
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 5px;
	visibility: hidden;
}

.noticias .detalheNoticia .tituloNoticia{
	visibility: visible;
}

.noticias .detalheNoticia .descNoticia{
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	visibility: hidden;
}

.noticias .detalheNoticia .descNoticia{
	visibility: visible;
}

.noticias .detalheNoticia{
	padding: 10px;
	background: rgba(0,0,0,0.7);
}

.noticias .detalheNoticia > div{
	border: 1px solid #fff;
}

.noticias .detalheNoticia .verMaisNoticia{
	width: auto;
	position: absolute;
	color: #000;
	text-transform: uppercase;
	bottom: -40px;
    left: 37%;
    padding: 8px 45px;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out 0s;
}

.noticias .detalheNoticia:hover .verMaisNoticia{
	visibility: visible;
	bottom: 0px;
	opacity: 1;
	transition: all 0.5s ease-out 0s;
}

.page-section.rodape{
	background: #000;
}

.page-section.rodape .container ul{
	margin: 0;
}

.page-section.rodape .container ul li{
	list-style: none;
}

.page-section.rodape .footer-column h4{
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.page-section.rodape .container ul li a{
	color: #fff;
	text-transform: uppercase;
}

.page-section.rodape .footer-column .descHorario{
	color: #fff;
	text-transform: uppercase;
}

.page-section.rodapeBottom{
	background: #000;
	color: #fff;
}

.rodapeBottom .pagamentosRodape{
	text-align: right;
}

.rodapeBottom .pagamentosRodape img{
	display: inline-block;
	height: 25px;
	margin-left: 15px;
}

.listagemCategorias .bannerListagemCategorias{
	padding: 80px;
	height: 220px;
}

.listagemCategorias .bannerListagemCategorias .tituloBannerCategorias{
	color: #fff;
	margin-top: 15px;
}

.listagemCategorias .bannerListagemCategorias .descricaoBannerCategorias{
	color: #fff;
}

#menu.menu li.menu-item.mega-menu ul.sub-menu.mega-submenu li.col-md-Menu ul li a div.vw-menu-imagem{
	display: none;
}

.listagemCategorias .categoriaDetail{
	height: 250px;
	margin-bottom: 30px;
}

.listagemCategorias .detalheCategoriaDetail{
	display: table;
	width: 100%;
	height: 100%;
	position: relative;
	background: rgba(0,0,0,0.2);
	padding: 15px;
}

.listagemCategorias .detalheCategoriaDetail > div{
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	overflow: hidden;
	position: relative;
}

.listagemCategorias .detalheCategoriaDetail .tituloCategoriaDetail{
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 5px;
}

.listagemCategorias .categoriaDetail a,
.listagemCategorias .categoriaDetail a:hover,
.listagemCategorias .categoriaDetail a:focus{
	color: #fff !important;
}

.listagemCategorias .detalheCategoriaDetail:hover{
	padding: 10px;
	background: rgba(0,0,0,0.8);
}

.listagemCategorias .detalheCategoriaDetail:hover > div{
	border: 1px solid #fff;
}

.listagemCategorias .detalheCategoriaDetail .verMaisCategoriaDetail{
	width: auto;
	position: absolute;
	color: #000;
	text-transform: uppercase;
	bottom: -40px;
    left: 20%;
    padding: 8px 45px;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out 0s;
}

.listagemCategorias .detalheCategoriaDetail:hover .verMaisCategoriaDetail{
	visibility: visible;
	bottom: 0px;
	opacity: 1;
	transition: all 0.5s ease-out 0s;
}

.bannerListagemNoticias{
	padding: 80px;
	height: 220px;
}

.verTodasNot{
	margin-top: 60px;
    text-align: center;
}

.verTodasNot a{
	padding: 5px 15px;
	border: 1px solid #000;
}

.listagemProdutos .bannerListagemProdutos{
	padding: 80px;
	height: 220px;
}

.listagemProdutos .bannerListagemProdutos .tituloBannerProdutos{
	color: #fff;
	margin-top: 15px;
}

.listagemProdutos .bannerListagemProdutos .descricaoBannerProdutos{
	color: #fff;
}

.bannerDetalheProduto{
	padding: 80px;
	height: 220px;
}

.bannerDetalheProduto .tituloBannerDetalheProduto{
	color: #fff;
	margin-top: 15px;
}

.bannerDetalheProduto .descricaoBannerDetalheProduto{
	color: #fff;
}

.bannerCarrinho{
	padding: 80px;
	height: 220px;
}

.bannerCarrinho .tituloBannerCarrinho{
	color: #fff;
	margin-top: 15px;
}

.bannerCarrinho .descricaoBannerCarrinho{
	color: #fff;
}

.listagemProdutos .tituloPaginaProdutos{
	padding-bottom: 15px;
	border-bottom: 1px solid #dedede;
	margin-bottom: 15px;
	margin-top: 0;
	position: relative;
}

.listagemProdutos #virtualwebPaging{
	text-align: right;
}

.listagemProdutos #virtualwebPaging label,
.listagemProdutos #virtualwebPaging select{
	display: inline-block;
	width: auto;
}

.listagemProdutos #virtualwebPaging select{
	padding: 5px 25px;
	background-color: #dedede;
	background-position: 92% 53% !important;
}

.listagemProdutos #virtualwebPaging label{
	padding: 5px 5px 5px 15px;
	font-weight: normal;
}

.listagemProdutos .tipoVisualizacao span img{
	height: 30px;
	padding: 5px;
	cursor: pointer;
}

.listagemProdutos .tipoVisualizacao span.active img{
	border: 1px solid;
}

.listagemProdutos div.container .imagem{
	
	height: 250px;
	border: 1px solid #dedede;
	overflow: hidden;
	position: relative;
}

.listagemProdutos .descricaoProduto > div{
	text-align: center;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

.listagemProdutos .descricaoProduto .marca{
	color: #a2a2a2;
	margin-top: 20px;
	margin-bottom: 10px;
}

.listagemProdutos .descricaoProduto .nome{
	height: 35px;
	overflow: hidden;
}

.listagemProdutos article.col-main .col-md-4{
	margin-bottom: 50px;
}

.listagemProdutos ul.pagination{
	margin: 15px 0;
}

.listagemProdutos .pagination li a{
	border: none;
	color: #000;
}

.listagemProdutos .pagination li.active a{
	border: 1px solid #000;
	color: #000;
	background: none;
}

.listagemProdutos .pagination li a:hover{
	background-color: transparent !important;
}

.listagemProdutos .side-nav-categories{
	border: 1px solid #dedede;
}

.listagemProdutos .side-nav-categories .block-title{
	border-bottom: 1px solid #dedede;
	padding: 15px;
	text-transform: uppercase;
	color: #bcc702;
}

.side-nav-categories ul li {
	padding: 2px 0px;
}

.side-nav-categories ul li a {
	display: inline-block;
	position: relative;
}

.side-nav-categories ul#magicat ul li a:before {
	content: "\f105";
	font-family: 'FontAwesome';
	line-height: 17px;
	margin-right: 5px;
	top: 6px;
}

.side-nav-categories ul#magicat ul li a {
	padding-left: 12px;
}

.side-nav-categories ul#magicat ul li a.active {
	color: #bcc702;
}

.side-nav-categories, .side-nav-categories .block {
	display: inline-block;
	width: 100%;
	margin-bottom: 15px;
}

ul#magicat li, ul.listStyle li {
	cursor: pointer;
	display: block;
	float: left;
	list-style-type: none;
	margin: 0 0 1px 0;
	padding-left: 0px;
	position: relative;
	width: 100% !important;
}

ul#magicat li.level0 span.magicat-cat, ul.listStyle li span {
	text-align: left;
	display: inline-block;
	width: 100%;
}

ul#magicat li .open-close, .block-layered-nav dt .toggleBtn {
	display: inline-block;
	height: 30px;
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
}

.block-layered-nav dt .toggleBtn {
	cursor: pointer;
}

ul#magicat li.active > .open-close, .block-layered-nav dt .toggleBtn.highlight {
	background-position: 2px -28px;
}

ul#magicat ul {
	padding-left: 10px;
}

ul#magicat li .open-close, .block-layered-nav dt .toggleBtn {
	display: inline-block;
	height: 30px;
	position: absolute;
	right: 0;
	top: 5px;
	width: 30px;
}

ul#magicat li .open-close, .block-layered-nav dt .toggleBtn {
	background: url("../_imgs/leftNav.png") no-repeat scroll 2px 3px;
}

.side-nav-categories .block-title {
	font-family: "Muli", sans-serif;
	font-size: 14px;
	margin: 0;
	padding: 11px 15px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	overflow: hidden;
}

.box-category {
	padding: 15px;
}

.box-category ul {
	list-style: none;
	margin: 0;
	padding: 0px !important;
}

.box-category > ul > li {
	display: block;
	position: relative;
	margin: 0;
}

.box-category > ul > li.last {
	display: block;
	position: relative;
}

.box-category > ul > li:first-child {
	border-top: 0;
}

.box-category .subDropdown {
	top: 8px;
	right: 0px;
	position: absolute;
	cursor: pointer;
	width: 16px;
	height: 16px;
	padding: 2px;
}

.box-category .subDropdown:hover {
	opacity: 0.8;
}

.box-category .subDropdown.plus {
	background-image: url("../_imgs/plus.png");
}

.box-category .subDropdown.minus {
	background-image: url("../_imgs/minus.png");
}

.box-category ul li a {
	padding: 8px 0px;
	display: block;
	font-weight: normal;
	font-family: "Muli", sans-serif;
}

.box-category ul li.double a {
	display: inline-block;
	margin: 0;
}

.box-category ul li {
	position: relative;
}

.box-category > ul > li > a {
	color: #222;
	text-transform: none;
	display: block;
	font-size: 13px;
}

.box-category > ul > li ul {
	display: none;
	padding-left: 0px !important;
	padding-bottom: 10px;
	padding-right: 0px!important
}

.box-category > ul > li > ul li {
	padding: 0px;
}

.box-category > ul > li a.active {
	font-weight: normal;
	font-family: "Muli", sans-serif;
}

.box-category > ul > li > a.active {
	color: #333333;
	font-weight: 900;
	margin-bottom: 0;
}

.box-category > ul > li a.active + ul {
	display: block;
}

.box-category a:hover {
	text-decoration: none;
	color: #000;
}

.box-category > ul > li ul li a {
	font-family: "Muli", sans-serif;
}

.box-category > ul > li ul > li > a {
	border-bottom: 0 solid #EAEAEA;
	font-size: 12px !important;
	margin: 0 !important;
	padding: 3px 16px !important;
	text-decoration: none;
	padding-left: 20px;
	color: #666666;
	transition: color 300ms ease-in-out 0s, background-color 300ms ease-in-out 0s, background-position 300ms ease-in-out 0s;
}

.box-category > ul > li ul > li > a:before {
	content: '\f105';
	font-family: FontAwesome;
	font-size: 12px;
	padding-right: 6px;
	color: #000;
}

.box-category > ul > li ul > li ul > li a {
	text-decoration: none;
	font-size: 13px !important;
	margin: 4px 8px!important;
	padding: 0px 16px!important;
	border-bottom: 0px solid #EAEAEA;
}

.box-category > ul > li ul > li ul > li a:hover {
	color: #000;
}

.box-category > ul > li ul > li > a:hover {
	color: #bcc702;
}

.listagemProdutos .sidebar div.block.block-layered-nav{
	border: 1px solid #dedede;
	margin-bottom: 15px;
}

.listagemProdutos .block-layered-nav .block-title{
	border-bottom: 1px solid #dedede;
    color: #bcc702;
    padding: 15px;
    text-transform: uppercase; 
}

.listagemProdutos .contentFiltrosProds .tituloFiltros{
	width: 100%;
	padding: 15px 0 2px 0;
	text-transform: uppercase;
	font-weight: bold !important;
}

.listagemProdutos .botoesFiltrosProds{
	margin-top: 15px;
}

.listagemProdutos .botoesFiltrosProds div{
	padding: 15px;
	text-align: center;
	display: inline-block;
	width: 50%;
	cursor: pointer;
	white-space: normal;
}

.listagemProdutos .loderProcessFilter{
	float: right;
}

.listagemProdutos .loderProcessFilter img{
	height: 20px;
}

.listagemProdutos .sidebar .contentFiltrosProds{
	padding: 15px;
}

.listagemProdutos .botoesFiltrosProds{
	border-top: 1px solid #dedede;
	white-space: nowrap;
}

.listagemProdutos .botoesFiltrosProds .btnFiltrar{
	border-right: 1px solid #dedede;
}

.listagemProdutos .descricaoProduto .price-box p{
	margin: 0 !important;
}

.listagemProdutos .listagemProdutosLista .col-md-4{
	margin-bottom: 0 !important;
}

.listagemProdutos .listagemProdutosLista .contentListaProdutos{
	padding: 30px 0; 
	border-top: 1px solid #dedede;
}

.listagemProdutos .listagemProdutosLista .col-md-12:first-child .contentListaProdutos{
	border-top: none;
	padding-top: 0;
}

.listagemProdutos .listagemProdutosLista .descricaoProduto > div{
	text-align: left;
	margin-bottom: 7px;
}

.listagemProdutos .listagemProdutosLista .descricaoProdutoDetail{
	text-transform: none;
	font-size: 12px;
}

.listagemProdutos .listagemProdutosLista .descricaoProduto .marca{
	margin-top: 0;
}

.listagemProdutos .listagemProdutosLista .imagem:hover .item-thumb-product::before{
	visibility: hidden;
}

.listagemProdutos .listagemProdutosLista .infoBotoesProdutoDetail .vw-bloco-adicionar-carrinho-listagem{
	background: #000;
	cursor: pointer;
	width: 100%;
	height: 100%;
}

.listagemProdutos .listagemProdutosLista .infoBotoesProdutoDetail .vw-bloco-adicionar-carrinho-listagem img{
	width: 100%;
	padding: 8px 5px;
}

.listagemProdutos .listagemProdutosLista .infoBotoesProdutoDetail{
	white-space: nowrap;
	margin-top: 15px;
}

.listagemProdutos .listagemProdutosLista .infoBotoesProdutoDetail > div{
	display: inline-block;
	white-space: normal;
	margin-right: 15px;
}

.listagemProdutos .listagemProdutosLista .infoStock.emStock{
	color: #bcc702;
	text-transform: uppercase;
	margin-top: 12px;
}

.listagemProdutos .listagemProdutosLista .infoStock.foraStock{
	color: #838383;
	text-transform: uppercase;
	margin-top: 12px;
}

.listagemProdutos .listagemProdutosLista .infoStock.stockLimitado{
	color: #c77e00;
	text-transform: uppercase;
	margin-top: 12px;
}

.listagemProdutos .itemVistosRecentemente{
	padding:  5px 15px;
	white-space: nowrap;
}

.listagemProdutos .itemVistosRecentemente > div{
	display: inline-block;
	white-space: normal;
	width: auto;
}

.listagemProdutos .itemVistosRecentemente .imgVistoRecentemente{
	height: 70px;
	width: 25%;
	border: 1px solid #dedede;
	vertical-align: middle;
}

.listagemProdutos .itemVistosRecentemente .descricaoProduto{
	width: 75%;
	padding-left: 5px;
	vertical-align: middle;
}

.listagemProdutos .itemVistosRecentemente .descricaoProduto > div{
	text-align: left;
	font-size: 10px !important;
}

.listagemProdutos .itemVistosRecentemente .descricaoProduto .marca{
	margin: 0;
}

.listagemProdutos .itemVistosRecentemente .descricaoProduto .nome{
	height: 27px;
	color: #000;
}

.inner-info-product-cart i > img{
	height: 15px;
}

.listagemProdutos .listagemProdutosLista .infoBotoesProdutoDetail ul.botoesProdutoLista li{
	list-style: none;
	display: inline-block;
	width: 40px;
	height: 40px;
	vertical-align: middle;
	border: 1px solid #dedede;
	margin-right: 5px;
}

.listagemProdutos .listagemProdutosLista .infoBotoesProdutoDetail ul.botoesProdutoLista li.btnAddCartList{
	border: 1px solid #000;
}

.listagemProdutos .listagemProdutosLista .infoBotoesProdutoDetail ul.botoesProdutoLista li:last-child{
	border: none;
	width: auto;
}

.listagemProdutos .listagemProdutosLista .infoBotoesProdutoDetail ul.botoesProdutoLista img{
	width: 100%;
}

/* detalhe produto */
.product-detail .images {
    position: relative;
}

.p-preview a {
    position: relative;
}

a, button, input {
    transition: all 0.3s ease-in-out 0s;
}

.product-detail .images{
	margin-bottom: 30px;
}

.product-detail .images .p-preview {
	padding-right: 65px;
}

.product-detail .images .p-preview > div{
	border: 1px solid #dedede;
}
	
.product-detail .images .p-thumb {
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
    height: 90%;
    overflow: hidden;
}

.product-detail .images .downThumbs{
	height: 10%;
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    text-align: center;
    cursor: pointer;
}

.product-detail .images .downThumbs i{
	margin-top: 15%;
}

.product-detail .images .p-thumb ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.product-detail .images .p-thumb ul li {
    margin-top: 10px;
}

.product-detail .images .p-thumb ul li:first-child {
    margin-top: 0;
}

.product-detail .images .p-thumb a {
    display: block;
}

.product-detail .images .p-thumb .active .imagemProdutoThumb {
    opacity: 0.3;
}

.product-detail .images .p-thumb .imagemProdutoThumb {
    display: block;
    transition: all 0.3s ease-in-out 0s;
    width: 60px;
    height: 49px;
    border: 1px solid #dedede;
}

img {
    border: medium none;
    height: auto;
    max-width: 100%;
}

.product-detail .images .p-preview .imagemProdutoBig{
	width: 100%;
	height: 320px;
}

.detalheProduto .descricaoProduto{
	text-align: left;
	padding-bottom: 15px;
/* 	border-bottom: 1px solid #dedede; */
}

.detalheProduto .descricaoProduto .marca{
	color: #a2a2a2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.detalheProduto .descricaoProduto .nome{
	color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 25px;
}

.detalheProduto .descricaoProduto .price-box{
	text-align: left;
}

.detalheProduto .special-price .price{
	font-size: 22px;
}

.detalheProduto .regular-price .price{
	font-size: 22px;
}

.detalheProduto .vw-bloco-adicionar-carrinho-listagem .tituloquantidade{
	text-transform: uppercase;
	font-weight: normal;
	padding: 15px 0 5px 0;
	margin-bottom: 0;
}

.detalheProduto .vw-bloco-adicionar-carrinho-listagem #qty.vw-quantidade-listagem.input-text{
	border: 1px solid #dedede;
	padding: 5px;
	width: 100px;
	text-align: center;
	margin-right: 10px;
}

.detalheProduto .vw-bloco-adicionar-carrinho-listagem .items-count{
	border: 1px solid #dedede;
	background: #dedede;
	color: #000;
	padding: 5px 15px;
	font-weight: normal;
	text-align: center;
	cursor: pointer;
}

.detalheProduto .vw-bloco-adicionar-carrinho-listagem{
	overflow: hidden;
	
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

.detalheProduto .vw-bloco-adicionar-carrinho-listagem .items-count i{
	padding-left: 3px;
}

.detalheProduto .vw-bloco-adicionar-carrinho-listagem .infoStock{
	display: inline-block;
	margin-left: 15px;
}

.detalheProduto .vw-bloco-adicionar-carrinho-listagem .infoStock.emStock{
	color: #bcc702;
	text-transform: uppercase;
	margin-top: 12px;
}

.detalheProduto .vw-bloco-adicionar-carrinho-listagem .infoStock.foraStock{
	color: #838383;
	text-transform: uppercase;
	margin-top: 12px;
}

.detalheProduto .vw-bloco-adicionar-carrinho-listagem .infoStock.stockLimitado{
	color: #c77e00;
	text-transform: uppercase;
	margin-top: 12px;
}

.detalheProduto .vw-bloco-adicionar-carrinho-listagem .vw-adicionar-carrinho-listagem-custom{
	background: #000;
	padding: 5px 15px;
	color: #fff;
	text-transform: uppercase;
	float: left;
    margin-top: 25px;
    cursor: pointer;
}

.detalheProduto .vw-bloco-adicionar-carrinho-listagem .vw-adicionar-carrinho-listagem-custom img{
	height: 15px;
	margin-right: 5px;
}

.detalheProduto .tabs-container{
	padding: 40px 0;
}

.detalheProduto .tabs-container > ul{
	border-top: 1px solid #dedede;
}

.detalheProduto .tabs-container ul li{
	display: inline-block;
	list-style: none;
	padding: 15px 0;
	margin: 0 30px;
	text-transform: uppercase;
	position: relative;
	cursor: pointer;
}

.detalheProduto .tabs-container ul li:first-child{
	margin-left: 0;
}

.detalheProduto .tabs-container ul li.active::before {
    background: #bcc702 none repeat scroll 0 0;
    top: -1px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

.produtosRelacionados .imagem{
	height: 210px;
	border: 1px solid #dedede;
	overflow: hidden;
	position: relative;
}

.produtosRelacionados .tituloRelacionados{
	color: #000;
    font-size: 20px;
    padding: 0 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

.produtosRelacionados .tituloRelacionados > div{
	border-top: 1px solid #dedede;
	width: 100%;
	padding: 15px 0;
}

.produtosRelacionados .tituloRelacionados .navegacaoRelacionados{
	float: right;
}

.produtosRelacionados .tituloRelacionados .navegacaoRelacionados span{
	padding: 5px;
	color: #dedede;
	font-weight: normal;
	cursor: pointer;
}

.produtosRelacionados{
	padding-bottom: 40px;
}

.produtosRelacionados .descricaoProduto > div {
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}

.produtosRelacionados .descricaoProduto .marca {
    color: #a2a2a2;
    margin-bottom: 10px;
    margin-top: 20px;
}

.produtosRelacionados .descricaoProduto .nome {
    height: 35px;
    overflow: hidden;
}

.produtosCarrinho{
	border-top: 1px solid #dedede;
}

.produtosCarrinho .tabelaProdutosCarrinho .tabelaProdutos tr td{
	padding: 15px 5px;
	border-bottom: 1px solid #dedede;
}

.produtosCarrinho .tabelaProdutosCarrinho .tabelaProdutos tr:first-child td{
	padding-top: 0;
}

.produtosCarrinho .tabelaProdutosCarrinho .tabelaProdutos tr td:first-child,
.tabelaProdutosCarrinhoCompras .carrinhoCompras tbody tr td:first-child{
/* 	text-align: center; */
/* 	min-width: 70px; */
}

.produtosCarrinho .tabelaProdutosCarrinho .tabelaProdutos td img,
.tabelaProdutosCarrinhoCompras .carrinhoCompras tbody td img{
	max-height: 70px;
	max-width: auto !important;
}

.produtosCarrinho .tabelaProdutosCarrinho .subTotal{
	float: left;
    padding: 6px 0;
}

.produtosCarrinho .tabelaProdutosCarrinho .btnsCarrinho{
	float: right;
    padding: 0;
    width: auto !important;
}

#formularioEnvio .form-group input[type='text'],
#formularioEnvio .form-group input[type='email'],
#formularioObsExtras .form-group input,
#formularioObsExtras .form-group textarea{
	border: 1px solid #dedede;
    padding: 6px;
    width: 100%;
}

.tabelaProdutosCarrinhoCompras .carrinhoCompras .espacoCupaoDesconto{
	text-align: left !important;
}

.tabelaProdutosCarrinhoCompras .carrinhoCompras .espacoCupaoDesconto input{
	border: 1px solid #dedede;
    padding: 5px;
    background: transparent;
    margin-top: 5px;
}

.tabelaProdutosCarrinhoCompras .carrinhoCompras .espacoCupaoDesconto button{
	border: 1px solid #dedede;
    padding: 5px 30px;
    background: transparent;
    margin-top: 5px;
}

.pagamentos .tabelaPagamentos tbody tr td{
	padding: 15px 0;
	vertical-align: middle;
}

ul.menuConta li{
	display: inline-block;
	list-style: none;
	overflow: hidden;
	margin-top: 25px;
	margin-right: 15px;
	padding: 15px 30px;
	border: 1px solid #dedede;
}

ul.menuConta li a{
	height: 100%;
	width: 100%;
	text-transform: uppercase;
	color: #000;
}

.botoesProdutoLista .link-wishlist img,
.botoesProdutoLista .link-compare img{
	padding: 8px;
	cursor: pointer;
}

.detalheProduto .descricaoProduto .pontosProduto{
	margin-top: 15px;
/* 	color: #787878; */
}

.detalheProduto .infoTextStock{
	margin: 20px 0 0 0 !important;
	color: #787878;
}

.detalheProduto .tab-content ul li{
	width: 100%;
	display: block;
	padding: 0 15px;
	text-transform: none;
	margin: 0;
}

/* apagar depois de detlahe novo */
/*
.detalheProduto .botoesDetalheProduto{
	bottom: 0;
    left: 140px;
    position: absolute;
}
*/

.dinamicDivDetalheProduto{
	position: relative; 
	min-height: 50px;
}

.detalheProduto .link-wishlist img{
	margin-left: 15px;
}

.detalheProduto .link-compare img{
	margin-left: 5px;
}

.detalheProduto .link-compare img,
.detalheProduto .link-wishlist img{
	height: 30px;
    cursor: pointer;
    float: left;
    margin-top: 25px;
    margin-left: 0;
    margin-right: 5px;
    padding: 5px;
    text-transform: uppercase;
    border: 1px solid #dedede;
}

.detalheProduto .partilharProd span{
	text-transform: uppercase;
	display: inline-block;
	font-size: 14px;
}

.detalheProduto .partilharProd ul{
	width: auto;
	display: inline-block;
	margin: 0;
}

.detalheProduto .partilharProd ul li{
	display: inline-block;
	margin-left: 15px;
	list-style: none;
}

.detalheProduto .partilharProd ul li a{
	padding: 0 5px;
}


.detalheProduto .paddingZero{
	padding: 0 !important;
}

.listagemProdutos #filtrosPesquisar{
	margin: 0;
}

.multimedia h4.titulo{
	padding: 15px 0;
    position: relative;
    text-transform: uppercase;
    border-top: 1px solid #dedede;
    color: #000000;
    font-family: "Open Sans",sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.multimedia h4.titulo::before {
    background: #bcc702 none repeat scroll 0 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: -1px;
    width: 60px;
}

.subscribe .form-group::before{
	background: transparent !important;
}

.adjustProd .descricaoProduto{
	padding-top: 15px;
}

.detalheProduto #tab-brochuras img{
	height: 50px;
}

.detalheProduto #tab-brochuras a{
	float: left;
	margin-right: 15px;
}

.detalheProduto .tab-content{
	overflow: hidden;
}

.detalheProduto .referenciaProduto{
	float: left;
    margin-left: 20px;
    margin-top: 31px;
    color: #787878;
}

.detalheProduto .product-detail .descricaoProduto .marca img{
	width: 100px;
    position: absolute;
    right: 15px;
}

span.ivaIncluido{
	color: #787878;
	font-size: 11px;
    margin-left: 5px;
}

.detalheProduto .images .downThumbs{
	border: 1px solid #dedede;
	margin-top: 5px;
}

.lineResult{
	padding: 0px !important;
}

#toTop { display:none; text-decoration:none; position:fixed; bottom:30px; right:30px; overflow:hidden; width:40px; height:40px; border:none; text-indent:100%; background:url(../_imgs/ui.totop.png) no-repeat left top; z-index:9999; }	
#toTopHover { background:url(../_imgs/ui.totop.png) no-repeat left -40px; width:40px; height:40px; display:block; overflow:hidden; float:left; opacity: 0; -moz-opacity: 0; filter:alpha(opacity=0); }	
#toTop:active, #toTop:focus { outline:none;	}

.conteudos .vw-formulario .form-campos input,
.conteudos .vw-formulario .form-campos textarea{
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
}

#captcha{
	float: left;
	width: auto !important;
}

#captcha .labelConta{
	margin: 0 15px 0 0;
}

#captcha #notRobot{
	border: 1px solid #ccc;
	padding: 0 5px;
}

.vw-formulario .submitbtn{
	float: right;
	padding: 14px 30px;
	border: none;
	background: #000;
	color: #fff;
}

.precoSobConsulta{
	cursor: pointer;
	text-transform: uppercase;
}

#vwDialogPedidoInformao .formPrecoSobConsulta .vw-formulario .form-campos label{
	width: 100%;
}

#vwDialogPedidoInformao .formPrecoSobConsulta .vw-formulario .form-campos input,
#vwDialogPedidoInformao .formPrecoSobConsulta .vw-formulario .form-campos textarea{
	width: 100%;
	padding: 5px 15px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
}

.mensagemEncFinalizada{
	padding: 30px 0;
}

.tabelaPagamentos td > label input,
.tabelaPagamentos td > label img,
.tabelaPagamentos td > label span{
	float: left;
}

.tabelaPagamentos .descricaoPagamentos{
	width: 100%;
}

#vw-dialog-verificacaoReparacoes .form-control:focus{
	border: 1px solid #ccc;
	box-shadow: none;
}

.mensagemReparacao > div,
.mensagemPedidoEncomenda > div,
.mensagemValidarPontos{
	margin-top: 20px;
}

.tituloPage{
	font-size: 18px;
	text-transform: uppercase;
	border-bottom: 1px solid #dedede;
	padding: 15px 0;
	margin-bottom: 35px;
}

.tabelaProdutosComparador{
	margin-bottom: 50px;
}

.tabelaProdutosComparador td{
	border: 1px solid #dedede;
	padding: 15px !important;
}

.tabelaProdutosComparador td:first-child{
	vertical-align: middle;
	text-transform: uppercase;
	width: 200px !important;
}

.tabelaProdutosComparador .adjustProd{
	min-width: 200px;
}

.menuLateralLogin h3{
	color: #bcc702;
}

.removerProdutoComparador{
	padding: 10px;
	cursor: pointer;
}

.somaPontosLogin,
.valorPontosLogin{
	font-size: 16px;
	font-weight: bold;
}

.itemCupaoDescontoLogin .tituloCupao{
	font-size: 18px;
	border-bottom: 1px solid #dedede;
	margin-bottom: 15px;
	padding-bottom: 10px;
}

.itemCupaoDescontoLogin.cupaoPontos .tituloCupao{
	color: rgba(0,  120,  199, 1);
}

.itemCupaoDescontoLogin.cupaoDesconto .tituloCupao{
	color: rgba(199, 143, 0, 1);
}

.addWishlist,
.addCompare{
	cursor: pointer;
}

.btnGoBack{
	float: right;
	color: #ccc;
	font-size: 13px;
	cursor: pointer;
}

#magicat.contactos li.open > div{
	margin-bottom: 15px;
}

#magicat.contactos li.open .open-close-custom h4{
	padding: 10px 0;
}

.tabelaProdutosCarrinhoCompras .semProdutos{
	margin-bottom: 30px;
}

.tabelaProdutosCarrinhoCompras .semProdutos label{
	width: 100%;
	text-align: center;
}

.tabelaProdutosCarrinhoCompras .semProdutos .voltarListaProdutos label{
	padding: 5px 30px;
	border: 1px solid #000;
	margin-top: 15px;
	width: auto;
	cursor: pointer;
}

.vw-campos-adicionais{
	visibility: hidden;
}

#site-main div.page-section.adjustContent div.container div.row div.col-md-9 div.row div.col-md-12 div.portlet.light.bordered div.portlet-title div.caption,
#vw-main-content div.page-section.adjustContent div.container div.row div.col-md-9 div.row div.col-md-12 div.portlet.light.bordered div.portlet-title div.caption{
	background-color: transparent !important;
}

#vwDialogTermosCondicoes{
	color: #bcc702;
}

.carrinhoCompras tbody tr td.alignMiddle > div:nth-child(2){
	text-transform: uppercase;
}

.listagemProdutos .tituloPaginaProdutos span.numProds{
	bottom: 10px;
    color: #ccc;
    font-size: 14px;
    position: absolute;
    right: 0;
}

.produtosCarrinho{
    padding: 15px 15px 40px !important;
}

.infoDescontoPortes{
	background: #bcc702 !important;
	margin-top: 10px !important;
	color: #fff !important;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 7px 15px !important;
	text-align: center;
}

.infoDescontoPortesSnd{
	background: #bcc702 !important;
	text-transform: uppercase;
}

.infoDescontoPortes span{
	font-weight: bold !important;
}

.tabelaAfilhados tr td:nth-child(4){
	display: none;
}

.virtualWebTablePagination tr td:nth-child(4){
	display: none;
}

.criarDevolucao{
	padding: 10px 50px;
	float: right;
	background: #fff;
	border: 1px solid #000;
	margin-top: 5px;
	cursor: pointer;
}

.tabelaMinhasEncomendas span.tituloItem{
	text-transform: uppercase;
}

.tabelaMinhasDevolucoes span.tituloItem{
	text-transform: uppercase;
}

.contentStatic .static-info span.estado{
	color: #fff !important;
}

#menuPrinc #menuLateral .vw-menu-imagem{
	display: none;
}

.tabelaProdutosComparador .addWidthComparador .adjustProd{
	display: table;
	width: 100%;
	text-align: center;
}

.tabelaProdutosComparador .addWidthComparador .adjustProd .imagem{
	max-width: 250px;
	display: inline-table;
	width: 100%;
}

#recuperacaoPassword .erroRecuperar{
	color: #000 !important;
}

/* Menu mobile */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: #000;
    overflow-x: hidden;
    -webkit-transition: 0.5s; /* Safari */
    transition: 0.5s;
    padding-top: 50px;
}

.sidenav li{
	list-style: none;
}

.sidenav a {
    padding: 5px 0;
    text-decoration: none;
    color: #fff !important;
    display: block;
    -webkit-transition: 0.5s; /* Safari */
    transition: 0.5s;
}

.sidenav a:hover, .offcanvas a:focus{
    color: #fff;
}

.sidenav .closebtn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}

#main {
    -webkit-transition: 0.5s; /* Safari */
    transition: 0.5s;
}

#menuLateral > li{
	border-bottom: 1px solid #dedede;
	padding: 5px 0;
}

#menuLateral > li > a{
	font-size: 14px;
	text-transform: uppercase;
}


#menuLateral li{
	width: 100% !important;
	float: left;
	text-transform: uppercase;
}

#menuLateral ul{
	width: 100% !important;
	padding-left: 15px;
}

#menuLateral li a{
	width: 100%;
}

#menuLateral li a i{
	color: #fff !important;
    cursor: pointer;
    padding: 5px 10px;
    float: right;
    right: 15px;
    font-size: 15px;
}

#menuLateral .toggleMenu{
	cursor: pointer;
}

#menuPrinc,
.mobileFunctions{
	display: none;
	-webkit-transform: translateZ(10000px);
}

.modal-scrollable{
	-webkit-transform: translateZ(10000px);
}

#menuPrinc .contentMenuLateral{
	opacity: 0;
	-webkit-transition: 0.3s; /* Safari */
    transition: 0.3s;
    width: 300px;
}

#menuPrinc.open .contentMenuLateral{
	opacity: 1;
}

.paddinLeftRight{
	padding: 0 15px;
}

.sideNavMenu{
	float: left;
	margin-top: 5px;
	cursor: pointer;
}

.carrinhoMobile{
	float: right;
	margin-left: 20px;
}

.carrinhoMobile .cart-box img{
	height: 20px;
    margin-top: 8px;
}

.sideNavMenu i{
	font-size: 25px;
}


#menuLateral .collapse li a.active{
	color: #000 !important;
	background: #fff;
	padding: 5px;
}
/* Menu mobile */

.listagemAnexos li{
	list-style: none;
	display: inline-block;
	margin-right: 15px;
}

.listagemAnexos li img{
	height: 50px;
}

.tituloAnexos{
	padding: 15px 0;
	border-bottom: 1px solid #dedede;
	margin-bottom: 15px;
}

.infoDescontoPortesCarrinho {
    background: #bcc702;
    bottom: 12px !important;
    color: #fff  !important;
    font-size: 12px;
    left: 15px;
    padding: 10px 30px;
    position: absolute;
    width: auto !important;
}

.infoTotalDevolucao .infoDescontoCupoesNaoReembolsaveis{
	color: #000;
    font-size: 12px;
}

.carrinhoCompras .espacoCupaoDesconto .infoDescontoCupoes,
.infoDescontoCupoesNaoReembolsaveis {
    color: #3d3d3d !important;
}

.listagemProdutos .verMais{
	text-align: center;
	padding-bottom: 30px;
	text-transform: uppercase;
}

#searchForm a.input-group-addon{
	cursor: pointer;
}

#pesquisaOutput .lineResult a{
	font-size: 12px !important;
}

#pesquisaOutput .lineResult a b{
	font-size: 12px !important;
}

#pesquisaOutput .lineResult a:hover{
	color: #bcc702 !important;
}

.pesquisaExtra{
	float: right;
	padding: 12px;
	position: relative;
	margin-right: 10px;
	cursor: pointer;
	display: none;
}

.pesquisaExtra i{
	font-size: 25px;
}

.sticky .pesquisaExtra{
	display: block;
}

.caminhoCat {
    font-size: 10px !important;
}

.product-detail .descricaoProduto .vw-precoSobConsulta {
    text-transform: uppercase;
}

#magicat.contactos li div strong{
	float: left;
	margin-right: 5px;
}

.infoDescontoPortesSnd .infoDescontoPortesCarrinhoCompras{
	color: #fff !important;
}

.infoDescontoPortesSnd .infoDescontoPortesCarrinhoCompras span{
	color: #fff !important;
	font-weight: bold;
}

html.no-js body.home-2 div.wrapper div#site-main div.page-section.v2-one,
html.no-js body.home-2 div.wrapper div#vw-main-content div.page-section.v2-one{
	margin-top: -2px;
}

.imgSlideHome{
	height: 100%;
	width: 100%;
}

.imagemZona{
	height: 10px;
	margin-right: 5px;
	margin-top: -1px;
}

.listaPaisesSelect > div{
	height: 25px;
	overflow: hidden;
	cursor: pointer !important;
}

.listaPaisesSelect > div.active{
	font-weight: bold;
}

.changeZonaEuropa,
.changeZonaRestoMundo{
	cursor: pointer;
}

@media screen and (max-width: 480px) {		
	.contentCatProdutos ul li a{
		border-right: none;
	}
	
	#site-main .page-section.produtos,
	#vw-main-content .page-section.produtos{
		padding: 35px 0 !important;
	}
	
	.contentCatProdutos ul li{
		width: 100%;
	}
	
	.page-section.v2-one .text-right{
		text-align: center !important;
		margin-top: 15px;
	}
	
/*
	.listagemProdutos .sidebar{
		display: none;
	}
*/
	
	#pesquisaOutput{
		display: none !important;
	}
	
	.detalheProduto .product-detail .descricaoProduto .marca img{
		right: 15px;
	}
	
	.detalheProduto .vw-bloco-adicionar-carrinho-listagem .infoStock{
		margin-left: 15px;
	}
	
	.detalheProduto .tabs-container ul li{
		margin: 0 5px;
	}
	
	.conteudos div.row div.col-md-7.adjunstHeight{
		min-height: 250px !important;
	}
	
	#virtualwebPaging label{
		width: 35% !important;
	}
	
	#virtualwebPaging select{
		width: 50% !important;
	}
	
	.search-cat.navbar-default{
		margin: 10px 0;
	}
	
	.search-cat .navbar-collapse{
		padding-left: 0;
		padding-right: 5px;
	}
	
	#searchForm #formSearchSubmit{
		padding-left: 0 !important;
	}
	
	#searchstr{
		padding: 4px 15px !important;
	}

	.closeModal{
		margin-top: 5px;
		margin-right: 5px;
	}
	
	.mensagemEstadoEncomenda{
		width: 100%;
		overflow-x: scroll;
	}
	
	.contentRedesSociaisNewsletter{
		padding-top: 15px;
		border-top: 1px solid #fff;
		margin-top: 10px !important;
		padding-top: 10px;
	}
}


@media screen and (max-width: 980px) {
	.menuLateralLogin{
		padding-top: 15px;
		float: left;
		width: 100%;
		margin-top: 0 !important;
	}
	
	.contentBreadcrumbs{
		display: none;
	}
	
	#vw-dialog-validarPontos.modal input.form-control{
		margin-bottom: 15px;
	}
	
	.contentLogin{
		width: 100%;
		float: left;
	}
	
	.menuLateralLogin span{
		color: #fff !important;
		font-size: 16px;
	}
	
	.tparrows.hidearrows{
		opacity: 1 !important;
	}

	
}


.listagemFiltros label{
	width: 100%;
}

.listagemFiltros .tituloFiltros{
	padding: 5px 15px;
}

.listagemFiltros .opcaoFiltros{
	padding: 0 30px;
	cursor: pointer;
}

.listagemFiltros .opcaoFiltros.disabled{
	color: #ccc;
}

.listagemFiltros .escondeOpcoes{
	display: none;
}

.listagemFiltros .toggleFiltros,
.listagemFiltros .toggleFiltrosMarca{
	padding: 5px 5px 5px 32px;
	color: #bcc702;
	cursor: pointer;
}

.limparFiltros{
	font-size: 10px !important;
	cursor: pointer;
	float: right;
	margin-top: 4px;
}

#vwDialogPedidoInformao .submitbtn{
	float: right;
	margin-top: 63px;
}

#vwDialogPedidoInformao #captcha{
	float: left;
	width: auto !important;
}


#vwFormComentario input{
	margin-bottom: 15px;
}

.btnInserirComentario{
	margin-bottom: 15px;
	padding: 5px 30px;
	border: 1px solid #000;
	text-transform: uppercase;
	float: right;
}

.classificacaoMediaRating{
	float: left;
	font-weight: bold;
	line-height: 30px;
	text-transform: uppercase;
}

.classificacaoMediaRating .stars{
	width: auto;
	float: left;
}

.headerComentarios{
	margin-bottom: 15px;
	border-bottom: 1px solid #dedede;
	width: 100%;
	float: left;
	padding-bottom: 15px;
}

.gamaPreco{
	padding: 0 15px 15px 15px;
}

.gamaPreco input{
	display: inline-block;
	width: 45%;
	border: 1px solid #dedede;
	padding: 5px;
}

.gamaPreco input:first-child{
	margin-right: 15px;
}

.filtroContent{
	position: relative;
}

.filtroContent .toggleFiltros{
	position: absolute;
	right: 15px;
	top: -35px;
	padding: 5px 10px;
}

.filtroContent .toggleFiltros i{
	font-size: 20px;
}

.filtroContent .toggleFiltrosMarca{
	position: absolute;
	right: 15px;
	top: -35px;
	padding: 5px 10px;
}

.filtroContent .toggleFiltrosMarca i{
	font-size: 12px;
}

.boldUp{
	text-transform: uppercase;
}

.developedBy{
	color: #fff;
}

.spanDevelopedBy{
	margin-left: 4px;
}

.caracteristicasProduto td{
	padding: 5px 10px !important;
/* 	border-top: 1px solid #dedede; */
}

.caracteristicasProduto td:first-child{
	padding-left: 0;
}

.caracteristicasProduto tr:first-child td{
/* 	border-top: none; */
}

.caracteristicasProdutoComparador{
	width: 100%;
	border: none;
}

.caracteristicasProdutoComparador td{
	border: none;
}

.wishlist .tabelaProdutosComparador .caracteristicasProdutoComparador td{
	padding: 5px 0 !important;
	vertical-align: top !important;
}

.sub-ul-marcas{
	width: 100% !important;
}

.col-md-marcas{
	width: 20%;
	padding: 0 15px !important;
}

.li-separar-marcas{
	-webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
}

.separador-modal{
	border-bottom: 1px solid #ccc;
	margin-top: 30px;
	margin-bottom: 30px;
}

#vw-dialog-verificarEstadoEncomendaResult{
	border: none;
}

.mensagemEstadoEncomenda{
	width: 100%;
}

#tabelaEstadoEncomenda{
	width: 100%;
	border-collapse: collapse;
	white-space: nowrap;
	padding: 15px;
	border: 1px solid #e6e6e6;
	margin-top: 15px;
}

#tabelaEstadoEncomenda td{
	padding: 10px 15px;
	border-bottom: 1px solid #e6e6e6;
}

#tabelaEstadoEncomenda tr:first-child td{
	border: none;
	padding: 0;
}

#tabelaEstadoEncomenda tr:last-child td{
	border: none;
}

#tabelaEstadoEncomenda a{
	color: #000;
}

.trackingHref{
	display: block;
	height: 100%;
	width: 100%;
}

.toggleObs{
	cursor: pointer;
}

.observacoesItem{
	display: none;
	-webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
}

.cabecalhoTable{
	background: #e6e6e6;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
}

.totalTable td{
	text-align: center;
	background: #bcc700;
	text-transform: uppercase;
	color: #fff;
}

.codigoEncomendaTable{
	font-weight: bold;
	text-transform: uppercase;
}

.trackingHrefTd{
	text-transform: uppercase;
}

.trackingHrefTd.geral{
	background: #e6e6e6;
}

.estadoItem{
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
}

.varificarEstadoEncomendaDetalhe{
	float: right;
	font-size: 12px;
	border: 1px solid #ccc;
	padding: 5px 20px;
	cursor: pointer;
}

.semDadosApresentar{
	text-align: center;
	padding: 50px 0;
	font-size: 30px;
}

#vw-main-search{
	padding: 50px 0;
}

input[name="emailNews"]{
	margin-left: 15px;
}

.itemComparador{
	padding: 15px;
	border: 1px solid #ddd;
	border-left: 0;
}

.itemComparador:first-child{
	border-left: 1px solid #ddd;
}

.itemComparador .adjustProd{
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ddd;
}

.listagemMarcas{
	padding-bottom: 80px;
}

.tituloMarcas{
	text-transform: uppercase;
	margin-top: 80px;
	margin-bottom: 40px;
}

.filterMarcasPage{
	padding: 0;
	padding-bottom: 30px;
	margin: 0;
	margin-bottom: 30px;
	width: 100%;
	border-bottom: 1px solid #dedede;
	text-align: center; 
}

.filterMarcasPage li{
	display: inline-block;
	padding: 5px 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
}

.filterMarcasPage li.active{
	color: #bcc702;
}

.descricaoMarca{
	padding: 3px 0;
}

.itemMarcas{
	position: inherit !important;
}

.itemMarcas .mega-submenu{
	width: 100% !important;
}

.itemMarcas .col-md-2{
	width: 10% !important;
}

.itemMarcas .vw-menu-imagem{
	height: 60px;
	width: 100%;
	margin-bottom: 0 !important;
	text-align: center;
	position: relative;
}

.itemMarcas .vw-menu-imagem img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
	max-height: 100%;
}

.itemMarcas .tituloMarcaMenu{
	display: none;
}

.itemMarcas .mega-submenu > div{
	width: 100%;
	float: left;
}

.verTodasMarcasMenu{
	padding: 10px 0;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
}

.headerActionsSearch label{
	display: inline-block;
    width: auto;
}

.vw-searchOrderSelector, .vw-searchPagingSelector{
	padding: 5px 25px;
    background-color: #dedede;
    background-position: 92% 53% !important;
}

.sidebarSearch{
    border: 1px solid #dedede
}

.sidebarSearch .block-title {
    border-bottom: 1px solid #dedede;
    padding: 15px;
    text-transform: uppercase;
    color: #bcc702;
}

.listagemFiltrosPesquisa{
	padding: 15px;
}

.listagemFiltrosPesquisa .opcaoFiltrosPesquisa {
    padding: 0 5px !important;
    cursor: pointer;
}

.gamaPrecoPesquisa {
    padding: 0 0 15px 0 !important;
}

.newDetalhe .tituloProdutoDetalheMobile{
	display: none;
	font-size: 21px !important;
    color: #000000 !important;
    font-weight: 400 !important;
    margin-top: 0;
    margin-bottom: 25px !important;
}

.newDetalhe .tituloProdutoDetalhe{
	font-size: 21px !important;
	color: #000000 !important;
	font-weight: 400 !important;
	margin-top: 0;
	margin-bottom: 25px !important;
}

.newDetalhe .price-box{
	height: auto;
}

.newDetalhe .old-price{
	display: block;
	font-weight: 400;
	font-size: 14px;
	color: #787878 !important;
}

.newDetalhe .old-price span{
	font-weight: 400;
	font-size: 14px;
	color: #787878 !important;
}

.newDetalhe .special-price{
	display: block;
}

.newDetalhe .special-price span.price{
	font-weight: 700;
	font-size: 35px;
	color: #BCC702;
}

.newDetalhe .regular-price .price{
	font-weight: 700;
	font-size: 35px;
	color: #BCC702;
}

.newDetalhe span.ivaIncluido{
	font-weight: 400;
	font-size: 11px;
	color: #787878;
}

.newDetalhe .pontosProduto{
	margin-top: 0 !important;
	font-weight: 400;
	font-size: 14px;
	color: #787878;
}

.newDetalhe .pontosProduto span{
	font-weight: 700;
	font-size: 17px;
	color: #787878;
	line-height: 19px;
}

.newDetalhe .vw-adicionar-carrinho-listagem-custom{
	width: 100%;
    margin-top: 35px !important;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF !important;
    text-align: center;
    padding: 15px !important;
    background: #BCC702 !important;
    margin-bottom: 15px !important;
}

.newDetalhe .tituloquantidade{
	padding: 0 !important;
	margin: 0 0 5px 0 !important;
	font-weight: 300 !important;
	font-size: 14px;
	color: #5F5F5F;
	text-transform: none !important;
}


.newDetalhe .vw-quantidade-listagem{
	width: 40px !important;
	margin-right: 2px !important;
}

.newDetalhe .vw-bloco-adicionar-carrinho-listagem .items-count{
    padding: 5px 7px !important;
}

.newDetalhe .infoStock{
    font-weight: 700;
	font-size: 16px;
	color: #BFBFBF;
	text-transform: uppercase;
}

.newDetalhe .informacaoDatasPromocao{
    font-weight: 400;
	font-size: 11px;
	color: #787878;
	margin-top: 15px;
}

.newDetalhe.descricaoProduto{
	border-bottom: none !important;
	left: 0 !important;
}

.newDetalhe.dinamicDivDetalheProduto{
	width: 100%;
}

.newDetalhe .marca{
	width: 100% !important;
	margin-bottom: 25px;
}

.newDetalhe .marca img{
/* 	max-height: 27px; */
	max-width: 100%;
}

.newDetalhe .botoesDetalheProduto{
	position: inherit !important;
}

.newDetalhe .botoesDetalheProduto > div{
	margin-bottom: 5px !important;
}

.newDetalhe .referenciaProduto{
	margin: 0 !important;
    font-weight: 400;
	font-size: 12px;
	color: #787878;
	width: 100%;
    float: none !important;
}

.newDetalhe .infoTextStock{
    font-weight: 400;
	font-size: 11px;
	color: #787878;
}

.newDetalhe .botaoAdd a{
    font-weight: 400;
	font-size: 14px;
	color: #787878;
}

.newDetalhe .botaoAdd a:hover{
	font-size: 14px;
	color: #BCC702;	
}

.newDetalhe .infoTextStock{
	
}

.newDetalhe .infoTextStock p{
	margin: 0 !important;
}

.newDetalhe .stockMaiorZero{
    font-weight: 700;
	font-size: 14px;
	color: #787878;
}

.linhaProdutos{
	margin-bottom: 15px;
}

.linhaProdutos.hiddenLinha{
	visibility: hidden;
}

.cabecalhoLinhaProduto{
	border: 1px solid #D6D6D6;
    font-weight: 400;
	font-size: 12px;
	color: #787878;
	text-align: center;
    line-height: 30px;
    position: relative;
}

.prevLinhaProduto{
	position: absolute;
	left: 0;
	top: -1px;
	cursor: pointer;
}

.nextLinhaProduto{
	position: absolute;
	right: 0;
	top: -1px;
	cursor: pointer;
}

.itemSlideLinha{
	padding: 5px;
	border-right: 1px solid #D6D6D6;
	border-bottom: 1px solid #D6D6D6;
	position: relative;
}

.itemSlideLinha.active::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	border-bottom: 3px solid #BCC702;
	width: 100%;
}

.slick-current .itemSlideLinha{
	border-left: 1px solid #D6D6D6;
}

.itemSlideLinha .imagemPrincipalProdutoLinhaProduto{
	opacity: 0.4;
    -webkit-transition-duration: 700ms;
    -moz-transition-duration: 700ms;
    -o-transition-duration: 700ms;
    transition-duration: 700ms;
}

.itemSlideLinha:hover .imagemPrincipalProdutoLinhaProduto{
	opacity: 1;
}

.itemSlideLinha.active .imagemPrincipalProdutoLinhaProduto{
	opacity: 1;
}

.infoProdutoHover{
	display: none;
	position: absolute;
	width: 100%;
	bottom: 4px;
	left: 0;
	background: #fff;
	transform: translateY(100%);
	z-index: 100;
	border-left: 1px solid #D6D6D6;
	border-right: 1px solid #D6D6D6;
	border-bottom: 1px solid #D6D6D6;
}

.infoProdutoHover.open{
	display: flex !important;
}

.containerLinhaProduto{
	position: relative;
}

.containerImagemProdutoHover{
	width: 25%;
	padding: 0;
	border-right: 1px solid #D6D6D6;
	position: relative;
}

.imagemProdutoHover{
	width: 100%;
	padding-top: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.descricaoProdutoHover{
	width: 75%;
	padding: 10px;
}

.tituloProdutoHover{
    font-weight: 400;
	font-size: 12px;
	color: #000000;
	line-height: 14px;
	margin-bottom: 8px;
	overflow: hidden;
    height: 15px;
    text-transform: uppercase;
}

.precoProdutoHover{
    font-weight: 700;
	font-size: 13px;
	color: #787878;
}

.botarVerProdutoHover{
	background: #EEEEEE;
    font-weight: 700;
	font-size: 12px;
	color: #858585;
	text-align: center;
	width: 100%;
	padding: 3px 0;
	margin-top: 2px;
}

.botarVerProdutoHover:hover{
	background: #BCC702;
	color: #fff;
}

.infoStockProdutoHover{
    font-weight: 700;
	font-size: 11px;
	margin-left: 15px;
	text-transform: uppercase;
}

.infoStockProdutoHover.emStock{
	color: #bcc702;
}

.infoStockProdutoHover.foraStock{
	color: #838383;
}

.infoStockProdutoHover.stockLimitado{
	color: #c77e00;
}

.contentPrecosExtra{
	padding: 10px;
	border: 1px solid #D6D6D6;
	margin-bottom: 15px;
}

.tituloPrecosExtra{
    font-weight: 700;
	font-size: 12px;
	color: #787878;
	text-align: center;
}

.contentItemsPrecoExtra{
	margin-top: 10px;
}

.itemPrecoExtra{
	display: flex;
	width: 100%;
    margin-bottom: 3px;
}

.itemPrecoExtra:last-child{
    margin-bottom: 0;
}


.itemPrecoExtra > div{
	width: 33.33%;
	font-size: 12px;
	color: #000000;
	text-align: center;	
    padding: 0 5px;
}

.itemPrecoExtra > div span{
    font-weight: 700;
}

.vw-adicionar-carrinho-precos-extra-custom{
    font-weight: 600;
    font-size: 10px;
    color: #FFFFFF;
    text-align: center;
    background: #BCC702;
    padding: 2px 0;
    cursor: pointer;
}

.newDetalhe .tituloCabecalho{
	color: #5F5F5F;
}

.linhaProdutos .slick-track{
	margin-left: 0;
}

.imagemPromo{
	position: absolute;
	left: 0;
	width: 35%;
	bottom: 0;
	z-index: 40;
	padding: 15px;
}

.imagemPromo img{
	width: 100%;
}

.owl-controls{
	display: none !important;
	border: none !important;
	margin: 0 !important;
}

.owl-controls .owl-page span{
	border-radius: 100% !important;
    background: transparent !important;
    border: 1px solid #BFBFBF;
    width: 10px !important;
    height: 10px !important;
}

.owl-controls .owl-page.active span{
	background: #BCC702 !important;
}

.owl-controls .owl-pagination{
	border: none !important;
}

.owl-theme .owl-controls .owl-page span{
	margin: 3px 4px !important;
}

.totalCarrinhoCompras {
    font-size: 18px;
    font-weight: 700;
}

.contentHeaderMobile{
	padding: 5px 0;
    width: 100%;
    float: left;
}

.infoPontosCarrinho{
	background: #000 !important;
    color: #fff !important;
    font-size: 14px !important;
    text-align: center !important;
    padding: 10px !important;
}

.tituloDadosFaturacao{
	margin-top: 0 !important;
}

.tituloCarrinhoCompras {
    margin-bottom: 30px !important;
    margin-top: 0 !important;
}

@media screen and (max-width: 480px) {	
	.newDetalhe .tituloProdutoDetalhe{
		display: none;
	}
	
	.newDetalhe .tituloProdutoDetalheMobile{
		display: block;
	}
	
	.product-detail .images .p-thumb,
	.detalheProduto .images .downThumbs{
		display: none;
	}
	
	.product-detail .images .p-preview{
		padding-right: 0;
	}
	
	.status-product-new{
		right: 0 !important;
	}
	
	.newDetalhe .marca{
		display: none;
	}
	
	.newDetalhe .descricaoProduto{
		border-bottom: none;
	}
	
	.detalheProduto .tabs-container ul li{
		width: 100%;
	    margin: 0 !important;
	}
	
	.detalheProduto .tabs-container > ul{
		border-top: none;
	}
	
	.detalheProduto .tabs-container ul li{
	    padding-left: 15px;
	    border: 1px solid #dedede;
	}
	
	.detalheProduto .tabs-container ul li.active{
		background: #dedede;
	}
	
	.detalheProduto .tabs-container ul li.active::before{
		content: none;
	}
	
	.detalheProduto .tabs-container > ul{
		margin-bottom: 25px;
	}
	
	.bannerDetalheProduto,
	.bannerListagemProdutos{
		margin-bottom: 30px;
	}
	
	.listagemProdutos .tituloPaginaProdutos span.numProds{
		bottom: 2px;
	}
	
	.owl-controls{
		display: block !important;
	}
	
	.product-detail .images .p-preview > div{
		border: none;
	}
	
	.btnsCarrinhoCompras a.btn {
	    padding: 15px 30px !important;
	}
	
	.carrinhoVersaoMobile .espacoCupaoDesconto input[name="codigoCupaoDesconto"]{
		padding: 10px 5px !important;
	}
	
	.tabelaProdutosCarrinhoCompras .carrinhoCompras .espacoCupaoDesconto button{
		padding: 10px 30px !important;
	}
	
	.descricaoCupaoDesconto{
		font-weight: 600;
	}
	
	.espacoCupaoDesconto{
		padding-top: 10px;
	}
	
	.carrinhoVersaoMobile .numPontosCarrinhoCompras, .carrinhoVersaoMobile .valorPontosCarrinhoCompras {
	    font-size: 14px !important;
	}
		
	.carrinhoVersaoMobile .eleminarProdCarrinhoCompras,
	.carrinhoCompras tbody tr td i.fa-plus-square, 
	.carrinhoCompras tbody tr td i.fa-minus-square{
		font-size: 16px;
	}
	
	.sidenav li{
		padding: 5px 0;
	}
	
	.carrinhoCompras tr td:nth-child(5) p{
		font-size: 13px;
	}
	
	.carrinhoVersaoMobile .imagemCarrinho {
	    height: 50px !important;
	    width: 50px !important;
	}
	
	.caracteristicasHome{
		padding: 10px 0 !important;
	}
	
	#site-header .extra-info ul li a {
		padding: 10px 0;
		display: block;
		font-size: 12px;
	}
	
	.btnsCarrinhoCompras .finalizarEncomenda,
	.btnsCarrinhoCompras .pagamento,
	.btnsCarrinhoCompras .confirmarCompra{
		margin-bottom: 50px !important;
	}
	
	.inner-info-product-cart ul li:nth-child(2),
	.inner-info-product-cart ul li:nth-child(3){
		display: none !important;
	}
}



/* Style the navbar */
#navbar {
  
  overflow: hidden;
  height: 40px;
  background-color: rgb(195, 50, 50);
}

/* Navbar links */
#navbar .item-1 {
  color: #fff;
  text-align: center;  
  font-size: 15px;
  padding: 10px;
  text-decoration: none;
}

/* Style the navbar */
#navbar2 {
  
  overflow: hidden;
  height: 50px;
  background-color: #A8C700;
}

/* Navbar links */
#navbar2 .item-1 {
  color: #fff;
  text-align: center;  
  font-size: 12px;
  padding: 10px;
  text-decoration: none;
}

}



