@-webkit-keyframes para-esquerda {
  from { -webkit-transform: translateX(-15px); transform: translateX(-15px); }
  to { -webkit-transform: translateX(0); transform: translateX(0); }
}

@keyframes para-esquerda {
  from { -webkit-transform: translateX(-15px); transform: translateX(-15px); }
  to { -webkit-transform: translateX(0); transform: translateX(0); }
}

@media (max-width: 767px) {
  #menu .nav > li {
    -webkit-animation-name: para-esquerda;
    animation-name: para-esquerda;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
    -webkit-animation-fill-mode: forwards; /* Adicionando fill-mode para evitar retornos após animação */
    animation-fill-mode: forwards;
	-webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1); /* Ajuste suave de ida e volta */
    animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  }
}


body {
	font-family: 'Montserrat', 'Open Sans', sans-serif;
	font-weight: 400;
	color: #666;
	font-size: 12px;
	line-height: 20px;
	width: 100%;
	overflow-x: hidden;
}

body.menu-opened {
	overflow: hidden !important;
}
body.menu-opened:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .25);
    z-index: 111;
}

@supports (-webkit-touch-callout: none) {
	@media screen and (max-width: 767px) {
	  input, select, textarea {
		font-size: 16px !important;
	  }
	}
}
h1, h2, h3, h4, h5, h6 {
	color: #333;
}
/* default font size */
.fa {
	font-size: 14px;
}
/* Override the bootstrap defaults */
h1 {
	font-size: 24px;
    font-weight: 700;
    line-height: 145%;
	text-transform: uppercase;
}
h2 {
	font-size: 27px;
}
h3 {
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 45px;
	margin-bottom: 25px;
}
h4 {
	font-size: 15px;
}
h5 {
	font-size: 12px;
}
h6 {
	font-size: 10.2px;
}
a {
	color: #333333;
}
a:hover {
	text-decoration: none;
}
legend {
	font-size: 18px;
	padding: 7px 0px
}
label {
	font-size: 12px;
	font-weight: normal;
}
.form-control {
	border-radius: 0;
	box-shadow: none !important;
}
.form-control:focus {
	border-color: #333;
}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
	font-size: 12px;
}
.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
	font-size: 12px;
}
.input-group .input-group-addon {
	font-size: 12px;
	height: 30px;
}
/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
	display: inline;
}

.nav-tabs {
	margin-bottom: 15px;
}
div.required .control-label:before {
	content: '*\00a0';
	color: #F00;
	font-weight: bold;
}
#product div.required .control-label:before {
	float: left;
	display: none;
}
/* Remove radius from dropdown menu border */
.dropdown-menu {
	border-radius: 0;
}
/* Gradent to all drop down menus */
.dropdown-menu li > a:hover {
	text-decoration: none;
	color: #ffffff;
	background-color: #229ac8;
	background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
	background-repeat: repeat-x;
}
/* top */
#top {
	background-color: #333;
	border-bottom: 0 none;
	padding: 4px 0px 3px 0;
	margin: 0;
	min-height: 25px;
	text-transform: uppercase;
	font-size: 11px;
	height: 27px;
	transition: top .5s;
	transition-delay: .5s;
	top: -27px;
}
body.scroll > #top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 11;
}
#top .container {
	position: relative;
	padding: 0 20px;
}
#top #currency .currency-select {
	text-align: left;
}
#top #currency .currency-select:hover {
	text-shadow: none;
	color: #ffffff;
	background-color: #229ac8;
	background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
	background-repeat: repeat-x;
}
#top .btn-link, #top-links li, #top-links a {
	color: #fff;
	text-decoration: none;
	background: none;
}
#top .btn-link:hover, #top-links a:hover {
	color: #fff;
}
#top-links > ul > li:first-child {
	position: absolute;
	left: 15px;
}
#top-links > ul > li:first-child span.hidden-xs {
	display: inline !important;
}
#top-links a:hover span.hidden-xs {
	text-decoration: underline;
}
#top-links .dropdown-menu a {
	text-shadow: none;
	color: #333;
	font-size: 11px;
	padding: 5px 20px;
}
#top-links .dropdown-menu a:hover {
	color: #333;
	text-decoration: underline;
}
#top .btn-link strong {
	font-size: 14px;
        line-height: 14px;
}
#top-links {
}
#top-links > ul:first-child {
	margin-bottom: 0;	
}
#top-links a + a {
	margin-left: 15px;
}
/* header */
body > header {
	padding-top: 10px;
	background-color: #fff;
	top: -200px;
	transition: top .5s;
	transition-delay: .5s;
}
body.scroll > header {
    position: fixed;
    top: 27px; /* #top height */
    width: 100%;
    z-index: 9;
    /* box-shadow: 0 0 20px -4px rgb(0 0 0 / 15%); */
    border-bottom: 1px solid #CACACA;
}
header .row.flex [class^="col-sm"]:first-child {
}
header .row.flex [class^="col-sm"]:last-child {
	padding-left: 0;
}
header .row.flex [class^="col-sm"]:nth-child(even) {
	flex: 1;
	padding-left: 0;
	padding-right: 0;
}
/* logo */
#logo {
	margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#logo a {
	display: inline-block;
}
#logo img {
	max-height: 45px;
}
/* search */
#search {
	width: 100%;
	border: 1px solid #ccc;
	background: #eceff5;
}
#search .input-lg {
	height: 40px;
    line-height: 20px;
    padding: 0 64px 0 10px;
    border: 0;
    border-radius: 0;
	font-size: 14px;
	background: transparent;
}
#search .input-lg:active, #search .input-lg:focus {
	border-color: #333;
	box-shadow: none;
}
#search .input-lg:active + span > button, #search .input-lg:focus + span > button {
	color: #333;
}
#search .btn-lg {
	background: none !important;
    border: 0 none;
    margin: 0;
    right: 7px;
    position: absolute;
    padding: 10px 20px;
    z-index: 2;
    bottom: 1px;
    top: 1px;
}
/* cart */
#cart {
}
#cart > .btn {
	font-size: 12px;
	line-height: 18px;
	color: #333;
	padding-top: 0;
	float: right;
	padding-left: 0;
	margin-right: 10px;
}
#cart > .btn i {
	font-size: 30px;
}
#cart.open > .btn {
	color: #111;
    box-shadow: none;
    text-shadow: none;
}
#cart.open > .btn:hover {
	color: #444;
}
#cart .dropdown-menu {
	background: #eee;
	z-index: 1001;
}
#cart-total.badge {
	max-width: 20px;
    height: 20px;
    word-spacing: 20px;
    overflow: hidden;
    background-color: #333;
    position: absolute;
    bottom: 0;
    right: 0;
    top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
