
html,
body {
	height: 100%;
	font-family: 'Josefin Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	/*--background-image: url(../img/bg.jpg);--*/
	background-repeat: repeat;
	overflow-x: hidden;
}

body.menu-open{
	overflow: hidden;
}

body.menu-open .box-header:after,
body.menu-open .carousel.slide:after,
body.menu-open .footer-section:after
{
	display: block;
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.7);
	z-index: 11;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #000;
	font-weight: 600;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 14px;
	color: #585858;
	line-height: 1.6;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

.hiden {
	display: none;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	text-align: center;
}

.section-title h2 {
	font-size: 36px;
}


.spad {
	padding-top: 30px;
	padding-bottom: 30px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/*---------------------
  Commom elements
-----------------------*/

/* buttons */

.site-btn {
	display: inline-block;
	border: none;
	font-size: 14px;
	font-weight: 600;
	min-width: 167px;
	padding: 18px 47px 14px;
	border-radius: 50px;
	text-transform: uppercase;
	background: #4169E1;
	color: #fff;
	line-height: normal;
	cursor: pointer;
	text-align: center;
}

.site-btn:hover {
	color: #fff;
}

.site-btn.sb-white {
	background: #fff;
	color: #111111;
}

.site-btn.sb-line {
	background: transparent;
	color: #fff;
	-webkit-box-shadow: inset 0 0 0 1px #fff;
	box-shadow: inset 0 0 0 1px #fff;
}

.site-btn.sb-dark {
	background-color: rgba(0, 19, 89, 0.89);
}

.site-btn.sb-dark.sb-line {
	background-color: transparent;
	color: #111111;
	-webkit-box-shadow: inset 0 0 0 1px #111111;
	box-shadow: inset 0 0 0 1px #111111;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

.elements-section {
	padding-top: 100px;
}

.el-title {
	margin-bottom: 75px;
}

.element {
	margin-bottom: 100px;
}

.element:last-child {
	margin-bottom: 0;
}

/* Accordion */

.accordion-area {
	margin-top: 50px;
	border-top: 2px solid #e1e1e1;
}

.accordion-area .panel {
	border-bottom: 2px solid #e1e1e1;
}

.accordion-area .panel-link {
	background-image: url("../img/arrow-down.png");
	background-repeat: no-repeat;
	background-position: right 10px top 30px;
}

.faq-accordion.accordion-area .panel-link,
.faq-accordion.accordion-area .panel-link.active.collapsed {
	padding: 17px 100px 17px 20px;
}

.faq-accordion.accordion-area .panel-link:after {
	right: 44px;
}

.accordion-area .panel-header .panel-link.collapsed {
	background-image: url("../img/arrow-down.png");
}

.accordion-area .panel-link.active {
	background-image: url("../img/arrow-up.png");
}

.accordion-area .panel-link.active {
	background-color: transparent;
}

.accordion-area .panel-link,
.accordion-area .panel-link.active.collapsed {
	text-align: left;
	position: relative;
	width: 100%;
	font-size: 14px;
	font-weight: 700;
	color: #414141;
	padding: 0;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	border: none;
	min-height: 69px;
	background-color: transparent;
	border-radius: 0;
}

.accordion-area .panel-body {
	padding-top: 10px;
}

.accordion-area .panel-body p {
	color: #8f8f8f;
	margin-bottom: 25px;
	line-height: 1.8;
}

.accordion-area .panel-body p span {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #f51167;
}

.accordion-area .panel-body img {
	margin-bottom: 25px;
}

.accordion-area .panel-body h4 {
	font-size: 18px;
	margin-bottom: 20px;
}

/*--------------------
  Botão Whatszap fixo
 --------------------*/

.whatsapp-fixo  {
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	font-size:30px;
	z-index:1000;
	padding-top: 10px;
}

.whatsapp-fixo i {
	color:#FFF;
	margin-top: 5px;
}


/*------------------
  Header section
---------------------*/

.header-top {
	padding: 0 0 8px;
}

.wrap-logo{
	position: relative;
	padding: 20px 10px;
	background-color: #fff;
}
.site-logo {
	display: inline-block;
}

.fundo {
	background: #ffffff;
}

.faixa-msg{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #a71d2a;
	padding: 10px;
	text-align: center;
}

.faixa-msg label{
	color: #F0F5FF;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 0px;
	font-size: 12px;
	line-height: 1;
}

.faixa-msg-topo{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #363636;
	text-align: center;
	position: relative;
}

.faixa-msg-topo label{
	color: #F0F5FF;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 0px;
	font-size: 12px;
	line-height: 1;
	padding-left: 20px;
}

.faixa-msg-topo label img {
	width: 45px;
}


.faixa-msg-mobile {
	align-items: center;
	background: #363636;
	text-align: center;
	position: relative;
	height: 75px;
}

.faixa-msg-mobile label{
	color: #F0F5FF;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 0px;
	font-size: 9px;
	line-height: 1;
	padding-left: 20px;
}

.faixa-msg-mobile label img {
	width: 20px;
}



.faixa-msg-mobile {
	margin-top: -5px;
}

.faixa-topo{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1b2426;
	padding: 10px;
	text-align: center;
}

.faixa-topo label{
	color: #F0F5FF;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 0px;
	font-size: 12px;
	line-height: 1;
}

.faixa-topo .buscarCep{
	font-weight: bold;
	border: none;
	padding: 0 19px;
	font-size: 12px;
	line-height: 1;
	height: 25px;
	width: 130px;
	border-radius: 20px;
}

.faixa-topo button{
	padding: 8px 10px 6px;
	font-size: 12px;
	color: #fff;
	border: none;
	text-transform: uppercase;
	background-color: #007bff;
	border-radius: 4px;
	margin-left: 5px;
}


.header-search-form {
	width: 100%;
	position: relative;
	padding: 0 10px;
	bottom: 0;
}

.header-search-form input {
	width: 100%;
	height: 44px;
	font-size: 14px;
	border-radius: 50px;
	border: none;
	padding: 0 50px 0 20px;
	background:#E8E8E8;
	box-shadow: rgba(32, 33, 36, 0.28) 0px 1px 6px 0px;
}

.header-search-form button {
	position: absolute;
	height: 100%;
	right: 18px;
	top: 0;
	font-size: 26px;
	color: #000;
	border: none;
	cursor: pointer;
	background-color: transparent;
}

.user-panel{
	display: flex;
	justify-content: center;
}

.user-panel .up-item {
	display: flex;
}

.user-panel .up-item ~ .up-item {
	margin-left: 30px;
}

.user-panel .up-item .login-card {
	display: inline-block;
	text-align: left;
	font-size: 14px;
}

.user-panel .up-item .box-nome-usuario{
	max-width: 150px;
}

.user-panel .up-item .nome-usuario {
	font-weight: bold;
	color: #007bff;
}


.user-panel .up-item .login-card i{
	margin-right: 10px;
	color: #828385;
	font-size: 2.7rem;
}

.user-panel .up-item .login-card a{
	color: #000;
}

.user-panel .up-item .login-card .bt-login{
	background-color: rgba(0, 19, 89, 0.89);
    padding: 3px 15px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 5px;
    color: #fff;
}

.user-panel .up-item .login-card a:hover{
	text-decoration: underline;
}


.login-card__texto {
	/* margin-top: 10px; */
}


.shopping-card {
	display: inline-block;
	position: relative;
	margin-right: 15px
}

.shopping-card a{
	color: #828385;
	font-size: 2.5rem;
	text-align: center;
}


.shopping-card span {
	position: absolute;
	top: -4px;
	left: 100%;
	height: 16px;
	min-width: 16px;
	color: #fff;
	font-size: 13px;
	background-color: rgba(0, 19, 89, 0.89);
	text-align: center;
	border-radius: 30px;
	padding: 0 2px;
	margin-left: -7px;
}

.shopping-card__texto {
	margin-top: 10px;
}

.wrap-header{
	display: flex;
	align-items: center;
}

.wrap-header .box-logo,
.wrap-header .box-busca,
.wrap-header .box-controle{
	/* width: 100%; */
	padding-right: 15px;
	padding-left: 15px;
}

.wrap-header .box-logo{
	width: 200px;
}

.wrap-header .box-busca{
	width: calc(100% - 200px - 400px);
}

.wrap-header .box-controle{
	width: 400px;
}

.bt-menu-mobile{
	display: none;
	position: absolute;
    top: 15px;
    left: 5px;
    background-color: transparent;
    color: #000;
    border: none;
	font-size: 36px;
	z-index: 3;
	width: 50px;
	height: 50px;
	line-height: 1;
	text-align: center;
}

.bt-menu-mobile:before{
	display: inline-block;
	font-family: "FontAwesome";
	content: "\f0c9";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

}

[data-login="usuario_logado"]{
	margin-top: 10px;
}

.main-navbar {
	background-color: rgba(0, 19, 89, 0.89);
}


.main-menu {
	list-style: none;
}

.main-menu .bt-fechar-menu{
	display: none;
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: transparent;
	font-size: 30px;
	color: #fff;
	border: none;
	z-index: 2;
}

.main-menu .grupo-acesso{
	display: none;
	padding: 20px 50px 20px 20px;
	background-color: rgba(0, 19, 89, 0.89);
}

.main-menu .grupo-acesso span{
	font-weight: bold;
	color: #fff;
}

.main-menu .grupo-acesso > a{
	display: block;
	color: #fff;
}

.main-menu .grupo-acesso > a ~ a{
	margin-top: 10px;
}

.main-menu li {
	display: inline-block;
	position: relative;
}

.main-menu li a {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	margin-right: 30px;
	line-height: 1;
	padding: 20px 10px 20px;
	position: relative;
	font-weight: bold;
	text-transform: uppercase;
}

.main-menu .lista-menu {
	width: 1220px;
}

.main-menu li a .new {
	position: absolute;
	top: -8px;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: #4169E1;
	line-height: 1;
	text-transform: uppercase;
	left: calc(50% - 21px);
	padding: 5px 9px 1px;
	border-radius: 15px;
	width: 42px;
}

.main-menu .sub-menu {
	position: absolute;
	list-style: none;
	width: 330px;
	left: 0;
	top: 100%;
	padding: 20px 0;
	visibility: hidden;
	opacity: 0;
	margin-top: 50px;
	background: #fff;
	z-index: 99;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	-webkit-box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
	box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
}

.main-menu .sub-menu li {
	display: inline-grid;
}

.main-menu .sub-menu li a {
	display: inline-grid;
	color: #000;
	margin-right: 0;
	padding: 8px 20px;
	width: 160px;
}

.main-menu .sub-menu li:hover a {
	color: #fff;
}

.main-menu .sub-menu-marca {
	position: absolute;
	list-style: none;
	overflow: hidden;
	height: 475px;
	width: 250px;
	left: 0;
	top: 100%;
	padding: 20px 0;
	visibility: hidden;
	opacity: 0;
	margin-top: 50px;
	background: #fff;
	z-index: 99;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	-webkit-box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
	box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
}

.main-menu .sub-menu-marca li {
	display: block;
}

.main-menu .sub-menu-marca li a {
	display: block;
	color: #000;
	margin-right: 0;
	padding: 8px 20px;
}

.main-menu .sub-menu-marca li:hover a {
	color: #fff;
}

.main-menu .sub-menu-marca .sub-menu-marca-links {
	text-align: left;
	overflow: auto;
	width: 250px;
}

.main-menu .sub-menu-marca .sub-menu-marca-letras li a{
	padding: 3px 20px;
}




.nav-switch {
	display: none;
}

.wrap-banner{
	max-width: 1175px;
	padding-left: 0px;
	padding-right: 0px;
	margin-bottom: 5px;
}

/* ----------------
  Features
---------------------*/

.hero-section {
	padding-bottom: 54px;
}

.hero-slider .hs-item {
	position: relative;
	height: 720px;
}

.hero-slider .hs-item span {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 3px;
	margin-bottom: 5px;
	display: block;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider .hs-item h2 {
	font-size: 60px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider .hs-item p {
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 35px;
	position: relative;
	top: 100px;
	opacity: 0;
}

.hero-slider .hs-item .site-btn {
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider .hs-item .sb-line {
	margin-right: 5px;
}

.hero-slider .hs-item .container {
	position: relative;
	padding-top: 170px;
}

.hero-slider .hs-item .offer-card {
	position: absolute;
	right: 0;
	top: 226px;
	width: 162px;
	height: 162px;
	border-radius: 50%;
	background: #4169E1;
	text-align: center;
	padding-top: 20px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	opacity: 0;
}

.hero-slider .hs-item .offer-card:after {
	position: absolute;
	content: "";
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 1px solid #f96790;
	left: 5px;
	top: 5px;
	border-radius: 50%;
}

.hero-slider .hs-item .offer-card span {
	font-size: 18px;
	text-transform: lowercase;
	position: relative;
	top: 50px;
	opacity: 0;
}

.hero-slider .hs-item .offer-card h2 {
	font-size: 72px;
	font-weight: 400;
	line-height: 1;
}

.hero-slider .hs-item .offer-card p {
	text-transform: uppercase;
	line-height: 1;
	font-size: 14px;
}

.hero-slider .slider-nav-warp {
	max-width: 1145px;
	bottom: 0;
	margin: -78px auto 0;
}

.hero-slider .slider-nav {
	display: inline-block;
	padding: 0 38px;
	position: relative;
}

.hero-slider .owl-dots {
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 9px;
}

.hero-slider .owl-dots .owl-dot {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 15px;
	margin-right: 10px;
	opacity: 0.25;
}

.hero-slider .owl-dots .owl-dot.active {
	opacity: 1;
}

.hero-slider .owl-dots .owl-dot:last-child {
	margin-right: 0;
}

.hero-slider .owl-nav button.owl-next,
.hero-slider .owl-nav button.owl-prev {
	font-size: 27px;
	position: absolute;
	color: #fff;
	opacity: 0.5;
	bottom: -20px;
}

.hero-slider .owl-nav button.owl-next {
	right: 0;
}

.hero-slider .owl-nav button.owl-prev {
	left: 0;
}

.hero-slider .owl-item.active .hs-item h2,
.hero-slider .owl-item.active .hs-item span,
.hero-slider .owl-item.active .hs-item p,
.hero-slider .owl-item.active .hs-item .site-btn {
	top: 0;
	opacity: 1;
}

.hero-slider .owl-item.active .hs-item span {
	-webkit-transition: all 0.5s ease 0.2s;
	-o-transition: all 0.5s ease 0.2s;
	transition: all 0.5s ease 0.2s;
}

.hero-slider .owl-item.active .hs-item h2 {
	-webkit-transition: all 0.5s ease 0.4s;
	-o-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}

.hero-slider .owl-item.active .hs-item p {
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}

.hero-slider .owl-item.active .hs-item .site-btn {
	-webkit-transition: all 0.5s ease 0.8s;
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}

.hero-slider .owl-item.active .hs-item .offer-card {
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 0.5s ease 1s;
	-webkit-transition: all 0.5s ease 1s;
	-o-transition: all 0.5s ease 1s;
	transition: all 0.5s ease 1s;
}

.slide-num-holder {
	float: right;
	z-index: 1;
	color: #fff;
	position: relative;
	font-size: 24px;
	font-weight: 700;
	position: relative;
	margin-top: -22px;
}

.slide-num-holder span:first-child {
	margin-right: 41px;
}

.slide-num-holder:after {
	position: absolute;
	content: "";
	height: 30px;
	width: 1px;
	background: #fff;
	left: 50%;
	top: 0;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
}

/* ------------------
  Features section
---------------------*/

.feature {
	text-align: center;
	background: #f8f8f8;
	height: 100%;
}

.feature:nth-child(2) {
	background: #4169E1;
}

.feature:nth-child(2) h2 {
	color: #fff;
}

.feature .feature-inner {
	padding: 20px 25px;
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
}

.feature .feature-icon {
	display: inline-block;
	margin-right: 15px;
}

.feature h2 {
	font-size: 24px;
	text-transform: uppercase;
	display: inline-block;
}

/* ----------------------
  Latest product section
------------------------*/

.top-letest-product-section {
	padding-top: 70px;
	padding-bottom: 60px;
}

.top-letest-product-section .section-title {
	margin-bottom: 70px;
}

.product-slider .owl-nav {
	position: absolute;
	top: calc(50% - 60px);
	width: 100%;
	left: 0;
}

.product-slider .owl-nav button.owl-next,
.product-slider .owl-nav button.owl-prev {
	color: #a4a4a4;
	font-size: 42px;
	position: relative;
}

.product-slider .owl-nav button.owl-next {
	float: right;
	right: -92px;
}

.product-slider .owl-nav button.owl-prev {
	float: left;
	left: -92px;
}

.product-item .pi-pic {
	position: relative;
	display: block;
}

.product-item .tag-new,
.product-item .tag-sale {
	position: absolute;
	right: 16px;
	top: 14px;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	background: #50e550;
	line-height: 1;
	text-transform: uppercase;
	padding: 5px 9px 1px;
	border-radius: 15px;
	width: 42px;
}

.product-item .tag-sale {
	text-align: center;
	padding: 5px 0px 1px;
	min-width: 65px;
	background: #4169E1;
}

.product-item .pi-links {
	width: 100%;
	position: absolute;
	right: 0;
	bottom: 18px;
	z-index: 9;
	padding-right: 15px;
	text-align: right;
}

.product-item .pi-links a {
	display: inline-table;
	width: 36px;
	height: 36px;
	background: #fff;
	border-radius: 60px;
	font-size: 18px;
	line-height: 18px;
	padding-top: 9px;
	overflow: hidden;
	color: #000;
	position: relative;
	-webkit-box-shadow: 1px 0 32px rgba(0, 0, 0, 0.2);
	box-shadow: 1px 0 32px rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	text-align: center;
}

.product-item .pi-links a i {
	display: inline-block;
	color: #000;
}

.product-item .pi-links a.add-card {
	padding-top: 8px;
}

.product-item .pi-links a.add-card span {
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	position: absolute;
	right: 19px;
	top: 20px;
	opacity: 0;
}

.product-item .pi-links a.add-card:hover {
	width: 148px;
	padding: 8px 18px 0;
	text-align: left;
}

.product-item .pi-links a.add-card:hover span {
	opacity: 1;
	top: 10px;
	-webkit-transition: all 0.4s ease 0.3s;
	-o-transition: all 0.4s ease 0.3s;
	transition: all 0.4s ease 0.3s;
}

.product-item .pi-text {
	padding-top: 22px;
	height: 87px;
}

.product-item .pi-text h6 {
	float: right;
	padding-left: 40px;
	overflow: hidden;
	font-weight: 700;
	color: #111111;
}

.product-item .pi-text p {
	font-size: 16px;
	color: #111111;
	margin-bottom: 0;
}

.risco-oferta {
	text-decoration: line-through;
}

/* -----------------------
  Product filter section
-------------------------*/

.product-filter-section {
	padding-bottom: 60px;
}

.product-filter-section .section-title {
	margin-bottom: 70px;
}

.product-filter-menu {
	list-style: none;
	margin: 0 -10px;
	padding-bottom: 15px;
}

.product-filter-menu li {
	margin: 0 10px 10px;
	display: inline-block;
}

.product-filter-menu li a {
	color: #111111;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	background: #ebebeb;
	display: block;
	width: 100%;
	padding: 10px 34px;
	border-radius: 31px;
}

/* ----------------
  Banner section
---------------------*/

.banner {
	padding: 50px 34px 47px;
	position: relative;
	margin-bottom: 70px;
}

.banner .tag-new {
	position: absolute;
	right: 26px;
	top: 27px;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	background: #50e550;
	line-height: 1;
	text-transform: uppercase;
	padding: 7px 16px 1px;
	border-radius: 80px;
}

.banner span {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 3px;
	margin-bottom: 5px;
	display: block;
}

.banner h2 {
	font-size: 48px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px;
	color: #282828;
}

/* ----------------
  Footer section
---------------------*/

.footer-section {
	background-color: rgba(0, 19, 89, 0.89);
	padding-top: 60px;
}

.footer-logo {
	padding-bottom: 60px;
}

.footer-widget {
	margin-bottom: 70px;
	overflow: hidden;
}

.footer-widget h2 {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 45px;
}

.footer-widget p {
	color: #fff;
	line-height: 1.0;
}

.footer-widget.about-widget p {
	margin-bottom: 50px;
	letter-spacing: -0.01em;
}

.footer-widget ul {
	list-style: none;
	float: left;
	margin-right: 37px;
}

.footer-widget ul:last-child {
	margin-right: 0;
}

.footer-widget ul li a {
	display: inline-block;
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	color: #fff;
	margin-bottom: 6px;
}

.footer-widget ul li a:after {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	left: 0;
	top: 8px;
	border: 1px solid red;
	border-radius: 50%;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.footer-widget ul li a:hover {
	color: #fff;
}

.footer-widget ul li a:hover:after {
	width: 7px;
	height: 7px;
	top: 6px;
	background: red;
}

.contact-widget .con-info span {
	float: left;
	color: red;
	margin-right: 15px;
	overflow: hidden;
	line-height: 1.0;
}

.social-links-warp {
	border-top: 2px solid #3b3535;
	padding: 46px 0;
	width: 100%;
}

.social-links a {
	margin-right: 60px;
	display: inline-block;
}

.social-links a:last-child {
	margin-right: 0;
}

.social-links a i {
	font-size: 30px;
	color: #d7d7d7;
	float: left;
	margin-right: 19px;
	overflow: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.social-links a span {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	padding-top: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.social-links a.instagram:hover i {
	color: #2F5D84;
}

.social-links a.google-plus:hover i {
	color: #E04B37;
}

.social-links a.twitter:hover i {
	color: #5abed6;
}

.social-links a.pinterest:hover i {
	color: #CD212D;
}

.social-links a.facebook:hover i {
	color: #39599F;
}

.social-links a.whatsapp:hover i {
	color: #34af23;
}

.social-links a.youtube:hover i {
	color: #D12227;
}

.social-links a.tumblr:hover i {
	color: #37475E;
}

.social-links a:hover span {
	color: #fff;
}

/* --------------
  Other Pages
------------------*/

.page-top-info {
	background: #f8f7f7;
	padding: 60px 0 70px;
}

.page-top-info h4 {
	color: #414141;
	font-weight: 700;
	text-transform: uppercase;
}

.site-pagination {
	font-size: 14px;
	font-weight: 600;
	color: #414141;
}

.site-pagination a {
	display: inline-block;
	font-size: 14px;
	color: #414141;
}

/* --------------
  Category page
------------------*/

.filter-widget {
	margin-bottom: 100px;
}

.filter-widget .fw-title {
	font-size: 18px;
	font-weight: 700;
	color: #414141;
	text-transform: uppercase;
	margin-bottom: 45px;
}

.category-menu {
	list-style: none;
}

.category-menu li a {
	display: block;
	position: relative;
	font-size: 12px;
	color: #414141;
	border-bottom: 1px solid #ebebeb;
	padding: 12px 0 5px 20px;
}

.category-menu li a span {
	float: right;
}

.category-menu li a:after {
	position: absolute;
	content: "";
	width: 9px;
	height: 9px;
	left: 0;
	top: 13px;
	border: 1px solid #4169E1;
	border-radius: 50%;
}

.category-menu li a:hover {
	color: #4169E1;
}

.category-menu li a:hover:after {
	background: #4169E1;
}

.category-menu li a:last-child a {
	margin-bottom: 0;
}

.category-menu li .sub-menu {
	list-style: none;
	overflow: hidden;
	height: 0;
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	opacity: 0;
	-webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
	transition: opacity 0.4s, -webkit-transform 0.4s;
	-o-transition: transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

.category-menu li .sub-menu li a {
	padding-left: 45px;
}

.category-menu li:hover>a {
	color: #4169E1;
}

.category-menu li.active>.sub-menu {
	display: block;
	height: auto;
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.price-range-wrap .price-range {
	border-radius: 0;
	margin-right: 13px;
	margin-bottom: 28px;
}

.price-range-wrap .price-range.ui-widget-content {
	border: none;
	background: #ebebeb;
	height: 2px;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-range {
	background: #ebebeb;
	border-radius: 0;
}

.price-range-wrap .price-range .ui-slider-range.ui-corner-all.ui-widget-header:last-child {
	background: #414141;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
	border: none;
	background: #414141;
	height: 14px;
	width: 14px;
	outline: none;
	top: -6px;
	cursor: ew-resize;
	margin-left: 0;
	border-radius: 0;
	border-radius: 20px;
}

.price-range-wrap .price-range .ui-slider-handle.ui-corner-all.ui-state-default span {
	position: absolute;
	font-size: 14px;
	top: 35px;
}

.price-range-wrap .range-slider {
	color: #444444;
	margin-top: 22px;
}

.price-range-wrap {
	border-bottom: 2px solid #ebebeb;
	padding-bottom: 40px;
	margin-bottom: 50px;
}

.price-range-wrap h4 {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	color: #414141;
	margin-bottom: 45px;
}

.price-range-wrap .range-slider .price-input input {
	color: #444444;
	border: none;
	outline: none;
	max-width: 80px;
	pointer-events: none;
}

.price-range-wrap .range-slider .price-input input:nth-child(1) {
	float: left;
}

.price-range-wrap .range-slider .price-input input:nth-child(2) {
	float: right;
}

.fw-color-choose,
.fw-size-choose {
	border-bottom: 2px solid #ebebeb;
	padding-bottom: 40px;
	margin-bottom: 50px;
}

.fw-color-choose .cs-item {
	display: inline-block;
	position: relative;
	margin-right: 14px;
}

.fw-color-choose .cs-item:last-child {
	margin-right: 0;
}

.fw-color-choose label {
	width: 26px;
	height: 26px;
	border-radius: 50px;
	background: #333;
	position: relative;
	cursor: pointer;
}

.fw-color-choose label.cs-gray {
	background: #d7d7d7;
}

.fw-color-choose label.cs-orange {
	background: #6f91ff;
}

.fw-color-choose label.cs-yollow {
	background: #6f91ff;
}

.fw-color-choose label.cs-green {
	background: #8fc99c;
}

.fw-color-choose label.cs-purple {
	background: #bc83b1;
}

.fw-color-choose label.cs-blue {
	background: #9ee7f4;
}

.fw-color-choose label span {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 45px;
	font-size: 11px;
	color: #414141;
}

.fw-color-choose input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.fw-color-choose input[type=radio]:checked+label {
	-webkit-box-shadow: 0 0 0 2px #4169E1;
	box-shadow: 0 0 0 2px #4169E1;
}

.fw-color-choose input[type=radio]:checked+label span {
	color: #b09d81;
}

.fw-size-choose .sc-item {
	display: inline-block;
	position: relative;
	margin-right: 5px;
}

.fw-size-choose label {
	display: inline-block;
	height: 30px;
	min-width: 30px;
	text-align: center;
	font-size: 14px;
	color: #414141;
	font-weight: 500;
	cursor: pointer;
	border-radius: 50px;
	padding: 7px 6px 0;
}

.fw-size-choose input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.fw-size-choose input[type=radio]:checked+label {
	background: #4169E1;
	color: #fff;
}



/* --------------
  Product page
------------------*/

.product-details {
	padding-top: 10px;
}

.product__details__pic__item {
	margin-bottom: 20px;
}

.product__details__pic__item img {
	min-width: 100%;
	max-height: 400px;
	object-fit: contain;
}

.product__details__pic__slider img {
	cursor: pointer;
}

.product__details__pic__slider.owl-carousel .owl-item img {
	width: auto;
	max-height: 150px;
	object-fit: contain;
}

.product__details__text h3 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 16px;
}

.product__details__text .product__details__rating {
	font-size: 14px;
	margin-bottom: 12px;
}

.product__details__text .product__details__rating i {
	margin-right: -2px;
	color: #EDBB0E;
}

.product__details__text .product__details__rating span {
	color: #dd2222;
	margin-left: 4px;
}

.product__details__text .product__details__price {
	font-size: 30px;
	color: #dd2222;
	font-weight: 600;
	margin-bottom: 15px;
}

.product__details__text p {
	margin-bottom: 45px;
}

.product__details__text .primary-btn {
	padding: 16px 28px 14px;
	margin-right: 6px;
	margin-bottom: 5px;
}

.product__details__text .heart-icon {
	display: inline-block;
	font-size: 16px;
	color: #6f6f6f;
	padding: 13px 16px 13px;
	background: #f5f5f5;
}

.product__details__text ul {
	border-top: 1px solid #ebebeb;
	padding-top: 40px;
	margin-top: 50px;
}

.product__details__text ul li {
	font-size: 16px;
	color: #1c1c1c;
	list-style: none;
	line-height: 36px;
}

.product__details__text ul li b {
	font-weight: 700;
	width: 170px;
	display: inline-block;
}

.product__details__text ul li span samp {
	color: #dd2222;
}

.product__details__text ul li .share {
	display: inline-block;
}

.product__details__text ul li .share a {
	display: inline-block;
	font-size: 15px;
	color: #1c1c1c;
	margin-right: 25px;
}

.product__details__text ul li .share a:last-child {
	margin-right: 0;
}

.product__details__quantity {
	display: flex;
	margin-right: 6px;
}

.product__details__quantity .botao-comprar{
	text-align: right;
	margin-left: 20px;
}


.product__details__tab {
	padding-top: 85px;
}

.product__details__tab .nav-tabs {
	border-bottom: none;
	justify-content: center;
	position: relative;
}

.product__details__tab .nav-tabs:before {
	position: absolute;
	left: 0;
	top: 12px;
	height: 1px;
	width: 320px;
	background: #ebebeb;
	content: "";
}

.product__details__tab .nav-tabs:after {
	position: absolute;
	right: 0;
	top: 12px;
	height: 1px;
	width: 320px;
	background: #ebebeb;
	content: "";
}

.product__details__tab .nav-tabs li {
	margin-bottom: 0;
	margin-right: 65px;
}

.product__details__tab .nav-tabs li:last-child {
	margin-right: 0;
}

.product__details__tab .nav-tabs li a {
	font-size: 16px;
	color: #999999;
	font-weight: 700;
	border: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0;
}

.product__details__tab .product__details__tab__desc {
	padding-top: 44px;
}

.product__details__tab .product__details__tab__desc h6 {
	font-weight: 700;
	color: #333333;
	margin-bottom: 26px;
}

.product__details__tab .product__details__tab__desc p {
	color: #666666;
}

/* --------------
  Assinatura page
------------------*/

.descricao-plano  {
	margin-top: -60px;
}

.body-planos {
	margin-top: 10px;
}

.price-planos {
	color: #FA8072;
	margin-right: 50px;
	margin-top: -20px;
}

.price-planos .number-price {
	font-size: 40px;
}

.lista-produtos-plano {
	color: #828282;
	font-size: 20px;
}

.btn-plano {
	margin-top: 20px;
}

.btn-assinar {
	width: 80%;
}

.btn-assinar button {
	font-size: 25px;
	font-weight: bold;
	background-color: #25d366;
}

.planos_detalhes .observacao-planos {
	margin-left: 15px;
	margin-top: -10px;

}

.planos_detalhes .observacao-planos li {
	font-size: 20px;
	line-height: 36px;
	list-style: square;
	color: #989898;
	margin-top: -5px;
}

.planos_detalhes p {
	margin-top: 10px;
	color: #989898;
	font-size: 20px;
}

.div-botoes-assinaturas {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 500px;
}
.div-botoes-assinaturas .btn-login-assinatura {

}

.btn-msg-error {
	color: red;
	font-weight: bold;
	background-color: rgba(252, 149, 149, 0.8);
	border: 2px solid #fa7474;
	border-radius: 5px;
	padding: 10px;
	text-align: center;
	width: 400px;
}

.btn-comprar-assinatura {
	width: 400px;
}



	/*---------------------
      Shop Details
    -----------------------*/

.related-product {
	padding-bottom: 30px;
}

.related__product__title {
	margin-bottom: 70px;
}



/* ----------------
  Cart page
---------------------*/

.scrollbar {
	margin: 80px auto 0;
	width: 100%;
	height: 7px;
	line-height: 0;
	background: #ececec;
	overflow: hidden;
}

.scrollbar .handle {
	width: 100px;
	height: 100%;
	background: #fff;
	cursor: pointer;
}

.scrollbar .handle .mousearea {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 7px;
	background: #b09d81;
	border-radius: 30px;
}

.cart-table {
	padding: 40px 34px 0;
	background: #f0f0f0;
	border-radius: 27px;
	overflow: hidden;
}

.cart-table h3 {
	font-weight: 700;
	margin-bottom: 37px;
	color: #000;
}

.cart-table table {
	width: 100%;
	margin-bottom: 17px;
}

.cart-table table tr th {
	font-size: 12px;
	font-weight: 400;
	color: #414141;
	text-align: center;
	padding-bottom: 25px;
}

.cart-table table tr th.product-th {
	text-align: left;
	width: 45%;
}


.cart-table table tr th.quy-th {
	width: 15%;
	text-align: center;
}
.cart-table table tr th.total-th {
	width: 20%;
	text-align: center;
}

.cart-table .product-col {
	display: table;
	margin-bottom: 19px;
}

.cart-table .product-col img {
	display: table-cell;
	vertical-align: middle;
	float: left;
	width: 73px;
}

.cart-table .product-col .pc-title {
	display: table-cell;
	vertical-align: middle;
}

.cart-table .product-col .pc-title h4 {
	font-size: 16px;
	color: #414141;
	font-weight: 700;
	margin-bottom: 3px;
}

.cart-table .product-col .pc-title p {
	margin-bottom: 0;
	font-size: 16px;
	color: #414141;
}


.cart-table .quy-col .quant {
	text-align: center;
	width: 80%;
}


.cart-table .size-col,
.cart-table .total-col {
	text-align: center;
}

.cart-table .size-col h4,
.cart-table .total-col h4 {
	font-size: 18px;
	color: #414141;
	font-weight: 400;
	font-weight: bold;
}


.cart-table .total-cost {
	background-color: rgba(0, 19, 89, 0.89);
	margin: 0 -34px;
	text-align: right;
	padding: 22px 0;
	padding-right: 50px;
}

.cart-table .total-cost h6 {
	line-height: 1;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.cart-table .total-cost h6 span {
	margin-left: 38px;
}

.table-principal th {
	background: #007bff !important;
}

.th-produto{
	width: 55%;
}

.th-quant{
	width: 10%;
}

.th-preco{
	width: 15%;
}

.th-incluir{
	width: 10%;
}

.td-produto .oferta {
	vertical-align: top;
	text-align: center;
	background:#e74c3c;
	color: #F0F5FF;
	position: absolute;
	top: 40px;
	right: 100%;
	line-height: 40px;
	height: 40px;
	width: 40px;
	font-size: 10px;
	border-radius: 100%;
	padding: 0 2px;
	margin-right: -40px;
}

.td-quant .quant {
	text-align: center;
	width: 80%;
}


.card-right .site-btn {
	margin-bottom: 14px;
	width: 100%;
	min-height: 57px;
	padding: 23px 47px 14px;
}

.card-right .troco,
.card-right .buscarCep {
	width: 50%;
	height: 45px;
	border: 2px solid #f0f0f0;
	padding-left: 10px;
	font-size: 16px;
	border-radius: 80px;
}

.promo-code-form {
	position: relative;
	margin-bottom: 14px;
}

.promo-code-form input {
	width: 100%;
	height: 58px;
	border: 2px solid #f0f0f0;
	padding-left: 24px;
	padding-right: 100px;
	font-size: 16px;
	border-radius: 80px;
}

.promo-code-form button {
	position: absolute;
	right: 24px;
	top: 0;
	height: 100%;
	background-color: transparent;
	border: none;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	color: #4169E1;
	cursor: pointer;
}

/* ----------------
  Pagina inicial foto
---------------------*/

.card {
	margin: 5px;
}

.card label {
	line-height: 60px;
	vertical-align: top;
	text-align: center;
	background:#e74c3c;
	color: #F0F5FF;
	position: absolute;
	top: -5px;
	left: 100%;
	height: 60px;
	width: 60px;
	font-size: 15px;
	border-radius: 100%;
	padding: 0 2px;
	margin-left: -55px;



}


.card-img-top {
	max-height: 100%;
	width: 400px;
	height: 300px;
	object-fit: contain;
}

.card .list-group-item span {
	line-height: 45px;
	font-size: 18px;
	font-weight: bold;
	color: #e74c3c;
}

.card .list-group-item h5 {
	color: #e74c3c;
}

.card .card-body {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card .card-body p {
	font-size: 12px;
}

.quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.quantity .pro-qty {
	width: 100%;
	height: 100%;
	border: 1px solid #ddd;
	padding: 0 6px;
	border-radius: 40px;
	float: left;
	display: flex;
	align-items: center;
}

.quantity .pro-qty .qtybtn {
	width: 30px;
	border: none;
	background-color: transparent;
	border-radius: 100%;
	height: 30px;
	line-height: 1;
	font-size: 30px;
	padding: 0;
	display: block;
	float: left;
	color: #bfbfbf;
}

.quantity .pro-qty .qtybtn:hover{
	cursor: pointer;
	color: rgba(0, 19, 89, 0.89);
}

.quantity .pro-qty input {
	width: calc(100% - 60px);
	float: left;
	border: none;
	height: 36px;
	line-height: 40px;
	padding: 0;
	font-size: 14px;
	text-align: center;
	background-color: transparent;
}

.card-produto{
	transition: 0.3s;
	margin-bottom: 15px;
}

.card-produto:hover{
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

.card-produto .descricao-produto{
	overflow: hidden;
	align-items: baseline;
	padding: 5px;
	height: 60px;
	font-weight: bold;
}
.card-produto .descricao-produto p{
	font-size: 12px;
	margin: 0;
	text-transform: uppercase;
}
.card-produto .preco-produto{
	padding: 2px;
	text-align: center;
}
.grupo-quantidade{
	display: flex;
	justify-content: center;
}

.grupo-quantidade .quantity{
	width: calc(100% - 100px);
}

.grupo-quantidade .botao-comprar{
	text-align: right;
	margin-left: 20px;
}

/* Página pedido */

.titulo-bloco-form{
	font-size: 26px;
	font-weight: normal;
	margin-bottom: 15px;
}

.card.card-form .card-body{
	height: 375px;
	display: block;
	overflow:auto;
}

.card.card-form .card-body p{
	line-height: 10px;
	font-size: 14px;
}

.card.card-form .card-body .card-title{
	margin-bottom: 0.25rem;
	font-size: 16px;
}

.card .wrap-img-produto{
	border: 1px solid rgba(0,0,0,.125);
	border-radius: 3px;
	margin-bottom: 1rem;
	overflow: hidden;
}

/* Página conclusao pedido */

.msgPedido{
	align-items: center;
	justify-content: center;
	padding: 10px;
	text-align: center;
}

.msgPedido h1{
	font-size: 100px;
	font-style: italic;
	color: #34af23;
}

.msgPedido p{
	font-size: 30px;
	color: #000;
}

.msgPedido #btn-copiado-sucesso {
	display: none;

}
.btn-copiado-sucessoModal {
	display: none;
}

.btn-navegar {
	margin-top: 30px;
}
.btn-navegar a {
	text-decoration: none;
	color: white;
}

.msgPix {
	width: 80%;
	background-color: #F5F5F5;
	margin-left: 150px;
	display: flex;
	justify-content: center;
}

.msgPix .msgPixHeader  {
	margin-top: 80px;
	margin-left: 30px;
}

.msgPix .msgPixHeader p  {
	font-size: 16px;
}

.msgPix .msgPixHeader .logoPix {
	width: 50px;
	margin-top: -20px;
}



.msgPix .msgPixHeader .textPix  {
	margin-top: -50px;
}

/* Modal do PIX */

.msgPixModal {
	width: 100%;
	background-color: #F5F5F5;
	display: flex;
	justify-content: center;
}
.msgPixModal .msgPixHeader .logoPix {
	width: 30px;
	margin-top: -5px;
	margin-left: 5px;
}
.msgPixModal .msgPixHeader .textPixModal {
	margin-top: 20px;
}

.msgPixModal .msgPixHeader p {
	margin-left: 10px;
}

.loadingPix {
	justify-content: center;
	font-size: 50px;
	margin-left: 400px;
	display: none;
}


/* ----------------
  Checkout Page
---------------------*/

.checkout-form .cf-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	border-radius: 50px;
	background: #3b3b3b;
	padding: 21px 29px 20px;
	margin-bottom: 66px;
}

.checkout-form p {
	font-size: 16px;
	color: #414141;
}

.checkout-form h4 {
	font-size: 18px;
	color: #414141;
}

.checkout-form input[type=text] {
	width: 100%;
	height: 44px;
	border: none;
	padding: 0 18px;
	background: #f0f0f0;
	border-radius: 40px;
	margin-bottom: 20px;
	font-size: 14px;
}

.checkout-form .address-inputs {
	margin-bottom: 54px;
}

.address-rb {
	text-align: right;
	margin-bottom: 30px;
}

.address-rb .cfr-item {
	display: inline-block;
}

.cf-radio-btns .cfr-item {
	margin-bottom: 15px;
}

.cf-radio-btns label {
	display: block;
	font-size: 16px;
	color: #414141;
	margin-bottom: 0;
	padding-left: 30px;
	position: relative;
	cursor: pointer;
}

.cf-radio-btns label:after {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	left: 4px;
	top: 8px;
	background: #414141;
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.cf-radio-btns label:before {
	position: absolute;
	content: "";
	width: 13px;
	height: 13px;
	left: 0;
	top: 4px;
	border: 2px solid #e1e1e1;
	border-radius: 40px;
}

.cf-radio-btns input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.cf-radio-btns input[type=radio]:checked+label:after {
	opacity: 1;
}

.shipping-btns {
	margin-bottom: 50px;
}

.shipping-btns .cf-radio-btns label {
	font-size: 18px;
	font-weight: 600;
	padding-left: 37px;
}

.payment-list {
	list-style: none;
	margin-bottom: 40px;
}

.payment-list li {
	font-size: 18px;
	font-weight: 600;
	color: #414141;
	margin-bottom: 20px;
}

.payment-list li a,
.payment-list li span {
	padding-left: 40px;
}

.submit-order-btn {
	width: 100%;
	min-height: 58px;
}

.checkout-cart {
	background: #f0f0f0;
	padding: 40px 24px 30px;
	border-radius: 25px;
}

.checkout-cart h3 {
	margin-bottom: 30px;
}

.checkout-cart .product-list {
	list-style: none;
}

.checkout-cart .product-list li {
	overflow: hidden;
	display: block;
	margin-bottom: 29px;
}

.checkout-cart .product-list .pl-thumb {
	float: left;
	overflow: hidden;
	margin-right: 22px;
	width: 99px;
}

.checkout-cart .product-list .pl-thumb img {
	min-width: 100%;
}

.checkout-cart .product-list h6 {
	font-weight: 700;
	color: #414141;
	padding-top: 15px;
	margin-bottom: 5px;
}

.checkout-cart .product-list p {
	font-size: 16px;
	margin-bottom: 0;
}

.checkout-cart .price-list {
	padding-left: 17px;
	padding-right: 5px;
	list-style: none;
}

.checkout-cart .price-list li {
	overflow: hidden;
	display: block;
	font-size: 18px;
	color: #414141;
	margin-bottom: 10px;
}

.checkout-cart .price-list li span {
	float: right;
	width: 60px;
	text-align: left;
}

.checkout-cart .price-list li.total {
	padding-top: 35px;
	font-weight: 700;
}

/* ----------------
  Contact Page
---------------------*/

.contact-section {
	padding-top: 80px;
	padding-bottom: 0;
	position: relative;
}

.contact-info h3 {
	margin-bottom: 50px;
}

.contact-social {
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 85px;
	padding-top: 20px;
}

.contact-social a {
	display: -ms-inline-flex;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 32px;
	height: 32px;
	background: #f0f0f0;
	color: #414141;
	font-size: 14px;
	border-radius: 50%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 12px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.contact-social a:hover {
	color: #fff;
	background: #4169E1;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	height: 44px;
	border: none;
	padding: 0 18px;
	background: #f0f0f0;
	border-radius: 40px;
	margin-bottom: 17px;
	font-size: 14px;
}

.contact-form textarea {
	padding-top: 16px;
	border-radius: 18px;
	height: 175px;
	margin-bottom: 32px;
}

.map {
	position: absolute;
	width: calc(50% - 15px);
	height: 100%;
	right: 0;
	top: 0;
	background: #ddd;
}

.map iframe {
	width: 100%;
	height: 100%;
}


/* ----------------
 Adm
---------------------*/

.page-login {
	height: 100%;
	padding: 20px 0px 20px;
	display: flex;
	align-items: center;
	justify-content: center;

}
.page-login .wrap-form-login {
	width: 100%;
	max-width: 500px;
	background-color: #F5F5F5;
	padding: 30px 40px 30px;
	margin: 0 auto;
	border-radius: 0 0 4px 4px;
	position: relative;
	text-align: center;
}
.page-login .wrap-form-login .title-box-conteudo {
	margin-bottom: 15px;
}
.page-login .wrap-form-login .title-box-conteudo i {
	color: #ffc107;
}
.page-login .wrap-form-login .btn-login {
	margin-top: 20px;
	width: 100%;
	position: relative;
}
.page-login .wrap-form-login .input-user,
.page-login .wrap-form-login .input-password {
	position: relative;
}
.page-login .wrap-form-login .input-user input,
.page-login .wrap-form-login .input-password input {
	padding-left: 55px;
}
.page-login .wrap-form-login .input-user::before,
.page-login .wrap-form-login .input-password::before {
	display: block;
	font-family: "FontAwesome";
	font-size: 20px;
	line-height: 38px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #373435;
	width: 40px;
	height: 100%;
	text-align: center;
	color: #ecf0f1;
	border-radius: 0.25rem 0 0 0.25rem;
}
.page-login .wrap-form-login .input-user::before {
	content: "";
}
.page-login .wrap-form-login .input-password::before {
	content: "";
}
.page-login .logo {
	width: 120px;
	height: 120px;
	background-color: #fff;
	border-radius: 100%;
	position: absolute;
	top: -60px;
	left: 50%;
	margin-left: -60px;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-login .info-nome-empresa {
	margin: 20px auto 30px;
	display: block;
}

.page-tabs,
.page-cadastro {
	height: 100%;
	padding: 20px 0px 20px;
	display: flex;
	align-items: center;
	justify-content: center;

}
.page-cadastro .wrap-form-cadastro {
	width: 100%;
	max-width: 800px;
	background-color: #F5F5F5;
	padding: 30px 40px 30px;
	margin: 0 auto;
	border-radius: 0 0 4px 4px;
	position: relative;
	text-align: left;
}
.page-cadastro .wrap-form-cadastro .title-box-conteudo {
	text-align: center;
	margin-bottom: 15px;
}

.page-cadastro .wrap-form-cadastro .title-box-conteudo i {
	color: #ffc107;
}

.table {
	width: 100%;
	position: relative;
}
.table td,
.table th {
	vertical-align: middle;
	padding: 6px;
}
.table thead th {
	vertical-align: middle;
}
.table .btn {
	color: #fff;
}
.table .grupo-botoes-acao {
	display: flex;
	justify-content: center;
}
.table .grupo-botoes-acao .btn ~ .btn {
	margin-left: 5px;
}
.table .grupo-botoes-acao.flutuar {
	position: absolute;
	top: auto;
}

.table .quantity{
	width: 100px;
}

.table .td-produto{
	padding-left: 50px;
	padding-right: 50px;
}

.ocultar {
	display: none;
}

/* ----------------
  Loading
---------------------*/

.Loading {
	background-color: rgba(0, 0, 0, 0.35);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5000;
}
.Loading .LoadingContent {
	left: 50%;
	max-width: 480px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
.Loading .LoadingContent span {
	color: #fff;
	cursor: default;
	display: block;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 1);
}

.Loading .LoadingContent .ProgressText {
	font-size: 1.25rem;
}

.Loading .LoadingContent .progress {
	font-size: 1rem;
	height: 2rem;
}

.LoadingComponent {
	background-color: rgba(0, 0, 0, 0.35);
	display: table;
	position: absolute;
	z-index: 1;
}
.LoadingComponent:after {
	content: 'Processando pagamento aguarde...';
	color: #fff;
	display: table-cell;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
	vertical-align: middle;
}
.termos {
	display: flex;
	margin-top: 30px;
}
.termos label {
	margin-left: 5px;
	margin-top: -5px;
}

.termos input {
	min-width: 15px;
	min-height: 15px;
	margin-right: 5px;
}

.confirmacao {
	display:flex;
}

.confirmacao label {
	margin-left: 5px;
	margin-top: -5px;
}

.confirmacao input {
	min-width: 15px;
	min-height: 15px;
	margin-right: 5px;
}





/* ----------------
  Carrossel Novo
---------------------*/

.controls {
	padding-right: 150px;
}


.controls i , #controls i {
	color: white;
	font-size: 2rem;
}

.previous, .next, .previous-carrinho, .next-carrinho  {
	padding: 2px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	border-radius: 50%;
	outline: none;
	transition: 0.7s ease-in-out;
	border: 3px solid white;
	background-color: #1E90FF;
	box-shadow: 0 0 5px #bbb;
}

.previous:hover, .next:hover , .next-carrinho:hover {
	border: 3px solid gray;
}

.previous {
	position: relative;
	top: 250px;
	z-index: 1;
	right: 70px;
}

.next {
	position: relative;
	top: 250px;
	z-index: 1;
	left: 1110px;
}

.next-carrinho {
	position: relative;
	top: 250px;
	z-index: 1;
	left: 1080px;
}

.carrossel-sugestao {
	margin-top: 80px;
}


/* ----------------
  Carrossel
---------------------*/

.titleCarousel {
	color: #000;
	font-size: 26px;
	font-weight: 300;
	text-align: center;
	text-transform: uppercase;
	position: relative;
	margin-top: 30px;
}
.titleCarousel b {
	color: #1E90FF;
}
.titleCarousel::after {
	content: "";
	width: 100px;
	position: absolute;
	margin: 0 auto;
	height: 4px;
	background: #1E90FF;
	left: 0;
	right: 0;
	bottom: -20px;
}

.MultiCarousel {
	float: left;
	overflow: hidden;
	width: 100%;
	position:relative;

}

.MultiCarousel .MultiCarousel-inner {
	transition: 1s ease all;
	float: left;



}
.MultiCarousel .MultiCarousel-inner .item {
	float: left;


}

.MultiCarousel .MultiCarousel-inner .item > div {
	text-align: center;
	background: white;
	color:#666;
	border-radius: 10px;
	z-index: 10;


}


.MultiCarousel .leftLst, .MultiCarousel .rightLst {
	border-radius:50%;
	top:calc(50% - 20px);
	position: absolute;

}
.MultiCarousel .leftLst {
	left:1px;


}
.MultiCarousel .rightLst {
	right: 1px;


}

.MultiCarousel .leftLst.over, .MultiCarousel .rightLst.over {
	pointer-events: none;
	background:#ccc;
}



/* ----------------
  Responsive
---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1175px;
	}
}


@media (max-width: 1350px) {
	.product-slider .owl-nav {
		position: relative;
		left: 0;
		top: 0;
		text-align: center;
		padding-top: 20px;
	}
	.product-slider .owl-nav button.owl-prev,
	.product-slider .owl-nav button.owl-next {
		float: none;
		left: 0;
		right: 0;
		margin: 0 10px;
	}
}

@media only screen and (max-width: 1280px) {
	.next {
		left: 1090px;
	}
	.next-carrinho {
		left: 1060px;
	}
	.previous {
		right: 50px;
	}
}

@media only screen and (max-width: 1250px) {
	.next {
		left: 1070px;
	}
	.next-carrinho {
		left: 1030px;
	}
	.previous {
		right: 30px;
	}
}



@media (max-width: 1199px) {
	.next {
		left: 875px;
	}
	.next-carrinho {
		left: 825px;
	}
	.previous {
		right: 50px;
	}
}

@media (max-width: 1025px) {
	.next {
		left: 855px;
	}
	.previous {
		right: 30px;
	}
}

@media only screen and (max-width: 991px) {
	.wrap-logo{
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 10px auto;
		width: 180px;
		height: 180px;
		border-radius: 100%;
	}

	.wrap-logo:before,
	.wrap-logo:after{
		display: none;
	}
	.next {
		left: 638px;
	}
	.next-carrinho {
		left: 605px;
	}
	.previous {
		right: 50px;
	}

}

@media (max-width: 800px) {
	.next {
		left: 618px;
	}

	.next-carrinho {
		left: 585px;
	}
	.previous {
		right: 30px;
	}
}


@media only screen and (min-width: 768px) {
	.header-fixed .header-section{
		position: fixed;
		top: 0;
		left: 0;
		width: 98.9%;
		z-index: 100;
		background-image: url(../img/bg.jpg);
		background-repeat: repeat;
		box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.5);

	}
	.header-fixed .header-top{
		padding: 0;
	}

	.header-fixed .header-section_main + div{
		margin-top: 130px;
	}

	.header-fixed .wrap-logo{
		padding: 2px 10px;
	}

	.pagination {
		padding-left: 40%;
	}

	/* .header-fixed .site-logo img{
		max-width: 50px;
	} */

	.main-menu li:hover .sub-menu {
		visibility: visible;
		opacity: 1;
		margin-top: 0;
	}

	.main-menu li:hover .sub-menu-marca {
		visibility: visible;
		opacity: 1;
		margin-top: 0;
		display: flex;
	}

	.main-menu li:hover>a {
		color:#fff;
		background-color: red;
		border-radius: 15px;
		-webkit-transition: all 0.4s;
		-o-transition: all 0.4s;
		transition: all 0.4s;
		-webkit-box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
		box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
	}
}


/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.main-menu li a {
		font-size: 10px;
		margin-right: 15px;
	}
	.wrap-logo{
		padding: 20px;
	}
	.hero-slider .slider-nav-warp {
		max-width: 930px;
	}
	.footer-widget ul {
		margin-right: 5px;
	}
	.social-links a {
		margin-right: 20px;
	}
}


@media only screen and (max-width: 767px){
	.wrap-logo{
		max-width: 200px;
		height: auto;
		margin: 5px auto;
	}
	.next {
		left: 460px;
	}
	.next-carrinho {
		left: 430px;
	}
	.previous {
		right: 50px;
	}
}

@media only screen and (max-width: 991px){
	.box-header .container{
		max-width: 100%;
		padding: 0 5px;
	}
	.whatsapp-fixo {
		position:absolute;
		right: 0;
	}
}

/* Tablet :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.wrap-header .box-logo,
	.wrap-header .box-busca,
	.wrap-header .box-controle{
		/* max-width: 100%!important; */
	}

	.header-fixed .main-navbar{
		top: 115px;
	}

	.header-fixed .header-section_main + div{
		margin-top: 250px;
	}

	.wrap-logo{
		width: 100%;
    	height: auto;
	}

	.wrap-logo .site-logo img{
		transition: 0.0s;
	}

	.site-logo {
		margin-bottom: 20px;
	}
	.header-search-form {
		margin-bottom: 15px;
	}
	.user-panel {
		text-align: center;
	}
	.sub-menu {
		text-align: left;
	}
	.main-menu li a {
		font-size: 8px;
		margin-right: 3px;
	}
	.hero-slider .slider-nav-warp {
		max-width: 690px;
	}
	.hero-slider .hs-item .offer-card {
		top: 20px;
	}
	.feature h2 {
		font-size: 18px;
	}
	.product-filter-menu {
		text-align: center;
	}
	.product-filter-menu li {
		margin: 0 5px 10px;
	}
	.social-links {
		text-align: center;
	}
	.social-links a {
		margin-right: 20px;
	}
	.social-links a span {
		display: none;
	}
	.cart-table,
	.checkout-cart,
	.product-thumbs {
		margin-bottom: 50px;
	}
	.map {
		position: relative;
		width: 100%;
		background: #ddd;
		height: 400px;
		margin-top: 70px;
	}
	.card-img-top {
		height: 250px;
	}
	.msgPix {
		margin-left: -1px;
		width: 100%;
	}
	.msgPix .msgPixHeader .logoPix  {
		width: 35px;
	}
	.msgPix .msgPixHeader .textPix {
		font-size: 11px;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.header-section_main{
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 20;
		background-image: url(../img/bg.jpg);
		background-repeat: repeat;
	}

	.header-section_main + div{
		margin-top: 134px;
	}
	.ocultarLogo {
		display:block;
	}

	.faixa-topo{
		display: none;
	}

	.faixa-topo p{
		font-size: 12px;
		margin-bottom: 5px;
	}

	.pagProduto {
		margin-top: 120px;
	}

	.faixa-topo .bt-cadastrar{
		margin-left: 0;
	}

	.bt-menu-mobile{
		display: block;
	}

	.main-navbar{
		background: 007bff;
		box-shadow: 0 5px 5px 0px rgba(0,0,0,0.1);
	}

	.wrap-header{
		display: block;
		position: relative;
		width: 100%;
		height: 156px;
	}

	.wrap-header .box-logo,
	.wrap-header .box-busca,
	.wrap-header .box-buscaGrande,
	.wrap-header .box-controle{
		position: absolute;
		padding-right: 0;
		padding-left: 0;
		max-width: none;
	}

	.wrap-header .box-logo{
		top: 5px;
		left: 50%;
		transform: translateX(-50%);
		width: auto;
	}

	.wrap-logo{
		width: 120px;
    	height: auto;
		padding: 0;
		margin: 0px;
	}


	.wrap-header .box-busca{
		top: 95px;
		left: 0px;
		width: 100%;
		z-index: 10;
	}

	.wrap-header .header-search-form input{
		font-size: 12px;
	}

	.wrap-header .header-search-form button{
		right: 8px!important;
		font-size: 20px;
	}

	.wrap-header .box-controle{
		top: 20px;
		width: calc(100% - 120px);
    	right: 2px;
	}

	.wrap-header .box-controle[data-login="usuario_logado"]{
	    top: 10px;
	}

	.wrap-header .box-controle .user-panel{
		justify-content: flex-end;
	}


	.login-card__texto{
		font-size: 14px;
		color: #fff;
	}

	.shopping-card__texto{
		display: none;
	}

	.user-panel .up-item .login-card.login-card__texto{
		display: none;
	}

	.grupo-area-usuario{
		display: none!important;
		position: relative;
	    border-radius: 25px;
	    width: 50px;
	    height: 50px;
	    background: #E8E8E8;
	    margin-top: -5px;
	    align-items: center;
	    justify-content: center;
	}

	.grupo-area-usuario .login-card i{
		margin-right: 0;
		font-size: 2.2rem!important;
	}

	.grupo-area-usuario:after{
		display: block;
		content: '';
		position: absolute;
		right: 5px;
		top: 20px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 6px 4px 0 4px;
		border-color: #828385 transparent transparent transparent;
	}

	.grupo-area-usuario:hover{
		cursor: pointer;
	}

	.grupo-area-usuario.activo .login-card__texto{
		display: block!important;
	    position: absolute;
	    top: calc(100% + 15px);
	    left: 50%;
	    transform: translateX(-50%);
	    background-color: #9400D3;
	    border-radius: 4px;
	    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
	    width: 200px;
	    padding: 10px;
	    text-align: center;
	    z-index: 10;
	}

	.grupo-area-usuario.activo .box-nome-usuario{
		max-width: none;
	}

	.user-panel .up-item:first-child{
		margin-right: 7px;
	}
	.user-panel .up-item ~ .up-item{
		margin-left: 5px;
	}

	.header-search-form {
		margin-bottom: 15px;
		position: relative;
	}
	.user-panel {
		text-align: center;
	}

	.main-menu.open {
		left: 0;
	}
	.main-menu {
		position: fixed;
		background: #fff;
		left: -280px;
		height: 100vh;
		top: 0;
		width: 280px;
		overflow: hidden;
		z-index: 11;
		transition: 0.5s;
	}

	.main-menu li a{
		color: #2c2c2c;
	}

	.main-menu li:hover>a{
		color: #2c2c2c!important;
		background-color: transparent;
		border-radius: 0;
		box-shadow: none;
	}

	.main-menu .bt-fechar-menu{
		display: block;
	}

	.main-menu .grupo-acesso {
		display: block;
	}

	.main-menu .lista-menu{
		padding: 0 10px 20px;
		margin-top: 10px;
		overflow: auto;
		height: calc(100% - 250px);
		width: 100%;
	}

	.main-menu .lista-menu > li{
		display: block;
		position: relative;
		border-bottom: 1px solid #ccc;
	}

	.main-menu .lista-menu > li.has-submenu > a:after{
		position: absolute;
		top: 16px;
		right: -5px;
		display: block;
		font-family: 'FontAwesome';
		content: '\f105';
		font-size: 14px;
		transition: 0.5s;
	}

	.main-menu .lista-menu > li.has-submenu.open > a:after{
		transform: rotate(90deg);
	}


	.main-menu .sub-menu{
		position: static;
		margin: 0;
		width: 100%;
		box-shadow: none;
		padding: 0;
		display: none;
		visibility: visible;
		opacity: 1;
		transition: none;
	}

	.main-menu .sub-menu.open{
		display: block;
	    opacity: 1;
	    visibility: visible;
	}

	.main-menu .sub-menu-marca{
		position: static;
		opacity: 1;
		padding-top: 0;
		height: 430px;
		width: 100%;
		visibility: visible;
		display: flex;
		margin-top: 0;
		box-shadow: none;
	}

	.main-menu .wrap-sub-menu-marcas{
		display: none;
	}

	.main-menu .has-submenu.open .wrap-sub-menu-marcas{
		display: block;
	}

	/* .main-menu .has-submenu.open .sub-menu-marca{
		position: static;
		opacity: 1;
		padding-top: 0;
		height: 430px;
	} */

	.main-menu .sub-menu-marca .sub-menu-marca-letras{
		border-left: 1px solid #ccc;
	}


	.wrap-banner,
	.page-login,
	.page-tabs,
	.cart-table {
		margin-top: 120px;
	}

	.tabelaProduto {
		padding: 0;
	}

	.grupo-quantidade{
		display: block;
		height: 100px;
	}

	.grupo-quantidade .quantity {
		width: 100%;
	}

	.grupo-quantidade .botao-comprar{
		text-align: center;
		margin-top: 5px;
		margin-left: auto;
	}


	.hero-slider .slider-nav-warp {
		max-width: 510px;
	}
	.hero-slider .hs-item h2 {
		font-size: 50px;
	}
	.hero-slider .hs-item .offer-card {
		display: none;
	}
	.product-filter-menu {
		text-align: center;
	}
	.product-filter-menu li {
		margin: 0 2px 10px;
	}
	.footer-widget ul {
		margin-right: 25px;
	}
	.social-links {
		text-align: center;
	}
	.social-links a {
		margin-right: 15px;
	}
	.social-links a span {
		display: none;
	}

		.card.card-form {
		margin-top: 150px;
	}
	.card.card-form .card-body{
		height: auto;
	}
	.cart-table,
	.checkout-cart,
	.product-thumbs {
		margin-bottom: 50px;
	}

	.cart-table .product-col .pc-title h4 {
		font-size: 10px;
	}

	.cart-table .product-col .pc-title p {
		font-size: 10px;
	}

	.table .td-produto {
		padding-left: 5px;
		padding-right: 5px;
	}

	.th-produto{
		width: 35%;
	}
	.th-preco{
		width: 25%;
	}
	.th-quant {
		width: 25%;
	}
	.th-incluir{
		width: 15%;
	}
	.td-produto {
		font-size: 12px;
	}
	.address-rb {
		text-align: left;
	}
	.map {
		position: relative;
		width: 100%;
		background: #ddd;
		height: 400px;
		margin-top: 70px;
	}

	.msgPedido {
		margin-top: 150px;
	}

	.card-img-top {
		height: 180px;
	}
	.msgPix {
		margin-left: -1px;
		width: 100%;
	}
	.msgPix .msgPixHeader .logoPix  {
		width: 35px;
	}
	.msgPix .msgPixHeader .textPix {
		font-size: 11px;
		margin-top: 40px;
	}
	.msgPixModal .textPixModal {
		font-size: 13px;
	}
	.msgPedidoPix {
		margin-top: -1px;
	}

	.msgPedido .btn-copiar {
		font-size: 13px;
	}
	.msgPedido .btn-copiado-sucessoModal {
		font-size: 13px;
	}

	#myTabContent #home .page-cadastro .wrap-form-cadastro .container-table .table {
		margin-left: -35px;
	}
	#myTabContent #home .page-cadastro .wrap-form-cadastro .container-table .table tr th, td {
		font-size: 9px;
	}


	.descricao-plano  {
		margin-top: 1px;
	}
	.descricao-plano h3  {
		font-size: 20px;
	}

	.body-planos {
		display: flex;
		flex-direction: column;
	}

	.price-planos {
		color: #FA8072;
		margin-right: 5px;
		margin-top: -40px;
	}

	.price-planos .number-price  {
		font-size: 20px;
	}

	.lista-produtos-plano {
		color: #828282;
		font-size: 13px;
		margin-top: 10px;

	}

	.btn-plano {
		margin-top: 5px;
		font-size: 12px;
	}

	.whatsapp-fixo {
		width: 50px;
		height: 50px;
		padding: 0;
		padding-top: 5px;
	}

	.whatsapp-fixo i {
		font-size: 25px;
	}

}

@media only screen and (min-width: 767px) and (max-width: 768px) {

	.descricao-plano  {
		margin-top: -80px;
	}
	.descricao-plano h3  {
		font-size: 20px;
	}

	.body-planos {
		display: flex;
		flex-direction: column;
	}

	.price-planos {
		color: #FA8072;
		margin-right: 5px;
		margin-top: -40px;
	}

	.price-planos .number-price  {
		font-size: 20px;
	}

	.lista-produtos-plano {
		color: #828282;
		font-size: 13px;
		margin-top: 10px;

	}

	.btn-plano {
		margin-top: 5px;
		font-size: 12px;
	}
}


@media only screen and (min-width: 768px) {

	.descricao-plano  {
		margin-top: -40px;
	}
	.descricao-plano h3  {
		font-size: 20px;
	}

	.price-planos {
		color: #FA8072;
		margin-top: -40px;
	}

	.price-planos .number-price  {
		font-size: 25px;
	}

	.lista-produtos-plano {
		color: #828282;
		font-size: 15px;

	}

	.btn-plano {
		margin-top: 5px;
		font-size: 12px;
	}


}

@media (max-width: 620px) {
	.next {
		left: 445px;
	}
	.next-carrinho {
		left: 415px;
	}
	.previous {
		right: 40px;
	}
}


/* Medium Mobile :480px. */

@media only screen and (min-width: 576px) and (max-width: 766px) {
	.hero-slider .slider-nav-warp {
		padding: 0 15px;
	}
	.banner .tag-new {
		position: relative;
		display: inline-block;
		margin-bottom: 18px;
		right: 0;
		top: 0;
	}
}

@media only screen and (max-width: 575px) {
	.next {
		left: 240px;
		top: 490px;
	}
	.next-carrinho {
		left: 220px;
		top: 490px;
	}
	.previous {
		left: 190px;
		top: 490px;
	}
}

@media only screen and (max-width: 560px) {
	.next {
		left: 260px;
		top: 490px;
	}

	.next-carrinho {
		left: 220px;
		top: 490px;
	}

	.previous {
		left: 170px;
		top: 490px;
	}
}

@media only screen and (max-width: 550px) {
	.next {
		left: 250px;
		top: 490px;
	}
	.next-carrinho {
		left: 220px;
		top: 490px;
	}
	.previous {
		left: 170px;
		top: 490px;
	}
}

@media only screen and (max-width: 530px) {
	.next {
		left: 225px;
		top: 490px;
	}
	.next-carrinho {
		left: 200px;
		top: 490px;
	}
	.previous {
		left: 170px;
		top: 490px;
	}
}



@media only screen and (max-width: 520px) {
	.next {
		left: 235px;
		top: 490px;
	}
	.next-carrinho {
		left: 200px;
		top: 490px;
	}
	.previous {
		left: 160px;
		top: 490px;
	}
}

@media only screen and (max-width: 500px) {
	.next {
		left: 210px;
		top: 490px;
	}
	.next-carrinho {
		left: 180px;
		top: 490px;
	}
	.previous {
		left: 160px;
		top: 490px;
	}
}

@media only screen and (max-width: 480px) {
	.next {
		left: 195px;
		top: 490px;
	}
	.next-carrinho {
		left: 165px;
		top: 490px;
	}
	.previous {
		left: 150px;
		top: 490px;
	}
}



/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.hero-slider .slider-nav-warp {
		max-width: 510px;
		padding: 0 15px;
	}
	.hero-slider .hs-item h2 {
		font-size: 35px;
	}
	.hero-slider .hs-item .sb-line {
		margin-bottom: 15px;
	}
	.section-title h2 {
		font-size: 28px;
	}
	.feature h2 {
		font-size: 18px;
	}
	h2 {
		font-size: 18px;
	}
	.banner .tag-new {
		position: relative;
		display: inline-block;
		margin-bottom: 18px;
		right: 0;
		top: 0;
	}
	.social-links {
		text-align: center;
	}
	.social-links a i {
		font-size: 20px;
		margin-right: 0;
	}
	.social-links a span {
		display: none;
	}
	.card-img-top {
		height: 130px;
	}

	.grupo-quantidade{
		height: 85px;
	}
	.grupo-quantidade .botao-comprar .btn-primary{
		font-size: 11px;
	}
	.list-group-item {
		padding: 5px;
	}
	.card-produto .descricao-produto p {
		font-size: 10px;
	}

	#myTabContent #home .page-cadastro .wrap-form-cadastro .container-table .table {
		margin-left: -20px;
	}
	.next {
		left: 195px;
		top: 430px;
	}

	.next-carrinho {
		left: 165px;
		top: 430px;
	}
	.previous {
		left: 150px;
		top: 430px;
	}
}

@media only screen and (max-width: 460px) {
	.next {
		left: 185px;
		top: 430px;
	}
	.next-carrinho {
		left: 155px;
		top: 430px;
	}
	.previous {
		left: 140px;
		top: 430px;
	}
}

@media only screen and (max-width: 440px) {
	.next {
		left: 175px;
		top: 430px;
	}
	.next-carrinho {
		left: 145px;
		top: 430px;
	}
	.previous {
		left: 130px;
		top: 430px;
	}
}

@media only screen and (max-width: 420px) {
	.next {
		left: 165px;
		top: 430px;
	}

	.next-carrinho {
		left: 135px;
		top: 430px;
	}
	.previous {
		left: 120px;
		top: 430px;
	}
}

@media only screen and (max-width: 400px) {
	.next {
		left: 155px;
		top: 430px;
	}
	.next-carrinho {
		left: 125px;
		top: 430px;
	}
	.previous {
		left: 110px;
		top: 430px;
	}
}

@media only screen and (max-width: 380px) {
	.card-img-top {
		height: 100px;
	}
	.card-produto .descricao-produto p {
		font-size: 9px;
	}
	.msgPedido .btn-copiar {
		font-size: 10px;
	}
	.msgPedido .btn-copiado-sucessoModal {
		font-size: 10px;
	}

	#myTabContent #home .page-cadastro .wrap-form-cadastro .container-table .table {
		margin-left: -35px;
	}
	#myTabContent #home .page-cadastro .wrap-form-cadastro .container-table .table tr th, td {
		font-size: 9px;
	}

	.msgPixModal .textPixModal {
		font-size: 9px;
	}

	.next {
		left: 145px;
		top: 400px;
	}

	.next-carrinho {
		left: 115px;
		top: 400px;
	}
	.previous {
		left: 100px;
		top: 400px;
	}
}

@media only screen and (max-width: 375px) {
	.next {
		left: 140px;
		top: 390px;
	}

	.next-carrinho {
		left: 110px;
		top: 390px;
	}
	.previous {
		left: 95px;
		top: 390px;
	}
}


@media only screen and (max-width: 360px) {
	.next {
		left: 150px;
		top: 400px;
	}

	.next-carrinho {
		left: 100px;
		top: 400px;
	}
	.previous {
		left: 95px;
		top: 400px;
	}
}

@media only screen and (max-width: 340px) {
	.next {
		left: 125px;
		top: 400px;
	}

	.next-carrinho {
		left: 95px;
		top: 400px;
	}

	.previous {
		left: 80px;
		top: 400px;
	}
}
@media only screen and (max-width: 320px) {
	.next {
		left: 115px;
		top: 400px;
	}

	.next-carrinho {
		left: 85px;
		top: 400px;
	}

	.previous {
		left: 70px;
		top: 400px;
	}
}

@media only screen and (max-width: 300px) {
	.next {
		left: 105px;
		top: 400px;
	}
	.next-carrinho {
		left: 75px;
		top: 400px;
	}

	.previous {
		left: 60px;
		top: 400px;
	}
}

@media only screen and (max-width: 260px) {
	.next {
		left: 70px;
		top: 400px;
	}

	.next-carrinho {
		left: 60px;
		top: 400px;
	}

	.previous {
		left: 60px;
		top: 400px;
	}
}


