@charset "UTF-8";
/**
 * Core
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
.popup-overlay {
    visibility: hidden;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    border: ;
    width: 100%;
    height: 100%;
    left: 0;
    transform: ;
    max-width: ;
    z-index: 9999;
    top: 0;
}

.popup-overlay.active {
  /*displays pop-up when "active" class is present*/
  visibility: visible;
  text-align: center;
}

.popup-content {
  /*Hides pop-up content when there is no "active" class */
  visibility: hidden;
}
.popup-content.active {
    visibility: visible;
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    left: 50%;
    position: relative;
    top: 50%;
    transform: translate(-50%, -50%);
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

:focus,
a:active,
a:focus,
a:hover {
	outline: 0;
}

b, strong {
	font-weight: 700 !important;
}

em {
	font-style: italic !important;
}

input,
button,
select {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/**
 * Misc
 */
/**
 * Cores
 */
/**
 * Fonts
 */
/**
 * Geral
 */
body {
	background-color: #ffffff;
	color: #313131;
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
}

/**
 * Container
 */
.container {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 100%;
	width: 1900px;
}

@media (min-width: 1600px) {
	.container {
		padding: 0 120px;
	}
}

/**
 * Content
 */
.content {
	padding-top: 20px;
}

/**
 * Conteúdo editável
 */
.bo-content {
	line-height: 1.5;
}

.bo-content ol li,
.bo-content ul li {
	position: relative;
	padding-left: 20px;
}

.bo-content ol li::before,
.bo-content ul li::before {
	position: absolute;
	left: 0;
	display: block;
}

.bo-content ol {
	counter-reset: contador;
}

.bo-content ol li {
	counter-increment: contador;
}

.bo-content ol li::before {
	top: 0;
	color: #335d8f;
	content: counter(contador) ". ";
}

.bo-content ul li::before {
	top: 9px;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background: #335d8f;
	content: '';
}

.bo-content img {
	max-width: 100%;
	height: auto !important;
}

.bo-content a:not(.btn) {
	color: #335d8f;
	transition: color 0.3s;
}

.bo-content a:hover {
	color: #335d8f;
}

.bo-content table {
	max-width: 100% !important;
	width: 100% !important;
	border: 1px solid #eee;
	font-size: 13px;
}

.bo-content table tr:nth-child(n+2) {
	border-top: 1px solid #eee;
}

.bo-content table td {
	padding: 10px;
}

.bo-content table td:nth-child(n+2) {
	border-left: 1px solid #eee;
}

/**
 * Partials
 */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Lato", sans-serif;
	color: #313131;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}

h1.center,
h2.center,
h3.center,
h4.center,
h5.center,
h6.center {
	text-align: center;
}

h1.upper,
h2.upper,
h3.upper,
h4.upper,
h5.upper,
h6.upper {
	text-transform: uppercase;
}

h1.mb,
h2.mb,
h3.mb,
h4.mb,
h5.mb,
h6.mb {
	margin-bottom: 50px;
}

h1.line,
h2.line,
h3.line,
h4.line,
h5.line,
h6.line {
	position: relative;
	padding-bottom: 25px;
}

h1.line::before,
h2.line::before,
h3.line::before,
h4.line::before,
h5.line::before,
h6.line::before {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 73px;
	height: 4px;
	background: #000;
	content: '';
}

*:not(.bo-content) > h1:last-child,
*:not(.bo-content) > h2:last-child,
*:not(.bo-content) > h3:last-child,
*:not(.bo-content) > h4:last-child,
*:not(.bo-content) > h5:last-child,
*:not(.bo-content) > h6:last-child {
	margin-bottom: 0;
}

h1,
h2 {
	font-size: 36px;
	line-height: 1.1;
	margin-top: 25px;
	margin-bottom: 20px;
}

@media (min-width: 576px) {
	h1,
	h2 {
		font-size: 38px;
	}
}

@media (min-width: 768px) {
	h1,
	h2 {
		font-size: 40px;
	}
}

@media (min-width: 992px) {
	h1,
	h2 {
		font-size: 42px;
	}
}

@media (min-width: 1200px) {
	h1,
	h2 {
		font-size: 44px;
	}
}

@media (min-width: 1600px) {
	h1,
	h2 {
		font-size: 45px;
	}
}

h3 {
	font-size: 22px;
	line-height: 1.2;
	margin-top: 20px;
	margin-bottom: 15px;
}


h4 {
	font-size: 17px;
	line-height: 1.3;
	margin-top: 20px;
	margin-bottom: 15px;
  }
h5 {
	font-size: 20px;
	line-height: 1.4;
	margin-top: 15px;
	margin-bottom: 10px;
	font-weight: 500;
}

h6 {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 10px;
	margin-bottom: 5px;
	font-weight: 500;
}

.btn {
	cursor: pointer;
	border: 0;
	display: inline-block;
	padding: 10px 15px;
    background: #335d8f !important;
    border: 0;
    color: #fff !important;
	transition: background 0.3s, border-color 0.3s;
	text-align: center;
	white-space: nowrap;
	border-radius: 0px;
}

.btn i,
.btn span {
	display: inline-block;
	vertical-align: middle;
	line-height: 25px;
	color: #fff;
	transition: color 0.3s;
	text-shadow: none;
}

.btn,
.btn i,
.btn span {
	font-size: 18px;
}

.btn i:first-child {
	padding-right: 10px;
}

.btn i:last-child {
	padding-left: 10px;
}

.btn span {
	font-family: "Lato", sans-serif;
}

.btn:hover {
	background: #335d8f;
}

@media (max-width: 767.98px) {
	.btn,
	.btn i,
	.btn span {
		font-size: 15px;
	}
}

/**
 * Disabled
 */
.btn[disabled] {
	opacity: .7;
	cursor: wait;
}

/**
 * Largura total
 */
.btn.btn-full-width {
	width: 100%;
}

/**
 * Grande
 */
.btn.btn-lg {
	padding: 15px 35px;
}

/**
 * Pequeno
 */
.btn.btn-sm {
	padding: 5px 20px;
}

.btn.btn-sm i,
.btn.btn-sm span {
	font-size: 13px;
}

/**
 * Básico
 */
.btn.btn-basic {
	background: #dadada;
}

.btn.btn-basic:hover {
	background: #335d8f;
}

/**
 * Invertido
 */
.btn.btn-invertido {
	background: #fff;
}

.btn.btn-invertido i,
.btn.btn-invertido span {
	color: #335d8f;
}

.btn.btn-invertido:hover {
	background: #335d8f;
}

.btn.btn-invertido:hover i,
.btn.btn-invertido:hover span {
	color: #fff;
}

/**
 * Branco
 */
.btn.btn-white {
	background: #fff!important
}

.btn.btn-white,
.btn.btn-white i,
.btn.btn-white span {
	color: #335d8f!important;
}

.btn.btn-white:hover {
	background: #313131;
}

.btn.btn-white:hover,
.btn.btn-white:hover i,
.btn.btn-white:hover span {
	color: #fff;
}

.top {
    margin-bottom: 70px;
    background: #335d8f;
    position: relative;
    z-index: 4;
  }

.top .container {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 40px;
}

.top .top-widgets {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}

.top .top-widgets .item {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
}


.top .top-widgets .item.profissional {
    background: #1b3c62;
    padding: 15px 10px;
  }

  .top .top-widgets .item:hover.profissional {
    background: #1b3c62;
    padding: 15px 10px;
  }
.top .top-widgets .item.profissional i {
    color: #FFF;
    font-size: 10px !important;
    color: #fab600;
  }

.top .top-widgets .item:nth-child(n+2) {
	margin-left: 30px;
}

.top .top-widgets .item i,
.top .top-widgets .item span {
	color: #fff;
	transition: color 0.3s;
}

.top .top-widgets .item i {
	font-size: 17px;
}

.top .top-widgets .item i[class^="fa"] {
	font-size: 15px;
}

.top .top-widgets .item span {
	margin-left: 10px;
	font-size: 12px;
}

.top .top-widgets .item[href]:hover i,
.top .top-widgets .item[href]:hover span {
	color: #313131;
}

@media (max-width: 767.98px) {
	.top .top-widgets:first-child .item:nth-child(n+2) {
		display: none;
	}
	.top .top-widgets:last-child .item span {
		display: none;

	}
    
    
}

header {
	position: absolute;
	top: 40px;
	left: 0;
	z-index: 4;
	width: 100%;
	background: #fff;
}

header.sticky {
	position: fixed;
	top: 0;
}

header > .container {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    height: 70px;
    flex-wrap: wrap;
  }

header > .container .col {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}

header > .container .col:nth-child(2) {
	justify-content: center;
}

header > .container .col:nth-child(3) {
	justify-content: flex-end;
	margin-left: auto;
}

header .container .menu {
	display: none;
}

header .container .menu > li {
	padding: 0 13px;
	border-width: 3px 0;
	border-style: solid;
	border-color: transparent;
	transition: border-color 0.3s;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}

header .container .menu > li > a span, header .container .menu > li i {
    color: #333;
    transition: color 0.3s;
    font-size: 14px;
    font-weight: 600;
  }

header .container .menu > li > a {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
}

header .container .menu > li > a span {
    text-transform: none;
  }

header .container .menu > li i {
	align-self: center;
	margin-left: 7px;
}

header .container .menu > li:hover {
	border-bottom-color: #469fd7;
}

header .container .menu > li:hover > a span,
header .container .menu > li:hover i {
	color: #469fd7;
}

header .container .submenu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	padding: 30px 0;
}

header .container .submenu.open {
	opacity: 1;
	pointer-events: all;
}

header .container .submenu .container {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}

header .container .submenu .container .item {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: flex-start;
}

header .container .submenu .container .item img {
	width: 50px;
	height: auto;
	flex-shrink: 0;
	margin-right: 20px;
}

header .container .submenu .container .item .info {
	flex-grow: 1;
}

header .container .submenu .container .item .info .title {
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: #313131;
}

header .container .submenu .container .item .info ul li {
	display: block;
}

header .container .submenu .container .item .info ul li:nth-child(n+2) {
	margin-top: 5px;
}

header .container .submenu .container .item .info ul li a {
	font-size: 12px;
	color: #313131;
	transition: color 0.3s;
	display: inline-block;
	line-height: 1.5;
}

header .container .submenu .container .item .info ul li a:hover {
	color: #335d8f;
}

header .mobile-menu-toggler {
	color: #313131;
	font-size: 30px;
	cursor: pointer;
	transition: color 0.3s;
	align-self: center;
	margin-right: 20px;
}

header .mobile-menu-toggler:hover {
	color: #335d8f;
}

header .logo {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	opacity: 1;
	transition: opacity 0.3s;
	width: 100px;
	max-width: 100%;
}

header .logo img {
	width: 100%;
}

header .logo:hover {
	opacity: .7;
}

header .header-icons {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
}

header .header-icons .item {
	position: relative;
	cursor: pointer;
}

header .header-icons .item:nth-child(n+2) {
	margin-left: 15px;
}

header .header-icons .item i {
    font-size: 15px;
    color: #313131;
    transition: color 0.3s;
  }
header .header-icons .item .nr {
	position: absolute;
	right: -7px;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	-moz-transform: translateY(50%);
	-ms-transform: translateY(50%);
	-o-transform: translateY(50%);
	transform: translateY(50%);
	width: 13px;
	line-height: 13px;
	text-align: center;
	border-radius: 100%;
	color: #fff;
	background: #335d8f;
	font-size: 9px;
}

header .header-icons .item:hover i {
	color: #335d8f;
}

header .search {
    position: relative;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: #ebeeef;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    align-items: center;
  }
  header .search .container {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    padding: 14px 19px;
  }

header .search .fa-search {
	color: #313131;
	font-size: 30px;
}

header .search input {
    flex-grow: 1;
    padding: 0 14px;
    border: 0;
    background: none;
    font-size: 11px;
    margin-top: 0;
  }

header .search input::-webkit-input-placeholder {
	color: rgba(49, 49, 49, 0.56);
}

header .search input:-moz-placeholder {
	color: rgba(49, 49, 49, 0.56);
}

header .search input::-moz-placeholder {
	color: rgba(49, 49, 49, 0.56);
}

header .search input:-ms-input-placeholder {
	color: rgba(49, 49, 49, 0.56);
}

header .search button {
	display: none;
}

header .search .search-closer {
	color: #313131;
	font-size: 22px;
	cursor: pointer;
	transition: color 0.3s;
}

header .search .search-closer:hover {
	color: #335d8f;
}

header .search.open {
	opacity: 1;
	pointer-events: all;
}

.submenu-overlay {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 3;
	display: none;
}

@media (min-width: 576px) {
	header > .container .col {
		width: 33.333%;        flex: 0 0 0%;

	}
    header .logo {
        width: 150px;
      }
}

@media (min-width: 1024px) {
    header > .container .col:nth-child(1) {
        width: 200px;
        margin-right: 20px;
        flex: 0 0 0%;
      }
      header > .container .col:nth-child(2) {
        width: 100%;
        margin-left: 20px;
        margin-right: auto;
      }
	header > .container .col:nth-child(3) {
		width: 40%;
	}
	header .mobile-menu-toggler {
		display: none;
	}
	header .container .menu {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
	}
	header .header-icons .item:nth-child(n+2) {
		margin-left: 25px;
	}
}

@media (min-width: 1200px) {
    header .menu > li:nth-child(n+2) {
        margin-left: 10px;
      }
}

@media (max-width: 575.98px) {
	header .submenu .container .item {
		width: 48.5%;
		margin-left: 3%;
		margin-top: 3%;
	}
	header .submenu .container .item:nth-child(2n+1) {
		margin-left: 0;
	}
	header .submenu .container .item:nth-child(-n+2) {
		margin-top: 0;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {
	header .submenu .container .item {
		width: 31.33333%;
		margin-left: 3%;
		margin-top: 3%;
	}
	header .submenu .container .item:nth-child(3n+1) {
		margin-left: 0;
	}
	header .submenu .container .item:nth-child(-n+3) {
		margin-top: 0;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	header .submenu .container .item {
		width: 22.75%;
		margin-left: 3%;
		margin-top: 3%;
	}
	header .submenu .container .item:nth-child(4n+1) {
		margin-left: 0;
	}
	header .submenu .container .item:nth-child(-n+4) {
		margin-top: 0;
	}
}

@media (min-width: 992px) {
	header .submenu .container .item {
		width: 17.6%;
		margin-left: 3%;
		margin-top: 3%;
	}
	header .submenu .container .item:nth-child(5n+1) {
		margin-left: 0;
	}
	header .submenu .container .item:nth-child(-n+5) {
		margin-top: 0;
	}
}

.cta {
	background-image: url("../img/main-bg.png");
	padding: 40px;
}

.cta .title,
.cta .subtitle {
	color: #fff;
}

.cta .title {
	margin-bottom: 5px;
}

.cta .subtitle {
	margin-top: 0;
}

.cta .btn {
	margin-top: 30px;
}

@media (min-width: 768px) {
	.cta {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		align-items: center;
	}
	.cta .info {
		flex-grow: 1;
	}
	.cta .btn {
		margin-top: 0;
		margin-left: 30px;
		flex-shrink: 0;
	}
}

/**
 * Carrossel
 */
.categories-carousel {
	padding: 45px 60px 60px;
	border-bottom: 1px solid #d7d6d7;
}

.categories-carousel .item {
	display: block;
}

.categories-carousel .item .image {
	display: block;
	width: 100%;
	padding-bottom: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 1;
	transition: opacity 0.3s;
}

.categories-carousel .item .title {
	margin-top: 15px;
	transition: color 0.3s;
	text-align: center;
}

.categories-carousel .item:hover .image {
	opacity: .7;
}

.categories-carousel .item:hover .title {
	color: #335d8f;
}

.categories-carousel .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.categories-carousel .owl-nav button {
	cursor: pointer;
}

.categories-carousel .owl-nav button i {
	display: block;
	font-size: 20px;
	color: #313131;
	transition: color 0.3s;
}

.categories-carousel .owl-nav button:hover i {
	color: #335d8f;
}

@media (max-width: 767.98px) {
	.categories-carousel {
		padding-right: 30px;
		padding-left: 30px;
	}
	.categories-carousel .item .title {
		font-size: 11px;
	}
}

/**
 * Menu de categorias
 */
.categories-menu {
	padding-bottom: 20px;
	margin-bottom: -20px;
	position: relative;
	overflow-x: auto;
}

.categories-menu .container {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
}

.categories-menu .container .item {
	padding-bottom: 20px;
	border-bottom: 3px solid transparent;
	transition: border-color 0.3s;
	position: relative;
	overflow: hidden;
	width: 100px;
	flex-shrink: 0;
}

.categories-menu .container .item:nth-child(n+2) {
	margin-left: 30px;
}

.categories-menu .container .item::before {
	content: '';
	position: absolute;
	bottom: -5px;
	right: 50%;
	-webkit-transform: rotate(45deg) translateX(50%);
	-moz-transform: rotate(45deg) translateX(50%);
	-ms-transform: rotate(45deg) translateX(50%);
	-o-transform: rotate(45deg) translateX(50%);
	transform: rotate(45deg) translateX(50%);
	display: none;
	width: 13px;
	height: 13px;
	background: #335d8f;
}

.categories-menu .container .item .image {
	display: block;
	width: 100%;
	padding-bottom: 95%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.categories-menu .container .item .title {
	text-align: center;
	transition: color 0.3s;
}

.categories-menu .container .item:hover .title {
	color: #335d8f;
}

.categories-menu .container .item.active {
	border-bottom-color: #335d8f;
}

.categories-menu .container .item.active::before {
	display: block;
}

@media (max-width: 767.98px) {
	.categories-menu .container {
		justify-content: flex-start;
	}
	.categories-menu .container .item:nth-child(n+2) {
		margin-left: 15px;
	}
	.categories-menu .container .item .title {
		font-size: 11px;
	}
}

.botao_mobile
{
	display:none;
}

@media (max-width: 767.98px) {
.botao_mobile
{
	display:block;
}


}






/**
 * Em destaque
 */
.featured-products .item {
    margin-bottom: 25px;
    background-size: cover;
    background-position: center;
    padding: 0 0 50px 0;
    background-image: url("../img/bg-1.png");
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.featured-products .item img {
	max-width: 100%;
	width: auto;
	height: auto;
}

.featured-products .item .info {
	margin-top: 50px;
	text-align: center;
}

@media (max-width: 991.98px) {
	.featured-products .item .info .title {
		font-size: 24px;
	}
}

@media (min-width: 992px) {
	.featured-products {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		flex-wrap: wrap;
		margin: 0 -12.5px;
	}
.featured-products .item {
    height: 300px;
    border-width: 0 12.5px;
    border-style: solid;
    border-color: #fff;
    width: 50%;
    flex-direction: row;
    padding-bottom: 0;
}
	.featured-products .item:nth-child(1) {
		background-image: url("../img/bg-1.png");
	}
.featured-products .item img {
    width: 70%;
}
	.featured-products .item .info {
		width: 45%;
		text-align: left;
		margin-top: 0;
		padding-left: 30px;
	}
	.featured-products:not(.featured-products-2) .item:nth-child(1) {
		padding-left: 0;
	}
.featured-products:not(.featured-products-2) .item:nth-child(1) img {
    position: relative;
    left: 0;
}
.featured-products:not(.featured-products-2) .item:nth-child(2) {
    height: 625px;
    background-image: url("../img/bg-2.png");
    flex-direction: column;
}
	.featured-products:not(.featured-products-2) .item:nth-child(2) img,
	.featured-products:not(.featured-products-2) .item:nth-child(2) .info {
		width: 80%;
	}
.featured-products:not(.featured-products-2) .item:nth-child(2) .info {
    margin-top: -30px;
    padding-left: 0;
}
.featured-products:not(.featured-products-2) .item:nth-child(3) {
    margin-top: -327px;
    background-image: url("../img/bg-3.png");
    padding-right: 0;
}
	.featured-products:not(.featured-products-2) .item:nth-child(3) img {
		order: 1;
		align-self: flex-start;
		position: relative;
		right: -10px;
	}
	.featured-products-2 .item {
		padding-right: 0;
	}
.featured-products-2 .item img {
    order: 1;
    position: relative;
    right: 0;
    width: 70%;
}
	.featured-products-2 .item .info {
		width: 45%;
	}
	.featured-products-2 .item:nth-child(1) img {
		align-self: flex-start;
	}
}

/**
 * Item
 */
.product-item .thumbnail-wrap {
	display: block;
	position: relative;
	z-index: 0;
}

.product-item .thumbnail-wrap .discount {
	position: absolute;
	top: 0;
	right: 0;
	background: #335d8f;
	color: #fff;
	font-size: 14px;
	line-height: 35px;
	padding: 0 20px;
	white-space: nowrap;
	z-index: 2;
}
.product-item .thumbnail-wrap .thumbnail {
	display: block;
	padding-bottom: 95%;
	width: 100%;
	background-position:
  center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 1;
	transition:
  opacity 0.3s;
  }

.product-item .thumbnail-wrap .thumbnail-hover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	background-color: #fff;
}

.product-item .thumbnail-wrap .details {
	position: absolute;
	right: 50%;
	-webkit-transform: translateX(50%);
	-moz-transform: translateX(50%);
	-ms-transform: translateX(50%);
	-o-transform: translateX(50%);
	transform: translateX(50%);
	bottom: 0;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	background: #335d8f;
	padding: 12px 15px;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 2;
}

.product-item .thumbnail-wrap .details .detail {
	color: #fff;
	text-align: center;
	white-space: nowrap;
	font-family: "Lato", sans-serif;
	font-size: 8px;
}

.product-item .thumbnail-wrap .details .detail:nth-child(n+2) {
	margin-left: 10px;
}

.product-item .thumbnail-wrap .details .detail i {
	font-size: 22px;
	display: block;
	margin-bottom: 7px;
}

.product-item .title {
	text-align: left;
	transition:
  color 0.3s;
	font-size: 14px;
  }

  .product-item .prices {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
  }

.product-item .prices .price {
	flex:
  1 1 0px;
	text-align: left;
	font-size: 11px;
	color: #335d8f;
	line-height: 1.25;
	font-family: "Lato", sans-serif;
  }

  .colors_disp_prodt
  {
	display:flex;
  }
  .product-item .prices .price b {
	display: block;
	font-size: 16px;
	font-weight: 900 !important;
  }

.product-item .stock {
	display: block;
	margin-top: 17px;
	color: #428500;
	text-align: center;
	font-family: "Lato", sans-serif;
	font-size: 10px;
}

.product-item .stock::before {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #428500;
	margin-right: 8px;
	border-radius: 100%;
	vertical-align: middle;
}

.product-item .stock.out {
	color: #a6001b;
}

.product-item .stock.out::before {
	background: #a6001b;
}

.product-item:hover .thumbnail-wrap .thumbnail {
	opacity: .7;
}

.product-item:hover .thumbnail-wrap .thumbnail-hover {
	opacity: 1;
}

.product-item:hover .thumbnail-wrap .details {
	opacity: 1;
}

.product-item:hover .title {
	color: #335d8f;
}

@media (min-width: 576px) {
	.product-item .thumbnail-wrap .discount {
		font-size: 15px;
		line-height: 40px;
		padding: 0 25px;
	}
	.product-item .thumbnail-wrap .details {
		padding: 15px 20px;
	}
	.product-item .thumbnail-wrap .details .detail {
		font-size: 9px;
	}
	.product-item .thumbnail-wrap .details .detail:nth-child(n+2) {
		margin-left: 15px;
	}
	.product-item .thumbnail-wrap .details .detail i {
		font-size: 29px;
		margin-bottom: 8px;
	}
	.product-item .title {
		font-size: 18px;
	}
	.product-item .prices .price {
		font-size: 12px;
	}
	.product-item .prices .price b {
		font-size: 24px;
		font-weight: 900 !important;
	}
}

/**
 * Grelha de produtos
 */
.products-grid {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 0;
	padding-bottom: 30px;
}

.products-grid::before, .products-grid::after {
	position: absolute;
	display: block;
	opacity: 0;
	pointer-events: none;
	z-index: 1;
}

.products-grid::before {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
}

.products-grid::after {
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "";
	top: 100px;
	right: 50%;
	-webkit-transform: translateX(50%);
	-moz-transform: translateX(50%);
	-ms-transform: translateX(50%);
	-o-transform: translateX(50%);
	transform: translateX(50%);
	font-size: 100px;
	color: #335d8f;
	animation: loading 1s infinite;
}

.products-grid.loading::before, .products-grid.loading::after {
	opacity: 1;
	pointer-events: all;
}

@-webkit-keyframes loading {
	0% {
		-webkit-transform: translateX(50%) rotate(0deg);
		-moz-transform: translateX(50%) rotate(0deg);
		-ms-transform: translateX(50%) rotate(0deg);
		-o-transform: translateX(50%) rotate(0deg);
		transform: translateX(50%) rotate(0deg);
	}
	100% {
		-webkit-transform: translateX(50%) rotate(360deg);
		-moz-transform: translateX(50%) rotate(360deg);
		-ms-transform: translateX(50%) rotate(360deg);
		-o-transform: translateX(50%) rotate(360deg);
		transform: translateX(50%) rotate(360deg);
	}
}

@-moz-keyframes loading {
	0% {
		-webkit-transform: translateX(50%) rotate(0deg);
		-moz-transform: translateX(50%) rotate(0deg);
		-ms-transform: translateX(50%) rotate(0deg);
		-o-transform: translateX(50%) rotate(0deg);
		transform: translateX(50%) rotate(0deg);
	}
	100% {
		-webkit-transform: translateX(50%) rotate(360deg);
		-moz-transform: translateX(50%) rotate(360deg);
		-ms-transform: translateX(50%) rotate(360deg);
		-o-transform: translateX(50%) rotate(360deg);
		transform: translateX(50%) rotate(360deg);
	}
}

@-o-keyframes loading {
	0% {
		-webkit-transform: translateX(50%) rotate(0deg);
		-moz-transform: translateX(50%) rotate(0deg);
		-ms-transform: translateX(50%) rotate(0deg);
		-o-transform: translateX(50%) rotate(0deg);
		transform: translateX(50%) rotate(0deg);
	}
	100% {
		-webkit-transform: translateX(50%) rotate(360deg);
		-moz-transform: translateX(50%) rotate(360deg);
		-ms-transform: translateX(50%) rotate(360deg);
		-o-transform: translateX(50%) rotate(360deg);
		transform: translateX(50%) rotate(360deg);
	}
}

@keyframes loading {
	0% {
		-webkit-transform: translateX(50%) rotate(0deg);
		-moz-transform: translateX(50%) rotate(0deg);
		-ms-transform: translateX(50%) rotate(0deg);
		-o-transform: translateX(50%) rotate(0deg);
		transform: translateX(50%) rotate(0deg);
	}
	100% {
		-webkit-transform: translateX(50%) rotate(360deg);
		-moz-transform: translateX(50%) rotate(360deg);
		-ms-transform: translateX(50%) rotate(360deg);
		-o-transform: translateX(50%) rotate(360deg);
		transform: translateX(50%) rotate(360deg);
	}
}

@media (max-width: 374.98px) {
	.products-grid .product-item {
		width: 100%;
		margin-left: 10%;
		margin-top: 10%;
	}
	.products-grid .product-item:nth-child(1n+1) {
		margin-left: 0;
	}
	.products-grid .product-item:nth-child(-n+1) {
		margin-top: 0;
	}
}

@media (min-width: 375px) and (max-width: 767.98px) {
	.products-grid .product-item {
		width: 46.5%;
		margin-left: 7%;
		margin-top: 7%;
	}
	.products-grid .product-item:nth-child(2n+1) {
		margin-left: 0;
	}
	.products-grid .product-item:nth-child(-n+2) {
		margin-top: 0;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.products-grid:not(.products-grid-max-3) .product-item {
		width: 29.33333%;
		margin-left: 6%;
		margin-top: 6%;
	}
	.products-grid:not(.products-grid-max-3) .product-item:nth-child(3n+1) {
		margin-left: 0;
	}
	.products-grid:not(.products-grid-max-3) .product-item:nth-child(-n+3) {
		margin-top: 0;
	}
	.products-grid.products-grid-max-3 .product-item {
		width: 46.5%;
		margin-left: 7%;
		margin-top: 7%;
	}
	.products-grid.products-grid-max-3 .product-item:nth-child(2n+1) {
		margin-left: 0;
	}
	.products-grid.products-grid-max-3 .product-item:nth-child(-n+2) {
		margin-top: 0;
	}
}

@media (min-width: 992px) {
	.products-grid:not(.products-grid-max-3) .product-item {
		width: 24.25%;
		margin-left: 1%;
		margin-top: 1%;
	  }
	.products-grid:not(.products-grid-max-3) .product-item:nth-child(4n+1) {
		margin-left: 0;
	}
	.products-grid:not(.products-grid-max-3) .product-item:nth-child(-n+4) {
		margin-top: 0;
	}
	.products-grid.products-grid-max-3 .product-item {
		width: 29.33333%;
		margin-left: 6%;
		margin-top: 6%;
	}
	.products-grid.products-grid-max-3 .product-item:nth-child(3n+1) {
		margin-left: 0;
	}
	.products-grid.products-grid-max-3 .product-item:nth-child(-n+3) {
		margin-top: 0;
	}
}

/**
 * Página da loja
 */
.shop aside .title {
	padding: 15px 20px;
	background: #ebebeb;
	text-transform: uppercase;
	display: none;
}

.shop aside form {
	padding-top: 30px;
	display: none;
}

.shop aside form fieldset:nth-last-child(n+2) {
	margin-bottom: 30px;
}

.shop aside form fieldset .field-title {
	text-transform: uppercase;
}

.shop aside form fieldset select {
	display: block;
	width: 100%;
	height: 40px;
	line-height: 38px;
	padding: 0 20px;
	border: 1px solid #000;
	font-family: "Lato", sans-serif;
	font-size: 16px;
}

.shop aside form fieldset .radios-checks label {
	display: block;
	cursor: pointer;
}

.shop aside form fieldset .radios-checks label:nth-child(n+2) {
	margin-top: 10px;
}

.shop aside form fieldset .radios-checks label input {
	display: none;
}

.shop aside form fieldset .radios-checks label span {
	position: relative;
	padding-left: 30px;
	text-transform: uppercase;
	font-size: 14px;
	font-family: "Lato", sans-serif;
	line-height: 21px;
	display: block;
	color: #313131;
	transition: color 0.3s;
}

.shop aside form fieldset .radios-checks label span::before, .shop aside form fieldset .radios-checks label span::after {
	position: absolute;
	top: 2px;
	left: 0;
	width: 17px;
	height: 17px;
	border-radius: 1px;
}

.shop aside form fieldset .radios-checks label span::before {
	content: '';
	display: block;
	border: 1px solid #000;
}

.shop aside form fieldset .radios-checks label span::after {
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "";
	display: none;
	background: #335d8f;
	color: #fff;
	line-height: 17px;
	text-align: center;
	font-size: 13px;
}

.shop aside form fieldset .radios-checks label input:checked + span::after {
	display: block;
}

.shop aside form fieldset .radios-checks label:hover span {
	color: #335d8f;
}

.shop main {
	margin-top: 50px;
}

@media (min-width: 768px) {
	.shop {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.shop aside {
		width: 25%;
	}
	.shop aside .title {
		display: block;
	}
	.shop aside .form-toggle {
		display: none;
	}
	.shop aside form {
		padding-top: 0;
		display: block;
	}
	.shop main {
		margin-top: 0;
		width: 70%;
	}
}

@media (min-width: 992px) {
	.shop aside form .hide-desktop {
		display: none;
	}
}

/**
 * Página do produto
 */
.product-page main .gallery {
	position: relative;
	z-index: 0;
}

.product-page main .gallery .discount {
	position: absolute;
	top: 0;
	right: 0;
	background: #469fd7;
	color: #fff;
	font-family: "Lato", sans-serif;
	font-size: 19px;
	line-height: 50px;
	padding: 0 30px;
	white-space: nowrap;
	z-index: 2;
}

.product-page main .gallery .main span {
	display: block;
	height: 700px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 20px;;
  }
  .product-page main .gallery .thumbnails {
    margin-top: 10px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    height: 90px;
    overflow: scroll;
    flex-wrap: wrap;
  }

.product-page main .gallery .thumbnails .item {
    width: 100px;
    margin-left: 5px;

height:80px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #e1e1e1;
    cursor: pointer;
    transition: border-color 0.3s;
}

.product-page main .gallery .thumbnails .item:nth-child(5n+1) {
	margin-left: 0;
}

.product-page main .gallery .thumbnails .item:nth-child(-n+5) {
	margin-top: 0;
}

.product-page main .gallery .thumbnails .item:hover {
	border-color: #469fd7;
}

.product-page main .gallery .thumbnails .item.active {
	border-color: #335d8f;
}

.product-page aside {
	margin-top: 50px;
}

.product-page aside h1 {
	text-transform: uppercase;
	font-size: 33px;
	margin-bottom: 10px;
}

.product-page aside .ref {
	font-size: 14px;
	font-family: "Lato", sans-serif;
}

.product-page aside .prices,
.product-page .details,
.product-page aside .files,
.product-page aside fieldset,
.product-page aside .note {
	margin-top: 30px;
}

.product-page aside .prices {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}

.product-page aside .prices .price {
	font-size: 11px;
	color: #335d8f;
	line-height: 1.25;
	font-family: "Lato", sans-serif;
}

.product-page aside .prices .price b {
	display: block;
	font-size: 20px;
	font-weight: 900 !important;
}

.product-page aside .prices .price:nth-last-child(n+2) {
	margin-right: 50px;
}

.product-page .details {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	position: absolute;
	z-index: 2;
	background: #FFF;
	padding: 16px;
	margin-top: 0px;
	border-bottom-right-radius: 20px;
  }

.product-page .details .detail {
	color: #335d8f;
	text-align: center;
	white-space: nowrap;
	font-family: "Lato", sans-serif;
	font-size: 8px;
}

.product-page .details .detail:nth-child(n+2) {
	margin-left: 15px;
}
.product-page .details .detail i {
    font-size: 19px;
    margin-bottom: 8px;
  }

.product-page aside .files {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	padding: 25px 0 10px;
	border-width: 2px 0;
	border-style: solid;
	border-color: #ddd;
}

.product-page aside .files .item {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.product-page aside .files .item:nth-last-child(n+2) {
	margin-right: 50px;
}

.product-page aside .files .item i,
.product-page aside .files .item span {
	color: #313131;
	transition: color 0.3s;
}

.product-page aside .files .item i {
	margin-right: 15px;
	font-size: 18px;
}

.product-page aside .files .item span {
	white-space: nowrap;
	font-family: "Lato", sans-serif;
	font-size: 12px;
	text-transform: uppercase;
}

.product-page aside .files .item:hover i,
.product-page aside .files .item:hover span {
	color: #335d8f;
}

.product-page aside fieldset .field-title {
	font-family: "Lato", sans-serif;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 10px;
}

.product-page .options .radios label {
	display: block;
}

.product-page .options .radios label:nth-child(n+2) {
	margin-top: 10px;
}

.product-page .options .radios label input {
	display: none;
}

.product-page .options .radios label .radio-wrap {
	border: 1px solid #efefef;
	transition: border-color 0.3s;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	padding: 20px;
	cursor: pointer;
  }

.product-page .options .radios label .radio-wrap .color {
	width: 23px;
	height: 23px;
	border-radius: 100%;
	margin-right: 15px;
	border: 1px solid #ccc;
}

.product-page .options .radios label .radio-wrap .info .title,
.product-page .options .radios label .radio-wrap .info .stock {
	font-size: 14px;
	font-family: "Lato", sans-serif;
display:inline-table;	line-height: 1.5;
}

.product-page .options .radios label .radio-wrap .info .stock {
	color: #428500;
}

.product-page .options .radios label .radio-wrap .info .stock.out {
	color: #a6001b;
}

.product-page .options .radios label input:checked + .radio-wrap {
	border:2px solid #335d8f;
}

.product-page .form-footer {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;  flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha */
}

.product-page .form-footer div {
	flex: 1 1 50%;
	box-sizing: border-box;
	font-size: 10px;
	color: #335d8f;
  }
  /* Faz com que o terceiro item ocupe a linha inteira */
  .product-page .form-footer div:nth-child(5) {
	flex-basis: 100%;
  }
  


.product-page .form-footer .btn {
	background: #335d8f;
	margin-left: auto;
}






.product-page .form-footer .btn, .product-page .form-footer .btn i, .product-page .form-footer .btn span {
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	width: 100%;
	border-radius: 20px;
  }

  .product-page .form-footer #SelecioneBtn {
	background: #ccc!important;
	margin-left: auto;
}




.product-page .form-footer .btn:hover {
	background: #313131;
}

.number-field {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	padding: 0 15px;
	width: 130px;
	height: 45px;
	border: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }

 .number-field input,
.number-field .qty-btn {
	color: #000;
}

.number-field input {
	flex-grow: 1;
	padding: 0;
	min-width: 0;
	width: auto;
	border: 0;
	background: none;
	text-align: center;
	font-size: 14px;
	color: #000;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;

}

.number-field .qty-btn {
	flex-shrink: 0;
	cursor: pointer;
	font-size: 13px;
	transition: color 0.3s;
	background: #335d8f;
	color: #FFF;
	padding: 10px;
	border-radius: 100%;
	font-size: 11px;
  }
 .number-field .qty-btn:hover {
	color: #335d8f;
}

.product-page aside fieldset .final-price {
	font-size: 11px;
	color: #335d8f;
	line-height: 1.25;
	font-family: "Lato", sans-serif;
	margin-left: 13px;
}

.product-page aside fieldset .final-price b {
	display: block;
	font-size: 20px;
	font-weight: 900 !important;
}

.product-page aside .note {
	font-weight: 900;
	font-family: "Lato", sans-serif;
	font-size: 14px;
	color: #335d8f;
}

@media (min-width: 768px) {
	.product-page aside .prices .price,
	.product-page aside .final-price {
		font-size: 12px;
	}
	.product-page aside .prices .price b,
	.product-page aside .final-price b {
		font-size: 24px;
		font-weight: 900 !important;
	}
	.product-page .details .detail {
		font-size: 9px;
	}
	.product-page .details .detail:nth-child(n+2) {
		margin-left: 25px;
	}
	.product-page .details .detail i {
		font-size: 29px;
		margin-bottom: 8px;
	}
	.product-page aside fieldset .number-field {
		width: 150px;
	}
}

@media (max-width: 767.98px) {
	.product-page .form-footer {
		position: fixed;
		bottom: 0;
		left: 0;
		margin: 0;
		width: 100%;
		background: #fff;
		
		padding-top: 10px;
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 25px;
		z-index: 3;
	}
}


@media (min-width: 992px) {
	.product-page .container {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
    .product-page .container main {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
      }
	.product-page .container aside {
		margin-top: 0;
		width: 35%;
	}
}


.product-page .container.pagettle h1
{
    font-size:22px; margin-bottom:0; margin-right:20px;
}

.product-page .container.pagettle .ref
{
    font-size:14px;margin-right:20px;
}


.product-page .container.pagettle
{
justify-content: flex-start;
    align-items: center;
    margin-bottom:20px
}


.product-page .container .imgs {
    width: 45%;
}
.product-page .container .options {
    margin-top: 0;
    width: 25%;
}

.product-page .container .price {
	margin-top: 0;
	width: 25%;
	border-radius:
  20px;
	padding:
  0;
	font-size: 12px;
  }


.myself {
}
.popuptext {
}
.popuptext.show {
    display: inline-block;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    left: 0;
    top: 0;
}

.popuptext.show img {
    width: 100%;
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.popuptext {
  display: none;
}

input.qtd::-webkit-outer-spin-button,
input.qtd::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input.qtd[type=number] {
  -moz-appearance: textfield;
}








/**
 * Informação do produto
 */
.product-info main {
	margin-top: 50px;
}

.product-info .title {
	text-transform: uppercase;
}

.product-info .features-table .row {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}

iframe {
	width:100%;
}

.product-info .features-table .row:nth-child(odd) {
	background: #e8e8e8;
}

.product-info .features-table .row .field, .product-info .features-table .row .value {
	width: 50%;
	font-family: "Lato", sans-serif;
	font-size: 14px;
	line-height: 1.5;
	padding:
  16px 15px;
	border-radius:
  5px;
  }
@media (min-width: 992px) {
	.product-info .container {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.product-info .container aside {
		width: 35%;
	}
	.product-info .container main {
		margin-top: 0;
		order: -1;
		width: 60%;
	}
}

.follow {
	padding: 30px 0;
	background-image: url("../img/main-bg.png");
}

.follow .features {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    align-items: le;
    justify-content: left;
}

.follow .features .item {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
}

.follow .features .item:nth-child(n+2) {
	margin-top: 30px;
}

.follow .features .item i,
.follow .features .item span {
	color: #fff;
}

.follow .features .item i {
    font-size: 40px;
    margin-right: 20px;
}

.follow .features .item span {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.3;
}

.follow .newsletter {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 30px;
}

.follow .newsletter .title {
	text-align: center;
	font-weight: 400;
	color: #fff;
	text-transform: uppercase;
	font-size: 18px;
	white-space: nowrap;
	margin-bottom: 0;
}

.follow .newsletter .title b {
	display: block;
	font-weight: 900 !important;
}

.follow .newsletter .input-group {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	margin-top: 15px;
	background: #fff;
	padding: 5px 5px 5px 0;
}

.follow .newsletter .input-group input {
	height: 45px;
	border: 0;
	border-radius: 0;
	line-height: 45px;
	padding: 0 25px;
	width: 200px;
	background: #fff;
	font-size: 12px;
	flex-shrink: 1;
}

.follow .newsletter .input-group .btn {
	background: #335d8f;
}

.follow .newsletter .input-group .btn,
.follow .newsletter .input-group .btn span {
	text-transform: uppercase;
}

.follow .newsletter .input-group .btn:hover {
	background: #313131;
}

@media (min-width: 768px) {
	.follow .features {
		flex-direction: row;
	}
	.follow .features .item:nth-child(n+2) {
		margin-top: 0;
		margin-left: 40px;
	}
}

@media (min-width: 992px) {
	.follow .newsletter {
		justify-content: center;
		flex-direction: row;
	}
	.follow .newsletter .title {
		text-align: left;
	}
	.follow .newsletter .input-group {
		margin-top: 0;
		margin-left: 30px;
	}
	.follow .newsletter .input-group input {
		width: 250px;
	}
}

@media (min-width: 1200px) {
	.follow .container {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.follow .container .newsletter {
		margin-top: 0;
		margin-left: 50px;
	}
}

.contact-info .item {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}

.contact-info .item:nth-child(n+2) {
	margin-top: 20px;
}

.contact-info .item i {
	font-size: 20px;
	color: #335d8f;
}

.contact-info .item .info {
	margin-left: 15px;
	line-height: 1.5;
	font-size: 12px;
	color: #313131;
	font-weight: 500;
}

.contact-info .item .info a {
	cursor: pointer;
	color: inherit;
	transition: color 0.3s;
}

.contact-info .item .info a:hover {
	color: #335d8f;
}

footer {
	padding: 70px 0;
	background: #fff;
	position: relative;
}

footer .container {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}

footer .col-title {
	margin-bottom: 15px;
}

@media (max-width: 575.98px) {
	footer .container .col {
		width: 100%;
		margin-left: 10%;
		margin-top: 10%;
	}
	footer .container .col:nth-child(1n+1) {
		margin-left: 0;
	}
	footer .container .col:nth-child(-n+1) {
		margin-top: 0;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {
	footer .container .col {
		width: 47.5%;
		margin-left: 5%;
		margin-top: 5%;
	}
	footer .container .col:nth-child(2n+1) {
		margin-left: 0;
	}
	footer .container .col:nth-child(-n+2) {
		margin-top: 0;
	}
}

@media (min-width: 768px) {
	footer .container .col {
		width: 21.25%;
		margin-left: 5%;
		margin-top: 5%;
	}
	footer .container .col:nth-child(4n+1) {
		margin-left: 0;
	}
	footer .container .col:nth-child(-n+4) {
		margin-top: 0;
	}
	footer .container .col:first-child {
		align-self: center;
	}
}

/**
 * Logo
 */
.footer-logo {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

/**
 * Menu
 */
.footer-menu li {
	color: #313131;
	font-size: 12px;
	line-height: 1.5;
}

.footer-menu li:nth-child(n+2) {
	margin-top: 15px;
}

.footer-menu li a {
	color: inherit;
	cursor: pointer;
	transition: color 0.3s;
	font-weight: 500;
}

.footer-menu li a:hover {
	color: #335d8f;
}

/**
 * Copyright
 */
.copyright {
	padding: 30px 0;
	background: #d6d6d6;
	color: #313131;
	text-align: center;
	font-size: 10px;
	line-height: 2;
}

.copyright .payment-methods {
	margin-top: 15px;
}

.copyright a {
	color: inherit;
	cursor: pointer;
	transition: color 0.3s;
}

.copyright a:hover {
	color: #335d8f;
}

@media (min-width: 576px) {
	.copyright .container {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.copyright .container .payment-methods {
		margin-top: 0;
	}
}

/**
 * Imagem do rodapé
 */
.footer-image {
	position: absolute;
	top: -43px;
	left: -160px;
	height: auto;
	display: none;
}

@media (min-width: 1200px) {
	footer,
	.copyright {
		padding-left: 15%;
	}
	.footer-image {
		display: block;
	}
}

.footer-group {
	overflow: hidden;
}

.mobile-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 250%;
	height: calc(100vh - 40px - 100px);
	z-index: 4;
	background: #fff;
	display: none;
}

.mobile-menu .mobile-menu-inner {
	position: absolute;
	top: 40px;
	right: 0;
	bottom: 40px;
	left: 0;
	overflow-y: auto;
}

.mobile-menu .menu li {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: left;
    align-items: left;
    flex-wrap: wrap;
    padding: 5px 20px;
}

.mobile-menu .menu li img {
    width: 50px;
    margin-right: 20px;
    height: auto;
    max-height: 50px;
}

.mobile-menu .menu li a,
.mobile-menu .menu li i {
	line-height: 25px;
	color: #313131;
	font-size: 15px;
}

.mobile-menu .menu li a {
	transition: color 0.3s;
	text-transform: uppercase;
}

.mobile-menu .menu li i {
	width: 25px;
	text-align: center;
	transition: transform 0.3s;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	margin-left: 5px;
}

.mobile-menu .menu li i.rotated {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.mobile-menu .menu li .submenu {
	width: 100%;
	padding: 15px 0;
	display: none;
}

.mobile-menu .menu li .submenu li:nth-child(n+2) {
	margin-top: 10px;
}

.mobile-menu .menu li .submenu li a {
	font-size: 12px;
	font-weight: 700;
}

.mobile-menu .menu li .submenu li .submenu li a {
	font-weight: 400;
}

.mobile-menu .menu li .submenu li:hover > a,
.mobile-menu .menu li .submenu li:hover > i,
.mobile-menu .menu li .submenu li.active > a,
.mobile-menu .menu li .submenu li.active > i {
	color: #335d8f !important;
}

.mobile-menu .menu li:nth-child(n+2) {
	margin-top: 5px;
}

.mobile-menu .menu li:hover > a,
.mobile-menu .menu li:hover > i,
.mobile-menu .menu li.active > a,
.mobile-menu .menu li.active > i {
	color: #335d8f !important;
}

.mobile-menu.open {
	top: 0;
}

.breadcrumbs {
    padding: 9px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

  .breadcrumbs .container {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

.breadcrumbs .container a,
.breadcrumbs .container .divider,
.breadcrumbs .container .current {
	font-size: 12px;
	color: #313131;
	line-height: 20px;
}

.breadcrumbs .container a,
.breadcrumbs .container .divider {
	margin-right: 5px;
}

.breadcrumbs .container a,
.breadcrumbs .container .current {
	text-transform: none;
	font-family: "Lato", sans-serif;
}

.breadcrumbs .container a {
	transition: color 0.3s;
}

.breadcrumbs .container a:hover {
	color: #335d8f;
}

.breadcrumbs .container .current {
	font-weight: 900;
}

.breadcrumbs form {
	margin-left: auto;
	display: none;
	align-items: center;
}

.breadcrumbs form label {
	font-size: 16px;
	font-family: "Lato", sans-serif;
	text-transform: uppercase;
	margin-right: 15px;
}

.breadcrumbs form select {
	width: 185px;
	border: 1px solid #000;
	line-height: 38px;
	height: 40px;
	padding: 0 20px;
	font-family: "Lato", sans-serif;
	font-size: 16px;
}

.breadcrumbs.breadcrumbs-lg {
	border-top: 0;
	margin-bottom: 25px;
	padding: 0;
}

.breadcrumbs.breadcrumbs-lg .container {
	padding: 0;
	align-items: center;
}

.breadcrumbs.breadcrumbs-lg .container a,
.breadcrumbs.breadcrumbs-lg .container .current {
	font-size: 16px;
}

.breadcrumbs.breadcrumbs-lg .container a,
.breadcrumbs.breadcrumbs-lg .container .divider {
	margin-right: 10px;
}

@media (min-width: 992px) {
	.breadcrumbs form {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
	}
}


.class_bg_grey
{
	width:100%;
}


.checkout_info
{
  display:block;
}

.cupon {
    width: 100%;
    margin-right: 5%;
}

@media (min-width: 768px) {
.checkout_info
  {
    display:flex;
      justify-content: space-between;
  }
.cupon {
    width: 50%;
    margin-right: 5%;
}
  
}

.cupon_box {

}

input {
    width: 100%;
    background: #FFF;
    border: 0;
    color: #000000;
    padding: 15px;
    margin-right: 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-top: 5px;
}

input submit {
    width: 100%;
    background: #FFF;
    border: 0;
    color: #000000;
    padding: 10px;
    margin-right: 0;
    border-radius: 11px;
    border: 0;
    margin-top: 10px;
}

.btn_form {
    background: #335d8f !important;
    border: 0;
    color: #fff !important;
}
.btn_form:hover{
	background:#333;
}



.btn_form_other {
    background: #335d8f !important;
    border: 0;
    color: #fff !important;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
}
.btn_form_other:hover{
	background:#333;
}

.cupon_box_check
{
	width:100%;
}

.cupon_box_check {
	width:40%;
  background:#FFF;
  border:1px solid #ccc;
	border:0;
	color:#333;
	padding:15px; margin-right:2%;
}

.cupon_box_check .btn_form{
	width:35%;
	background:#010101;
	border:0;
	color:#fff;
	padding:15px;
	transition: 0.3s;
}
.cupon_box_check .btn_form:hover{
	background:#d71b2d;
}







  
.total_checkbox
{
	width:100%;
}


@media (min-width: 992px) {

  .total_checkbox
  {
    width:50%;
  }
  
}

.total_checkbox_box
{
	background:#fff;
	padding:20px;
	width:100%;
	border:1px solid #010101;
	color:#010101;
}

.total_checkbox_box_inline
{
	display:flex;
	padding:15px 10px;
}
.total_checkbox_box_left
{
	width:50%;
	text-align:left;
}
.total_checkbox_box_right
{
	width:50%;
	text-align:right;
}
.total_checkbox_box_line
{
	width:100%;
	border-bottom:1px solid #ccc
}


.total_checkbox .btn_form {
    width: 100%;
    background: #335d8f !important;
    border: 0;
    color: #fff !important;
    padding: 15px;
    transition: 0.3s;
    border-radius: 0;
}
.total_checkbox .btn_form:hover{
	background:#333;
}

.alert_green
{
	background:#198754;
	color:#FFF;
	padding:10px;
	text-align:center;
}

.alert_red
{
	background:#9b0000;
	color:#FFF;
	padding:10px;
	text-align:center;
}

.professional {
	background: #f6f7f9;
	color: #335d8f;
	display: flex;
	padding: 20px;
	border-radius: 20px;
	align-items: center;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 14px;
	justify-content: center;
  }


  @media (max-width: 767.98px) {
	.product-page .container .imgs {
		width: 100%;
	  }

	  .product-page .container .options {
		margin-top: 0;
		width: 100%;
	  }

	  .product-page .form-footer {
		position: relative;
		bottom: 0;
		left: 0;
		margin: 0;
		width: 100%;
		background: #fff;
		padding-top: 10px;
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 0;
		z-index: 3;
	  }

	  .product-page .container .price {
		margin-top: 0;
		width: 100%;
		font-size: 12px;
	  }
	  .top {
		margin-bottom: 95px;
		background: #335d8f;
		position: relative;
		z-index: 4;
	  }

	  header > .container {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		height: 95px;
		flex-wrap: wrap;
	  }

	  header .header-icons {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	  }
	  header > .container .col:nth-child(2) {
		justify-content: flex-end;
	  }
}



.custom-gallery {
    max-width: 100%;
}
.main-view {
	width: 100%;
	height: 800px;  /* ou o que quiser */
	position: relative;
	overflow: hidden;
  }
  
  .main-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
  }
  
.main-view img, .main-view video {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.thumb-carousel {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
  }
  
  .thumb-nav {
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	user-select: none;
  }
  
  .thumbs {
	display: flex;
	overflow-x: hidden;
	scroll-behavior: smooth;
	gap:
  10px;
	max-width: 100%;
	width: 100%;
  }
  
  .thumbs::-webkit-scrollbar {
	display: none;
  }
  
  .thumb {
	flex:
  0 0 17%;
	height: 100px;
	background-size: cover;
	background-position:
  center;
	border-radius:
  4px;
	cursor: pointer;
	opacity: 0.6;
	position: relative;
	transition:
  0.3s;
  }
  
  .thumb.active {
	opacity: 1;
	border: 2px solid #333;
  }
  

.video-thumb .play-icon {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 9px;
	color: #fff;
	background:
  #33333382;
	border-radius:
  50%;
	width: 30px;
	line-height: 30px;
	text-align: center;
	padding-left: 2px;
	padding-top: 1px;
  }
.thumb:hover {
    opacity: 1;
}

.dragging {
	cursor: grabbing;
	cursor: -webkit-grabbing;
  }
  

  .divtotalacess {
	border:
  0;
	margin-top: 20px;
	border-radius:
  8px;
	max-height: 375px;
	background:
  #f6f7f9;
	border-radius:
  12px;
	padding:
  10px 0;
  }

  .article-loop {
	display: flex;
	width: calc(100% - 20px);
	padding:
  10px;
	margin:
  0;
	border-bottom:
  0;
	background:
  #fff;
	border-radius:
  10px;
	margin:
  10px;
  }
  @media (max-width: 767.98px) {
	.main-view {
		width: 100%;
		height: 400px;
		position: relative;
		overflow:
	  hidden;
	  }
	  .thumb {
		flex:
	  0 0 17%;
		height: 60px;
		background-size: cover;
		background-position:
	  center;
		border-radius:
	  4px;
		cursor: pointer;
		opacity: 0.6;
		position: relative;
		transition:
	  0.3s;
	  }
	  .divtotalacess {
		border:
	  0;
		margin-top: 20px;
		border-radius:
	  8px;
		max-height: 375px;
		background:
	  #f6f7f9;
		border-radius:
	  12px;
		padding:
	  10px 0;
	  }
	
	  .article-loop {
		display: flex;
		width: calc(100% - 20px);
		padding:
	  10px;
		margin:
	  0;
		border-bottom:
	  0;
		background:
	  #fff;
		border-radius:
	  10px;
		margin:
	  10px;
	  }
	  .tab-content {
		display: block!important;
	
	  }
	  .tabs {
		display: none!important;
		margin-bottom: 10px;
	  }
  }