#cart .dropdown-menu {
	min-width: 100%;
}
	@media (max-width: 478px) {
		#cart .dropdown-menu {
			width: calc(100vw - 30px);
		}
	}
#cart .dropdown-menu table {
	margin-bottom: 10px;
}
#cart .dropdown-menu li > div {
	min-width: 427px;
	padding: 0 10px;
}
	@media (max-width: 478px) {
		#cart .dropdown-menu li > div {
			min-width: 100%;
		}
	}
#cart .dropdown-menu li p {
	margin: 20px 0;
}

/* menu */
/* mobile version */
.menu {
	min-height: 40px;
}
.menu .nav > li > a {
	color: #333;
	padding: 10px 15px 10px 15px;
	min-height: 15px;
	background-color: transparent;
}
.menu .nav > li > a:hover, .menu .nav > li.open > a {
	background-color: rgba(0, 0, 0, 0.1);
}
.menu .nav > li > a:first-child {
    border-bottom: 1px solid #eee;
}
.menu .dropdown-menu {
	padding-bottom: 0;
}
.menu .dropdown-inner {
	display: table;
}
.menu .dropdown-inner ul {
	display: table-cell;
}
.menu .dropdown-inner a {
	min-width: 160px;
	display: block;
	padding: 3px 20px;
	clear: both;
	line-height: 20px;
	color: #333333;
	font-size: 12px;
}
.menu .dropdown-inner a, .menu .see-all, .menu .nav > li > a:first-child {
	text-transform: uppercase;
	padding: 15px 15px 15px 30px !important;
}
.menu .nav > li > a:first-child, #mobile-submenu ul li > span {
	padding-left: 15px !important;
}
.menu .dropdown-inner li a:hover, .menu .dropdown-inner li a:focus {
	background-color: #f6f6f6 !important;
	color: #000 !important;
}
.menu .see-all {
	display: block;
	margin-top: 0.5em;
	border-top: 1px solid #DDD;
	padding: 3px 20px;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 3px 3px;
	font-size: 12px;
}
.menu .see-all:hover, .menu .see-all:focus {
	text-decoration: none;
	background-color: #f6f6f6 !important;
	color: #000 !important;
}
.menu #category {
	float: left;
	padding-left: 15px;
	font-size: 16px;
	font-weight: 700;
	line-height: 40px;
}
.menu .btn-navbar {
	font-size: 15px;
	font-stretch: expanded;
	padding: 2px 18px;
	float: right;
}
.menu .btn-navbar:hover, .menu .btn-navbar:focus, .menu .btn-navbar:active, .menu .btn-navbar.disabled, .menu .btn-navbar[disabled] {

}
@media (min-width: 768px) {
	.menu .dropdown:hover .dropdown-menu {
		display: block;
	}
}
@media (max-width: 767px) {
	.menu {
		border-radius: 4px;
	}
	.menu div.dropdown-inner > ul.list-unstyled {
		display: block;
	}
	.menu div.dropdown-menu {
		margin-left: 0 !important;
		padding-bottom: 10px;
	}
	.menu .dropdown-inner {
		display: block;
	}
	.menu .dropdown-inner a, .menu .see-all {
		padding-left: 15px !important;
        margin-left: 15px;
		border-top: 1px solid #eee;
	}
	.menu .dropdown-inner li:first-child a {
		border-top: 0 none;
	}
	.menu .dropdown-menu a:hover,
	.menu .dropdown-menu ul li a:hover {

	}
	.menu .see-all {
		margin-top: 0;
		border-radius: 0;
	}
}

