/* 
 * 	Core Owl Carousel CSS File
 *	v1.24
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(../img/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/* CSS3 Transitions */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}
/*	General CSS resets;
	*		The target itself is not affected, allowing
	*		the remainder of the document to use an
	*		alternate box-sizing model;
	*		Support for box-sizing is wide spread:
	*		http://caniuse.com/#search=box-sizing
*/
.noUi-target * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-ms-touch-action: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	cursor: default;
}

/*	Main slider bar;
	*		Standard styles no longer incorrectly force a
	*		width or height on the slider.
*/
.noUi-base {
	width: 100%;
	height: 5px;
	position: relative;
	max-width: 100%;
	max-height: 100%;
	border: 0;
	z-index: 1;
}

/*	Handles + active state;
	*		The :after pseudo-element wont inherit
	*		box-sizing, so it needs to applied manually.
*/
.noUi-handle {
	background: #fff;
	height: 19px;
	width: 19px;
	border-radius: 50%;
	border: 3px solid #fa6f57;
	margin: -7px;
	cursor: pointer;
	-webkit-transition: all 0.1s ease-out;
	-moz-transition: all 0.1s ease-out;
	-o-transition: all 0.1s ease-out;
	-ms-transition: all 0.1s ease-out;
	transition: all 0.1s ease-out;
}
.noUi-active {
	background: #fa6f57;
}
.noUi-active:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	content: "";
	display: block;
	height: 100%;
	border: 0;
}

/*	Styling-only classes;
	*		Structured to prevent double declarations
	*		for various states of the slider.
*/
.noUi-connect {
	background: #fa6f57;
	cursor: pointer;
}
.noUi-background {
	background: #919191;
}

/*	Functional styles for handle positioning;
	*		Note that the origins have z-index 0, the base has
	*		z-index 1; This fixes a bug where borders become invisible.
*/
.noUi-origin {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
	border-radius: inherit;
}
.noUi-origin-upper {
	background: inherit !important;
}
.noUi-z-index {
	z-index: 10;
}

/*	Adaptations for the vertical slider;
	*		Some standard styles have been extended to keep
	*		exceptions for the vertical slider as minimal as possible.
*/
.noUi-vertical {
	width: 40px;
	height: 100%;
}
.noUi-vertical .noUi-origin {
	bottom: 0;
	left: 0;
}
.noUi-vertical .noUi-handle  {
	margin: -23px 0 0 -3px;
}

/*	Various alternate slider states;
	*		Support for transition is widely available,
	*		Only IE7, IE8 and IE9 will ignore these rules.
	*		Since this is merely a progressive enhancement,
	*		this is no problem at all.
	*		http://caniuse.com/#search=transition
*/
.noUi-target[disabled] .noUi-base {
	background: #999;
}
.noUi-target[disabled] .noUi-connect {
	background: #BBB;
}
.noUi-state-tap .noUi-origin {
	-webkit-transition: left 0.3s, top 0.3s;
	transition: left 0.3s, top 0.3s;
}
.range-slider-value {
	margin-top: 20px;
	font-size: 0.75em;
	color: #919191;
}
.range-slider-value > * {
	display: inline-block;
}
.range-slider-value .min:after {
	content: ' - ';
}
/**** Isotope filtering ****/

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}

/* End: Recommended Isotope styles */
/*
| ----------------------------------------------------------------------------------
| Breadcrumb
| ----------------------------------------------------------------------------------
*/
.breadcrumb-container {
	padding: 20px 0;
	background: #f2f2f2;
}
.products-view .breadcrumb-container {
	height: 100px;
}
.bc {
	font-size: 12px;
}
.bc.push-up {
	position: absolute;
	top: 0;
	left: 0;
}
.bc > li {
	float: left;
	margin-left: 1em;
	color: #919191;
}
.bc > li:before {
	content: '/';
	margin-right: 1em;
}
.bc > li:first-child {
	margin-left: 0;
}
.bc > li:first-child:before {
	content: none;
}
.bc a {
	color: #919191;
}
.bc a:hover {
	color: #8F171A;
}
.bc .active {
	color: #1f1f1f;
}


/*
| ----------------------------------------------------------------------------------
| Sidebar
| ----------------------------------------------------------------------------------
*/
.sidebar:not(.push-up) .side-section:first-child {
	margin-top: 50px;
}
.sidebar .side-section {
	position: relative;
	margin: 0 0 30px;
	font-family: Raleway;
}
.side-section.bg-white {
	background: #fff;
}
.sidebar.push-up,
.products-wrapper {
	position: relative;
	top: -90px;
}
.sidebar .side-section-header {
	padding: 7px 15px;
	background: #fa6f57;
	text-align: center;
}
.sidebar .side-section-title {
	color: #fff;
	margin: 0;
	text-transform: uppercase;
}
.sidebar .side-section-content {
	padding: 30px 24px;
}
.sidebar .side-section-footer {
	padding: 0 24px 30px;
}
.sidebar .side-section-subheader {
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
}


