:root {
	font-size: 13px;
}

html,
body {
	background: white;
	font-family: var(--font-family-1);
	font-weight: 300;
	letter-spacing: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	color: var(--black);
	overflow-x: hidden;
}
html.lock,
body.lock,
html.lock_f,
body.lock_f {
	overflow: hidden;
}

body:not(.index) {
	margin-top: 0px;
}

@media(min-width: 768px) {
	:root {
		font-size: 14px;
	}


}

@media(min-width: 992px) {
	:root {
		font-size: 16px;
	}	
}

.input-wrapper input:focus, .input-wrapper input:valid {
    outline: none;
}

.input-wrapper input:-webkit-autofill{
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}


.input-wrapper input:-webkit-autofill,
.input-wrapper input:-webkit-autofill:hover, 
.input-wrapper input:-webkit-autofill:focus, 
.input-wrapper input:-webkit-autofill:active{
	-webkit-background-clip: text;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

a, a:hover, a:focus,
button, button:hover, button:focus {
	transition: all ease-in-out .2s;
	-moz-transition: all ease-in-out .2s;
	-webkit-transition: all ease-in-out .2s;
	text-decoration: none;
	cursor: pointer;
	color: currentColor;
	outline: none;
	box-shadow: none;
}
*:focus {
	outline: none;
	box-shadow: none;
}
*::placeholder, *::-webkit-placeholder {
	color: currentColor;
}
*:-ms-input-placeholder {
	color: currentColor;
}

img[data-src] {
	width: 100%;
}

.container,
.container-fluid {
	position: relative;
	width: 100%;
	padding: 0 20px;
}
.container.container-full {
	max-width: 1260px; /* Layouts' fullscreen */
}

.container.container-xs {
	max-width: 400px;
}

@media(max-width: 767px) {
	.container.ifrm{
		max-width: 100%;
	}
}



@media(min-width: 768px) and (max-width: 1260px) {
	.container.container-full {
		padding-left: 40px;
		padding-right: 40px;
	}

	.container.ifrm{
		max-width: 100%;
	}


}
@media(min-width: 1200px) {
	.container {
		max-width: 1084px; /* 1044 + 40 padding */
	}

	.container.container-sm {
		max-width: 890px; /* 850 + 40 padding */
	}

	.news .template .container.container-sm {
		max-width: 500px; /* 850 + 40 padding */
	}

	.content.news{
		min-height: auto;
	}

	.container.container-full2 {
		max-width: 1320px; /* Layouts' fullscreen */
	}
	.container.container-full3 {
		max-width: 1380px; /* Layouts' fullscreen */
	}
}


img{
	opacity: 1;
	filter: blur(0);
	transition: var(--transition)
}
img.off {
	filter: blur(100%);
}

/*************************************/
/********** BUTTONS / LINKS **********/
/*************************************/

.button,
.button:hover,
.button:focus {
	font-family: var(--font-family-2);
	display: inline-block;
    padding: 11px 15px;
	font-size: 14px;
	font-weight: 300;
    color: #fff;
	letter-spacing: .02em;
	line-height: 1;
	text-transform: uppercase;
    position: relative;
    border: 2px solid transparent;
}
.button::before {
	content: "";
	position: absolute;
	top: -2px;bottom: -2px;
	left: -2px;right: -2px;
	border: 2px solid transparent;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    will-change: transform;
    pointer-events: none;
	
}
.button:hover::before {
	transform: scale(1.05);
}
.button[disabled] {
	opacity: 0.5;
	pointer-events: none;
}

.button.button-sm,
.button.button-sm:hover,
.button.button-sm:focus {
	padding: 12px 25px;
}

.button.button-grey {
	color: #a7a7a7;
}

.button.button-fill span{
	color: var(--black);
}

.button.button-fill.button-green span,
.button.button-fill.button-blue span {
	color: #ffffff;
}

.button > span {
	position: relative;
	z-index: 1;
	font-size: inherit !important;
	/* color: inherit !important; */
	font-style: inherit !important;
	will-change: opacity;
}


@media(min-width: 992px) {
    .button,
	.button:hover,
	.button:focus {
		padding: 25px 40px;
        font-size: 14px;
	}

	.button.button-sm,
	.button.button-sm:hover,
	.button.button-sm:focus {
		font-size: 12px;
	}
}

.button.button-fill::before {
    background-color: #fff;
    border-radius: 24.5px;
}

.button.button-fill.button-green::before {
    background-color: var(--green);
}

.button.button-fill.button-blue::before {
    background-color: var(--blue);
}

.button.button-fill.button-border::before {
    border: 1px solid var(--green);
	background: transparent;
}

.button.button-fill.button-border span{
	color: var(--green);
}

.button.button-fill span {
    line-height: inherit;
    text-transform: initial;
    letter-spacing: inherit;
	will-change: opacity;
}


.button-play {
    display: block;
    padding: 18px;
    position: relative;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.75);
}

.button-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-style: solid;
    border-width: 5.5px 0 5.5px 9px;
    border-color: var(--transparent) var(--transparent) var(--transparent) #ffffff;
}

@media (min-width: 768px) {
    .button.button-fill {
        padding: 15px 29px;
    }

    .button.button-fill::before {
        border-radius: 24.5px;
    }

    .button-play {
        padding: 18px 23px;
    }

    .button-play::before {
        left: 51%;
        border-width: 6.5px 0 5.5px 10px;
    }
}


.link,
.link:hover,
.link:focus {
	display: inline-block;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	color: rgb(var(--primary));
	padding-right: 30px;
}
.link.link-reverse {
	padding-right: 0;
	padding-left: 30px;
}
.link::after {
	content: "";
	width: 16px;
	height: 9px;
	position: absolute;
	top: 0;bottom: 0;
	right: 0;
	margin: auto;
	background-image: url('/assets/img/arrow-green.svg');
	background-size: cover;
	background-position: -18px;
	transition: all .4s ease-in-out;
}
.link.link-reverse::after {
	right: auto;
	left: 0;
	transform: rotate(180deg);
}
.link:hover::after {
	background-position: 16px;
}

/********************************/
/********** TOP HEADER **********/
/********************************/