/* menu */
#menu {
	border: 0 none;
	min-height: 40px;
	position: relative;
	margin-top: 10px;
	margin-bottom: 0;
}
#menu .navbar-collapse.collapse {
	/*position: relative;*/
	display: block;
	visibility: visible;
}
@media (min-width: 768px) {
	#menu .navbar-collapse.collapse {
		
		
	}
}
#menu .nav {
	margin-left: -30px;
	margin-right: -30px;
}
#menu .nav > li {
	position: static;
}
#menu .nav > li > a {
	color: #333;
	padding: 10px 15px 10px 15px;
	min-height: 15px;
	background-color: transparent;
	font-weight: 600;
    font-size: 13px;
}
@media (max-width: 767px) {
	#menu .nav > li > a {
		padding: 15px;
	}
}
#menu .nav > li > a:hover, #menu .nav > li.open > a {
	text-decoration: underline;
}
#menu .dropdown-menu {
	padding: 15px 25px;
    left: 0;
    width: 100%;
    border: 1px solid #CACACA;
	border-top: 0 none;
    box-shadow: none;
    border-radius: 0;
	margin-left: 0 !important;
}
#menu .dropdown-inner {
	display: table;
}
#menu .dropdown-inner ul {
	display: table-cell;
}
#menu .dropdown-inner a {
	min-width: 160px;
	display: block;
	padding: 3px 0;
	clear: both;
	line-height: 20px;
	color: #333333;
	font-size: 13px;
	text-transform: lowercase;
}
#menu .dropdown-inner a:first-letter {
	text-transform: uppercase;
}
#menu .dropdown-inner li a:hover {
	color: #111;
	text-decoration: underline;
	background: none;
}
#menu .see-all {
	display: block;
	padding: 3px 0;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	margin-bottom: 45px;
}
#menu .see-all:hover, #menu .see-all:focus {
	text-decoration: underline;
	color: #111;
}
#menu #category {
	float: left;
	padding-left: 15px;
	font-size: 16px;
	font-weight: 700;
	line-height: 40px;
	color: #fff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