.vmenu .fakeInput {
	display: block;
	position: relative;
}
.vmenu > li > .prettycheckbox {
	font-size: 14px;
}
.vmenu li:first-child {
	margin-top: 0;
}
.vmenu li {
	margin-top: 0.25em;
}
.vmenu > li > .prettycheckbox label {
	text-transform: uppercase;
}
.vmenu ul {
	font-size: 12px;
	list-style: none;
	margin: 10px 0 15px 24px;
}
.vmenu,
.vmenu a {
	color: #919191;
}
.vmenu .checked,
.vmenu .checked a {
	color: #1f1f1f;
}
.vmenu a:hover {
	color: #fa6f57;
}

.filter-checkbox { 
	display: none;
}
#filter-by-color .color-box {
	border-color: transparent;
	opacity: 0.4;
	filter: alpha(opacity=40);
}
#filter-by-color .color-box:hover,
#filter-by-color .color-box.active {
	opacity: 1;
	filter: alpha(opacity=100);
}


/*
| ----------------------------------------------------------------------------------
| Products Layout
| ----------------------------------------------------------------------------------
*/
.products-header .round-icon {
	padding: 2px;
}
.mix-item.loading .product .entry-media {
	min-height: 150px;
	background: #ccc url(../img/AjaxLoader2.gif) no-repeat center center
}
.products-layout {
	margin-left: -15px;
	margin-right: -15px;
}
.products-layout .mix-item {
	padding: 15px;
	float: left;
}
.products-layout .product {
	opacity: 0;
	filter: alpha(opacity=0);
	visibility: hidden;
}

.products-layout.list .mix-item {
	width: 100% !important;
}
.products-layout.list .product {
	background: #fff;
	text-align: justify;
}
.products-layout.list .entry-media {
	width: 25%;
}
.products-layout.list .entry-main {
	width: 100%;
	margin-left: -5px;
	text-align: left;
	padding-top: 0.5em;
	padding-right: 2em;
	padding-bottom: 0.5em;
	padding-left: 2em;
}
.products-layout.list .entry-media,
.products-layout.list .entry-main {
	display: inline-block;
	vertical-align: top;
}
.products-layout.list .hover {
	background: none !important;
}
.products-layout.list .hover .icons .circle:not(.ribbon),
.products-layout.list .hover .rate-bar {
	display: none;
}
.products-layout.list .entry-title {
	text-align: left;
}
.products-layout.list .entry-links {
	float: left;
}
.product .visible-list {
	display: none;
}
.products-layout.list .visible-list {
	display: block;
}
.product .visible-grid {
	display: none;
}
.products-layout.grid .visible-grid {
	display: block;
}
.products-layout.list .entry-main > * {
	/* margin-right: 175px; */
}
.products-layout.list .entry-price {
	position: absolute;
	top: 0;
	right: -150px;
	width: 150px;
	height: 100%;
	text-align: center;
	line-height: 2;
	padding: 25px 0 25px 25px;
	margin-left: 25px;
	border-left: 1px solid #ddd;
}
.products-layout.list .add-to-cart {
	margin-top: 20px;
}


/*
| ----------------------------------------------------------------------------------
| Product Details Single Page
| ----------------------------------------------------------------------------------
*/
.product-preview { 
	position: relative;
	overflow: hidden;
	zoom: 1;
}
.product-preview .big-image {
	margin-right: 104px;
	overflow: hidden;
	zoom: 1;
}
.product-preview .thumbs {
	position: absolute;
	top: 0;
	right: 0;
}
.product-preview .thumbs > li {
	margin-top: 5px;
}
.product-preview .thumbs > li:first-child {
	margin-top: 0;
}
.product-preview .thumbs > li > a {
	display: block;
	width: 84px;
	height: 84px;
	border: 3px solid #919191;
	border-radius: 50%;
	overflow: hidden;
}
.product-preview .thumbs > li > a:hover {
	border-color: #fa6f57;
}