.top-header{
    background: var(--blue);
    padding: 13px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.top-header > div:first-of-type{
    flex:1;
	text-align: center;
}

.top-header > div:last-of-type{
    display: none;
}

.top-header p{
    font-size: 11px;
    color: var(--white);
    margin-bottom: 0;
    letter-spacing: 1px;
}
.top-header p strong{
    font-weight: bold;
    color:var(--green)
}

.top-header a i{
    color: var(--white);
    transition: var(--transition);
    margin-left: 20px;
    transform: scale(1);
}

.top-header a:hover i{
    transform: scale(1.1);
}
@media(min-width: 768px) {
	.top-header{
		padding: 13px 28px;
	}
    .top-header p{
        font-size: 12px;
    }
	.top-header > div:first-of-type{
		text-align: left;
	}
	.top-header > div:last-of-type{
		display: block;
	}
}

@media(min-width: 992px) {
	.top-header p{
        font-size: 14px;
    }
}

/****************************/
/********** HEADER **********/
/****************************/

header {
	position: relative;
	top: 0;left: 0;
    width: 100vw;
    height: auto;
	background-color: white;
	font-size: 0;
	z-index: 10;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}
header.fixed {
	position: fixed;
}
header.fixed + .content {
	margin-top: 98px;
}
header.open {
	z-index: 12;
	transition: none;
}

header::before {
    content: "";
    position: fixed;
    top: 0;bottom: 0;
    left: 0;right: 0;
    background-color: var(--black);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    -webkit-transition: var(--transition);
}
header.open::before {
    opacity: .75;
    pointer-events: auto;
}



header .upper  a.logo {
    display: inline-block;
    height: 100%;
}
header .upper a.logo img {
    /* max-width: 130px; */
    display: block;
}

header .upper > div:first-of-type{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

header .upper img.anos30 {
	height: 55px;
}

header .upper .pme {
	height: 45px;
}

@media(min-width:768px){
	header .upper > div:first-of-type{
		justify-content: left;
		padding: 12px 25px;
		gap: 25px;
	}
	header .upper img.anos30 {
		height: 65px;
	}

	header .upper .pme {
        height: 60px;
    }
}

header .upper > div.middle > a.menu-toggle {
    position: relative;
    padding: 14px;
    font-size: 0;
	color: #b5b5b5;
    transition: var(--transition);
	display: flex;
	width: 40px;
}
header .upper > div.middle > a.menu-toggle span {
    position: absolute;
    top: 0;bottom: 0;
    right: 5px;
    margin: auto;
    width: 31px;
    height: 2px;
    background-color: var(--white);
	transition: var(--transition);
    -webkit-transition: var(--transition);
    z-index: 3;
	display: block;
	

}
header.open .upper > div.middle > a.menu-toggle span {
	background: var(--black);
}
header.open .upper > div.middle > a.menu-toggle {
	position: absolute;
	top: 0;
	right: 15px;
	z-index: 10;
}
header .upper > div.middle > a.menu-toggle span:first-child {
    transform: translateY(-7px);
}

header .upper > div.middle > a.menu-toggle span:nth-of-type(2) {
    transform: translateY(0px);
}

header .upper > div.middle > a.menu-toggle span:last-child {
    transform: translateY(7px);
}

header.open > div:not(.menu) a.menu-toggle span:first-child {
	transform: rotate(45deg);
}

header.open > div:not(.menu) a.menu-toggle span:nth-of-type(2) {
    display: none;
} 
header.open > div:not(.menu) a.menu-toggle span:last-child {
	transform: rotate(-45deg);
}

@media(min-width:768px) {
	header.open .upper > div.middle > a.menu-toggle span{
		background-color: var(--black);
	}
}

@media(min-width:768px) {
	header .upper > div.middle > a.menu-toggle span{
		background-color: var(--black);
	}

	header.open .upper > div.middle > a.menu-toggle {
		position: relative;
		right: 0;
	}
}
@media(max-width:768px) {
	header.open .upper > div.middle > a.menu-toggle{
		top: 15px;
		right: 10px;
	}
}

/*********************************/
/********** HEADER MENU **********/
/*********************************/

header .menu {
	position: fixed;
	height: 100vh;
	width: 100%;
	/* width: 480px; */
    max-width: 100%;
    /* padding: 40px 20px; */
    /* padding-top: 60px; */
	background-color: white;
	top: 0;
    right: 0;
    display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: var(--transition);
    -webkit-transition: var(--transition);
    overflow: auto;
    z-index: 1;
}
header.open .menu {
	transform: translateX(0%);
}

/********** MENU CLOSE **********/

header .menu .menu-toggle {
	height: 30px;
	width: 30px;
	position: absolute;
	right: 50px;
	top: 60px;
}
header .menu .menu-toggle span {
	position: absolute;
	top: 0;bottom: 0;
	left: 50%;
    margin: auto;
    width: 40px;
    height: 2px;
	background-color: rgb(var(--primary));
	transition: var(--transition);
    -webkit-transition: var(--transition);
}
header .menu .menu-toggle span:first-child {
	transform: translateX(-50%) rotate(45deg);
}
header .menu .menu-toggle span:last-child {
	transform: translateX(-50%) rotate(-45deg);
}


/********** SEARCH FORM **********/

header .menu .form {
	position: relative;
}

header .menu .form input,
header .center-menu .form input {
    font-family: var(--font-family-2);
    font-size: 14px;
	color: var(--grey);
	line-height: 1;
	padding: 16px 20px;
	padding-right: 52px;
	background-color: white;
	border: 1px solid rgba(203,203,183,.5);
	width: 100%;
}

header .menu .form label {
	display: inline-block;
	width: 0;height: 0;
    font-size: 0;
}

header .menu .form a[submit],
header .center-menu .form a[submit] {
	position: absolute;
	height: 51px;
	width: 51px;
	top: 0;right: 0;
	font-size: 0;
}
header .menu .form a[submit]::before,
header .center-menu .form a[submit]::before {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	left: 0;right: 0;
	margin: auto;
	width: 15px;
	height: 15px;
}

/********** MENU **********/

header .menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
	margin: -10px 0;
}
header .menu .right-side > div > ul {
	margin-top: 30px;
	/* flex: 1;
	max-height: calc(100%);
	overflow: auto; */
	padding-bottom: 50px;
}
header .menu ul li {
    font-size: 0;
    padding: 7px 0;
	position: relative;
}

header .menu ul li.sub > h4 {
	padding-right: 25px;
    position: relative;
    transition: var(--transition)
}
header .menu ul li.sub > h4::after {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
	right: 0;
	margin: auto;
	width: 10px;
	height: 6px;
    
	transition: var(--transition);
    -webkit-transition: var(--transition);
    transform: rotate(180deg);
}

header .menu ul li.sub ul {
	margin: 0;
	overflow: hidden;
	max-height: none;
    transition: var(--transition);
}
header .menu ul li.sub ul li {
	padding:5px 0;
}
header .menu ul li.sub ul li:first-of-type {
    margin-top: 12px;
}

header .menu ul li h4 {
	font-size: 1.375rem;
	font-weight: 500;
	color: var(--black);
	margin: 0;
	display: inline-block;
}
header .menu ul li h5 {
	font-size: .875rem;
	font-weight: 500;
	color: #767878;
	margin: 0;
	display: inline-block;
}

header .menu ul li.sub > h4 a,
header .menu ul li.active > h4 a,
header .menu ul li > h4 a:hover {
    color: rgb(var(--primary));
}
header .menu ul ul li.active > h5 a,
header .menu ul ul li > h5 a:hover {
	color: var(--black);
}

@supports(mix-blend-mode: multiply) {
    header .menu ul li.sub > h4::after {
        filter: brightness(0%);
    }

    header .menu ul li.sub.open > h4::after,
    header .menu ul li.active > h4,
    header .menu ul li > h4:hover::after {
        filter: brightness(100%);
    }
}

/********** SOCIAL AND LANGUAGE **********/

@media(min-width: 768px) {
    header .menu {
		/* padding: 50px; */
        /* display: flex; */
        z-index: 2;
    }
    header .menu .form,
	header .center-menu .form  {
		margin-right: 75px;
    }
    
    header .menu .right-side > div > ul {
		margin-top: 70px;
    }
    header .menu .right-side ul li {
		padding: 10px 0;
    }
    header .menu .right-side ul li.sub ul li:first-of-type {
		margin-top: 18px;
	}
}

@media(min-width: 992px) {	
    header .menu ul li.sub > h4 a {
        color: inherit;
    }
	header .menu ul li.sub.open > h4 a {
		color: rgb(var(--primary));
    }
    
    header .menu ul li.sub > h4::after {
        transform: none;
    }
    header .menu ul li.sub.open > h4::after,
    header .menu ul li.sub.active > h4::after {
        transform: rotate(180deg);
    }

    header .menu ul li.sub ul {
        max-height: 0;
    }
    header .menu ul li.sub.active ul {
        max-height: none;
    }
}

header .upper {
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}



header .upper a.logo {
	position: relative;
	top: 0;
	left: 0;
	height: auto;
	transition: var(--transition);
	width: 50%;
	margin: 9px 0;
}

header .upper a.logo img {
	width: 100%;
	height: 100%;
}

header.open .upper a.logo {
	opacity: 0;
	pointer-events: none;
	margin-right: 30px;
}

header .upper > div.middle {
	background-color: var(--green);
	align-items: center;
	padding: 12px 25px;
	display: flex;
	height: 100%;
	flex: 1;
	width: 100%;
}

header .orcamento span {
	position: absolute;
	padding: 2px;
	top: -7px;
	right: -16px;
	max-width: 15px;
	max-height: 14px;
	border-radius: 28.5px;
	background-color: red;
	font-family: inherit;
	font-size: 10px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: center;
	color: #020202;
	transition: var(--transition);
	width: 100%;
	height: 100%;
}

header .center-menu {
	transition: var(--transition);
}

header .center-menu ul li:nth-of-type(3) {
	display: none;
}

header .center-menu {
	display: flex;
	height: 100%;
	align-items: center;
	margin-right: 0;
	margin-left: auto;
	flex: 1;
}

header .center-menu > ul {
	margin-bottom: 0;
	padding-left: 0;
	display: flex;
    gap: 25px;
    padding-right: 30px;
	align-items: center;
}

header .center-menu ul li {
	display: inline-block;
	margin: 0px;
}


header .menu .red-sociais{
	margin-bottom: 10px;
	display: flex;
	margin-right: 40px;
}
header .menu .red-sociais > div {
	flex: 1;
}
header .menu .red-sociais a:not(.cart) i{
    color: #34aa47;
    transition: var(--transition);
    margin-right: 13px;
    transform: scale(1);
	font-size: 18px;
}

header .menu .contact{
	position: relative;
	display: flex;
    justify-content: space-between;
	margin: 20px 0;
}

header .center-menu ul li a,
header .menu .contact a{
	font-family: var(--font-family-2);
	font-size: 14px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.28px;
	color: #161616;
	margin: 0;
}

header .center-menu ul li:hover a,
header .center-menu ul li:hover p {
	color: var(--black);
}

header .upper > div.middle > a.menu-toggle {
	height: 14px;
	cursor: pointer;
}

header .menu .red-sociais a.cart{
	position: relative;
}
header .center-menu ul li:nth-of-type(1) a:before,
header .center-menu ul li:nth-of-type(2) a:before,
header .center-menu ul li:nth-of-type(4) .account div:before,
header .center-menu ul li:last-of-type a div:before,
header .menu .contact a:before,
header .menu .red-sociais a.cart:before {
	display: inline-block;
	content:"";
	width: 23px;
  	height: 20px;
	vertical-align: middle;
	margin-right: 9px;
	transition: var(--transition);
}

header .center-menu > ul > li:last-of-type{
	position: relative;
}

header .center-menu > ul > li:nth-of-type(1) a:before {
	background: url("/assets/img/phone_white.svg") no-repeat;
}

header .center-menu > ul > li:nth-of-type(2) a:before {
	background: url("/assets/img/email_white.svg") no-repeat;
}

header .center-menu > ul > li:last-of-type a div:before {
	background: url("/assets/img/cart_white.svg") no-repeat;
}

header .center-menu > ul > li:nth-of-type(1) a:hover:before {
	background: url("/assets/img/phone_over.svg") no-repeat;
}

header .center-menu > ul > li:nth-of-type(2) a:hover:before {
	background: url("/assets/img/email_over.svg") no-repeat;
}

header .menu .contact a:nth-of-type(1):before{
	background: url("/assets/img/phone.svg") no-repeat;
}
header .menu .contact a:nth-of-type(2):before{
	background: url("/assets/img/email.svg") no-repeat;
}

header .menu .red-sociais a.cart:before {
	background: url("/assets/img/cart.svg") no-repeat;
}

header .center-menu ul li:nth-of-type(1) > a span,
header .center-menu ul li:nth-of-type(2) > a span{
	display: none;
}

header .center-menu ul li:last-of-type > a span,
header .menu .red-sociais a.cart span {
    position: absolute;
	font-family: var(--font-family-2);
    top: -6px;
    right: -7px;
    font-size: 9px;
    font-weight: normal;
    color: white;
    line-height: 1;
	width: 13px;
    height: 13px;
	text-align: center;
	display: flex;
	align-items: center;
    justify-content: center;
}

header .center-menu ul li:last-of-type > a span:before,
header .menu .red-sociais a.cart span::before{
	content: "";
	background: #34aa47;
	width: 13px;
	height: 13px;
	border-radius: 100%;
	z-index: 1;
    position: absolute;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
}

header .center-menu ul li:last-of-type > a span i,
header .menu .red-sociais a.cart span i{
	position: relative;
	z-index: 2;
	font-style: normal;
}

header .center-menu .form input{
	border: 2px solid #e3e3e2;
    border-radius: 28.5px;
    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: left;
    color: #0d0d0d;
	padding: 16px 20px;
    padding-right: 52px;
    background-color: white;
}

header.open .upper > div.middle > a.menu-toggle span {
	width: 27px;
}

header .menu .left-side {
	display: none;
}

header .menu .right-side {
	height: 100%;
	width: 100%;
	max-width: 100%;
}

header .menu .right-side > div {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 40px 20px;
	padding-top: 26px;
	max-width: 530px;
	width: 100%;
	margin: 0 auto;
}

header .center-menu .form{
	position: relative;
}
header .menu .form input,
header .center-menu .form input {
	border: 2px solid #e3e3e2;
	border-radius: 28.5px;
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.28px;
	text-align: left;
	color: #0d0d0d;
}

header .menu .form input::placeholder,
header .center-menu .form input::placeholder {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-align: inherit;
	color: inherit;
}

header .menu .form a[submit],
header .center-menu .form a[submit] {
	width: 54px;
	height: 54px;
}

header .menu .form a[submit]::before,
header .center-menu .form a[submit]::before {
	background-image: url('/assets/img/lupe-yellow.svg');
}

header .menu > .right-side > div > ul > li {
	margin: 17px 0;
}

header .menu > .right-side > div > ul > li:first-child {
	margin-top: 0;
}

header .menu > .right-side > div > ul > li:last-child {
	margin-bottom: 0;
}

header .menu ul li a {
	font-family: var(--font-family-1);
	font-size: 21.5px;
	font-weight: 300;
	line-height: 1.19;
	letter-spacing: 0.54px;
	text-align: left;
	color: #1f1f1f;
}

header .menu ul li.sub.open {
	margin-bottom: 0;
	padding-bottom: 3px;
}

header .menu ul li.sub ul {
	max-height: 0;
	overflow: hidden;
}

header .menu ul li.sub ul li {
	padding: 0;
}

header .menu ul li.sub span {
	position: absolute;
	top: 9px;
	margin: auto;
	width: 32px;
	height: 23px;
	background: url('/assets/img/arrow-green.svg') no-repeat center center;
	transition: var(--transition);
	margin-left: 26px;
}

header .menu ul li.sub ul li a {
	font-family: var(--font-family-2);
	font-size: 14.5px;
	font-weight: 300;
	line-height: 1.83;
	letter-spacing: 0.29px;
	text-align: left;
	color: #1f1f1f;
}

header .menu ul li.sub ul li:first-of-type {
	margin-top: 18px;
}

header .menu ul li.sub.open span {
	transform: rotate(90deg);
}

header .menu ul li.sub ul li.active > a,
header .menu ul > li.active > a,
header .menu ul li a:hover {
	color: var(--green);
}

@media (min-width: 768px) {

	header .upper a.logo {
		max-width: inherit;
		width: 214px;
	}

	header .center-menu{justify-content: right;}

	
	header .menu .form,
	header .center-menu .form {
		margin-right: 0;
	}


	header .upper > div.middle{
		background: none;
		width: auto;
	}
	header .menu .form,
	header .center-menu .form {
		margin-right: 0;
	}
	header .upper {
		flex-direction: row;
	}

	header .menu .right-side > div{
		padding-top:40px
	}

	header .menu .right-side{
		overflow: auto;
		max-height: calc( 100%);
	}
	

	header .menu .contact,
	header .menu .red-sociais{
		display: none;
	}

	header .center-menu > ul > li:nth-of-type(1) a:before {
		background: url("/assets/img/phone.svg") no-repeat;
	}
	
	header .center-menu > ul > li:nth-of-type(2) a:before {
		background: url("/assets/img/email.svg") no-repeat;
		height: 17px;
	}

	header .center-menu > ul > li:nth-of-type(4) .account div:before {
		background: url("/assets/img/shop/account.svg") no-repeat;
	}

	header .center-menu > ul > li:nth-of-type(4) > a{
		position: relative;
	}

	header .center-menu > ul > li > a.account > span{
		position: absolute;
		top: -6px;
		right: -7px;
		background: url("/assets/img/shop/account_active.svg") no-repeat;
		width: 13px;
    	height: 13px;
		/* position: absolute;
		font-family: var(--font-family-2);
		top: -6px;
		right: -7px;
		font-size: 10px;
		font-weight: normal;
		color: white;
		line-height: 1;
		width: 13px;
		height: 13px;
		text-align: center; */
	}

	/* header .center-menu ul li:nth-of-type(4) .account > span:before {
		background: url("/assets/img/shop/account_active.svg") no-repeat;
	} */

	header .center-menu ul li:last-of-type a div:before {
		background: url("/assets/img/cart.svg") no-repeat;
	}

	header .center-menu ul li:last-of-type a div:before {
		-webkit-mask-image : url("/assets/img/cart.svg");
		mask-image: url("/assets/img/cart.svg");
		-webkit-mask-repeat : no-repeat;
		mask-repeat:no-repeat;
		background: none;
		background-color: #161616;
		transition: var(--transition);
	}

	header .center-menu ul li:last-of-type a:hover div:before {
		background-color: var(--green);
	}

}

@media (min-width: 1200px) {
	header {
		height: 98px;
		width: 100%;
		background-color: rgba(255, 255, 255, 1);
	}

	header::before {
		content: initial;
	}

	header .upper {
		padding-left: 43px;
		padding-right: 34px;
		
	}

	header .upper a.logo {
		position: relative;
		top: 0;
		left: 0;
		width: auto;
		height: auto;
		margin: 0;
	}

	header .upper a.logo img {
		width: 214px;
	}

	header .upper > div.middle {
		padding: 0;
	}

	header .menu .form{
		display: none;
	}

	header .center-menu {
		display: flex;
		height: 100%;
		align-items: center;
		margin-right: 0;
		margin-left: auto;
		flex: none;
	}

	header .center-menu > ul {
		margin-bottom: 0;
		padding-left: 0;
	}

	header .center-menu ul li {
		display: inline-block;
	}


	header .center-menu ul li:nth-of-type(1) > a span,
	header .center-menu ul li:nth-of-type(2) > a span{
		display: inline-block;
	}

	header .center-menu ul li:nth-of-type(3) {
		display: inline-block;
	}

/* 	

	header .center-menu ul li:last-of-type > a span:before{
		background: var(--green);
	} */

	header .center-menu ul li a{
		font-family: var(--font-family-2);
		font-size: 14px;
		font-weight: 300;
		line-height: normal;
		letter-spacing: 0.28px;
		color: #161616;
		margin: 0;
	}

	header .center-menu ul li:hover a,
	header .center-menu ul li:hover p {
		color: var(--black);
	}

	header .upper > div.middle > a.menu-toggle {
		height: 14px;
		cursor: pointer;
	}

	header .center-menu .form {
		width: 287px;
	}


	header.open .center-menu {
		opacity: 0;
		pointer-events: none;
	}

	header.open .orcamento {
		color: #000;
	}

	header.open .orcamento span {
		color: #fff;
		background-color: #000;
	}


	header.open .upper > div.middle > a.menu-toggle span {
		background-color: var(--green);
		width: 31px;
	}

	header .menu .right-side > div {
		padding-top: 75px;
	}

	header .menu .right-side > div > ul {
		margin-top: 0px;
	}

	header .menu ul li a {
		font-size: 28.5px;
		line-height: 1.28;
		letter-spacing: 0.71px;
	}

	header .menu ul li a:hover {
		color: var(--green);
	}

	header .menu ul li.sub ul li a {
		font-size: 14px;
		line-height: 1.79;
		letter-spacing: 0.28px;
	}

	header .menu ul li.sub ul li a:hover {
		color: var(--green);
	}

	header .menu ul li.sub span {
		top: 18px;
		cursor: pointer;
		background-size: cover;
	}
}


header .bottom{
    background: var(--green);
    padding: 0 28px;
    display: none;
    justify-content: center;
}

header .bottom a{
    font-family: var(--font-family-2);
    color: var(--white);
    font-size: 11px;
	padding: 26px 15px;
}

header .bottom a:hover,
header .bottom a.active{
    background: #55b316;
}

@media(min-width: 1300px) {
	header .bottom{
		display: flex;
	}
    header .bottom a{
        font-size: 15px;
    }
}

@media(min-width: 1100px) {
    header .bottom a{
        font-size: 18px;
    }
}


@media(min-width: 992px) {
	header .menu {
		margin-top: 0;
		z-index: 1;
		flex-direction: row;
	}

	header .menu .left-side {
		display: block;
		max-width: 50%;
		width: 100%;
	}

	header .menu .left-side img {
		width: 100%;
		height: 100%;
	}

	header .menu .right-side {
		max-width: 50%;
	}
}

.newsletter-bar{
	width: 100%;
	background-image: linear-gradient(to left, #1c56ac, #90df5b);
	padding-top: 20px;
}

.newsletter-bar > div{
	display: flex;
	align-items: center;
	font-size: 35px;
	font-weight: 100;
	line-height: 1.17;
	letter-spacing: normal;
	color: #fff;
	flex: 1;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	flex-direction: column;
}

.newsletter-bar > div > a{
	text-align: left;
}

.newsletter-bar > div > a:after {
    content: "";
    background: url(/assets/img/arrow-item.svg) no-repeat;
	width: 49px;
    height: 36px;
    display: block;
    margin-top: 15px;
    transition: var(--transition);
}

.newsletter-bar > div > a:hover:after{
	margin-left: 44px;
	transform: translateX(10px);
}

.newsletter-bar > div > div{
	background: url(/img/simbol_logo.svg) no-repeat;
	mix-blend-mode: multiply;
	width: 128px;
    height: 112px;
	background-size: cover;
	transform: translateX(-15px);
	order: 2;
	margin-left: auto;
	margin-top: -50px;
}

@media(min-width: 768px) {
	.newsletter-bar > div > a:after{
		width: 58px;
		height: 44px;
		display: inline-block;
		margin-top: 0;
		margin-left: 44px;
		transition: var(--transition);
		vertical-align: middle;
	}
	.newsletter-bar > div{
		flex-direction: row-reverse;
	}
	.newsletter-bar > div > a{
		text-align: right;
	}
	.newsletter-bar > div > div{
		order: 1;
		width: 172px;
		height: 153px;
		margin-top: auto;
	}
}

@media(min-width: 992px) {
	.newsletter-bar > div{
		font-size:60px
	}
}

.news + footer{
	background: #f9f9f9;
}

footer{
	padding-top:40px;
	padding-bottom:20px;
	text-align: center;
	background: #f9f9f9;
}

/* footer .row{
	align-items: flex-start;
} */

footer p{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 0;
	line-height: 1.63;
  	letter-spacing: 0.4px;
	color: #9c9b9a;
}

footer p strong{
	font-weight: 500;
	color:var(--black)
}
footer p a{
	color:var(--green);
	border-bottom: 1px solid transparent;
}
footer p a:hover{
	color:var(--green);
	border-bottom: 1px solid currentColor;
}

footer hr{
	border:0;
	width: 100%;
	height: 1px;
	background: #e5e3e3;
	margin: 30px 0;
}

footer i{
	font-size: 22px;
	color: var(--blue);
	margin-left: 10px;
	margin-right: 10px;
	transition: var(--transition);
}

footer a:hover i{
	color:var(--green)
}

footer .row {
  align-items: stretch; 
}

footer div.col-md-4 {
  margin-top: 25px;
  align-items: center;
}

footer div.col-md-4 div {
    display: flex;
    align-items: center;
    gap: 30px;
  }


  footer div.col-md-4.apoios {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    
	gap: 30px;
  }

footer div.col-md-4.apoios img{
	width: auto;
	height: 70px;
}

@media (min-width: 768px) {
	footer {
		padding-top: 80px;
		padding-bottom: 40px;
		text-align: left;
	}

	footer .row {
		justify-content: space-between;
	}

	footer div.col-md-4.apoios img{
		height: 100px;
	}

	footer div.col-md-4.apoios > a img{
		height: 60px;
	}
  footer div.col-md-4 {
    margin-top: 0;
    text-align: right;
    flex-direction: column;
    align-items: flex-end;
  }

  footer div.col-md-4 div {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  footer div.col-md-4.apoios {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: flex-end;
  }

  footer div.col-md-4.apoios a:last-child {
    margin-top: auto; 
  }

  footer hr {
    margin: 60px 0 40px;
  }

  footer i {
    font-size: 26px;
    margin-left: 25px;
    margin-right: 0px;
  }
}

.hp-product .itens > div{
	position: relative;
}

.produtos_rotulo.list-products .itens{
	margin-top: 0;
}
.produtos_rotulo.list-products .itens > div .img {
    margin-bottom: 10px;
}
.produtos_rotulo.list-products .itens > div,
.produtos_rotulo.list-products .itens{
	margin-bottom: 40px;
}
@media(min-width:1500px){
	.produtos_rotulo .container.container-full{
		max-width: 1500px;
	}
}


.list-products .itens{
    display: flex;
	flex-wrap: wrap;
	margin: 40px -10px 0;
}

.list-products .itens > div{
    text-align: center;
    max-width: calc(50% - 20px);
	font-weight: 300;
	color: var(--black);
	margin: 0 10px 35px;
}

.prod_escolhidos .product{
	text-align: center;
	margin-bottom: 30px;
}

.content .prod_escolhidos + .template{
	padding-top: 0;
}

.list-products .itens > div .img,
.content .template .listing .product .image,
.related .product .image,
.prod_escolhidos .product .image{
    overflow: hidden;
    border:1px solid #f0f0f0;
    position: relative;
	display: block;
}

.content.product .related .product .image,
.prod_escolhidos .product .image{
	margin-bottom: 15px;
}

.list-products .itens > div .img img,
.content .template .listing .product .image img,
.related .product .image img,
.prod_escolhidos .product .image img{
    transition: var(--transition);
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	display: block;

}

.related .product .image img{
	max-height: 266px;
	height: 100%;
	margin: auto;
}

.list-products .itens > div a:hover .img img,
.content .template .listing .product .image:hover img,
.related .product .image:hover img,
.prod_escolhidos .product .image:hover img{
    transform: scale(1.05);
}

.list-products .itens > div .category,
.content .template .listing .product .category,
.content.product .related .product .category,
.prod_escolhidos .product .category{
	font-family: var(--font-family-2);
	color: var(--green);
	font-size: 12px;
	line-height: normal;
  	letter-spacing: 0.24px;
	text-align: center;
}

.list-products .itens > div .category{
	margin-top: 10px;
}

.list-products .itens > div .category:hover,
.content .template .listing .product .category:hover,
.content.product .related .product .category:hover,
.prod_escolhidos .product .category:hover{
	color:var(--black)
}

.list-products .itens > div p,
.content .template .listing .product p,
.related .product p,
.prod_escolhidos .product p{
	margin: 0;
}

.list-products .itens > div p.title,
.content .template .listing .product p.title,
.related .product p.title,
.prod_escolhidos p.title{
	line-height: 1.33;
	letter-spacing: 0.45px;
	margin: 6px 0 7px;
	text-align: center;
}
.list-products .itens > div p.title a,
.content .template .listing .product p.title a,
.related .product p.title a,
.prod_escolhidos p.title a{
	font-size: 18px;
	font-weight: 300;
	color: var(--black);
	border: 0;
}
.list-products .itens > div p.title a:hover,
.content .template .listing .product p.title a:hover,
.related .product p.title a:hover,
.prod_escolhidos p.title a:hover{
	color: var(--green)
}
.list-products .itens > div p.price,
.content .template .listing .product p.price,
.related .product p.price,
.prod_escolhidos p.price{
	font-size: 16px;
	font-weight: bold;
	line-height: 1.63;
  	letter-spacing: 0.45px;
	margin-bottom: 15px;
	text-align: center;
	color: var(--black);
}


.product .novidade,
.hp-product .novidade{
	text-align: center;
	color: #ffffff;
	position: absolute;
	top: 20px;
	left: 20px;
	width: 39px;
	height: 39px;
	z-index: 2;
	display: flex;
	justify-content: center;
    align-items: center;
}
.product .novidade:before,
.hp-product .novidade::before{
	content: "";
	background: var(--green);
	width: 100%;
	height: 100%;
	border-radius: 100%;
	position: absolute;
}

@media(min-width:768px){
	.product .novidade,
	.hp-product .novidade{
		top: 45px;
		left: 45px;
	}

}
.content .template .listing .product > div.novidade > span,
.product div.novidade > span,
.hp-product div.novidade > span{
	font-family: var(--font-family-2);
	font-size: 11.5px;
	font-weight: 300;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.23px;
	color: #ffffff;
	position: relative;
}

.related .row .novidade{
	top: 10px;
    left: 35px;
}

.template-module.list-products .novidade{
	top: 10px;
    left: 25px;
}

.hp-product div.novidade,
.product .product-page div.novidade{
	top: 10px;
    left: 10px;
}

.template-module.list-products > div:first-of-type{
	display: flex;
	align-items: baseline;
	flex-direction: column;
}

.template-module.list-products > div:first-of-type span{
	font-family: var(--font-family-2);
	color: var(--black);
	font-size: 14px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.28px;
}

@media(min-width:768px){

	.template-module.list-products > div:first-of-type{
		justify-content: space-between;
	}

	.list-products .itens{
		margin: 80px 0px 0;
	}
	.hp-product.list-products .itens{
		justify-content: center;
	}
	.list-products .itens > div{
		max-width: 292px;
		width: 20%;
		margin: 0 25px;
	}
}

@media(min-width:1024px){
	.template-module.list-products > div:first-of-type{
		flex-direction: row;
	}
}

/*******************************/
/********** Template **********/
/*****************************/

.content {
	min-height: calc(100vh - 50px - 292px);
}

.content .banner {
	padding: 0;
	position: relative;
}

.content .banner .image {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	min-height: 300px;
	width: 100%;
}


.content .banner .image::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	mix-blend-mode: multiply;
	background-image: linear-gradient(to bottom, #a5a5a5, #a5a5a5);
}

.content .banner .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
    position: absolute;
	display: block;
}

@media(min-width:768px){
	.content .banner .image {
		height: auto;
		position: absolute;
		overflow: hidden;
	}

	.content .banner .image img {
		object-position: center;
		position: relative;
	}
}

.content .banner:not(.noimg) .container.container-sm {
	position: absolute;
	top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.content .banner ul {
	text-align: left;
}

.content .banner ul li {
	font-family: var(--font-family-2);
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.28px;
	color: #fff;
	text-transform: capitalize;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.content .banner h1 {
	font-family: var(--font-family-1);
	font-size: 45px;
	font-weight: 100;
	line-height: 1;
	letter-spacing: normal;
	text-align: left;
	color: #fff;
	
}

.article.content .banner h1{
	font-size: 40px;
}

.content .product-page .banner h1{
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.content .template h2,
.content .template .h2 {
	font-family: var(--font-family-1);
	font-size: 32px;
	font-weight: 300;
	line-height: 1.13;
  	letter-spacing: 1px;
	text-align: left;
	color: #0d0d0d;
}

.content .template h3,
.content .template .h3 {
	font-family: var(--font-family-1);
	font-size: 22px;
	font-weight: 300;
	line-height: 1.18;
	letter-spacing: 0.55px;
	text-align: left;
	color: #0d0d0d;
}

.content .template h4,
.content .template .h4 {
	font-family: var(--font-family-1);
	font-size: 20px;
	font-weight: normal;
	line-height: 1.4;
	letter-spacing: 0.5px;
	color: var(--green);
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.content .template p,
.content .template ul,
.content .template ul li,
.content .template ol,
.content .product-page .listing .accordion p {
	font-family: var(--font-family-1);
	font-size: 18px;
	font-weight: 300;
	line-height: 1.33;
	letter-spacing: 0.45px;
	text-align: left;
	color: #767575;
}

.content .template p strong,
.content .template p b,
.content .product-page .listing .accordion strong {
	font-weight: normal;
	color: #0d0d0d;
}

.content .template p a,
.content .template li a,
.content .product-page .listing .accordion p a {
	font-weight: normal;
	color: var(--green);
	border-bottom: 0;
}

.content .template p a, 
.content .template li a,
.content .product-page .listing .accordion p a{
	display: inline;
	border-bottom: 1px solid currentColor;
	transition: var(--transition);
	
}

.content .template p a:hover,
.content .template li a:hover,
.content .product-page .listing .accordion p a:hover {
	border-bottom: 0;
}

.content .template p small {
	font-size: 14px;
	font-weight: inherit;
	font-style: normal;
	color:var(--darkgrey);
}



.content .template p big {
	font-family: var(--font-family-1);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.43;
  	letter-spacing: 0.58px;
	color: #0d0d0d;
	padding: 17px 0 1.5em 52px;
	position: relative;
	display: inline-block;
}

.content .template p big::before {
	content: '';
	position: absolute;
	top: 0;
	left: 5px;
	width: 6px;
	height: 61px;
	background: var(--green);
}

.content .template blockquote::before {
    content: "";
    position: absolute;
    left: 25px;
    height: 20px;
    width: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}
@media(min-width:768px){
	.content .template p big::before {
		left: 65px;
	}
	.content .template blockquote::before {
		left: 0px;
	}
}

.content .template blockquote {
	padding: 21px 0 1.5em 51px;
}

.content .template blockquote p {
	font-family: var(--font-family-1);
	font-size: 20px;
	font-weight: 500;
	font-style: italic;
	color: #0d0d0d;
}

.content .template blockquote::before {
	width: 29px;
	height: 24px;
	background-image: url('/assets/img/template/quote.svg');
}

.content .template ul li::before {
	background-size: contain;
	background-image: url('/assets/img/arrow-link-green.png');
}

.content .template ol li::before {
	font-family: var(--font-family-1);
	font-size: 18px;
	font-weight: normal;
	line-height: 1.33;
	letter-spacing: 0.45px;
	text-align: left;
	color: #0d0d0d;
}

.content .template .pagination ul li::before {
	display: none;
	content: none;
}

.template-module .video a:before {
	background-image: url('/assets/img/template/play-white.svg');
}

.template-module .slider-arrows > div {
	width: 36px;
	height: 56px;
}

.template-module .slider-wrapper.no-bar .slider-arrows > div::before {
	background-image: url('/assets/img/template/arrow-white.svg');
}

.content .button,
.content .button:hover,
.content .button:focus {
	font-family: var(--font-family-2);
	font-size: 14px;
	font-weight: 300;
	line-height: normal;
	color: #fff;
	padding: 9px 20px;
	cursor: pointer;
}

.content .button::before {
	background-color: var(--green);
	border: 0;
}

.content .button span {
	line-height: inherit;
	text-transform: initial;
	letter-spacing: inherit;
}

.template .listing .accordion > div:first-of-type > h3,
.template .listing .accordion > div:first-of-type > .h3,
.template .listing .accordion > div:first-of-type > h2,
.template .listing .accordion > div:first-of-type > .h2,
.template .listing .file > h3,
.template .listing .file > .h3,
.template .listing .file > h2,
.template .listing .file > .h2,
.template .listing .item > h3,
.template .listing .item > .h3,
.template .listing .item > h2,
.template .listing .item > .h2 {
	font-family: var(--font-family-1);
	font-size: 23.5px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0.59px;
	text-align: left;
	color: #0d0d0d;
}

.listing .accordion .toggle::before,
.listing .accordion .toggle::after {
	background-color: var(--green);
}

.listing hr,
.template-module hr  {
	width: 100%;
	height: 2px;
	background: #eeeeec;
	border: none;
}

.listing .link,
.listing .link:hover,
.listing .link:focus {
	font-family: var(--font-family-1);
	font-size: 15px;
	font-weight: normal;
	line-height: 1.68;
  	letter-spacing: 0.39px;
	text-align: right;
	color: var(--green);
	padding-right: 55px;
}

.link::after {
	background-image: url('/assets/img/arrow-green.svg');
	width: 34px;
	height: 26px;
	background-position: 0;
}

.link:hover::after {
	background-position: 34px;
}

.listing.listing-button .button {
	padding: 9px 20px;
}

.template-module .cta {
	background-color: var(--green);
	padding-bottom: 94px;
}

.template-module .cta .h2 {
	color: #ffffff;
	font-weight: 100;
	font-size: 25px;
}

.template-module .cta::before {
	width: 58px;
  	height: 44px;
	background-image: url('/assets/img/arrow-item.svg');
	bottom: 41px;
	right: auto;
	left: 20px;
}

@media (min-width: 768px){
.content .header {
    display: flex;
    align-items: center;
}
}

.content .header {
    margin-bottom: 25px;
    position: relative;
}

.button::before,
	.listing.listing-button .button::before {
		border-radius: 24.5px;
	}

@media (min-width: 768px) {
	.content {
		min-height: calc(100vh - 50px - 191px);
	}

	.content .banner {
		padding-top: 50px;
		position: relative;
	}

	.content .banner:not(.noimg) .container.container-sm {
		position: relative;
		top: 0;
		bottom: 0;
		padding: 150px 0 110px;
		transform: none;
	}

	.content .banner ul,
	.content .banner h1 {
		text-align: center;
	}

	.content .banner h1{
		line-height: 1.17;
	}

	.content .template h2,
	.content .template .h2 {
		font-size: 40px;
		line-height: 1.25;
		letter-spacing: 1px;
	}

	.content .template h3,
	.content .template .h3 {
		font-size: 30px;
		line-height: 1.2;
		letter-spacing: 0.75px;
	}

	.content .template h4,
	.content .template .h4 {
		font-size: 23px;
		line-height: 1.43;
		letter-spacing: 0.58px;
	}

	.content .template p,
	.content .template ul,
	.content .template ol,
	.content .product-page .listing .accordion p {
		font-size: 20px;
		line-height: 1.5;
		letter-spacing: 0.5px;
	}

	.content .template ul li::before {
		width: 14px;
		margin-right: 27px;
	}

	.content .template p small {
		font-size: 16px;
	}

	.content .template p big {
		font-size: 23px;
	}

	.content .template blockquote p {
		font-size: 23px;
	}

	.content .template blockquote::before {
		left: 0;
	}

	.button,
	.listing.listing-button .button {
		padding: 14px 30px;
		font-size: 14px;
	}

	.button::before,
	.listing.listing-button .button::before {
		border-radius: 24.5px;
	}

	.template-module .cta {
		padding: 40px 150px 40px 38px;
	}

	.template-module .cta::before {
		left: auto;
		right: 40px;
		top: 0;
		bottom: 0;
	}
}

@media (min-width: 992px) {
	.template-module.module4.module10 a.button,
	.template-module.module5.module11 a.button {
		padding: 14px 30px;
	}

	.template-module .cta .h2{
		font-size: 30px;
	}
}

@media (min-width: 1200px) {
	.content {
		min-height: calc(100vh - 98px - 280px);
	}

	.content .banner {
		padding-top: 0;
	}

	.content .banner h1 {
		font-size: 80px;
	}
	.article.content .banner h1{
		font-size: 70px;
	}
}

/********************************/
/********** Product List ********/
/********************************/

.content .template.has-sidebar .container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.content .template.has-sidebar .filter-sidebar ul.nav > li, 
.content .template.has-sidebar .filter-sidebar ul.nav > li > a:hover, 
.content .template.has-sidebar .filter-sidebar ul.nav > li > a:focus {
    text-transform: initial;
}

.content .template.has-sidebar .filter-sidebar ul.nav > li{
	margin-bottom:20px
}

.content .template.has-sidebar .filter-sidebar ul.nav ul ul li:last-child {
    margin-bottom: .8em;
}

.content .template.has-sidebar .filter-sidebar ul.nav ul ul li:first-child {
    margin-top: .8em;
}

.content .template.has-sidebar .sidebar ul li a {
	font-family: var(--font-family-1);
	font-size: 20px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.5px;
	text-align: left;
	color: #1f1f1f;
	cursor: pointer;
}



.content .template.has-sidebar .sidebar ul li ul li > a {
	font-size: 14px;
	line-height: 1.79;
	letter-spacing: 0.28px;
	text-align: left;
	color: #656565;
}

.content .template.has-sidebar .sidebar ul li.active > a,
.content .template.has-sidebar .filter-sidebar ul.nav ul li.active > a {
	color: var(--green);
}

.content .template.has-sidebar .filter-sidebar hr {
	border:none;
	border-top: 2px solid #eeeeec;

}

.content .template.has-sidebar .filter-sidebar > div .upper p {
	font-family: var(--font-family-1);
	font-size: 18px;
	font-weight: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0.45px;
	text-align: left;
	color: #0d0d0d;
}

.content .template.has-sidebar .filter-sidebar > div.tab .upper::before,
.content .template.has-sidebar .filter-sidebar > div.tab .upper::after {
    width: 16px;
    height: 2px;
    background-color: var(--green);
}

.content .template.has-sidebar .filter-sidebar .form input[type='checkbox'] + label::before {
    background-color: rgba(255, 255, 255, 0);
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(45deg);
    width: 6px;
    height: 10px;
	top:-3px
}

.content .template .listing.listing-product .header span.count {
    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: right;
    color: #0d0d0d;
}

.content .template .listing.listing-product .header {
    flex-wrap: wrap;
}

.content .template .listing .listing-options {
    order: 3;
	z-index: 9;
}

.content .template .listing.listing-product .header .form {
    order: 1;
    width: 100%;
    margin: 0 auto 2rem;
}

.content .template .listing.listing-product .header .form .input-wrapper {
    padding-top: 0;
	position: relative;
}

.content .template .listing.listing-product .header .form.all_product{
	margin-right:0px;
	margin-bottom: 0;
}

.content .template .listing.listing-product .header .form.all_product .input-wrapper{
	margin-left: 0;
}

.content .template .listing.listing-product .header .all_product .custom-select .placeholder{
	background: var(--green);
	border-color:var(--green);
	color:white;
}

.content .template .listing.listing-product .header .all_product .custom-select .placeholder::before{
	border-right: 2px solid white;
    border-bottom: 2px solid white;
}

.content .template .listing.listing-product .header .all_product .custom-select .options-wrapper {
    border-left: 2px solid var(--green);
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
	background: var(--green);
    top: 49px;
    z-index: 5;
}

.content .template .listing.listing-product .header .all_product .custom-select .options > div{
	color: white
}

.content .template .listing.listing-product .header .all_product .custom-select .options > div:hover{
	color: #0d0d0d
}

.content .template .listing.listing-product .header input {
    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: left;
    color: #0d0d0d;
    border: 2px solid #e3e3e2;
    border-radius: 30px;
    padding: 19px 0;
    padding-left: 32px;
}

.content .template .listing.listing-product .header input::placeholder {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-align: inherit;
    color: inherit;
}

.content .template .listing.listing-product .header .form a {
    position: absolute;
    height: 60px;
    width: 53px;
    top: 0;
    right: 16px;
    font-size: 0;
}

.content .template .listing.listing-product .header .form a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background-image: url(/assets/img/lupe.svg);
}

.content .template .listing.listing-product .header .select-wrapper {
    order: 2;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.content .template .listing.listing-product .header .custom-select {
    height: auto;
    padding: 0;
    background: initial;
    border: 0;
    border-radius: initial;
}

.content .template .listing.listing-product .header .custom-select .placeholder {
    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: left;
    color: #0d0d0d;
    border: 2px solid #e3e3e2;
    border-radius: 30px;
    padding: 19px 31px;
    z-index: 3;
}

.content .template .listing.listing-product .header .custom-select .placeholder::before {
    right: 31px;
    border-right: 2px solid #0d0d0d;
    border-bottom: 2px solid #0d0d0d;
    width: 9px;
    height: 10px;
}

.content .template .listing.listing-product .header .custom-select.open .placeholder {
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.content .template .listing.listing-product .header .custom-select .options-wrapper {
    border-left: 2px solid #e3e3e2;
    border-right: 2px solid #e3e3e2;
    border-bottom: 2px solid #e3e3e2;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-top: 20px;
    top: 29px;
    padding-right: 0;
    padding-left: 31px;
    margin-top: -3px;
}

.content .template .listing.listing-product .header .custom-select .options > div {
    padding-left: 0;
    font-family: var(--font-family-1);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: left;
    color: #0d0d0d;
}

.content .template .listing.listing-product .header span.count {
    order: 4;
}

.content .template .listing .product .details > div {
	display: flex;
	justify-content: space-between;
}

.content .template .listing .product .image {
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
	max-height: 370.5px;
	display: flex;
}

.content .template .listing .product .image img {
	transition: var(--transition);
	max-height: 370.5px;
    width: auto;
	object-fit: contain;
	margin: auto;
}

.content .template .listing .product .image span {
	position: absolute;
	top: 10px;
	left: 10px;
	background-color: #000;
	border-radius: 50%;
	padding: 14px 6px;
	font-family: var(--font-family-1);
	font-size: 11.5px;
	font-weight: 300;
	letter-spacing: 0.23px;
	text-align: center;
	color: #fff;
}

.content .template .listing .product p {
	font-family: var(--font-family-1);
	font-size: 12px;
	font-weight: 300;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.24px;
	text-align: left;
	color: #acacac;
}

.content .template .listing .product .fav {
	width: 22px;
	height: 19px;
}

.content .template .listing .product a.title {
	font-family: var(--font-family-2);
	font-size: 18px;
	font-weight: 300;
	line-height: 1.33;
	letter-spacing: 0.45px;
	text-align: left;
	color: #0d0d0d;
	text-transform: initial;
	margin-bottom: 22px;
	display: block;
}
.list-products .pagination ul,
.listing .pagination ul{
	text-align: center;
	padding-left: 0 !important;
}
.list-products .pagination ul li,
.listing .pagination ul li {
	font-family: var(--font-family-2);
	font-size: 24px;
	font-weight: 300;
	line-height: 1.15;
	letter-spacing: normal;
	color: #0d0d0d;
}

.list-products .pagination ul li a,
.listing .pagination ul li a {
	font-family: var(--font-family-1);
	font-weight: 300;
	color: #0d0d0d;
	cursor: pointer;
}

.list-products .pagination ul li a:hover,
.list-products .pagination ul li a:focus,
.list-products .pagination ul li.active a,
.listing .pagination ul li a:hover,
.listing .pagination ul li a:focus,
.listing .pagination ul li.active a {
	color: var(--green);
}

.listing .pagination ul li.next,
.listing .pagination ul li.prev {
	vertical-align: bottom;
	margin-bottom: 0;
}

.list-products .pagination ul li.next,
.list-products .pagination ul li.prev{
	vertical-align: top;
	margin-bottom: 0;
}

.list-products .pagination ul li.prev a,
.list-products .pagination ul li.next a,
.listing .pagination ul li.prev a,
.listing .pagination ul li.next a {
	width: 34px;
	height: 26px;
	background-image: url('/assets/img/arrow-green.svg');
	background-size: cover;
	background-position: center center;
}

.list-products .pagination ul li.prev.disabled a,
.list-products .pagination ul li.next.disabled a,
.listing .pagination ul li.prev.disabled a,
.listing .pagination ul li.next.disabled a {
	background-image: url('/assets/img/template/arrow-right-disabled.png');
}

.content .template .listing.listing-product .row > .product{
	text-align: center;
}


@media (min-width: 768px) {
	.content .template .listing.listing-product .row > .product {
		padding: 35px 35px 0;
		margin-bottom: 25px;
	}

    .content .template.has-sidebar .filter-sidebar > div > .lower > div:not(.form) {
        padding-top: 0;
        margin-top: 0;
    }

	.content .template .listing .product .image {
		height: 100%;
	}
}

.list-products .itens > div.pagination{
	max-width: 100%;
}

@media (min-width: 992px) {
	.content .template .listing.listing-product .header .form.all_product{
		margin-right:10px;
	}
    .content .template .listing.listing-product .header .form {
        max-width: 303px;
        margin: 0;
        margin-bottom: 2rem;
    }

    .content .template .listing.listing-product .header .select-wrapper {
        max-width: 303px;
        margin-left: 10px;
        margin-right: 0;
    }
	.list-products .itens > div.pagination,
	.content .template .listing.listing-product .pagination {
		margin-top: 110px;
	}
	.content .template .listing.listing-product .header {
		flex-wrap: nowrap;
	}
	.content .template .listing.listing-product .header span.count {
		flex: 50%;
	}
}

.content .template .listing.listing-product .header + .count_product{
	margin-top: -40px;
	margin-bottom: 20px;
	text-align: right;
}
@media (max-width: 767px) {
	.content.shop .template.has-sidebar.has-sidebar-left{
		padding-top: 30px;
	}
	.content.shop .template .listing.listing-product .header .custom-select .placeholder,
	.content.shop .template .listing.listing-product .header input{
		padding: 15px 31px;
		border-radius: 24px;
	}
	.content.shop .template .listing.listing-product .header .select-wrapper{
		margin-bottom: 0;
	}
	.content.shop .template .listing.listing-product .header .form{
		margin-bottom: 10px;
	}

	.content.shop .template .listing.listing-product .header .order-select,
	.content.shop .template .listing.listing-product .header{
		margin-bottom: 15px;
	}

	
}
@media (min-width: 992px) {
	.content .template .listing.listing-product .header + .count_product{
		margin-top: 20px;
		margin-bottom: 40px;
	}
}

@media (min-width: 1025px) {
	.content .template .listing.listing-product .header span.count {
		flex: auto;
	}
	.content .template .listing.listing-product .header {
		flex-wrap: wrap;
	}
}

@media (min-width: 1200px) {
    .content .template .listing.listing-product .header {
        flex-wrap: nowrap;
		margin-bottom: 10px;
    }

    .content .template .listing.listing-product .header .form {
        margin: 0;
        max-width: 303px;
    }

    .content .template .listing.listing-product .header .select-wrapper {
        margin-left: 10px;
        margin-bottom: 0;
        margin-right: auto;
        max-width: 303px;
    }

	.content .template .listing .product .image:hover img {
		transform: scale(1.1);
	}

	.content .template.has-sidebar .filter-sidebar ul.nav > li, 
	.content .template.has-sidebar .filter-sidebar ul.nav > li > a:hover, 
	.content .template.has-sidebar .filter-sidebar ul.nav > li > a:focus {
		font-weight: 300;
		color: var(--green);
		letter-spacing: 0.5px;
	}

	.content .template.has-sidebar .filter-sidebar ul.nav ul li.active > a, 
	.content .template.has-sidebar .filter-sidebar ul.nav ul li a:hover, 
	.content .template.has-sidebar .filter-sidebar ul.nav ul li a:focus {
		color: var(--green);
	}

	.content .template.has-sidebar .sidebar ul li.active_subcategory > a,
	.content .template.has-sidebar .filter-sidebar ul.nav ul li.active_subcategory > a{
		color: #1f1f1f;
	}

	.list-products .pagination ul li.next:hover a,
	.listing .pagination ul li.next:hover a {
		transform: translateX(10px);
	}

	.list-products .pagination ul li.prev:hover a,
	.listing .pagination ul li.prev:hover a {
		transform: rotate(180deg) translateX(10px);
	}

	.content .template .listing.listing-product .header .custom-select .placeholder {
		cursor: pointer;
	}
}


.content .template .form input[type='checkbox'], .content .template .form input[type='radio'] {
    display: none;
}

.content .template .form input, .content .template .form textarea, .content .template .form select {
    appearance: none;
    -webkit-appearance: none;
    font-family: var(--font-family-1);
    font-size: 16px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1;
    width: 100%;
    padding: 15px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #d0d1d1;
    resize: none;
    transition: var(--transition);
}

.content .template .form input[type='checkbox'] + label, .content .template .form input[type='radio'] + label {
    border: 2px solid #e3e3e2;
    width: 24px;
    height: 24px;
	margin-bottom: 0;
}

.content .template .form input[type='checkbox'] + label, .content .template .form input[type='radio'] + label {
    display: inline-block;
    vertical-align: middle;
    height: 23px;
    width: 23px;
    background-color: white;
    cursor: pointer;
    position: relative;
    border: 1px solid #d0d1d1;
    transition: var(--transition);
}

.content .template.has-sidebar .filter-sidebar .form input[type='checkbox'] + label::before {
    background-color: rgba(255, 255, 255, 0);
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(
45deg);
    width: 6px;
    height: 10px;
}


.content .template .form input[type='checkbox'] + label::before {
    top: -2px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 5px;
    height: 10px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(
45deg);
}
.content .template .form input[type='checkbox'] + label::before, .content .template .form input[type='radio'] + label::before {
    content: "";
    position: absolute;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.content .template .form input[type='checkbox']:checked + label::before, .content .template .form input[type='radio']:checked + label::before {
    opacity: 1;
}

.content .template .form input[type='checkbox'] + label + label, .content .template .form input[type='radio'] + label + label {
    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.28px;
    text-align: left;
    color: #656565;
}

.content .template .form input[type='checkbox'] + label + label, .content .template .form input[type='radio'] + label + label {
    display: inline-block;
    padding-left: 15px;
    font-weight: 300;
    line-height: 1.25;
    flex: 1;
    margin-top: 5px;
    cursor: pointer;
}



.content .template.has-sidebar.has-sidebar-right {
    padding: 40px 0 0;
}

@media(min-width: 768px) {
    .content .template.has-sidebar.has-sidebar-right {
        padding: 70px 0;
    }

    .content .template.has-sidebar .container {
		flex-direction: initial;
	}
	.content .template.has-sidebar.has-sidebar-right .container > div:not(.sidebar) {
		padding-right: 60px;
	}
	
}

@media(min-width: 992px) {
	.content .template.has-sidebar.has-sidebar-right {
        padding: 100px 0;
    }
  
    .content .template.has-sidebar.has-sidebar-right .container > div:not(.sidebar) {
        padding-right: 80px;
    }
  
}

/*******************************************/
/********** CONTENT PAGE TEMPLATE **********/
/*******************************************/

.content .template h2:first-child,
.content .template h3:first-child,
.content .template h4:first-child,
.content .template p:first-child,
.content .template ul:first-child,
.content .template ol:first-child {
	margin-top: 0;
}

.content .template h2:last-child,
.content .template h3:last-child,
.content .template h4:last-child,
.content .template p:last-child,
.content .template ul:last-child,
.content .template ol:last-child {
	margin-bottom: 0;
}

.content .template h2, .content .template .h2 {
	margin: .75em 0;
}
.content .template h3, .content .template .h3 {
	margin: .75em 0;
}
.content .template h4, .content .template .h4 {
	margin: .75em 0;
}

.content .template p,
.content .template ul,
.content .template ol {
	margin: 1em 0;
}


.content .template ul,
.content .template ol {
	padding-left: 2em;
	list-style: none;
	margin: 1.5em 0;
}
.content .template ul li,
.content .template ol li {
	position: relative;
	margin-bottom: 5px;
}
.content .template ul li p,
.content .template ol li p {
	margin: 0;
}
.content .template ul li::before {
	content: "";
	display: inline-block;
	height: 12px;
	width: 1em;
	margin-left: -2em;
	margin-right: 1em;
	background-repeat: no-repeat;
}

.content .template.product-page ul li::before {
	margin-left: -1.5em;
	margin-right: .5em;
}

.content .template ol {
	counter-reset: item;
}
.content .template ol li {
	counter-increment: item;
}
.content .template ol li::before {
	content: counter(item) ".";
	display: inline-block;
	width: 2em;
	margin-left: -2em;
}
.content .template {
	padding: 70px 0;
}

.content .banner.noimg + .template {
	padding-top: 0px;
}

@media(min-width: 768px) {
	

	.content .template p big {
		padding-left: 100px;
		margin-top: 25px;
	}
	.content .template blockquote {
		padding-left: 62px;
	}


	.content .template blockquote::before {
		left: 65px;
		width: 29px;
  		height: 24px;
	}
}

@media(min-width: 992px) {
	.content .template {
		padding: 100px 0;
	}

	.content .banner.noimg + .template {
		padding-top: 35px;
	}
	.content .template.product-page {
		padding-top: 200px;
	}

	.content .template.form-job {
		padding-top: 80px;
	}
}


/*****************************************/
/********** CONTENT PAGE BANNER **********/
/*****************************************/

.content .banner {
	position: relative;
}


.content .banner ul {
	padding: 0;
	margin-bottom: 15px;
	list-style: none;
	font-size: 0;
}
.content .banner ul li {
	display: inline-block;
	font-size: 11px;
	font-weight: 300;
	text-transform: none;
	color: white;
}

.content .banner.noimg {
    padding: 55px 0 63px;
}

.content .banner.noimg ul li,
.content .banner.noimg h1 {
	color: var(--black);
}

.content .banner ul li + li::before {
	content: "/";
	padding-left: .5em;
	padding-right: .5em;
}

.content .banner ul li a.disabled {
	pointer-events: none;
}
.content .banner ul li a:hover,
.content .banner ul li a:focus {
	opacity: .5;
}

.content .banner h1 {
	margin: 0;
}

.content .banner.noimg span {
    font-family: var(--font-family-2);
    font-size: 12px;
    color: #acacac;
    font-weight: 300;
    letter-spacing: .24px;
    text-align: center;
    display: block;
    margin-top: 36px;
	text-transform: capitalize;
}

.content .banner.noimg span > span{
	display: inline-block;
}

.content .banner.noimg span > a:hover{
	color: var(--green);
}

.content.article .banner.noimg span{
	margin-top: 16px;
}

@media(min-width: 768px) {
	
	.content .banner {
		padding: 0px 0 0px;
		/* margin-bottom: 35px; */
		overflow: hidden;
	}

	
}

@media(min-width: 1025px) {
	.content .banner ul li {
		font-size: 14px;
	}
	.content .banner.noimg {
		padding: 140px 0 50px;
	}
}

@media(min-width: 1200px) {
	.content .banner {
		padding: 70px 0 0px;
	}
}

.banner + .container-full2{
	padding-top:80px
}

.listing-pests{
    display: flex;
	flex-wrap: wrap;
	margin-bottom: 100px;
}

.listing-pests .item{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
	margin: 0;
	margin-bottom: 25px;
}

.listing-pests .item a{
	display: block;
    overflow: hidden;
}


.listing-pests .item .image::before{
    content:"";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    background-image: linear-gradient(to bottom, rgba(22, 22, 22, 0), rgba(22, 22, 22, 0.7));
    z-index: 1;
	will-change: transform;
}

.listing-pests .item .image{
	position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}	

.listing-pests .item .image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: static;
    transform: none;
    transition: var(--transition);
}

.listing-pests .item a:hover .image > img{
    -webkit-transform: scale(1.1);
        transform: scale(1.1);
	object-position: center;
}



.listing-pests .item a > div.desc{
    position: absolute;
    bottom: 21px;
    left:32px;
    padding-right: 45px;
    font-weight: normal;
    font-size: 20px;
    color: #fff;
    z-index: 5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.listing-pests .item a > div.desc i{
    display: block;
    font-style: italic;
    line-height: 1.33;
    letter-spacing: 0.45px;
    font-size: 16px;
    margin-top: 4px;
}

.listing-pests .item a > div.desc:after{
    content:"";
    background: url(/assets/img/arrow-item.svg) no-repeat;
    width: 42px;
    height: 32px;
    display: block;
    margin-top: 16px;
    transition: var(--transition);
}

.listing-pests .item a:hover > div.desc:after{
    margin-left: 10px;
}

@media (min-width: 768px) {
	.banner + .container-full2{
		padding-top:40px
	}

    .listing-pests .title{
        font-size: 80px;
        padding: 60px 15px;
        padding-bottom: 50px;
    }

	.listing-pests .item{
        -ms-flex: 0 0 calc(50% - 50px);
        flex: 0 0 calc(50% - 50px);
        max-width: calc(50% - 50px);
		margin: 25px;
    }
}

@media (min-width: 1024px) {
	.banner + .container-full2{
		padding-top:100px
	}
    .listing-pests .item{
        -ms-flex: 0 0 calc(33.3333% - 50px);
        flex: 0 0 calc(33.3333% - 50px);
        max-width: calc(33.3333% - 50px);
		margin: 25px;
    }

    .listing-pests .item a > div.desc{
        font-size: 24px;
    }

    .listing-pests .item a > div.desc i{
        font-size: 18px;
        margin-top: 7px;
    }
}

.content .template.has-sidebar .filter-sidebar ul.nav-left li{
	text-transform: none;
}
.nav-left li a{
	font-size: 20px;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 2;
	letter-spacing: 0.5px;
}

.content .template.has-sidebar .filter-sidebar ul.nav.nav-left > li + li {
    margin-top: 5px;
}

.content .template.has-sidebar > .container > div >.template{
	padding-top: 0;
}

.content .template.has-sidebar .list-products .itens{
	flex-wrap: wrap;
}

.gray {
    background-color: #fafafa;
}
.content .template.has-sidebar + .template.gray {
	margin-top: 85px;
}

@media(min-width:992px){
	.content .template.has-sidebar .list-products .itens{
		margin: 0 -15px;
	}
	.content .template.has-sidebar .list-products .itens .item{
		margin: 25px 0 35px;
	}
	.content .template.has-sidebar .list-products .itens > .item{
		-ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
	}
}

@media(min-width:1200px){
	.content .template.has-sidebar + .template.gray {
		padding-bottom: 145px;
	}
}

/***********************************/
/********** Product Page **********/
/*********************************/

@media(min-width:768px){
.content.shop.product {
	padding-top: 0px;
}
}


.content .product-page .banner h1,
.content .product-page .banner ul {
	text-align: left;
}


.content.product .banner ul,
.content.product .banner h1 + a,
.content.product .product-page .banner ul li a {
	font-family: var(--font-family-2);
	font-size: 14px;
	font-weight: 300;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.28px;
	color: #acacac;
}

.content .product-page .banner h1{
	margin-bottom: 10px;
}
.content .product-page .banner h1 + a{
	color: var(--green);
}

.content .product-page .banner h1 + a:hover,
.content.product .product-page .banner ul li a:hover{
	color: var(--black);
}

.content .product-page .banner ul li {
	color: inherit;
}

.content .product-page.template li a em{
	font-weight: 600;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.content .product-page .slider-wrapper {
	position: relative;
	border: 1px solid #f0f0f0;
}

.content .product-page .slider-wrapper .enlarge {
	position: absolute;
	width: 354px;
	height: 354px;
	border: 2px solid #acacac;
	transition: var(--transition);
}

.content .product-page .slider-arrows {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	flex-direction: row;
	pointer-events: none;
}

.content .product-page .slider-arrows div {
	display: inline-block;
	position: relative;
	cursor: pointer;
	pointer-events: auto;
	width: 22px;
    height: 42px;
}

.content .product-page .slider-wrapper div.slick-hidden {
	display: none;
}



.content .product-page .slider-arrows div::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(/assets/img/template/arrow-dark.svg);
	background-repeat: no-repeat;
    transition: inherit;
}

.content .product-page .slider-arrows > div.prev {
    margin-right: auto;
    margin-left: 20px;
    transform: rotate(-180deg);
}

.content .product-page .slider-arrows > div.next {
	margin-left: auto;
	margin-right: 20px;
}

.content .product-page .product-details {
	margin-top: 48px;
	margin-bottom: 70px;
}

.content .product-page .product-details .price {
	font-size: 23px;
	font-weight: bold;
	font-style: normal;
	line-height: 1.43;
	letter-spacing: 0.58px;
	color: var(--black);
	display: block;
	margin-bottom: 45px;
}

.content .product-page .product-details .price > span,
.prod_escolhidos p.price > span{
	font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.28px;
    color: #acacac;
	display: block;
}

.prod_escolhidos p.price > span{
	font-size: 12px;
}

.content .product-page .product-details > div{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

@media(min-width: 768px) and (max-width: 992px) {
	.content .product-page .product-details > div{
		justify-content: left;
	}
	.content .product-page .product-details .button{
		padding: 19px 20px 18px !important;
		width: 100%;
		text-align: center;
	}
	.content .product-page .product-details .button::before{
		border-radius: 30px !important;
	}
}


.content .product-page .product-details .select-wrapper,
.content .prod_escolhidos .select-wrapper {
    width: 180px;
    margin-right: 10px;
}

.content .prod_escolhidos .select-wrapper{
	width: 146px;
	margin: 25px auto 0;
	position: relative;
}

.content .prod_escolhidos .select-wrapper label {
	position: absolute;
    top: -12px;
    padding: 5px;
    background-color: #ffffff;
    font-family: var(--font-family-1);
    font-size: 11px;
    color: #767575;
    z-index: 1;
    pointer-events: none;
    left: 22px;
	line-height: normal;
  	letter-spacing: 0.28px;
}


.content .product-page .product-details .custom-select,
.content .prod_escolhidos .custom-select {
    height: auto;
    padding: 0;
    background: initial;
    border: 0;
    border-radius: initial;
}

.content .product-page .product-details .custom-select .placeholder,
.content .prod_escolhidos .custom-select .placeholder {
    font-family: var(--font-family-1);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: left;
    color: #0d0d0d;
    border: 2px solid #e3e3e2;
    border-radius: 30px;
    padding: 19px 31px;
    z-index: 3;
}

.content .prod_escolhidos .custom-select .placeholder {
	padding: 12px 26px;
}

.content .product-page .product-details .custom-select .placeholder::before,
.content .prod_escolhidos .custom-select .placeholder::before {
    right: 31px;
    border-right: 2px solid #0d0d0d;
    border-bottom: 2px solid #0d0d0d;
    width: 9px;
    height: 10px;
}

.content .product-page .product-details .custom-select.open .placeholder,
.content .prod_escolhidos .custom-select.open .placeholder {
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.content .product-page .product-details .custom-select .options-wrapper,
.content .prod_escolhidos .custom-select .options-wrapper {
    border-left: 2px solid #e3e3e2;
    border-right: 2px solid #e3e3e2;
    border-bottom: 2px solid #e3e3e2;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-top: 20px;
    top: 29px;
    padding-right: 0;
    padding-left: 31px;
    margin-top: -3px;
}

.content .product-page .product-details .custom-select .options > div,
.content .prod_escolhidos .custom-select .options > div {
    padding-left: 0;
    font-family: var(--font-family-1);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: left;
    color: #0d0d0d;
}

.content .product-page .product-details .button {
	padding: 15px 20px;
	margin-top: 20px;
}

.content .product-page .product-details .button::before {
	border-radius: 24.5px;
}

.content .product-page .product-details .button.icon span {
	padding-left: 31px;
	position: relative;
}

.content .product-page .product-details .button.icon span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	width: 21px;
	height: 20px;
	background: url("/assets/img/cart_white.svg") no-repeat center left;
}

.content .product-page .product-details .indisponivel .button{
	pointer-events: none;
}

.content .product-page .product-details .indisponivel .button span {
	padding-left: 0;
}
.content .product-page .product-details .indisponivel .button span::before {
	display: none;
}

.content .product-page .product-details .indisponivel .button::before{
	background: #b7b7b6;
}

.content .product-page .listing .accordion .description > .file:first-child{
	margin-top: 0;
}

.content .product-page .listing:last-of-type{
	border: none;
	box-sizing: content-box;
    overflow: visible;
}

.content .product-page > .row > div:nth-child(2) .template-module,
	.content .product-page > .row > div:nth-child(2) .listing {
		margin-left: 0px;
		margin-right: 0px;
	}


.content .product-page .listing .accordion h3{
	font-style: normal;
}


@media (min-width: 768px) {
	.content .product-page .banner ul,
	.content .product-page .banner h1 + span {
		font-size: 20px;
	}

	.content .product-page .banner ul{
		margin-bottom: 10px;
	}

}

@media (min-width: 992px) {
	.content .product-page .banner ul,
	.content .product-page .banner h1 + span {
		font-size: 14px;
	}

	.content .product-page .product-details + .template-module {
		margin-top: 40px;
		margin-bottom: 20px;
	}

	.content .product-page .product-details .button {
		margin-top: 0;
	}

	.content .product-page .product-details > div{
		flex-wrap: nowrap;
		justify-content: inherit;
	}

	
}

@media (min-width: 1100px) {
	.content .product-page .product-details .button {
		padding: 14px 30px;
		font-size: 14px;
	}
}

@media (min-width: 1200px) {
	
	.content .product-page .banner h1 {
		font-size: 60px;
	}

	.content .product-page .product-details .button {
		padding: 19px 53px;
	}

	.content .product-page .product-details .button::before {
		border-radius: 30px;
	}
}

.content.shop .gray .listing.listing-button .button {
    padding: 9px 20px;
}
@media (min-width: 768px){
	.content.shop .gray .listing.listing-button .button {
		padding: 14px 30px;
		font-size: 14px;
	}
}

/***************************************/
/********** Related Products **********/
/*************************************/

.related {
	padding: 5px 0 100px;
}

.related .row {
	margin: 0 -25px;
	justify-content: center;
	text-align: center;
	
}

.related .row > div {
	padding-left: 25px;
	padding-right: 25px;
	margin-bottom: 25px;
}

.related .container.container-full > p {
	font-family: var(--font-family-2);
	font-size: 22px;
	font-weight: 300;
	line-height: 1.18;
	letter-spacing: 0.55px;
	text-align: left;
	color: #0d0d0d;
	margin-bottom: 65px;
}

@media (min-width: 768px) {
	.related {
		padding: 101px 0 150px;
	}

	.related .container.container-full > p {
		font-size: 30px;
	}

	.related .row > div{
		margin-bottom: 0;
	}
}


/*******************************/
/********** News Page **********/
/*******************************/

.content.noticias .template .listing .article{
    padding: 40px 0 49px;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.5px;
}



.content.noticias .template .listing .article p{
    margin-top: 30px;
    margin-bottom: 35px;
}

.content.noticias .template .listing .article p > a{
    color: var(--green);
    border-bottom: 1px solid currentColor;
}

.content.noticias .template .listing .article p > a:hover{
    border-bottom: 1px solid transparent;
}

.content.noticias .template .listing .article h2 + .button{
    margin-top: 20px;
}

@media (min-width: 768px) {
    .content.noticias .template .listing .article{
        padding: 119px 0 120px;
        font-size: 20px;
    }

    .content.noticias .template .listing .article p{
        margin-top: 60px;
        margin-bottom: 55px;
    }

    .content.noticias .template .listing .article h2 + .button{
        margin-top: 40px;
    }

	.content.noticias .template .listing .article{
		padding: 40px 0 49px;
	}
}

.content.noticias .template .listing .items{
    display: flex;
    margin-top: 40px;
    flex-direction: column;
}

.content.noticias .template .listing .items > div.article{
    text-align: center;
    max-width: 460px;
    margin-bottom: 35px;
}

.content.noticias .template .listing .items > div.article > a > div{
    overflow: hidden;
    border:1px solid #f0f0f0;
    position: relative;
    display: inline-block;
}

.content.article .template .template-module:first-of-type > div > img{
	border:1px solid #f0f0f0;
}



.content.noticias .template .listing .items > div.article > a > div img,
.content.noticias .template .listing .items > div.article > a .date,
.content.noticias .template .listing .items > div.article > a .title{
    transition: var(--transition);
	text-align: center;
}

.content.noticias .template .listing .items > div.article > a > div img{
    max-width: 100%;
	margin: 0;
	height: auto;
	object-fit: contain;
}
.content.noticias .template .listing .items > div.article > a:hover > div img{
    transform: scale(1.05);
}

.content.noticias .template .listing .items > div.article .date{
    font-family: var(--font-family-2);
    font-size: 12px;
    color: #acacac;
    font-weight: 300;
    letter-spacing: .24px;
    display: block;
    margin: 8px;
}

.content.noticias .template .listing .items > div.article .title{
    margin: 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.43;
    letter-spacing: 0.58px;
    color: var(--black);
}

.content.noticias .template .listing .items > div.article a:hover .title{
    color: var(--green);
}

.content.noticias .template .listing .items > div.article a:hover .date{
    color: var(--black);
}



@media (min-width: 768px) {
    .hp-universe .itens > div{
        margin: 0 25px;
    }
    .content.noticias .template .listing .items > div.article .title{
        font-size: 23px;
    }
	.content.noticias .template .listing .items > div.article{
		padding: 0 25px;
	}
    .content.noticias .template .listing .items{
        margin-top: 0px;
        flex-direction: row;
		margin: 0 -25px;
    }
}


/*******************************/
/********** BLOG PAGE **********/
/*******************************/

@media (min-width: 992px){
	.content.blog .listing .article .button {
		padding: 13px 35px;
	}
	.content.article .related .button {
		padding: 13px 35px;
	}
}

.content.blog .listing .article .button,
.content.blog .listing .article .button:hover {
	font-size: 14px;
}

.content.article .related .button {
	text-align: left;
}

.content.blog .template .listing{
	max-width: 640px;
}


.content.blog .template.has-sidebar-right .container {
	z-index: 2;
}

.content.blog .template.has-sidebar.has-sidebar-right .sidebar {
	background-color: rgba(255, 255, 255, 0);
}

.content.blog .template.has-sidebar-right .sidebar .form input {
	font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: left;
    color: #0d0d0d;
    border: 2px solid #e3e3e2;
    border-radius: 30px;
    padding: 19px 0;
    padding-left: 32px;
}

.content.blog .template.has-sidebar-right .sidebar .form input + a[submit] {
	position: absolute;
    height: 60px;
    width: 53px;
    top: 0;
    right: 16px;
    font-size: 0;
    cursor: pointer;
}

.content.blog .template.has-sidebar-right .sidebar .form input + a[submit]::before {
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background-image: url(/assets/img/lupe.svg);
}

.content.blog .template.has-sidebar-right .sidebar .custom-select .placeholder {
	border: 2px solid #e3e3e2;
	border-radius: 30px;
	padding: 19px 0;
	padding-left: 32px;
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.28px;
	text-align: left;
	color: #0d0d0d;
	cursor: pointer;
	z-index: 3;
}

.content.blog .template.has-sidebar-right .sidebar .custom-select.open .placeholder {
	border-bottom: 2px solid rgba(255, 255, 255, 0);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.content.blog .template.has-sidebar-right .sidebar .custom-select .placeholder::before {
	right: 32px;
	width: 9px;
    height: 9px;
}

.content.blog .template.has-sidebar-right .sidebar .custom-select .options-wrapper {
	border-left: 2px solid #e3e3e2;
    border-right: 2px solid #e3e3e2;
    border-bottom: 2px solid #e3e3e2;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-top: 0px;
    top: 0px;
    padding-right: 0;
    padding-left: 31px;
    margin-top: -3px;
	position: relative;
}

.content.blog .template.has-sidebar-right .sidebar .custom-select .options-wrapper .options > div {
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.28px;
	text-align: left;
	color: #0d0d0d;
	transition: var(--transition);
	padding-left: 0;
}

.content.blog .template.has-sidebar-right .sidebar .custom-select .options-wrapper .options > div:hover {
	color: var(--green);
}

.content.blog .template.has-sidebar-right .sidebar .input-wrapper {
	margin: 20px 0;
	display: flex;
}

.custom-select.open .options{
	padding-top: 15px;
	padding-bottom: 15px;
}

.content.blog .template.has-sidebar-right .sidebar .input-wrapper:first-child {
	padding-top: 0;
	margin-top: 0;
	position: relative;
}

.content.blog .template.has-sidebar-right .listing .article .img-container {
	display: inline-block;
	overflow: hidden !important;
	position: relative;
}

.content.blog .template.has-sidebar-right .listing .article img {
	margin-top: 0;
	margin-bottom: 0;
	transition: var(--transition);
}

.content.blog .template.has-sidebar-right .listing .article .img-container:hover img {
	transform: scale(1.1);
}

.content.blog .template.has-sidebar-right .listing .article div:nth-child(2) {
	margin-top: 10px;
	display: flex;
}

.content.blog .template.has-sidebar-right .listing .article div:nth-child(2) span,
.content.blog .template.has-sidebar-right .listing .article div:nth-child(2) a {
	font-family: var(--font-family-2);
	font-size: 12px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.24px;
	text-align: left;
	color: #acacac;
	display: inline-block;
	transition: var(--transition);
}

.content.blog .template.has-sidebar-right .listing .article div:nth-child(2) span{
	text-transform: capitalize;
}

.content.blog .template.has-sidebar-right .listing .article div:nth-child(2) a:hover {
	color: var(--green);
}

.content.blog .template.has-sidebar-right .listing .article p {
	font-family: var(--font-family-1);
	font-size: 22px;
	font-weight: 300;
	line-height: 1.18;
	letter-spacing: 0.55px;
	text-align: left;
	color: var(--black);
	margin-top: 5px;
	margin-bottom: 21px;
}

@media (min-width: 768px) {

	.content.blog .template.has-sidebar.has-sidebar-right .sidebar {
		width: 303px;
		padding: 0;
	}

	.content.blog .template.has-sidebar-right .listing .article p {
		font-size: 30px;
		line-height: 1.2;
		letter-spacing: 0.75px;
	}

	.content.blog .template.has-sidebar-right .listing .article {
		padding: 35px 0 46px;
	}

	.content.blog .template.has-sidebar-right .listing .article:first-child {
		padding-top: 0;
	}
}


.content.article .banner + .template {
	padding-top: 0;
}


.content .article-nav {
	border-top: 1px solid #e0dedd;
    margin-top: 20px;
    padding-top: 45px;
}

.content .article-nav .row {
    margin: -10px;
}
.content .article-nav .row > div {
    padding: 10px
}
.content .article-nav .row > div:nth-child(2) {
    text-align: center;
    order: 1;
}
.content .article-nav .row > div:last-child {
	text-align: right;
}
.content .article-nav .row > div a {
	font-size: 1.125rem;
	color: rgb(var(--primary));
}
.content .article-nav .row > div a:hover,
.content .article-nav .row > div a:focus {
	opacity: .5;
}
.content .article-nav .row > div.disabled a {
	opacity: .25;
	pointer-events: none;
}

.content .article-nav .row > div.prev a,
.content .article-nav .row > div.next a {
	padding-left: 40px;
	position: relative;
}
.content .article-nav .row > div.prev a::before,
.content .article-nav .row > div.next a::before {
	content: "";
	position: absolute;
	top: 0;bottom: 0;
    margin: auto;
}

.content .article-nav .row > div.prev a {
	padding-left: 30px;
}
.content .article-nav .row > div.prev a::before {
	left: 0;
	transform: rotate(180deg);
}

.content .article-nav .row > div.next a {
	padding-right: 30px;
	padding-left: 0;
}
.content .article-nav .row > div.next a::before {
	right: 0;
}


@media(min-width: 992px) {	
    .content .article-nav .row > div.prev a,
    .content .article-nav .row > div.next a {
		padding-left: 40px;
	}
	.content .article-nav .row > div.next a {
		padding-right: 40px;
	}

	.content .article-nav .row > div.prev a::before, .content .article-nav .row > div.next a::before {
		height: 12px;
	    width: 27px;
	}
}

@media(min-width: 768px) {
	.content .article-nav {
		margin-top: 30px;
        padding-top: 65px;
	}

	.article .lower span.date {
		padding-left: 25px;
	}
	.content .article-nav .row > div:nth-child(2) {
        order: initial;
    }
}

.content .article-nav {
	border-top: 0;
	background-color: #fafafa;
	padding-top: 56px;
	padding-bottom: 54px;
}

.content .article-nav .row > div a {
	font-family: var(--font-family-1);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.15;
	letter-spacing: normal;
	text-align: left;
	color: #0d0d0d;
}


.content .article-nav .row > div.prev a::before, 
.content .article-nav .row > div.next a::before {
	content: "";
    position: absolute;
	top: 4px;
	width: 34px;
	height: 26px;
	background-image: url(/assets/img/arrow-green.svg);
	background-repeat: no-repeat;
	background-size: contain;
	transition: var(--transition);
}

.content .article-nav .row > div a:hover, 
.content .article-nav .row > div a:focus {
	opacity: 1;
	color: var(--green);
}

.content .article-nav .row > div.prev a:hover::before {
	transform: rotate(180deg) translateX(10px);
}

.content .article-nav .row > div.next a:hover::before {
	transform: translateX(10px);
}

.content .article-nav .row > div.prev a {
	padding-left: 53px;
}

.content .article-nav .row > div.next a {
	padding-right: 53px;
}

.content.article .related {
	padding-top: 0;
}

.content.article .related .container.container-sm {
	max-width: 1340px;
}

.content.article .related .row {
	margin: 0 -20px;
	text-align: left;
}

.content.article .related .row > div {
	padding-left: 20px;
	padding-right: 20px;
}

.content.article .related .row > div > a:not(.img-container, .button, .image) {
	font-size: 22px;
	display: block;
	margin-bottom: 20px;
}

@media(min-width: 768px) {
	.content .article-nav .row > div a {
		font-size: 24px;
	}

	.content.article .related .row > div > a:not(.img-container, .button, .image) {
		font-size: 30px;
	}
}



.related .container.container-sm {
	max-width: 1102px;
}

.related .row {
	margin: 0 -25px;
	justify-content: center;
}

.related .row > div {
	padding-left: 25px;
	padding-right: 25px;
}

.related .container.container-sm > p {
	font-family: var(--font-family-1);
	font-size: 22px;
	font-weight: 300;
	line-height: 1.18;
	letter-spacing: 0.55px;
	text-align: left;
	color: #0d0d0d;
	margin-bottom: 65px;
}

.related .row .img-container {
	position: relative;
	overflow: hidden;
	display: block;
}

.related .row .img-container span {
	position: absolute;
    top: 10px;
    left: 10px;
    background-color: #000;
    border-radius: 50%;
    padding: 9px 5px;
    font-family: var(--font-family-2);
    font-size: 8.5px;
    font-weight: 300;
    letter-spacing: 0.17px;
    text-align: center;
    color: #fff;
}

.related .row .img-container img {
	transition: var(--transition);
}

.related .row .img-container img:hover {
	transform: scale(1.1);
}

.related .row .img-container + div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
	margin-bottom: 5px;
}

.related .row .img-container + div span:not(.fav) {
	font-family: var(--font-family-2);
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.24px;
    text-align: left;
    color: #acacac;
    transition: var(--transition);
}

.related .row > div > a:not(.img-container, .button, .image) {
	font-family: var(--font-family-1);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.38;
    letter-spacing: 0.4px;
    text-align: left;
    color: #0d0d0d;
    display: block;
    transition: var(--transition);
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.related .container.container-sm > p {
		font-size: 30px;
	}

	.related .row > div > a:not(.img-container, .button) {
		font-size: 18px;
		line-height: 1.33;
		letter-spacing: 0.45px;
		margin-bottom: 0;
	}

}

@media (min-width: 1200px) {
	.related .row .img-container + div span a:hover {
		color: #0d0d0d;
	}

	.related .row > div > a:not(.img-container, .button):hover{
		color: var(--green);
	}
}

/********** LOWER DETAILS SECTION (BLOG LISTING item inherits from here) **********/

.article .lower span {
	display: block;
	font-size: 14px;
	color: #b6b9b9;
	line-height: 1.25;
}
.article .lower span.date {
    padding-left: 20px;
	padding-bottom: 12px;
	position: relative;
}
.article .lower span.date::before {
	content: "\f073";
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	color: var(--black);
	position: absolute;
	left: 0;
}

.article .lower span a {
	color: rgb(var(--primary));
	border-bottom: 1px solid transparent;
}
.article .lower span a:hover, .article span a:focus {
	border-bottom: 1px solid currentColor;
}




/**************************************/
/********** CONTENT 404 PAGE **********/
/**************************************/

.content.page404 {
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
}

.content.page404 .template .container {
	text-align: center;
}

.content.page404 .template h1 {
	font-size: 3.125rem;
	color: black;
	font-weight: bold;
	line-height: 1;
	margin: 0;
}
.content.page404 .template h2 {
	font-size: 1.875rem;
	margin: .75em 0 1.5em;
}


/*************************************/
/********** CONTACT US PAGE **********/
/*************************************/

/********** MAP **********/

.content.contact-us .map {
	padding-top: 75%;
    height: 0;
    position: relative;
}

.content.contact-us .map > .image {
    position: absolute;
    top: 0;bottom: 0;
    left: 0;right: 0;
	background-position: center;
	background-size: cover;
}

/********** DETAILS **********/

.content.contact-us .details {
	padding: 50px 0;
	position: relative;
	overflow: hidden;
}

.content.contact-us .details .row {
	margin: -10px -20px;
}
.content.contact-us .details .row > div {
	padding: 10px;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.content.contact-us .details .row > div > div {
	padding-left: 50px;
	position: relative;
}

@media(min-width: 768px) {
	.content.contact-us .map {
		padding-top: 36.57%;
	}

	.content.contact-us .details {
		padding: 70px 0;
	}

	/* .content.contact-us .details .row {
		margin: 0 -60px;
	} */
	/* .content.contact-us .details .row > div {
		padding: 0 60px;
	} */

	.content.contact-us .details .row > div > div::before {
		top: 5px;
	}
}

@media(min-width: 992px) {
	.content.contact-us .details {
		padding: 75px 0 90px;
	}
}

.content.contact-us .details .row > div > div {
	padding-left: 0;
}

.content.contact-us .template.contact .form .button {
	padding: 21px 65px;
}

.content.contact-us .details .row > div:nth-child(1) p {
	font-family: var(--font-family-1);
	font-size: 75px;
	font-weight: 100;
	line-height: 1;
	letter-spacing: normal;
	text-align: left;
	color: #0d0d0d;
}

.content.contact-us .details .row > div:nth-child(1) p strong,
.content.contact-us .details .row > div:nth-child(1) p b {
	font-weight: normal;
	color: #0d0d0d;
}

.content.contact-us .details .row > div:nth-child(2) p {
	font-family: var(--font-family-1);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.33;
    letter-spacing: 0.45px;
    text-align: left;
    color: #767575;
	margin: 1em 0;
}

.content.contact-us .details .row > div:nth-child(2) p:first-child {
	margin-top: 0;
	margin-bottom: 43px;
}

.content.contact-us .details .row > div:nth-child(2) p a {
	font-weight: normal;
	color: var(--green);
	transition: var(--transition);
}

.content.contact-us .details .row > div:nth-child(2) .social {
	margin-top: 50px;
}

.content.contact-us .details .row > div:nth-child(2) .social a {
	display: inline-block;
	line-height: 1;
	font-size: 20px;
	margin-right: 36px;
	transition: var(--transition);
}

.content.contact-us .details .container {
	max-width: 900px;
}

.content.contact-us .details .shape {
	position: absolute;
    transform: rotate(180deg);
    top: 175px;
    right: -89px;
	opacity: 0;
	transition: var(--transition);
}

.content.contact-us .details .shape img {
	width: 100%;
	height: 100%;
	transform: scale(1.3);
}

@media (min-width: 768px) {
	.content.contact-us .details .row > div:nth-child(1) p {
		font-size: 100px;
	}

	.content.contact-us .details .row > div:nth-child(2) p:first-child {
		margin-bottom: 31px;
	}

	.content.contact-us .details .row > div:nth-child(2) {
		margin-left: auto;
	}

	.content.contact-us .details .row > div:nth-child(2) .social {
		margin-top: auto;
		line-height: 1;
		margin-bottom: 15px;
	}
}

@media (min-width: 1200px) {
	.content.contact-us .details .row > div:nth-child(1) p {
		font-size: 120px;
	}

	.content.contact-us .details .row > div:nth-child(2) .social a:hover {
		color: var(--green);
	}

	.content.contact-us .details .shape {
		opacity: 1;
	}

	.content.contact-us .details .row > div:nth-child(2) p {
		font-size: 20px;
    	line-height: 1.5;
    	letter-spacing: 0.5px;
	}
	
}

.content.contact-us .form .custom-select .options-wrapper{
	background-color: #fafafa !important;
}

.content .template.contact:not(.bg-white) {
	background-color: #fafafa;
}

.content .template .form .input-wrapper,
.content .prod_escolhidos .input-wrapper {
    padding-top: 12px;
    position: relative;
}



.content .template.product-page .input-wrapper {
	padding: 0 15px 0 0;
    position: relative;
}

.content .template.contact .form input,
.content .template.product-page input,
.content .prod_escolhidos input,
.content .cart .form input,
.content.perfil .form input,
.content .template.login .form input {
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.28px;
	color: #0d0d0d;
	border: 2px solid #e3e3e2;
    border-radius: 30px;
    padding: 19px 0;
    padding-left: 32px;
}

.content .template.product-page input{
	height: fit-content;
}

.content .template.product-page input,
.content .prod_escolhidos input,
.content .template.login .form input{
	font-size: 16px;
}

.content .prod_escolhidos .input-wrapper{
	width: 150px;
	margin: auto;
}
.content .prod_escolhidos input{
	width: 100%;
}


.content .template .form .input-wrapper label,
.content.perfil .form .input-wrapper label,
.content .prod_escolhidos .input-wrapper label,
.content .template.product-page .input-wrapper label {
    position: absolute;
    top: 0;
    transform: translateY(31px);
    pointer-events: none;
    transition: var(--transition);
}

.content .template.product-page .input-wrapper label,
.content .prod_escolhidos .input-wrapper label{
	transform: translateY(17px);
}



.content .template .form label,
.content .template.product-page label,
.content .prod_escolhidos label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    line-height: 1;
    margin: 0;
}

.content .prod_escolhidos .input-wrapper label,
.content .template.product-page .input-wrapper label,
.content .template.contact .form .input-wrapper label,
.content .template.login .form .input-wrapper label,
.content.perfil .form .input-wrapper label,
.content .cart .form .input-wrapper label {
	font-family: var(--font-family-2);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.28px;
	color: #0d0d0d;
	left: 32px;
	top: 5px;
	z-index: 3;
}

.content .prod_escolhidos .input-wrapper label{
	left: 30px;
}

.content .template.product-page .input-wrapper input:focus + label, 
.content .template.product-page .input-wrapper input[placeholder] + label, 
.content .template.product-page .input-wrapper textarea:focus + label, 
.content .template.product-page .input-wrapper textarea[placeholder] + label, 
.content .template.product-page .input-wrapper.filled label,
.content .prod_escolhidos .input-wrapper.filled label,
.content .template.contact .form .input-wrapper input:focus + label, 
.content .template.contact .form .input-wrapper input[placeholder] + label, 
.content .template.contact .form .input-wrapper textarea:focus + label, 
.content .template.contact .form .input-wrapper textarea[placeholder] + label, 
.content .template.contact .form .input-wrapper.filled label,
.content .cart .form .input-wrapper input:focus + label, 
.content .cart .form .input-wrapper input[placeholder] + label, 
.content .cart .form .input-wrapper textarea:focus + label, 
.content .cart .form .input-wrapper textarea[placeholder] + label, 
.content .cart .form .input-wrapper.filled label,

.content.perfil .form .input-wrapper input:focus + label, 
.content.perfil .form .input-wrapper input[placeholder] + label, 
.content.perfil .form .input-wrapper textarea:focus + label, 
.content.perfil .form .input-wrapper textarea[placeholder] + label, 
.content.perfil .form .input-wrapper.filled label,

.content .template.login .form .input-wrapper input:focus + label, 
.content .template.login .form .input-wrapper input[placeholder] + label, 
.content .template.login .form .input-wrapper textarea:focus + label, 
.content .template.login .form .input-wrapper textarea[placeholder] + label, 
.content .template.login .form .input-wrapper.filled label{
	padding: 5px;
	background-color: #ffffff;
	font-family: var(--font-family-1);
	font-size: 11px;
	color: #767575;
	transform: translateY(-4px);
	z-index: 1;
}

.content .template.product-page .input-wrapper input:focus + label, 
.content .template.product-page .input-wrapper input[placeholder] + label, 
.content .template.product-page .input-wrapper textarea:focus + label, 
.content .template.product-page .input-wrapper textarea[placeholder] + label, 
.content .template.product-page .input-wrapper.filled label{
	transform: translateY(-14px);
}

.content:not(.news) .template.contact .form .input-wrapper input:focus + label, 
.content:not(.news) .template.contact .form .input-wrapper input[placeholder] + label, 
.content:not(.news) .template.contact .form .input-wrapper textarea:focus + label, 
.content:not(.news) .template.contact .form .input-wrapper textarea[placeholder] + label, 
.content:not(.news) .template.contact .form .input-wrapper.filled label{
	background: #fafafa;
}

.content .template.contact .form .custom-select .placeholder,
.content .template.login .form .custom-select .placeholder,
.content.contentV2.perfil .template .form .custom-select .placeholder,
.content .cart .form .custom-select .placeholder {
	border: 2px solid #e3e3e2;
    border-radius: 30px;
	padding: 19px 0;
	padding-left: 32px;
	font-family: var(--font-family-2);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.28px;
	color: #0d0d0d;
	z-index: 3;
}
.custom-select.open{
	z-index: 10;
}
.content .template.login .form .custom-select .placeholder::before,
.content .template.contact .form .custom-select .placeholder::before,
.content.contentV2.perfil  .form .custom-select .placeholder::before,
.content .cart .form .custom-select .placeholder::before {
	width: 10px;
    height: 10px;
	right: 32px;
}

.content.contentV2.perfil .form .custom-select .options-wrapper,
.content .template.contact .form .custom-select .options-wrapper,
.content .template.login .form .custom-select .options-wrapper,
.content .cart .form .custom-select .options-wrapper {
	border-left: 2px solid #e3e3e2;
    border-right: 2px solid #e3e3e2;
    border-bottom: 2px solid #e3e3e2;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding-top: 10px;
    top: 29px;
    padding-right: 0;
    padding-left: 31px;
    margin-top: 14px;
	background-color: #ffffff;
}

.content.contentV2.perfil  .form .custom-select.open .placeholder,
.content .template.login .form .custom-select.open .placeholder,
.content .template.contact .form .custom-select.open .placeholder,
.content .cart .form .custom-select.open .placeholder {
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.content.contentV2.perfil .form .custom-select .options-wrapper .options > div,
.content .template.login .form .custom-select .options-wrapper .options > div,
.content .template.contact .form .custom-select .options-wrapper .options > div,
.content .cart .form .custom-select .options-wrapper .options > div {
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.28px;
	color: #0d0d0d;
	padding-left: 0;
}



.content .template.contact .form textarea,
.content .cart .form textarea {
	font-family: var(--font-family-2);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.28px;
	color: #0d0d0d;
	border: 2px solid #e3e3e2;
    border-radius: 30px;
    padding-left: 32px;
}

.formCard .form input.not-filled,
.content .template.login .form input.not-filled,
.content .template.contact .form input.not-filled,
.content .template.contact .form textarea.not-filled,
.content .template.contact .form select.not-filled + .custom-select .placeholder,
.content .cart .form input.not-filled,
.content .cart .form textarea.not-filled,
.content .cart .form select.not-filled + .custom-select .placeholder {
	border: 2px solid var(--warning);
}

.content.contentV2.perfil .form select.not-filled + .custom-select.open .placeholder,
.content .template.login .form select.not-filled + .custom-select.open .placeholder,
.content .template.contact .form select.not-filled + .custom-select.open .placeholder,
.content .cart .form select.not-filled + .custom-select.open .placeholder {
	border-bottom: 0;
}

.content.contentV2.perfil .form select.not-filled + .custom-select .options-wrapper,
.content .template.login .form select.not-filled + .custom-select .options-wrapper,
.content .template.contact .form select.not-filled + .custom-select .options-wrapper,
.content .cart .form select.not-filled + .custom-select .options-wrapper {
	border-left: 2px solid var(--warning);
	border-bottom: 2px solid var(--warning);
	border-right: 2px solid var(--warning);
}

.content .template .form .warning,
.formCard p.warning {
	padding-left: 25px;
	font-size: 14px;
    font-weight: 400;
    color: var(--warning);
    height: 20px;
    margin: 0;
    margin-top: 10px;
    line-height: 20px;
    padding-left: 35px;
    position: relative;
}

.content .template .form input[type='checkbox'].not-filled + label, .content .template .form input[type='radio'].not-filled + label,
.formCard .form input[type='checkbox'].not-filled + label,
.content.contentV2 .template .form_geral .sidebar input[type='checkbox'].not-filled + label {
    border: 2px solid var(--warning);
}

.content .template .form .warning::before,
.formCard p.warning::before {
	content: initial;
}

.content .template .form .checkbox-wrapper {
	align-items: start;
}

.content .template .filter-sidebar .form .checkbox-wrapper{
	display: flex;
	align-items: flex-start;
}

.content .template.has-sidebar .filter-sidebar .form input[type='checkbox'] + label + label{
	margin-top: 3px;
}



.content .template .form .checkbox-wrapper + .checkbox-wrapper {
	margin-top: 10px;
}

.content .template .form input[type='checkbox'] + label, 
.content .template .form input[type='radio'] + label {
	border: 2px solid #e3e3e2;
	width: 24px;
	height: 24px;
}

.content .template .form input[type='checkbox'] + label::before {
	border-right: 2px solid var(--green);
	border-bottom: 2px solid var(--green);
}

.content .template.contact .form label a,
.content .cart .form:not(.form_geral) label a  {
	color: var(--green);
	border-bottom: 0;
}

.content .template .form input[type='checkbox'] + label + label, 
.content .template .form input[type='radio'] + label + label {
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.28px;
	text-align: left;
	color: #0d0d0d;
}

.content .template.contact .form .button,
.content .cart .form .button {
	padding: 21px 30px;
}

.content .template.contact .form .button::before,
.content .cart .form .button::before {
	border-radius: 30px;
}

.content .cart .title-bar + .template{
	padding: 0;
}


.content .cart .form .row > div .button-final{
	background: var(--green);
	color: white;
	font-weight: 300;
	padding: 41px 40px 51px;
	margin-top: 100px;
}

.content .cart .button-final p{
	text-align: center;
	font-size: 18px;
	letter-spacing: 0.45px;
	margin: 0;
	color: white;
}

.content .cart .button-final p:nth-of-type(2){
	font-size: 23px;
  	font-weight: bold;
	letter-spacing: 0.58px;
}

.content .cart .button-final small{
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.3px;
	margin: 0;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	display: block;
	margin-top: 20px;
}

.content .cart .form .button-final .button{
	color: var(--black);
	margin-top: 40px;
}
.content .cart .form .button-final .button::before{
	background: #ffffff;
}
@media (min-width: 992px) and (max-width: 1024px) {
	.content .template.product-page .input-wrapper{
		width: 170px;
	}
	.content .product-page .product-details .button {
	    padding: 18px 20px;
	}
}
@media (min-width: 768px) {
	.content .template.contact .form .row,
	.content .cart .form .row {
		margin: -15px -13px;
	}

	.content .template.contact .form .row > div,
	.content .cart .form .row > div,
	.content .template.login .form .row > div {
		padding: 10px 13px;
	}

	.content .template.contact .form .row > div.col-12.col-md-6:nth-child(even),
	.content .cart .form .row > div.col-12.col-md-6:nth-child(even) {
		padding-left: 22.5px;
	}

	.content .template.contact .form .row > div.col-12.col-md-6:nth-child(odd),
	.content .cart .form .row > div.col-12.col-md-6:nth-child(odd) {
		padding-right: 22.5px;
	}
}

.cart .title-bar{
	background: var(--green);
	width: 100%;
	display: block;
	font-size: 30px;
	font-weight: 300;
	font-style: normal;
	line-height: 0.9;
	letter-spacing: 1px;
	text-align: center;
	color: #fff;
	padding: 30px;
}

.cart .title-bar + div,
.content .cart .form .row{
	margin: 60px 0 100px;
}

.content .cart .form .row{
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: 30px;
}

.content.contentV2 .cart .form .row{
	margin-left:0;
	margin-right: 0;
}

.content.contentV2 .cart .form .row > div{
	padding: 10px 0px;
}
@media(min-width:992px){
	.content.contentV2 .cart .form .row > div.col-4{
		padding-right: 13px;
	}
	.content.contentV2 .cart .form .row > div.col-8{
		padding-left: 13px;
	}
}

.content.contentV2 .cart .form .row > div > label {
    margin: 5px 0;
}

@media(max-width:767px){
	header .center-menu > ul{
		display: flex;
		gap: 30px;
	}
	header .center-menu ul li,
	header .center-menu ul li:nth-of-type(2) a:before{
		margin: 0;
	}

	header .center-menu ul li:last-of-type{
		margin-right: 40px;
	}
}

@media(max-width:600px){
	.content.contentV2 .cart .form .row > div.col-4,
	.content .template.login .form .row > div.col-4,
	.perfil .template-module .row > div.col-4{
		flex: 0 0 46%;
    	max-width: 46%;
		padding-bottom: 0;
	}
	.content.contentV2 .cart .form .row > div.col-8,
	.content .template.login .form .row > div.col-8,
	.perfil .template-module .row > div.col-8{
		flex: 0 0 80%;
    	max-width: 80%;
	}
	.content.contentV2 .cart .form .row > div.col-8 > label,
	.content .template.login .form .row > div.col-8 > label,
	.perfil .template-module .row > div.col-8 > label{
		display: none;
	}

	.content.contentV2 .template.has-sidebar.cart .sidebar{
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	header .center-menu > ul{
		display: flex;
		gap: 30px;
	}
	header .center-menu ul li,
	header .center-menu ul li:nth-of-type(2) a:before,
	header .center-menu ul li:last-of-type{
		margin: 0;
	}

	.content.perfil .banner.noimg{
		padding-bottom: 10px;
	}

	header .center-menu ul li:nth-of-type(1) a:before{
		margin-right: 0;
	}
}




.trash{
	position: absolute;
	top: -8px;
	right: 4px;
	width: 22px;
  	height: 22px;
	background: #e3e3e3;
	border-radius: 50%;
	z-index: 2;
	transform: rotate(45deg);
}

.trash::before{
	content: "";
	width: 13px;
	height: 1px;
	background: white;
	position: absolute;
	top: calc(50% - 1px);
	bottom: 0;
	left: 4px;
	right: auto;
}
.trash::after{
	content: "";
	height: 13px;
	width: 1px;
	background: white;
	position: absolute;
	top: 4px;
	bottom: auto;
	left: calc(50% - 1px);
	right: auto;
}

.content .template .form .type-payment{
	display: flex;
	flex-wrap: wrap;
}

.content .template .form .type-payment input[type='radio'] + label{
	-ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
	padding: 35px 50px 30px;
	border-radius: 10px;
  	border: solid 2px #e3e3e2;
	  position: relative;
	  height: auto;
}

.content .template .form .type-payment > label:first-of-type{
	margin-bottom: 20px;
}
.content .template .form .type-payment > input{
	opacity: 0;
	position: absolute;
}


.content .template .form .type-payment > input:checked + label{
	border: solid 2px var(--green);
}

.content .template .form .type-payment > label > p:first-of-type{
	margin: 0;
	font-family: var(--font-family-2);
	font-size: 13.5px;
	font-weight: bold;
	line-height: normal;
  	letter-spacing: 0.27px;
	color:var(--black);
	margin-bottom: 8px;
}

.content .template .form .type-payment > label > p:last-of-type{
	font-family: var(--font-family-2);
	line-height: 1;
	margin: 0;
}
.content .template .form .type-payment > label > p:last-of-type small{
	font-size: 12px;
	font-weight: normal;
	line-height: 1;
  	letter-spacing: normal;
	color:#c4c3c3;
}

.content .template .form .type-payment > label span{
	position: absolute;
	top: 32px;
	left: 15px;
	width: 23px;
  	height: 23px;
	border: solid 2px rgba(230, 228, 228, 0.98);
	border-radius: 50%;
}

.content .template .form .type-payment > label span:before{
	content: "";
	width: 7px;
	height: 7px;
	background: var(--green);
	border-radius:50%;
	position: absolute;
	top: 6px;
	left: 6px;
	opacity: 0;
}

.content .template .form .type-payment input:checked + label span:before{
	opacity: 1;
}

@media(min-width:768px){

	.cart .title-bar{
		font-size: 40px;
	}
	.cart .title-bar + div,
	.content .cart .form .row{
		margin: 60px 0 100px;
	}

	.content.contentV2 .cart .title-bar + div.row{
		margin: 25px 0 0;
	}

	.content:not(.contentV2) .template .form .type-payment input[type='radio'] + label{
		-ms-flex: 0 0 calc(50% - 20px);
		flex: 0 0 calc(50% - 20px);
		max-width: calc(50% - 20px);
		
	}

	.content .template .form .type-payment > label:first-of-type{
		margin-right: 20px;
		margin-bottom: 0px;
	}
	.content:not(.contentV2) .template .form .type-payment > label:last-of-type{
		margin-left: 20px;
	}

	.content.contentV2 .template .form .type-payment input[type='radio'] + label{
		min-height: 133px;
	}
}

.content.contentV2 .template .form .type-payment{
	gap:10px;
	margin: 50px 0 60px;
}





.swal-text{
	font-family: var(--font-family-1);
	font-size: 20px;
	font-weight: 300;
	line-height: 1.5;
    letter-spacing: 0.5px;
	color: #767575;
}

.swal-overlay {
    background-color: rgba(0,0,0,.7);
}


.swal-title{
	line-height: 1.17;
	font-family: var(--font-family-1);
	font-weight: 100;
	color: var(--black);
}

.swal-footer{
	text-align: center;
}

.swal-button {
    background-color: var(--green);
	border: none !important;
	color:#ffffff !important;
	box-shadow: none !important;
	font-weight: 400;
	letter-spacing: 0.28px;
}
.swal-button:not([disabled]):hover{
	background-color: #55b316;
}

.swal-button.swal-button--cancel {
    background-color: transparent ;
	border: 1px var(--green) solid !important;
	color:var(--green) !important;
	box-shadow: none !important;
}

.swal-button.swal-button--cancel:hover{
	border: 1px transparent solid !important;;
	color:#ffffff !important;
	box-shadow: none !important;
}

.swal-overlay--show-modal .swal-modal{
	padding: 10px 0 20px;
}

.content .product-page .slider .slide img {
    display: block;
	max-height: 548px;
	max-width: 100%;
	width: auto;
	margin: auto;
}

.content .template.has-sidebar.has-sidebar-left > .container > div:not(.sidebar){
	padding-top: 0px;
}

.valor_cart{
	max-width: 350px;
	margin: auto;
}
.valor_cart > div{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.valor_cart > div p{
	margin: 0;
	font-family: var(--font-family-1);
}

.content .cart .button-final .valor_cart p:first-of-type{
	font-size: 14px;
	font-weight: 300;
}
.content .cart .button-final .valor_cart p:last-of-type{
	font-size: 18px;
	font-weight: 600;
}

.content .cart .button-final .valor_cart div:last-of-type{
	border-top:1px solid rgba(255, 255, 255, .58);
	margin-top: 20px;
	padding-top: 10px;
}

.content .cart .button-final .valor_cart div:last-of-type p:first-of-type{
	font-size: 18px;
}
.content .cart .button-final .valor_cart div:last-of-type p:last-of-type{
	font-size: 23px;
	font-weight: 800;
}

.content .template.contact .form .uploads{
	display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.uploads input[type="file"] {
    display: none;
}






.content .template.contact .form .uploads input[type="file"] + label.button, 
.content .template.contact .form .uploads input[type="file"] + label.button:hover, 
.content .template.contact .form .uploads input[type="file"] + label.button:focus {
    font-size: 11px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: left;
	font-family: var(--font-family-1);
	font-size: 12px;
	color: #0d0d0d;
	padding: 5px 20px;
	width: 100%;
	
}

.content .template.contact .form .uploads.input-wrapper label{
	left: 0;
	top: 0;
	position: relative;
	transform: none;
	pointer-events: all;
}


.content .template.contact .form .uploads label:first-of-type:before{
	content:"";
	border: 2px solid #e3e3e2;
	background: none;
	border-radius: 30px;
	position: absolute;
	top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
	transform: none;
}

.content .template.contact .form .uploads label:first-of-type:hover:before{
	transform: none;
}

.content .template.contact .form .uploads .not-filled + label:before{
	border: 2px solid var(--warning);
}

.content .template.contact .form .uploads label:first-of-type:after{
	content: "";
	background: url(/img/icon_upload.svg) no-repeat;
    width: 15px;
    height: 15px;
    pointer-events: none;
    margin-right: 10px;
	display: inline-block;
	order: -1;
}

.content .template.contact .form .uploads.input-wrapper label + label{
	margin-top: 10px;
	font-size: 12px;
}
.form input[type="file"] + label + label {
    font-size: 12px;
    font-style: italic;
    color: #031834;
    opacity: 0.5;
    margin-top: 20px;
}

.form .uploads > span {
    display: inline-block;
    min-width: 100%;
    max-width: 100%;
    font-size: 9px;
    line-height: 1;
    margin-top: 10px;
}

@media (min-width: 768px){
	.content .template.contact .form .uploads input[type="file"] + label.button, 
	.content .template.contact .form .uploads input[type="file"] + label.button:hover, 
	.content .template.contact .form .uploads input[type="file"] + label.button:focus {
		font-size: 12px;
		padding: 19px 30px;
	}

	.form .uploads input[type="file"] + label + label,
	.form .uploads > span {
		font-size: 14px;
		margin-left: 30px;
	}
	.form .uploads > span {
		font-size: 11px;
	}
}


.offers_job{
	background: rgba(247, 246, 246,.4);
	padding:50px 0 30px
}

.offers_job h2{
	font-family: var(--font-family-1);
	font-size: 32px;
	font-weight: 300;
	line-height: 0.9;
	letter-spacing: 1px;
	text-align: left;
	color: #0d0d0d;
	margin-bottom: 30px;
}

@media(min-width:1200px){
	.offers_job .container{
		max-width: 1180px;
	}
}

.offers_job .item{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
	justify-content: center;
}

.offers_job .item > div{
	border: 1px solid #e5e3e3;
	background: white;
	padding: 16px 20px 45px;
	max-width: 353px;
	width: 100%;
	text-align: center;
	margin: 20px;
}

.offers_job .item > div img{
	max-width: 100%;
}

.offers_job .item > div > div{
	font-family: var(--font-family-1);
	font-size: 22px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: normal;
	color: #2b2727;
	margin-top: 22px;
}

.offers_job .item > div > div + p{
	font-family: var(--font-family-1);
	font-size: 13.5px;
	font-weight: 300;
	letter-spacing: 0.34px;
	color: #0d0d0d;
	margin-top: 14px;
	margin-bottom: 25px;
}
@media(min-width:922px){
	.content .offers_job .button{
		padding: 12px 40px;
	}

	.offers_job{
		padding:60px 0 70px
	}

	.offers_job h2{
		font-size: 40px;
	}
}

.file-wrapper {
    margin: 10px 0 35px;
}

.file-wrapper > p{
	font-family: var(--font-family-2);
	font-size: 17px;
	font-weight: normal;
	line-height: 1.65;
	letter-spacing: normal;
	text-align: left;
	color: #404040;
	
}

.content .template .file-wrapper p{
	margin-bottom: 30px;
}

.form-job .form input[type='file'] {
    display: none;
}

.form-job .form input[type='file'] + label {
    position: relative;
    display: inline;
    padding: 20px 40px 20px;
    font-family: var(--font-family-2);
	font-size: 14px;
	font-style: normal;
    color: white;
    background: var(--blue);
    cursor: pointer;
    margin-right: 20px;
	border-radius: 28px;
	opacity: 1;
}

.form-job .form input[type='file'] + label + label {
    display: block;
    font-size: 13px;
    font-family: var(--font-family-1);
    font-style: normal;
	font-weight: normal;
    color: #65c624;
	opacity: 1;
	margin-top: 30px;
}

@media(min-width:768px){
	.form-job .form input[type='file'] + label + label{
		display: inline;
		margin-top: 0;
	}
}
@media(max-width:768px){
	.content .template .form .checkbox-wrapper {
		align-items: center;
		display: flex;
	}

	.content .template .form .lower{
		margin-bottom: 40px;
	}
}

.formCard{
	position: fixed;
	top: 0;
	right: -640px;
	height: 100vh;
	max-width: 640px;
	width: 100%;
	background: white;
	z-index: 99;
	padding: 50px 35px;
	font-family: var(--font-family-1);
	transition: var(--transition);
}


.formCard.open{
	right: 0;
	
	overflow-y: auto;
}

.lock_f body::before {
    opacity: 1;
    pointer-events: all;
    transition: opacity .5s ease-in;
}

body::before {
    content: "";
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    transition: none;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
	z-index: 20;
}

.formCard .close-toggle {
    height: 24px;
    width: 24px;
    position: absolute;
    right: 37px;
    top: 37px;
	pointer-events: all;
}

.formCard .close-toggle span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    margin: auto;
    width: 33px;
    height: 2px;
    background-color: var(--green);
    transition: var(--transition);
    -webkit-transition: var(--transition);
}

.formCard .close-toggle span:first-child {
    transform: translateX(-50%) rotate(45deg);
}

.formCard .close-toggle span:last-child {
    transform: translateX(-50%) rotate(-45deg);
}

.formCard h2{
	font-size: 36.5px;
	font-weight: 300;
	line-height: 1.29;
	letter-spacing: 0.91px;
	text-align: left;
	color: #1f1f1f;
}
.formCard p{
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.4px;
	text-align: left;
	color: var(--darkgrey);
	margin-top: 15px;
	margin-bottom: 34px;
}

.formCard .tabs {
	width: 100%;
	list-style: none;
	position: relative;
	text-align: left;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: start;
	gap: 3px;
}
.formCard .tabs li {
	display: block;
	flex: 50%;
}
.formCard .tabs input[type="radio"] {
	position: absolute;
	top: 0;
	left: -9999px;
}
.formCard .tabs input + label {
	display: block;
	padding: 16px 10px 26px;
	border-radius: 10px 10px 0 0;
	font-family: var(--font-family-2);
	font-size: 13.5px;
	font-weight: bold;
	line-height: normal;
	letter-spacing: normal;
	text-align: center;
	color: #28530c;
	background: #e3fad4;
	cursor: pointer;
	position: relative;
	transition: var(--transition);
}
.formCard .tabs input + label:hover {
	color: rgba(40, 83, 12,.7);
}
.formCard .tabs .tab-content {
	z-index: 2;
	display: none;
	overflow: hidden;
	width: 100%;
	font-size: 17px;
	line-height: 25px;
	padding: 25px;
	position: absolute;
	top: 60px;
	left: 0;
	background: var(--green);
	border-radius: 10px;

}

.formCard .tabs [id^="tab"]:checked + label {
	background:var(--green);
	color: var(--white);
}
.formCard .tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  	display: block;
}

.formCard .form .input-wrapper {
    padding-top: 12px;
    position: relative;
}



.formCard .form  input {
	font-family: var(--font-family-2);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.28px;
	color: #0d0d0d;
	background: #bdfb94;
	border: none;
    border-radius: 30px;
    padding: 19px 0;
    padding-left: 32px;
	width: 100%;
}

.cart .form input:disabled{
	opacity: 0.5;
	pointer-events: none;
	transition: var(--transition);
}

.cart .form input:disabled + label{
	opacity: 0.5;
	pointer-events: none;
	transition: var(--transition);
}

.formCard .form input:disabled{
	opacity: 0.5;
	pointer-events: none;
	transition: var(--transition);
}

.edit_personal .form input:disabled{
	opacity: 0.5;
	pointer-events: none;
	transition: var(--transition);
}

.edit_personal .form input:disabled + label{
	opacity: 0.5;
	pointer-events: none;
	transition: var(--transition);
}


.formCard .form .input-wrapper label {
    position: relative;
	display: block;
    pointer-events: none;
	font-family: var(--font-family-2);
	font-size: 12px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: 0.24px;
	text-align: left;
	color: var(--white);
	margin-bottom: 7px;

}



.formCard .form .checkbox-wrapper + .checkbox-wrapper {
	margin-top: 10px;
}

.formCard .form .checkbox-wrapper{
		align-items: center;
		display: flex;
		gap: 10px;
}

.formCard .form input[type='checkbox'],
.formCard .form input[type='radio'] {
    display: none;
}

.formCard .form input[type='checkbox'] + label, 
.formCard .form input[type='radio'] + label {
	width: 24px;
	height: 24px;
	display: inline-block;
    vertical-align: middle;
    background: #bdfb94;
    cursor: pointer;
    position: relative;
    border: none;
    transition: var(--transition);
    margin: 0;
	padding:0;
	border-radius: 0;
}

.formCard .form input[type='checkbox'] + label::before {
	border-right: 2px solid var(--green);
	border-bottom: 2px solid var(--green);
}

.formCard .form input[type='checkbox'] + label + label, 
.formCard .form input[type='radio'] + label + label {
	font-family: var(--font-family-2);
	font-size: 12px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.24px;
	text-align: left;
	color: var(--white);
}

.formCard .form input[type='checkbox'] + label::before {
    border-right: 3px solid #0d0d0d;
    border-bottom: 3px solid #0d0d0d;
	content: "";
    position: absolute;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
	top: -4px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 7px;
    height: 11px;
    transform: rotate( 45deg);
}

.formCard .form input[type='checkbox']:checked + label::before{
	opacity: 1;
}

.formCard .form input[type='checkbox'] + label + label a{
	border-bottom: 1px dotted currentColor
}

.formCard .form .formfile{
	border-bottom: 1px dotted currentColor;
}


.formCard .form input[type='checkbox'] + label + label a:hover{
	border-bottom: 1px dotted transparent
}

.formCard .vitalicio{
	display: flex;
	flex-direction: column;
}

.formCard .vitalicio.darken .input-wrapper label{
	opacity: 0.5;
	transition: var(--transition);
}

.formCard .vitalicio div:first-of-type{
	flex: 1;
}

.formCard .vitalicio div:last-of-type{
	margin-top: 30px;
}

.formCard .form .lower{
	margin-top: 30px;
}

.formCard .form .button {
	margin-top: 20px;
    padding: 16px 10px;
	width: 100%;
	font-family: var(--font-family-2);
	font-size: 16px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: center;
	color: #0d0d0d;
	text-transform: none;
}

.formCard .form .button::before {
    background-color: white;
    border: 0;
	border-radius: 30px;
}

.formCard .form .button span:before {
	display: inline-block;
	content:"";
	width: 23px;
  	height: 20px;
	vertical-align: middle;
	margin-right: 16px;
	transition: var(--transition);
	-webkit-mask-image: url("/assets/img/cart_white.svg");
    mask-image: url("/assets/img/cart_white.svg");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-color: #50b50d;
}

.formCard .tabs2 .tabs li:first-of-type .form .button + p{
	margin-top: 30px;
	font-family: var(--font-family-2);
	font-size: 12px;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.24px;
	text-align: left;
	color: var(--white);
	margin-bottom: 0;
}

.formCard .tabs2 .tabs li:last-of-type .form .button + p{
	margin-top: 70px;
	font-family: var(--font-family-2);
	font-size: 12px;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.24px;
	text-align: left;
	color: var(--white);
	margin-bottom: 0;
}

.formCard .tabs li:last-of-type .tab-content{
	padding-top: 60px;
}



@media(min-width:768px){
	.formCard{
		padding: 50px 75px;
	}

	.formCard > div{
		min-height: 880px;
	} 
	.formCard .tabs .tab-content {
		padding: 25px 50px;
		min-height: 600px;
	}

	.formCard .tabs input + label {
		padding: 23px 10px 35px;
	}

	.formCard .vitalicio{
		align-items: center;
		flex-direction: row;
	}

	.formCard .vitalicio div:first-of-type input{
		width: 220px;
	}
}

@media(min-width:1024px) and (min-height:950px){
	.formCard{
		display: flex;
		align-items: center;
	}
}

.content.shop .banner .template{
	padding: 30px 0;
}

.content.contentV2 .banner.noimg ul li{
	color: var(--green);
}

header .center-menu ul li.account{
	margin: 0;
	position: relative;
}

header .center-menu ul li.account > a{
	position: relative;
	width: 19px;
  	height: 20px;
	display: block;
}

header .account > a:before {
	display: inline-block;
	content:"";
	width: 19px;
  	height: 20px;
	vertical-align: middle;
	transition: var(--transition);
	-webkit-mask-image: url("/assets/img/shop/account.svg");
    mask-image: url("/assets/img/shop/account.svg");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-color: #ffffff;
}

@media(min-width:768px){
header .account > a:before{
	background-color: #161616;
}
}

header .account.active:hover > a::before,
header .account > a:hover::before {
    background-color: var(--green);
}

@media(max-width:992px){
	header .account.active:hover > a::before,
	header .account > a:hover::before {
    background-color: #161616;
}
}

header .account.active > a::after {
    content:"";
	width: 13px;
  	height: 13px;
	position: absolute;
	top: -6px;
	right: -10px;
	transition: var(--transition);
    background: url("/assets/img/shop/account_active.svg") no-repeat;
}

header .account .sub-logado{
	display: none;
}

header .account.active .sub-logado{
	display: flex;
	flex-direction: column;
	position: absolute;
	border-radius: 10px;
  	background-color: #1f4b02;
	padding: 26px 30px 24px;
	left: 50%;
	transform: translateX(-50%);
	gap: 12px;
	top: 42px;
	opacity: 0;
	pointer-events: none;
}

header .account.active:hover ul{
	opacity: 1;
	pointer-events: all;
}

header .account.active:hover::after{
	content: "";
    height: 40px;
    width: 40px;
    display: block;
    position: absolute;
    top: 100%;
}

header .account.active .sub-logado a::before,
header .account.active .sub-logado a::after{
	content: none;
}

header .account.active .sub-logado li{
	display: block;
	text-align: center;
	margin: 0;
}

header .account.active .sub-logado li:last-of-type::before{
	content: "";
	display: block;
	height: 1px;
	width: 100%;
	background-color: #356714;
	margin-top: 3px;
    margin-bottom: 15px;
}
header .account.active .sub-logado a{
	font-family: var(--font-family-1);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: normal;
	text-align: center;
	color: #8fa87e;
	text-wrap: nowrap;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

header .account.active .sub-logado .active a,
header .account.active .sub-logado a:hover{
	color:white
}

.content .template:not(.cart) .form input[type='checkbox'] + label + label a{
	color:var(--green);
	border-bottom: none;
}
.content .template .form input[type='checkbox'] + label + label a:hover{
	color:#509c1e;
}
@media(min-width:768px) and (max-width:768px){
	.content .template{
		padding-top: 30px;
	}
}

.formCard .form .file input {
    display: none;
}

.formCard .form .file div label {
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    background: #ffffff;
    padding: 18px 25px 17px;
    transition: var(--transition);
    position: relative;
    transform: initial;
	border-radius: 30px;
	margin: 0;
	pointer-events: all;

    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.28px;
    text-align: center;
    color: #0d0d0d
}

.formCard .form .file div label span::before{
	content: none;
	display: none;
}

.formCard .form .file div .button::before {
    background: #ffffff;
    border: 0;
    border-radius: 30px;
}

.formCard .form .file div label + label{
	background: none;
	color: white;
	font-style: normal;
	margin: 10px 0;
    padding-top: 0;
    font-size: 15px;
    opacity: 1;
}

.content .cart .form .input-wrapper.file input,
.content.perfil .form .input-wrapper.file input {
    display: none;
}

.content .cart .form .input-wrapper.file div label,
.content.perfil .form .input-wrapper.file div label {
    color: var(--green);
    display: inline-block;
    cursor: pointer;
    font-weight: normal;
    background: #bdfb94;
    font-size: 16px;
    padding: 18px 25px 17px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    transform: initial;
	border-radius: 30px;
	margin: 0;
	pointer-events: all;
}



.content .cart .form .input-wrapper.file div label span::before,
.content.perfil .form .input-wrapper.file div label span::before{
	content: none;
	display: none;
}

.content .cart .form.input-wrapper.file div .button::before,
.content.perfil .form.input-wrapper.file div .button::before {
    background: #bdfb94;
    border: 0;
    border-radius: 30px;
}

.content .cart .form .input-wrapper.file div label + label,
.content.perfil .form .input-wrapper.file div label + label{
	background: none;
	color: white;
	font-style: normal;
	margin: 10px 0;
    padding-top: 0;
    font-size: 15px;
    opacity: 1;
}



.formCard .tabs2 .tabs li .form .button + p + div{
	margin-top: 15px;
    font-family: var(--font-family-2);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.24px;
    text-align: left;
    color: var(--white);
    margin-bottom: 0;
}

.content.shop .cart .form .input-wrapper.file label,
.content.shop.perfil .form .input-wrapper.file label{
	left: 0;
}
.content.shop .cart .form .input-wrapper.file div label + label,
.content.shop.perfil .form .input-wrapper.file div label + label{
	color: var(--green);
}

.content.shop .cart .form .input-wrapper.file > label,
.content.shop.perfil .form .input-wrapper.file > label{
	position: relative;
    top: 0;
    transform: none;
	margin-bottom: 5px;
	
}
.content.shop .cart .form .input-wrapper.file div label.button::before,
.content.shop.perfil .form .input-wrapper.file div label.button::before{
	content: none;
}

.z_cartao_upload{
    padding: 25px 30px 30px;
    border:1px solid #bdfb94;
    border-radius: 20px;
    position: relative;
    margin-top: 34px;
}

.z_cartao_upload:has(.file):has(.not-filled) {
	border:2px solid var(--warning);
  }

.z_cartao_upload > label{
    font-family: var(--font-family-2);
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
	background: var(--green);
    display: table;
    padding: 0 4px;
    margin: auto;
}

.formCard .form .z_cartao_upload .input-wrapper label{
	text-align: center;
	margin-bottom: 17px;
	
}

.formCard .form .z_cartao_upload .file-document{
	display: flex;
	align-items: center;
	margin-top: 15px;
}
.formCard .form .z_cartao_upload .file-document img{
	width: 61px;
  	height: 50px;
	margin-right: 16px;
}

.formCard .form .z_cartao_upload .file.open,
.content .template .form .input-wrapper.file.open{
	margin-top: 10px;
}

.content .template .form .input-wrapper.file.open{
	margin-bottom: 20px;
}

.formCard .form .z_cartao_upload .input-wrapper label + label{
	margin-bottom: 0;
	padding: 0;
	font-family: var(--font-family-2);
	font-size: 12px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: 0.24px;
	text-align: center;
	margin: auto;
    display: block;
}


.z_cartao_upload.document{
    padding: 10px 17px 10px 30px;
}

.formCard .form .z_cartao_upload .file-document a{
    pointer-events: all;
	font-family: var(--font-family-2);
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: 0.28px;
	text-align: left;
	color: var(--white);
	cursor: pointer;
}

.formCard .form .input-wrapper.change-file:not(.open){
	margin-top: 10px;
	display: none;
	pointer-events: none;
}



.formCard .form .z_cartao_upload .file-document + .alterar{
	font-family: var(--font-family-2);
	font-size: 12px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: 0.24px;
	text-align: right;
	color: var(--white);
	display: block;
}
.formCard .form .z_cartao_upload .file-document + .alterar span{
	border-bottom: 1px dotted white;
}

.formCard .form .z_cartao_upload .file-document + .alterar:hover span{
	border-bottom: 1px dotted transparent;
}








.edit_personal .z_cartao_upload,
.cart .z_cartao_upload{
    padding: 25px 30px 30px;
    border: 2px solid #e3e3e2;
    border-radius: 20px;
    position: relative;
    margin-top: 34px;
}

.edit_personal .z_cartao_upload > label,
.cart .z_cartao_upload > label{
    font-family: var(--font-family-2) !important;
    font-size: 14px !important;
    font-weight: bold !important;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #65c624 !important;
    position: absolute;
    top: -8px;
    left: 0 !important;
    right: 0 !important;
	background: white;
    display: table !important;
    padding: 0 4px !important;
    margin: 0 auto !important;
}

.edit_personal .form .z_cartao_upload .input-wrapper label,
.cart .form .z_cartao_upload .input-wrapper label{
	text-align: center !important;
	margin-bottom: 12px !important;
	font-family: var(--font-family-2) !important;
	font-size: 12px !important;
	font-weight: normal !important;
	line-height: normal !important;
	color: #767575 !important;
	
}

.edit_personal .form .z_cartao_upload .input-wrapper label.button,
.cart .form .z_cartao_upload .input-wrapper label.button{
	display: table !important;
	margin: 0 auto !important;
	background: var(--green) !important;
	max-width: 311px;
	width: 100%;
	margin-bottom: 10px;

}

.edit_personal .form .z_cartao_upload .input-wrapper label.button > span,
.cart .form .z_cartao_upload .input-wrapper label.button > span{
	color: white;
}

.edit_personal .form .z_cartao_upload .file-document,
.cart .form .z_cartao_upload .file-document{
	display: flex !important;
	align-items: center !important;
}
.edit_personal .form .z_cartao_upload .file-document img,
.cart .form .z_cartao_upload .file-document img{
	width: 61px !important;
  	height: 50px !important;
	margin-right: 16px !important;
}

.edit_personal .form .z_cartao_upload .input-wrapper label + label,
.cart .form .z_cartao_upload .input-wrapper label + label{
	margin-top: 15px !important;
	margin-bottom: 0 !important;
	padding: 0 !important;
	font-family: var(--font-family-2) !important;
	font-size: 12px !important;
	font-weight: normal !important;
	line-height: normal !important;
	letter-spacing: 0.24px !important;
	text-align: center !important;
	
    display: block !important;
}

.edit_personal .z_cartao_upload.document,
.cart .z_cartao_upload.document{
    padding: 10px 30px 25px !important;
}

.edit_personal .form .z_cartao_upload .file-document a,
.cart .form .z_cartao_upload .file-document a{
    pointer-events: all !important;
	font-family: var(--font-family-2) !important;
	font-size: 14px !important;
	font-weight: normal !important;
	font-stretch: normal !important;
	font-style: normal !important;
	line-height: normal !important;
	letter-spacing: 0.28px !important;
	text-align: left !important;
	color: #0d0d0d !important;
	cursor: pointer !important;
}

.edit_personal .form .input-wrapper.change-file:not(.open),
.cart .form .input-wrapper.change-file:not(.open){
	margin-top: 10px !important;
	display: none !important;
	pointer-events: none !important;
}



.edit_personal .form .z_cartao_upload .file-document + .alterar,
.cart .form .z_cartao_upload .file-document + .alterar{
	font-family: var(--font-family-2) !important;
	font-size: 12px !important;
	font-weight: normal !important;
	line-height: normal !important;
	letter-spacing: 0.24px !important;
	text-align: right !important;
	display: block !important;
	color: var(--green) !important;
}

.content.contentV2.perfil .edit_personal .form .alterar span{
	color: var(--green) !important;
}

.edit_personal .form .z_cartao_upload .file-document + .alterar span,
.cart .form .z_cartao_upload .file-document + .alterar span{
	border-bottom: 1px dotted currentColor !important;
}

.edit_personal .form .z_cartao_upload .file-document + .alterar:hover span,
.cart .form .z_cartao_upload .file-document + .alterar:hover span{
	border-bottom: 1px dotted transparent !important;
}

.content .template .edit_personal .z_cartao_upload p,
.content .template.cart .z_cartao_upload p{
	line-height: 1;
	text-align: center;
	margin-top: 40px;
}
.content .template .edit_personal .z_cartao_upload p small,
.content .template.cart .z_cartao_upload p small{
	font-family: var(--font-family-2) !important;
	font-size: 12px;
	font-weight: 300;
	font-stretch: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: 0.24px;
	text-align: center;
	color: #767575;
}
.content .template .edit_personal .z_cartao_upload p small a,
.content .template.cart .z_cartao_upload p small a{
	border-bottom: 1px solid transparent;
}
.content .template .edit_personal .z_cartao_upload p small a:hover,
.content .template.cart .z_cartao_upload p small a:hover{
	border-bottom: 1px solid currentColor;
}

.zone_document > div{
	margin-top: 10px;
	margin-bottom: 20px;
}
@media(min-width:768px){
	.zone_document{
		display: flex;
		align-items: center;
	}

	.zone_document > div{
		margin-bottom: 0px;
	}

	.edit_personal .form .z_cartao_upload .file-document + .alterar,
	.zone_document > div + .alterar{
		flex: 1;
	}
}

/* @media(max-width: 767px) {
	.formCard .form .input-wrapper.file a{
		top: 0;
		text-align: left;
		position: relative;
		display: inline-block;
	}

	.formCard .form .file div label + label {
		font-size: 13px;
	}
} */

.check-vitalicio{
	display: flex;
	align-items: center;
	padding-left: 25px !important;
}

/* ===== i18n: seletor de idioma (header) — self-contained, sem custom-select.js ===== */
.language_container {
    display: flex;
    align-items: center;
}
.language_container select.lang-switch {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0 8px;
    padding: 7px 26px 7px 11px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='10'%20height='6'%3E%3Cpath%20d='M1%201l4%204%204-4'%20fill='none'%20stroke='%2365c624'%20stroke-width='1.7'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 9px center;
    transition: var(--transition);
}
.language_container select.lang-switch:hover,
.language_container select.lang-switch:focus {
    border-color: #65c624;
    color: #65c624;
    outline: none;
}
.language_container select.lang-switch option {
    color: #333;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .language_container select.lang-switch {
        margin: 0 6px;
        padding: 6px 22px 6px 9px;
        font-size: 12px;
    }
}

body.lock #st-2{
	z-index: 1;
}