#menu .btn-navbar {
	font-size: 15px;
	font-stretch: expanded;
	color: #FFF;
	padding: 2px 18px;
	float: right;
	background-color: #229ac8;
	background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
	background-repeat: repeat-x;
	border-color: #1f90bb #1f90bb #145e7a;
}
#menu .btn-navbar:hover, #menu .btn-navbar:focus, #menu .btn-navbar:active, #menu .btn-navbar.disabled, #menu .btn-navbar[disabled] {
	color: #ffffff;
	background-color: #229ac8;
}
@media (min-width: 768px) {
	#menu .dropdown:hover .dropdown-menu {
		display: block;
	}
}
@media (max-width: 767px) {
	#menu {
		overflow: hidden;
		margin-left: -15px;
		margin-right: -15px;
	}
	#menu div.dropdown-inner > ul.list-unstyled {
		display: block;
	}
	#menu div.dropdown-menu {
		margin-left: 0 !important;
		padding-bottom: 10px;
		border: 0 none;
	}
	#menu .dropdown-inner {
		display: block;
	}
	#menu .dropdown-inner a {
		width: 100%;
		color: #333;
	}
	#menu .dropdown-menu a:hover,
	#menu .dropdown-menu ul li a:hover {
		
	}
	#menu .see-all {
		margin-top: 0;
		border: none;
		border-radius: 0;
		color: #333;
		margin-bottom: 15px;
	}
}
/* content */
#content {
	/*min-height: 600px;*/
	margin-bottom: 15px;
}
/* footer */
footer {
	margin-top: 30px;
	padding: 0 0 90px;
	background-color: #f6f6f6;
	color: #333333;
}
footer hr {
	border-top: none;
	border-bottom: 1px solid #666;
}
footer a {
	color: #333;
}
footer a:hover {
	color: #000;
	text-decoration: underline;
}
footer h5 {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-transform: uppercase;
	margin: 30px 0 30px;
}
footer .row > .flex {
	display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
footer .row > .flex h5 {
	width: 100%;
}
footer .row > .flex a, footer a + a {
	margin-left: 25px;
}

/* alert */
.alert {
	padding: 8px 14px 8px 14px;
	border-radius: 0;
    border: 0 none;
}
.alert a {
	font-weight: 600;
}
/* breadcrumb */
.breadcrumb {
	margin: 15px 0 25px 0;
	padding: 6px 15px;
	border-radius: 0;
	position: relative;
}
.breadcrumb:before {
    /*content: "\00a0";*/
	color: #f5f5f5;
    position: absolute;
    background: #f5f5f5;
    padding: 6px 0;
    top: 0;
    left: -100vw;
    right: -100vw;
}
.breadcrumb i {
	font-size: 15px;
}
.breadcrumb > li {
	position: relative;
	white-space: nowrap;
	text-transform: lowercase;
}
.breadcrumb > li > a {
	white-space: normal;
}
.breadcrumb > li + li:before {
	content: '';
	padding: 0;
}
.breadcrumb > li:after {
	content: '>';
    margin-left: 6px;
    font-size: 16px;
    line-height: 11px;
    vertical-align: middle;
}
.breadcrumb > li:last-child {
	font-weight: 600;
}
.breadcrumb > li:last-child:after {
	content: '';
}
.pagination {
	margin: 0;
}
.pagination>li>a, .pagination>li>span {
	border-color: #111;
    color: #111;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
	background-color: #333;
	border-color: #333;
}
.pagination>li:first-child>a, .pagination>li:first-child>span,
.pagination>li:last-child>a, .pagination>li:last-child>span {
	border-radius: 0;
}
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
	background-color: #111;
    color: #fff;
    border-color: #111;
}
/* buttons */
.buttons {
	margin: 1em 0;
}
.btn {
	padding: 7.5px 12px;
	font-size: 12px;
	border: 1px solid #cccccc;
	box-shadow: none !important;
	border-radius: 0 !important;
	outline: none !important;
	text-transform: uppercase;
}
.btn-xs {
	font-size: 9px;
}
.btn-sm {
	font-size: 10.2px;
}
.btn-lg {
	padding: 10px 16px;
	font-size: 15px;
}
.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
	font-size: 12px;
}
.btn-group > .btn-xs {
	font-size: 9px;
}
.btn-group > .btn-sm {
	font-size: 10.2px;
}
.btn-group > .btn-lg {
	font-size: 15px;
}
.btn-default {
	color: #333;
	background-color: #ccc !important;
	border-color: #ccc !important;
}
.btn-default:hover, .btn-default:active, .btn-default.active, .btn-default.disabled, .btn-default[disabled] {
	background-color: #b2b4b6 !important;
	border-color: #b2b4b6 !important;
}
.btn-primary {
	color: #fff;
	background-color: #333 !important;
	border-color: #333 !important;
}
.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
	background-color: #111 !important;
	border-color: #111 !important;
}
.btn-warning {
	color: #fff;
	background-color: #faa732 !important;
	border-color: #faa732 !important;
}
.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
	background-color: #fa9f1f !important;
	border-color: #fa9f1f !important;
}
.btn-danger {
	color: #fff;
	background-color: #da4f49 !important;
	border-color: #da4f49 !important;
}
.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
	background-color: #d73f39 !important;
	border-color: #d73f39 !important;
}
.btn-success {
	color: #fff;
	background-color: #5bb75b !important;
	border-color: #5bb75b !important;
}
.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
	background-color: #4eb14e !important;
	border-color: #4eb14e !important;
}
.btn-info {
	color: #fff;
	background-color: #39bcdf !important;
	border-color: #39bcdf !important;
}
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
	background-color: #28b6dc !important;
	border-color: #28b6dc !important;
}
.btn-link {
	border-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	color: #23A1D1;
	border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link[disabled] {
	background-color: rgba(0, 0, 0, 0);
	background-image: none;
	box-shadow: none;
}
.btn-inverse {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #363636;
	background-image: linear-gradient(to bottom, #444444, #222222);
	background-repeat: repeat-x;
	border-color: #222222 #222222 #000000;
}
.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
	background-color: #222222;
	background-image: linear-gradient(to bottom, #333333, #111111);
}
/* list group */
.list-group a {
	border: 1px solid #DDDDDD;
	color: #888888;
	padding: 8px 12px;
}
.list-group a.active, .list-group a.active:hover, .list-group a:hover {
	color: #444444;
	background: #eeeeee;
	border: 1px solid #DDDDDD;
	text-shadow: 0 1px 0 #FFF;
}
/* carousel */
.carousel-caption {
	color: #FFFFFF;
	text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
	content: '\f053';
	font-family: FontAwesome;
}
.carousel-control .icon-next:before {
	content: '\f054';
	font-family: FontAwesome;
}
/* product list */
.product-thumb {
	margin-bottom: 20px;
	overflow: auto;
	transition: all .75s;
	overflow: hidden;
}
.product-thumb:hover {
	box-shadow: 0 4px 8px rgba(0,0,0, .15);
}
.product-thumb:hover .image img {
	transform: scale(1.08);
    opacity: 1;
}
.product-thumb .image {
	text-align: center;
}
.product-thumb .image a {
	display: block;
}
.product-thumb .image a:hover {
	opacity: 1;
}
.product-thumb .image img {
	margin-left: auto;
	margin-right: auto;
	transition: opacity .5s ease,transform 2s cubic-bezier(0,0,.44,1.18),-webkit-transform 2s cubic-bezier(0,0,.44,1.18);
}
.product-grid .product-thumb .image {
	float: none;
}
@media (min-width: 767px) {
	.product-list .product-thumb .image {
		float: left;
		padding: 0 15px;
	}
}
.product-thumb h4 {
	font-weight: 400;
    font-size: 12px;
	line-height: 16px;
    text-align: center;
    text-transform: uppercase;
	letter-spacing: 1px;
	min-height: 64px;
}
.product-thumb h4 a {
	color: #333;

	-webkit-line-clamp: 4;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.product-thumb h4 a:hover {
	text-decoration: none;
}
.product-thumb .caption {
	padding-left: 15px;
	padding-right: 15px;
}
.product-thumb .caption h4 + p:not(.price) {
	/*color: #a3a3a3;
	text-transform: lowercase;*/
	border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.product-list .product-thumb .caption {
	margin-left: 230px;
}
@media (max-width: 1200px) {
.product-grid .product-thumb .caption {
	min-height: 210px;
	padding: 0 10px;
}
}
@media (max-width: 767px) {
.product-list .product-thumb .caption {
	min-height: 0;
	margin-left: 0;
	padding: 0 10px;
}
.product-grid .product-thumb .caption {
	min-height: 0;
}
}
.product-thumb .rating {
	padding-bottom: 10px;
}
.rating p{
	display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.rating .fa-stack + a {
	justify-self: flex-end;
    flex: 1;
    flex-wrap: nowrap;
    margin-right: 5px;
    white-space: nowrap;
	text-align: right;
}
.rating .fa-stack + a + a {
	justify-self: flex-end;
    flex: 1;
    flex-wrap: nowrap;
	margin-right: 0;
    margin-left: 5px;
    white-space: nowrap;
	text-align: left;
}
.rating .fa-stack {
	font-size: 8px;
	margin-right: 2px;
}
.rating .fa-star-o {
	color: #999;
	font-size: 15px;
}
.rating .fa-star {
	color: #FC0;
	font-size: 15px;
}
.rating .fa-star + .fa-star-o {
	color: #E69500;
}
h2.price {
	margin: 0;
}
.product-thumb .price {
	color: #333;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
}
.product-thumb .price-new {
	font-weight: 700;
}
.product-thumb .price-old {
	color: #a3a3a3;
	text-decoration: line-through;
	margin-left: 10px;
	font-weight: 600;
}
.product-thumb .price-tax {
	color: #a3a3a3;
	font-size: 12px;
	display: block;
}
.product-thumb .button-group {
	border-top: 1px solid #ddd;
	background-color: #eee;
	overflow: auto;
	display: none;
}
.product-list .product-thumb .button-group {
	border-left: 1px solid #ddd;
}
@media (max-width: 768px) {
	.product-list .product-thumb .button-group {
		border-left: none;
	}
}
.product-thumb .button-group button {
	width: 60%;
	border: none;
	display: inline-block;
	float: left;
	background-color: #eee;
	color: #888;
	line-height: 38px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}
.product-thumb .button-group button + button {
	width: 20%;
	border-left: 1px solid #ddd;
}
.product-thumb .button-group button:hover {
	color: #444;
	background-color: #ddd;
	text-decoration: none;
	cursor: pointer;
}
@media (max-width: 1200px) {
	.product-thumb .button-group button, .product-thumb .button-group button + button {
		width: 33.33%;
	}
}
@media (max-width: 767px) {
	.product-thumb .button-group button, .product-thumb .button-group button + button {
		width: 33.33%;
	}
}
.thumbnails {
	overflow: auto;
	clear: both;
	list-style: none;
	padding: 0;
	margin: 0;
}
.thumbnails .thumbnail {
	border-radius: 0;
	border: 0 none;
}
.thumbnails > li {
	margin-left: 20px;
}
.thumbnails {
	margin-left: -20px;
}
.thumbnails > img {
	width: 100%;
}
.image-additional a {
	margin-bottom: 20px;
	padding: 5px;
	display: block;
	border: 1px solid #ddd !important;
}
.image-additional {
	max-width: 78px;
}
.thumbnails .image-additional {
	float: left;
	margin-left: 20px;
}

.product-layout {
    transition: .5s all;
}

/* fixed colum left + content + right*/
@media (min-width: 768px) {
    #column-left  .product-layout .col-md-3 {
       width: 100%;
    }
    #column-left + #content .product-layout .col-md-3 {
       width: 50%;
    }
    #column-left + #content + #column-right .product-layout .col-md-3{
       width: 100%;
    }
    #content + #column-right .product-layout .col-md-3{
       width: 100%;
    }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout,
#column-right .product-layout {
	width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
	min-width: 50px;
}


/* Whatsapp floating button */
.whatsapp-float{right:10px; position:fixed; width:60px; height:60px;bottom:30%;text-align:center;z-index:100}
.whatsapp-float-icon{margin-top:16px;border-radius: 100%}
#whatsapp-msg{background: #fff;color: #333;position: fixed;width: 115px;bottom: calc(30% - 100px);right: 10px;font-size: 11px;line-height: 16px;padding: 8px;border-radius: 2px;box-shadow: 0 0 4px 2px rgba(0,0,0,.2);z-index: 100;letter-spacing:.5px}
#whatsapp-msg b{font-weight:600}

.owl-wrapper-outer {
	border: 0 none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.flex {
	display: flex;
}
.justify-content-between {
	justify-content: space-between;
}
.justify-content-center {
	justify-content: center;
}
.align-items-center {
	align-items: center;
}

.banner + .banner {
	margin-top: 15px;
}

.banner.flex {
	flex-direction: column;
	gap: 15px;
}
@media (min-width: 768px) {
	.banner.flex {
		flex-direction: row;
	}
}

#banner0 > .item, #banner0 > .item > img {
	width: 100%;
}

/* para habilitar full-width, descomentar trecho abaixo */

#slideshow0 > .item/*, #slideshow0 .item > img*/ {
    width: 100%;
}