.product-details {
	margin-left: 30px;
}
.product-details .entry-title {
	margin: 0 0 5px;
}
.product-details .subheader {
	font-size: 0.925em;
	font-weight: 600;
	margin: 10px 0;
}
.product-details .entry-title,
.product-details .subheader,
.product-details a:not(.btn) {
	color: #1f1f1f;
}
.product-details a:not(.btn):hover {
	color: #fa6f57;
}
.product-details .entry-content {
	font-size: 12px;
}
.product-details .entry-content p {
	color: #919191;
	line-height: 2;
}
.product-details .entry-price {
	margin-right: 30px;
	font-size: 2em;
	font-weight: bold;
	color: #fa6f57;
}
.product-details .entry-review-count {
	color: #919191;
	font-size: 0.925em;
	margin-left: 5px;
}
.product-details .entry-meta {
	margin: 15px 0;
}
.product-details .entry-meta > li {
	margin-top: 4px;
}
.product-details .entry-meta > li:first-child {
	margin-top: 0;
}
.product-details .entry-meta li > * {
	display: inline-block;
	vertical-align: middle;
}
.product-details .entry-meta .key {
	width: 100px;
}
.product-details .entry-meta .value {
	color: #fa6f57;
}
.product-details .styled-dd {
	width: 220px;
}
.product-details .styled-dd select {
	width: 250px;
	font-size: 12px;
	padding: 0.5em 1.5em;
}

.comments-list {
	color: #1f1f1f; /* This is to force disqus load light theme appearance */
}


.tbl-cart {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 15px;
}
.tbl-cart th {
	font-size: 14px;
	font-weight: normal;
	color: #919191;
	text-align: center;
}
.tbl-cart td {
	position: relative;
	vertical-align: middle;
	height: 45px;
	padding: 0 10px;
	background: #fff;
	color: #1f1f1f;
}
.tbl-cart td > * {
	display: inline-block;
	vertical-align: middle;
}
.tbl-cart td:not(:last-child):after {
	position: absolute;
	top: 20%;
	right: 0;
	content: ' ';
	width: 1px;
	height: 60%;
}
.tbl-cart td:not(:first-child) {
	text-align: center;
}
.tbl-cart td:first-child {
	padding-left: 0;
}
.tbl-cart .entry-thumbnail {
	width: 60px;
}
.tbl-cart .entry-title {
	margin-left: 1.25em;
}
.tbl-cart .close {
	float: none;
	opacity: 1;
	color: #FFF;
	text-shadow: none;
	width: 16px;
	height: 16px;
	font-size: 14px;
	text-align: center;
}
.qty-btn-group {
	color: #919191;
	border: 2px solid #919191;
	border-radius: 1.5em;
	min-width: 85px;
}
.qty-btn-group > * {
	display: inline-block;
}
.qty-btn-group button {
	color: #919191;
	background: none;
	border: 0;
	margin: 0;
	width: 28px;
	height: 28px;
	text-align: center;
}
.qty-btn-group button:hover {
	color: #1f1f1f;
}
.qty-btn-group input {
	border: 0;
	margin: 0;
	padding: 0;
	width: 65px;
	text-align: center;
	background: none;
	font-size: 16px;
	color: #919191;
}
.empty-cart {
	font-size: 12px;
	text-align: center;
}


.shopcart-total {
	width: 450px;
	float: right;
	background: #f2f2f2;
	padding: 1.5em;
}