#slideshow0 .item > img {
    margin: 0 auto;
}

#button-cart {
	padding-top: 18px;
	padding-bottom: 18px;
	font-size: 16px;
	font-weight: 700;
	line-height: 100%;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15) !important;
}

#product hr {
	border-top-color: transparent;
}

#product h3 {
	display: none;
}

#product .control-label {
	font-weight: 700;
	font-size: 13px;
	line-height: 100%;
	color: #333;
	padding-bottom: 15px;
}
#product div[id^="input-option"] {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
#product .control-label[for^="input-option"]:after, #product .control-label[for^="otp_select"]:after {
    content: 'Selecione o\00a0';
    color: #333;
    font-weight: bold;
    float: left;
    position: relative;
}
#product .control-label[for^="input-option"]:first-letter, #product .control-label[for^="otp_select"]:first-letter {
    text-transform: lowercase;
}

.fa-exchange:before {
    content: "\f362";
}
.fa-star-o:before {
    content: "\f005";
	-webkit-text-stroke: .5px #333;
	color: #fff;
}
.fa-star:before {
    -webkit-text-stroke: .5px #FC0;
}

.fa-heart-o:before {
    content: "\f004";
}


[class^="product-product"] #content .btn-group:first-child > .btn {
	display: none;
}
[class^="product-product"] #content .btn-wishlist {
	border: 1px solid #E6E7E8;
    border-radius: 100px !important;
    width: 52px;
    height: 52px;
    display: flex;
    color: #333;
    padding: 0;
    align-items: center;
    background: transparent !important;
    justify-content: center;
}

[class^="product-product"] #content .btn-wishlist i.fa-heart {
	font-size: 21px;
    -webkit-text-stroke: 2px #333;
}
[class^="product-product"] #content .btn-wishlist i.fa-heart-o {
	font-size: 21px;
    color: transparent;
    -webkit-text-stroke: 2px #333;
}
[class^="product-product"] h1 + ul {
	margin-bottom: 45px;
}
[class^="product-product"] h1 + ul > li:nth-child(2) {
    display: none;
}
[class^="product-product"] h1 + ul li a, [class^="product-product"] h1 + ul li span {
	font-weight: 600;
	color: #333;
}
[class^="product-product"] h1 + ul li a {
	text-transform: uppercase;
}
#otp-price span {
	font-size: 15px;
    font-weight: 600;
    color: #a3a3a3;
}
#otp-price h2 {
	font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    margin-top: 5px;
}
#otp-price h2 small {
	font-size: 11px;
	line-height: 10px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 10px;
}
#otp-model {
	text-transform: lowercase;
}
#otp-model:first-letter {
	text-transform: uppercase !important;
}


#input-quantity {
    min-width: 80px;
    width: auto;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {  
   opacity: 1 !important;
}

.mfp-bg {
	background: #fff !important;
    opacity: 1 !important;
}
.mfp-figure:after {
	box-shadow: none !important;
}
.mfp-title {
	color: #333 !important;
	padding-right: 0 !important;
	text-align: center !important;
}
.mfp-counter {
	display: none !important;
}
.mfp-close-btn-in .mfp-close {
    color: #333 !important;
    opacity: 1 !important;
    border: 1px solid #ccc !important;
    display: inline !important;
    width: auto !important;
    padding: 0 13px !important;
    border-radius: 100px !important;
    background: #fff !important;
	position: fixed !important;
	top: 30px !important;
	right: 30px !important;
}
.visible-xs-flex {
	display: none;
}
@media (max-width: 767px) {
	.visible-xs-flex {
		display: flex;
	}
}

#menu > .nav.visible-xs-flex {
    overflow-x: auto;
	margin-left: 0;
	margin-right: 0;
}
#menu > .nav.visible-xs-flex > li > a {
	white-space: nowrap;
}
#menu > .nav.visible-xs-flex > li + li > a {
	
}


.btn-wishlist {
	display: none !important;
}
.btn-wishlist.active {
	display: flex !important;
}
.btn-wishlist:hover i.fa-heart-o {
	color: #333 !important;
    -webkit-text-stroke: 2px #333;
}
.btn-wishlist:hover i.fa-heart {
    color: transparent !important;
    -webkit-text-stroke: 2px #333;
}


#tab-description > p {
    text-transform: lowercase;
}

#tab-description > p:first-letter {
	text-transform: uppercase;
}

#tab-description > p > span {
	font-family: 'Montserrat', "Proxima Nova", -apple-system, "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif !important;
	font-size: 14px !important;
}

[class^="product-product"] #content .nav-tabs {
	border: 0 none;
	margin-bottom: 30px;
}
[class^="product-product"] #content .nav-tabs>li>a,
[class^="product-product"] #content .nav-tabs>li>a:focus,
[class^="product-product"] #content .nav-tabs>li>a:hover {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    border: 0 none !important;
    font-size: 16px;
	padding: 0 0 5px;
	margin-right: 15px;
	background: none;
}