.panel-title .step {
	display: inline-block;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	line-height: 32px;
	background-color: #e3e3e3;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
	text-align: center;
	margin-right: 0.5em;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.panel-title > a:hover > .step {
	background: #1f1f1f;
	color: #fff;
}


.checkout {
	margin-top: 55px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.checkout .stylish-input input[type="text"],
.checkout .stylish-input input[type="password"],
.checkout .stylish-input input[type="email"],
.checkout .stylish-input input[type="tel"],
.checkout .stylish-input select,
.checkout .stylish-input textarea {
	height: 26px;
}
.checkout .panel-body {
	padding: 20px;
	border: 1px solid #f2f2f2;
	border-top: 0 !important;
	background: #e3e3e3;
	font-size: 12px;
	color: #1f1f1f;
}
.checkout legend {
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.checkout fieldset > .inner {
	padding: 15px;
	font-family: Raleway;
}
.paymethod label {
	font-weight: 600;
}


/** Shop cart summary */

.shop-summary tr.tabela {
	text-align: left;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	border-bottom:#CCC 1px solid;
	margin-bottom:7px;
	width:100%;

}
.tabela td{
	padding-bottom:5px;
	padding-top:5px;
	padding-left:10px;
	font-family: Raleway;
}

.shop-summary{
	width:100%;
	
}

.shop-summary .total td,
.shop-summary .total th {
	font-size: 20px;
	padding-top: 20px;
	padding-bottom: 15px;
}
.shop-summary .total td {
	color: #ff5757;
}


.coupon { max-width: 290px; }
#store-locator-gmap { height: 400px; }

.store-list {
	font-size: 12px;
	max-height: 400px;
	overflow-x: hidden;
	overflow-y: auto;
}
.store-list dt {
	float: left;
	font-weight: 600;
	margin-right: 10px;
	color: #1f1f1f;
}
.store-list dd {
	overflow: hidden;
	zoom: 1;
	color: #919191;
}
.store-list dt.phone {
	float: none;
	display: block;
}
.store-list .entry-title {
	font-size: 14px;
	font-weight: 600;
}
.store-list > li {
	padding: 15px;
	border-bottom: 4px solid #d9d9d9;
	border-top: 4px solid #d9d9d9;
	background: #f2f2f2;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.store-list > li + li {
	border-top: 0;
}
.store-list > li:hover {
	background: #d1d1d1;
}
.error {         color: #fff;        background-color: #BE1E2D;        height: 35px;        width: auto;        border-radius: 4px;        line-height: 34px;        text-align: center;          }            .sucesso {             color: #fff;            background-color: #00b512;            height: 35px;            width: auto;            border-radius: 4px;            line-height: 34px;            text-align: center;                  }    
@media only screen and (min-width: 320px) and (max-width: 480px) {
	.header-top .actions > li:first-child {
		width: 100%;
		margin-bottom: 10px;
	}
	.bnds {
	background-image: none;
}
}
/* col-xs */
@media only screen and (max-width: 767px) {
	/*
	| ---------------------------------------------------------
	| General & Helper Class
	| ---------------------------------------------------------
	*/
	.bnds {
	background-image: none;
}
	.center-xs {
		display: table;
		width: auto;
		margin: 0 auto;
		float: none;
		position: static;
		text-align: center;
	}
	
	/*
	| ---------------------------------------------------------
	| Header
	| ---------------------------------------------------------
	*/
	.header-top {
		height: auto;
	}
	.header-top .contact-info,
	.header-top .actions {
		display: table;
		margin: 0 auto;
		padding: 15px 0;
		float: none;
		text-align: center;
	}
	
	.main-header {
		height: auto;
		margin: 0;
		padding: 30px 0;
	}
	.main-header .actions {
		display: table;
		margin: 0 auto 30px auto;
		float: none;
		position: static;
	}
	.main-header .logo-wrapper {
		position: static;
		float: none;
	}
	
	.dl-menuwrapper {
		margin: 0 0 3em;
	}
	.dl-menuwrapper .dl-menu.dl-menuopen,
	.dl-menuwrapper > .dl-submenu {
		top: 5em;
	}
	
	
	.products-wrapper {
		top: 0;
	}
	.products-layout.list .entry-media, 
	.products-layout.list .entry-main {
		display: block;
		width: auto;
	}
	.products-layout.list .entry-media {
		max-width: 280px;
		margin: 0 auto;
	}
	.products-layout.list .entry-main > * {
		margin-right: auto;
	}
	.products-layout.list .entry-price {
		position: static;
		margin: 20px auto;
		padding: 0;
		border: 0;
	}
	.products-layout.list .entry-links {
		display: table;
		margin: 10px auto;
		float: none;
	}
	
	.nav-tabs>li {
		float: none;
		margin-bottom: 3px;
	}
	
	.tbl-cart td {
		font-size: 12px;
	}
	.tbl-cart .qty-btn-group {
		min-width: 28px;
		width: 32px;
	}
	.tbl-cart .qty-btn-group button {
		height: 20px;
	}
	.tbl-cart tbody tr > td:nth-child(3):after {
		content: none;
	}
	.bnds {
	background-image: none;
}
}
/* col-sm */
@media only screen and (min-width: 768px) and (max-width: 991px) {
}

/* col-md */
@media only screen and (min-width: 992px) and (max-width: 1170px) {
	.main-menu > li > a {
		padding: 25px 10px;
	}
}
/* col-xs , col-sm */
@media only screen and (max-width: 991px) {
	/*
	| ---------------------------------------------------------
	| Promo
	| ---------------------------------------------------------
	*/
	.promo.first-child {
		margin-top: 0;
	}
}

/* col-md and col-lg */
@media only screen and (min-width: 992px) {
	/*
	| ---------------------------------------------------------
	| Promo
	| ---------------------------------------------------------
	*/
	.promo.first-row {
		margin-top: 0;
	}
	
}
/* All but col-xs */
@media only screen and (min-width: 768px) {
	#frm-contact-us { margin-right: 80px; }
	
}