[class^="product-product"] #content .nav-tabs>li.active>a,
[class^="product-product"] #content .nav-tabs>li.active>a:focus,
[class^="product-product"] #content .nav-tabs>li.active>a:hover {
    border-bottom: 1px solid #333 !important;
}


#collapse-shipping form .form-group:nth-child(3) > div {
    display: flex;
	align-items: stretch;
}


.panel-default {
    border-radius: 0 !important;
    box-shadow: none;
}

.parcelamento {
	display: block;
	margin-top: -5px;
}

p.price .parcelamento {
	margin-top: 0;
}

.parcelamento, .parcelamento > .sem-juros {
    color: #333 !important;
    font-weight: 400 !important;
	font-size: 12px !important;
	text-transform: uppercase;
}

#modal-shipping .alert.alert-danger, #collapse-shipping-method .alert.alert-danger {
	color: transparent;
	line-height: 0;
}
#modal-shipping .alert.alert-danger:before, #collapse-shipping-method .alert.alert-danger:before {
	content: "Desculpe-nos o transtorno, mas parece que o sitema de cálculo dos Correios está em manutenção no momento e não é possível obter o cálculo de frete para sua região. Por favor, tente novamente mais tarde.";
    color: #a94442;
    line-height: 1.5;
}


#two-cols-view, #three-cols-view, #four-cols-view {
	display: flex;
    align-items: center;
    justify-content: center;
	padding: 0;
}

#two-cols-view {
	min-width: calc(16px + 24px);
	justify-content: flex-start;
}

#three-cols-view {
	min-width: calc(26px + 24px);
}

#three-cols-view > i, #two-cols-view > i, #four-cols-view > i {
	display: block;
	background: #BCBEC0;
	position: relative;
	height: 17px;
	width: 6px;
}

#four-cols-view > i + i {
    margin-left: 14px;
}

#two-cols-view > i:before, #three-cols-view > i:before, #three-cols-view > i:after, #four-cols-view > i:before {
	content: "";
	width: 6px;
	height: 17px;
	background: #BCBEC0;
	position: absolute;
}

#three-cols-view > i:before {
    left: -10px;
}

#two-cols-view > i:before, #three-cols-view > i:after, #four-cols-view > i:before {
    right: -10px;
}

#three-cols-view.active > i, #two-cols-view.active > i, #two-cols-view.active > i:before, #three-cols-view.active > i:before, #three-cols-view.active > i:after, #four-cols-view.active > i, #four-cols-view.active > i:before {
	background-color: #333 !important;
}

#four-cols-view {
    min-width: calc(26px + 40px);
}


.custom-radio {
	display: inline-block;
	margin-top: 0 !important;
	margin-right: 10px;
	min-width: 91px;
	/*max-width: 91px;*/
}

.custom-radio .btn-check:checked + label {
	background-color: #333 !important;
	color: #fff !important;
	border-color: #333 !important;
	box-shadow: 0 0 0px 1px inset #fff !important;
}

.btn-check {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

.custom-radio .btn-check + label {
	border-color: #ccc !important;
	color: #333 !important;
	font-size: 13px;
	line-height: 100%;
	display: block;
}

.custom-radio .btn-check + label:hover {
	border-color: #333 !important;
	background-color: #edeff1;
}

.custom-radio .btn-check + label small {
	display: block;
}

.custom-radio .btn {
	padding: 12px 10px !important;
}

.list-group-item {
    border-radius: 0 !important;
    border: 0 none !important;
}

.list-group a {
    color: #333;
    font-weight: 700;
    font-size: 13px;
	padding-left: 0;
	text-transform: uppercase;
}

.list-group a.active, .list-group a.active:hover, .list-group a:hover {
    text-shadow: none !important;
    color: #111;
    background: none !important;
}

.list-group a.active {
	border-bottom: 1px solid #333 !important;
}

.list-group a.sub-item.active {
	border-bottom: 0 none !important;
}

.list-group a.sub-item.active:before {
    content: "— ";
    margin-right: 5px;
    display: inline-block;
}

.list-group a.sub-item {
	font-weight: 400;
}

.badge-desconto {
    position: absolute;
    top: 5px;
    font-size: 12px;
    right: 20px;
    background: #40CD28;
    border-radius: 0;
}


.display-order label {
	margin-bottom: 0;
	white-space: nowrap;
}

.display-order.flex > [class^="col-md"] {
	flex: 0 0 auto;
}

.display-order.flex > .col {
    flex: 1 0 0%;
}


ul.otp-option li {
    margin-right: 10px !important;
    margin-bottom: 10px !important;
    min-width: 91px !important;
    max-width: 91px !important;
    overflow: visible !important;
}

ul.otp-option li span {
    background: #fff !important;
    padding: 5px 10px !important;
    display: block !important;
    float: none !important;
    height: auto !important;
    text-align: center !important;
}

ul.otp-option li:hover span {
    background: #edeff1 !important;
}

ul.otp-option li.selected span {
    background: #333 !important;
    color: #fff !important;
}


.modal-content {
	border-radius: 0;
    box-shadow: none;
}
.modal-header {
	border-bottom: 0 none;
}
.modal-title {
    font-size: 13px;
    font-weight: 700;
	text-transform: uppercase;
}
.modal-body label {
    font-size: 14px;
}
.modal-footer {
	border-top: 0 none;
}

.modal-footer .btn-default {
    background: none !important;
    border: 0 none !important;
}
#modal-shipping .modal-body > p {
	display: none;
}

.account-login #column-left {
	display: none;
}
.account-login #content {
	width: 100%;
}
.well {
    box-shadow: 0 4px 4px rgba(51, 51, 51, 0.15);
    background: #fff;
    border: 0 none;
    border-radius: 0;
    padding: 30px;
	width: 100%;
	max-width: 470px;
}
.well h2 {
	margin: 0;
	font-size: 24px;
	line-height: 145%;
	font-weight: 700;
	text-align: center;
}
.well a:hover {
	color: #111;
	text-decoration: underline;	
}
.well h2 + p {
	margin-bottom: 30px;
	color: #333;
	text-align: center;
}
.well h2 + p + p {
	display: none;
}
.well h2 + p > strong {
	font-size: 12px;
	line-height: 145%;
	font-weight: 400;
}
.well .btn.btn-primary {
	width: 100%;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15) !important;
	font-weight: 700;
	margin-top: 30px;
}
.well form .form-group a {
	float: left;
    margin-top: 15px;
	font-weight: 700;
}
.well > form > p:last-child {
	line-height: 30px;
	margin-top: 15px;
}
.well > form > p:last-child a strong {
	display: block;
	text-transform: uppercase;
}
.well form .btn.btn-primary {
	margin-bottom: 15px;
}

@media (min-width: 768px) {
	.well {
		padding: 46px;
	}
	.account-login #content > .row {
		display: flex;
	}
	.account-login #content > .row > div {
		display: flex;
	}
	.well > form > p:last-child {
		margin-top: 0;
	}
	.well > form > p:last-child a strong {
		display: inline;
		text-transform: none;
	}
}

.account-login #content > .row > .col-sm-6:first-child {
	display: none;
}
.account-login #content > .row > .col-sm-6:last-child {
	width: 100%;
	justify-content: center;
	padding-top: 20px;
}


.account-register .btn.btn-primary[type="submit"] {
	display: block;
	width: 100%;
	margin-top: 30px;
}
.account-register .pull-right:not(.nav) {
	width: 100%;
}
.account-register .pull-right:not(.nav) input[type=checkbox], .account-register .pull-right:not(.nav) input[type=radio] {
	margin: 4px 4px 0 0;
	float: left;
}

@media (min-width: 768px) {
	.account-register .btn.btn-primary[type="submit"] {
		display: inline-block;
		width: auto;
		margin-top: 0;
	}
	.account-register .pull-right:not(.nav) {
		width: auto;
	}
	.account-register .pull-right:not(.nav) input[type=checkbox], .account-register .pull-right:not(.nav) input[type=radio] {
		margin: 4px 0 0 4px;
		float: none;
	}
}

#cart .dropdown-menu .btn > i {
    font-size: 16px;
}

.navbar-toggler-icon {
	display: inline-block;
    width: 2.5em;
    height: 2.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(33, 33, 33, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

#mobile-submenu-toggler {
	background: none;
    border: 0 none;
    padding: 0;
    margin: 0;
}

#mobile-submenu {
	position: fixed;
	top: 0;
	height: auto;
	width: calc(100% - 60px);
	left: -200%;
	background: #fff;
	z-index: 200;
	bottom: 0;
	overflow-y: auto;
	transition: left 1s ease 0s;
}
body.menu-opened #mobile-submenu {
	left: 0;
}

body.menu-opened > header {
	z-index: 109;
}

.menu-close {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  position: relative;
  width: 35px;
  height: 35px;
  top: 15px;
  right: 15px;
  display: block;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: -15px;
  cursor: pointer;
  z-index: 1;
}
.menu-close:before, .menu-close:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: #000;
  border-radius: 10px;
}
.menu-close:before {
  transform: rotate(45deg);
}
.menu-close:after {
  transform: rotate(-45deg);
}
.menu-close span {
  display: block;
}
.menu-close + h2 {
  /*margin-top: 0;*/
  margin-bottom: 30px;
  color: #8991a1;
}

#mobile-submenu ol, #mobile-submenu ul {
	margin-bottom: 0 !important;
}
#mobile-submenu ol li a, #mobile-submenu ul li a, #mobile-submenu ul li > span {
	padding: 7.5px 5px;
	display: block;
	font-weight: 500;
}
#mobile-submenu ul li > span {
    padding-top: 30px;
    font-weight: 600;
    text-transform: uppercase;
	background: #f6f6f6;
}

#mobile-submenu .menu .nav + .nav {
	margin-top: 0;
}
#mobile-submenu .menu .nav + .nav > li > a {
    /*background: #333;
	color: #fff;
	border-bottom: 1px solid #666;*/
}