body {
	font-size: 14px;
	font-family: "Inter", sans-serif;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin-top: 0;
	font-family: "Niramit", sans-serif;
}

.m-0 {
	margin-left: 0;
	margin-right: 0;
}

.p-0 {
	padding-left: 0;
	padding-right: 0;
}

.gap-20 {
	gap: 20px !important;
}

.col-xl-3,
.col-xxl-3 {
	flex: 0 0 calc(25% - (20px * 3 / 4));
	max-width: calc(25% - (20px * 3 / 4));
}

@media screen and (max-width: 1200px) {
	.col-xl-3,
	.col-xxl-3 {
		flex: 0 0 calc(33.33% - 20px);
		max-width: calc(33.33% - 20px);
	}
}

@media screen and (max-width: 768px) {
	.col-xl-3,
	.col-xxl-3 {
		flex: 0 0 calc(50% - 20px);
		max-width: calc(50% - 20px);
	}
}

@media screen and (max-width: 576px) {
	.col-xl-3,
	.col-xxl-3 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.page-header {
	padding: 0 0 20px 0;
}

.page-header h1 {
	font-weight: 600;
}

.sign-in-form {
	margin: 60px auto;
}

.icon-tiktok {
	margin: auto;
	height: 20px;
}

.form-redes-sociais .group {
	display: flex;
	margin-bottom: 20px;
}

.form-redes-sociais .icone {
	background: #181818;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	height: 35px;
	width: 35px;
	margin-right: 10px;
}

.form-redes-sociais .icone svg {
	font-size: 1.3rem;
}
.form-redes-sociais .icone i {
	margin: auto;
	color: #fff;
	font-size: 1.25rem;
}

.form-redes-sociais input {
	border: 0;
	border-bottom: 1px solid #dfe7f3;
	flex: 1;
	border-radius: 0;
}

.form-control:focus {
	border-bottom: 1px solid #736cc7;
}

.url-msg-error {
	color: #f00;
	font-weight: bold;
	margin-left: 48px;
	margin-top: 10px;
	display: none;
}

.btn-create-account {
	color: #fff;
	background: #181818;
	padding: 1px 10px;
	border-radius: 4px;
	float: right;
}

.sign-in-form
	.custom-checkbox.checkbox-primary
	.custom-control-input:checked
	~ .custom-control-label::before {
	background-color: #181818;
}

/*----------------------------- FILTROS PÁGINAS PRODUTOS ----------------------------- */
.product-section__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2.5rem;
}

.product-section__title-text {
	margin: 0;
}

.product-section__filters {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.25rem;
}

/*--------------------------- FILTROS PÁGINAS PRODUTOS RELACIONADOS --------------------------- */

.related-product-section__title {
	margin: 0;
}

.related-product-section__title::after {
	content: " ";
	display: block;
	height: 7px;
	width: 100px;
	background-color: #000;
	margin: 10px 0 20px 0;
}

/*----------------------------- CHANGES CARD ----------------------------- */
.product-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 3rem 0;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.product-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0 !important;
}

.product-grid__item {
	display: flex;
	flex-direction: column;
	width: calc((100% - 60px) / 4);
}

.card-product {
	overflow: hidden;
}

.card-product .card-img-top {
	transition: 0.5s;
}

.card-product .card-img-top:hover {
	transform: scale(1.1);
}

.slim-btn-edit {
	display: none;
}

.card.card-product.text-center.p-20 a {
	display: block;
	width: 100%;
	height: 280px;
	overflow: hidden;
}

.product-card {
	overflow: hidden;
	transform-style: preserve-3d;
	-webkit-transition: 100ms ease-out;
	-moz-transition: 100ms ease-out;
	-o-transition: 100ms ease-out;
	transition: 100ms ease-out;
}

.product-card.animate {
	top: 0px;
	left: 0px;
	-webkit-transition: all 100ms ease-out;
	-moz-transition: all 100ms ease-out;
	-o-transition: all 100ms ease-out;
	transition: all 100ms ease-out;
}

.img-container {
	position: relative;
	width: 100%;
	padding-top: 100%;
	overflow: hidden;
}

.product-card .card-img-top,
.product-card .image_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 12px;
}

.product-card .card-img-top {
	object-fit: contain;
	object-position: center;
	border: 1px solid rgba(0, 0, 0, 0.125);
}

.product-card .image_overlay {
	background: #000;
	opacity: 0;
	z-index: 999;
}

.product-card.animate .image_overlay {
	opacity: 0.7;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.product-card .view_details {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 2px solid #fff;
	color: #000 !important;
	background: #fff;
	padding: 10px 20px;
	font-size: 1.125rem;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	opacity: 0;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
	cursor: pointer;
	z-index: 10000000;
	width: max-content;
}
.product-card .view_details:hover {
	background: #000;
	color: #fff !important;
}

.product-card.animate .view_details {
	opacity: 1;
	-webkit-transition: all 200ms ease-out;
	-moz-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.product-card .product-card__stats {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 20px 5px;
}

.product-card .product-card__stats .product_name {
	font-size: 1rem;
	font-weight: 500;
	color: #333;
	line-height: 1.5em;
	margin: 0 !important;
	font-family: "Inter", sans-serif;
}
.product-card .product-card__stats p {
	font-size: 1rem;
	color: #b1b1b3;
}

/* Preço do produto */
.product__price span {
	display: inline-block;
}

.product__price--final-integer {
	font-size: 17px;
	font-weight: 400;
	color: #bcbec0;
	text-decoration: line-through;
	border-right: 2px solid #bcbec0;
	margin-right: 10px;
	padding-right: 10px;
}

.product__price--final,
.product__price--variant {
	color: #000;
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.product__price--installment {
	display: block;
	margin-top: 10px;
	color: #828282;
	font-size: 15px;
	font-weight: 400;
}

/* Preço da página de Produto */
.product-page__price--final-integer {
	font-size: 17px;
	font-weight: 400;
	color: #bcbec0;
	text-decoration: line-through;
	margin-bottom: 10px;
}

.product-page__price--final,
.product-page__price--variant {
	color: #000;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 10px;
}

.product-page__price--installment {
	color: #828282;
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 10px;
}

.product-options strong {
	display: none;
}
.product-options span {
	color: #969699;
	font-size: 14px;
	display: block;
	margin: 0 auto;
}

.product-options .colors {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.product-options .colors div span {
	width: 12px;
	height: 12px;
	display: block;
	border-radius: 50%;
}

div.c-blue span {
	background: #6e8cd5;
}
div.c-red span {
	background: #f56060;
}
div.c-green span {
	background: #44c28d;
}
div.c-white span {
	background: #fff;
	width: 14px;
	height: 14px;
	border: 1px solid #e8e9eb;
}

@media (max-width: 1280px) {
	.product-section {
		padding: 48px 20px;
	}

	.product-card .view_details {
		font-size: 1rem;
	}
}

@media (max-width: 1024px) {
	.product-section {
		padding: 48px 15px;
	}

	.product-grid {
		gap: 15px;
	}

	.product-grid__item {
		width: calc((100% - 30px) / 3); /* Ajusta para 3 itens por linha */
	}
}

@media (max-width: 768px) {
	.product-section__title {
		gap: 1.25rem;
	}

	.product-section__filters {
		gap: 0.9375rem;
	}

	.product-section {
		padding: 48px 10px;
	}

	.product-grid {
		gap: 10px;
	}

	.product-grid__item {
		width: calc((100% - 10px) / 2); /* Ajusta para 2 itens por linha */
	}

	.product-card .view_details {
		padding: 5px 10px;
		font-size: 0.875rem;
		font-weight: 600;
	}

	.product-card .product-card__stats {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		gap: 5px;
		padding: 10px 5px;
		min-height: auto;
	}

	.product-card .product-card__stats .product_name {
		font-size: 0.875rem;
	}
	.product-card .product-card__stats p {
		font-size: 0.875rem;
	}

	.product__price--final-integer {
		font-size: 0.75rem;
		margin-right: 5px;
		padding-right: 5px;
		border-right: 1px solid #bcbec0;
	}

	.product__price--final,
	.product__price--variant {
		font-size: 0.875rem;
	}

	.product__price--installment {
		font-size: 0.6875rem;
	}

	.product-options .colors {
		top: 6px;
		left: 6px;
		gap: 2px;
	}

	.product-options .colors div span {
		width: 8px;
		height: 8px;
	}
}

@media (max-width: 375px) {
	.product-options .colors {
		top: 5px;
		left: 5px;
	}

	.product-options .colors div {
		width: 12px;
		height: 12px;
	}
	.product-options .colors div span {
		width: 12px;
		height: 12px;
	}
}

/*********************END NEW CARD *********************/
.pricing-card {
	border: 1px solid #ddd;
	border-radius: 10px !important;
	max-width: 300px;
	width: 100%;
}

.pricing-card .card-title {
	margin: 0;
}

.pricing-card h1 {
	font-size: 5em;
	color: #000;
}

.pricing-card h2 {
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 0;
}

.pricing-card h5 {
	font-weight: 100;
}

.pricing-card h2,
.pricing-card h5 {
	color: #016ff9 !important;
}

.pricing-card .oferta {
	color: #348efe;
	font-weight: bold;
	text-decoration: underline;
	text-transform: uppercase;
}

.pricing-card .card-footer {
	border: 0;
}

.pricing-card .btn-assine {
	background-color: #111 !important;
	border-color: #111 !important;
}

.pricing-card .btn-assine:hover,
.pricing-card .btn-assine:focus {
	background-color: #000 !important;
	border-color: #000 !important;
	box-shadow: 0 5px 20px rgba(115, 108, 199, 0.4) !important;
}

/*************************** PAGE PRODUTO *********************************/

img.img-responsive.center-block.img-circle {
	height: 142px;
	border-radius: 50%;
}

.addRs {
	width: 100% !important;
	background-color: initial !important;
	color: #4d5a68 !important;
	border: 0 !important;
	font-size: 13px !important;
	font-weight: bold !important;
}

.app-montink .minha-loja .social-links {
	width: 100% !important;
}

.head-dark {
	background-color: #000000;
}

.no-gutters {
	margin-right: -15px;
	margin-left: -15px;
}

.logo-img-container {
	max-width: 450px;
	margin: auto;
	text-align: center;
}

.logo-img {
	margin: 10px 0;
	vertical-align: middle;
	max-width: 40vw;
	max-height: 60px;
}

.utilities-item {
	display: inline-block;
	position: relative;
	padding: 15px 4px;
	font-size: 18px;
}

.head-dark .cart-widget-amount {
	background-color: #000;
	color: #ffffff;
	font-size: 10px;
	position: absolute;
	top: 12px;
	right: -8px;
	border-radius: 50%;
	height: 17px;
	width: 17px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.head-dark .svg-icon-text {
	color: #ffffff;
	fill: #ffffff;
}

.svg-inline--fa.fa-w-14 {
	width: 0.875em;
}

.svg-inline--fa {
	display: inline-block;
	font-size: inherit;
	height: 1em;
	overflow: visible;
	vertical-align: -0.125em;
}

.loja-title {
	font-weight: bold;
	color: #000;
}

.loja-info {
	color: #000;
}

.numPg a {
	color: #788db4 !important;
	padding: 9px !important;
	height: 40px !important;
	width: 40px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 5px;
	border: 1px solid #788db4;
}

a,
a:link,
a:visited {
	text-decoration: none;
	outline: 0;
	transition: all 0.3s ease;
}

@media (min-width: 993px) {
	.box-thumb {
		bottom: -140px;
	}
}

.form-select {
	display: block;
	padding: 10px 30px 10px 10px;
	width: 100%;
	min-width: 60px;
	border: 1px solid rgba(0, 0, 0, 0.14);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: #000000;
	background-color: #ffffff;
}

.btn-line,
.btn-primary,
.form-select,
.form-quantity,
.form-control,
.btn-default,
.label,
.swiper-pagination-fraction {
	border-radius: 50px;
}

.form-control-icon {
	position: absolute;
	bottom: 25px;
	right: 20px;
	pointer-events: none;
}

.form-control-icon svg {
	width: 10px;
}

.form-quantity {
	height: 39px;
	padding: 0 5px;
	border: 1px solid rgba(0, 0, 0, 0.14);
}

.form-quantity .form-control {
	height: 37px;
	padding: 10px;
	border: 0;
	-webkit-appearance: none;
}

.form-label {
	width: 100%;
	display: block;
	font-size: 10px !important;
	text-transform: uppercase;
}

.form-quantity .form-control {
	height: 37px;
	padding: 10px;
	border: 0;
	-webkit-appearance: none;
}

.form-control-inline {
	display: inline;
}

.form-quantity .btn {
	flex: 0 0 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #000;
	padding: 0;
}

.form-quantity .btn svg {
	margin-top: 5px;
	fill: #ffffff;
	margin-top: 5px;
}

svg:not(:root).svg-inline--fa {
	overflow: visible;
}

.svg-inline--fa.fa-w-12 {
	width: 0.75em;
}

.svg-inline--fa.fa-lg {
	vertical-align: -0.225em;
}

.form-group-inline .form-control {
	border-radius: 20px 0 0 20px;
}

.font-weight-bold {
	font-weight: 700 !important;
}

.regular-price {
	color: #000;
	font-size: 22px;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.btn-primary {
	background-color: #000;
	color: #ffffff;
	font-size: 16px;
	letter-spacing: 8px;
	height: 50px;
	text-transform: uppercase;
	font-weight: 400;
	-webkit-box-shadow: inset 0 0 0 2px #000;
	-ms-box-shadow: inset 0 0 0 2px #000;
	-moz-box-shadow: inset 0 0 0 2px #000;
	-o-box-shadow: inset 0 0 0 2px #000;
	box-shadow: inset 0 0 0 2px #000;
	-webkit-transition: all 0.25s ease-in;
	-ms-transition: all 0.25s ease-in;
	-moz-transition: all 0.25s ease-in;
	-o-transition: all 0.25s ease-in;
	transition: all 0.25s ease-in;
}

.btn-primary:hover {
	background-color: #fff;
	color: #000;
	border-color: #000;
}

.btn:hover,
.btn:focus {
	outline: 0;
	opacity: 0.8;
}

.element-footer,
.contact-item,
.product-description,
.social-share,
.instafeed-title,
.form-group,
.breadcrumbs {
	margin-bottom: 20px;
	font-size: 12px;
	font-weight: 300;
}

.product-description {
	font-weight: 300;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.product-description strong {
	font-weight: bold !important;
}

.product-description h4 {
	margin: 20px 0 10px 0;
}

.product-description.user-content table {
	font-size: 14px;
}

@media (max-width: 1100px) {
	.product-description.user-content table {
		font-size: 12px;
	}
}

@media (max-width: 1000px) {
	.product-description.user-content table {
		font-size: 10px;
	}
}

@media (max-width: 850px) {
	.product-description.user-content table {
		font-size: 8px;
	}
}

@media (max-width: 750px) {
	.product-description.user-content table {
		font-size: 14px;
	}
}

@media (max-width: 400px) {
	.product-description.user-content table {
		font-size: 10px;
	}
}

@media (max-width: 300px) {
	.product-description.user-content table {
		font-size: 8px;
	}
}

iframe {
	height: 100%;
	border: 0;
	width: 100%;
}

/****************

	START CALCULA FRETE

*****************/

#calcFrete {
	padding: 20px 0;
}

span.rowValor {
	width: 100%;
	display: block;
}

span.valorFrete {
	font-weight: bold;
}

.calculoFrete {
	margin: 10px 0;
}

input.campoCep {
	background-color: #ffffff;
	border: 1px solid #e4e4e4;
	display: inline-block;
	padding: 10px 15px;
	border-radius: 30px 0 0 30px;
	width: 50%;
	float: left;
	border-right: 0;
}

button.btCalc {
	float: left;
	border-radius: 0px 30px 30px 0;
	height: 43px;
	width: 50%;
}

a.naoSeiCep {
	display: block;
	margin: 5px 0 30px 0;
	text-decoration: underline;
	font-size: 12px;
	float: left;
	width: 100%;
}

div#retorno {
	margin: 10px 0 30px 0;
	float: left;
	width: 100%;
	color: red;
}

div#retorno .rowFrete {
	color: #3f3f3f;
	background-color: #eeeeee;
	margin: 0 0 15px 0;
	padding: 10px 20px;
	border-radius: 32px;
}

.content.carregandoDN {
	height: 100% !important;
	width: 100% !important;
	display: flex;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	margin: 0 !important;
}

.carregandoDN .box {
	text-align: center;
	font-size: 20px;
}

.carregandoDN .lds-ring {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}

.carregandoDN .lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 51px;
	height: 51px;
	margin: 6px;
	border: 6px solid #a0a0a0;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #a0a0a0 transparent transparent transparent;
}

.carregandoDN .lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}

.carregandoDN .lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}

.carregandoDN .lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}

.search-container {
	position: relative;
	width: 60%;
}

.search-container button {
	position: absolute;
	top: 50%;
	right: 5px;
	margin-top: -12px;
	font-size: 18px;
	background: none;
	border: 0;
}

.search-container button i {
	color: #fff;
}

.search-container input {
	background: transparent;
	border: 1px solid #fff;
}

.search-container input:focus {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.row-categorias-busca a.btn {
	margin-right: 5px;
	line-height: 21px !important;
	font-size: 0.7rem !important;
}

.btn-secondary:not([disabled]):not(.disabled).active {
	background-color: #000 !important;
	border-color: #000 !important;
	box-shadow: none !important;
}

.row-categorias-busca a.btn:hover {
	background-color: #000 !important;
	border-color: #000 !important;
}

.item-price,
.product-price {
	color: #000 !important;
}

.product-price {
	font-weight: 700;
}

.card-body .product-title {
	font-weight: bold;
	color: #333;
	line-height: 1.4em;
	height: 60px;
	overflow: hidden;
}

.btn-primary {
	background-color: #000 !important;
	color: #ffffff !important;
	border: 1px solid #000 !important;
	font-size: 16px;
	letter-spacing: 8px;
	height: 50px;
	text-transform: uppercase;
	font-weight: 400;
	-webkit-box-shadow: inset 0 0 0 2px #000;
	-ms-box-shadow: inset 0 0 0 2px #000;
	-moz-box-shadow: inset 0 0 0 2px #000;
	-o-box-shadow: inset 0 0 0 2px #000;
	box-shadow: inset 0 0 0 2px #000;
	-webkit-transition: all 0.25s ease-in;
	-ms-transition: all 0.25s ease-in;
	-moz-transition: all 0.25s ease-in;
	-o-transition: all 0.25s ease-in;
	transition: all 0.25s ease-in;
}

.btn-primary:hover {
	background-color: #fff !important;
	color: #000 !important;
	border-color: #000 !important;
}

.card-body .btn-buy {
	display: block;
	text-transform: uppercase;
	width: 70% !important;
	height: 50px !important;
	line-height: 3.2em;
	overflow: hidden;
	position: relative;
	color: #fff;
	font-size: 16px;
	letter-spacing: 8px;
	font-weight: 400;
	margin: 0 auto;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.card-body .btn-buy:hover {
	color: #000;
}

.boxTot {
	border: none !important;
}

.boxTot .font-weight-bold,
.textoContValor.font-weight-bold,
.textoContSemValor.font-weight-bold {
	background: none !important;
}

.btParcela:hover {
	cursor: pointer;
}

ul.gallery-zoom-hover li img {
	transition: ease-in-out 0.3s;
}

.fotorama__thumb-border {
	border-color: #000 !important;
}

@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/*End CALCULA FRETE*/

@media (max-width: 992px) {
	.bodyEdicao {
		padding-top: 65px !important;
	}
	.header-wrapper {
		top: 0;
	}
}

@media (max-width: 470px) {
	.card-body .btn-buy {
		text-transform: uppercase;
		width: 100% !important;
	}
}

.nav.metismenu.nav-produtos > li > a {
	font-size: inherit;
}

#montink-innerzoom:hover {
	cursor: zoom-in !important;
}
#montink-innerzoom {
	width: 100%;
	max-height: 900px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	overflow: hidden;
}
#montink-innerzoom img {
	width: 100%;
}
.js-carousel--simple {
	display: flex;
	align-items: center;
	height: 100px;
}
.c-carousel__slide {
	padding: 10px;
}
.glider-dot.active {
	background-color: #000 !important;
}
.glider-slide {
	text-align: center;
}
.glider-slide img {
	width: 60%;
}
button:focus {
	outline: none;
}
@media (min-width: 1500px) {
	#montink-innerzoom img {
		width: 85%;
	}
}
.box-thumb {
}

.title-section-h2 {
	font-weight: 900;
	margin-top: 3rem;
	margin-bottom: 2rem;
	text-align: center;
	text-transform: uppercase;
}
.title-section-h2:before {
	content: "";
	width: 150px;
	height: 3px;
	background: #000;
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-75px);
}

.filtroPreco {
	width: 40%;
	display: inline-block;
}

.boxPrecoFaixa {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.btn-filter {
	box-shadow: none;
	background-color: hsl(0, 0%, 100%);
	border: 2px solid hsl(0, 0%, 90%);
	border-radius: 24px;
	font-weight: 700;
	color: hsl(0, 0%, 20%);
	font-size: 12px;
}
.btn-filter:hover,
.btn-filter:focus {
	border-color: #000;
	color: #000;
}
.slider-filter.ui-widget.ui-widget-content {
	border: 1px solid #000;
}
.slider-filter .ui-widget-header {
	background: #000;
}
.slider-filter .ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #000 !important;
	background: #fff !important;
}
.boxPrecoFaixa input {
	color: #000;
	border: 0;
	font-weight: 300;
	text-align: right;
	width: 50%;
}
.boxPrecoFaixa input:first-child {
	text-align: left;
}

.header-loja-montink {
	padding: 10px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1140px;
	margin: 0 auto;
}
.header-loja-montink .loja-thumb {
	max-width: 250px !important;
	max-height: 150px !important;
}
.btn-bag-montink {
	width: 35px;
	height: 35px;
	padding: 0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #222 !important;
	font-size: 22px;
}

.btn-bag-montink svg {
	color: #fff;
}

.box-thumb-montink {
	display: flex;
	justify-content: center;
}
.box-thumb-montink ul {
	margin: 0;
}
.box-thumb-montink ul li {
	padding: 0 5px;
}
.box-thumb-montink li a {
	font-size: 20px;
}
#instafeed {
	width: 100%;
}
.row-dados-loja-montink {
	width: 100%;
	padding: 20px 0;
	background: #efefef;
}
.row-dados-loja-montink .item-dados-loja-montink {
	display: flex;
	align-items: center;
	font-size: 1em;
}
.row-dados-loja-montink .item-dados-loja-montink .svg-inline--fa {
	font-size: 1.8em;
	color: #222;
	margin-right: 10px;
}
.lista-depoimentos-montink {
	position: relative;
}
.lista-depoimentos-montink .owl-nav .owl-prev,
.lista-depoimentos-montink .owl-nav .owl-next {
	color: #000 !important;
	width: 50px;
	height: 50px;
	background: transparent !important;
	margin: 10px;
	border-radius: 50%;
	font-size: 1.6rem !important;
	border: 1px solid #000 !important;
}
.lista-depoimentos-montink article.card {
	margin: 0 15px;
	padding: 30px;
}
.lista-depoimentos-montink article.card .aspas {
	position: absolute;
	right: 15px;
	top: 10px;
	transform: rotate(-10deg);
	font-size: 3rem;
	color: #e8e8e8 !important;
}
.lista-depoimentos-montink article.card p {
	font-style: italic;
}
.row-dados-loja-montink .box-dados-loja-montink {
	display: flex;
	justify-content: space-between;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}
.instagram_private {
	text-align: center;
}
.footer {
	margin-top: 0 !important;
}
.footer-social .payment-methods img {
	margin: 0 10px;
}
footer .fab.fa-tiktok {
	font-size: 1.2rem !important;
}
@media (max-width: 1199px) {
	.row-dados-loja-montink .box-dados-loja-montink {
		font-size: 0.8em;
	}
}
@media (max-width: 855px) {
	.row-dados-loja-montink .box-dados-loja-montink {
		display: grid;
		grid-template-columns: 50% 50%;
	}
	.row-dados-loja-montink .item-dados-loja-montink {
		display: flex;
		justify-content: center;
		padding: 20px 0;
	}
	.content-wrapper .content {
		margin-top: 0 !important;
	}
}
@media (max-width: 599px) {
	.lista-depoimentos-montink article.card {
		margin: 0;
	}

	.ml-mobile {
		margin-left: 0 !important;
		margin-top: 10px;
	}
}
@media (max-width: 455px) {
	body.layout-horizontal .content-wrapper {
		padding: 0;
	}
	.row-dados-loja-montink .box-dados-loja-montink {
		display: grid;
		grid-template-columns: 100%;
	}
	.row-dados-loja-montink .item-dados-loja-montink {
		padding: 10px 0;
	}
}

.numPg a {
	padding: 9px !important;
	height: 40px !important;
	width: 40px;
	border-radius: 50%;
	display: inline-block;
}
.numPg {
	margin: 0 auto !important;
}

.numPg a.atual {
	padding: 5px 12px !important;
}

.numPg a.atual {
	padding: 5px 12px !important;
}

.numPg a.atual {
	background-color: #000 !important;
	border-color: #000 !important;
	text-decoration: none !important;
	color: #fff !important;
	padding: 9px !important;
	height: 40px !important;
	width: 40px;
	display: inline-block;
}

.numPg a:hover {
	padding: 9px !important;
	height: 40px !important;
	width: 40px;
	background-color: #000 !important;
	border-color: #000 !important;
	color: #fff !important;
}

.dropleft .dropdown-toggle.not-caret::before {
	display: none;
}

table a.btn-circle {
	border-radius: 174px !important;
	border: 1px solid #afafaf !important;
	padding: 6px 9px 5px !important;
}
.table td,
.table th {
	vertical-align: middle;
}

#carouselMontink.carousel {
	height: auto !important;
}
#carouselMontink.carousel ul li img {
	object-fit: unset !important;
}
.carousel-services .owl-nav {
	display: none !important;
}
@media (min-width: 601px) {
	.services .owl-stage {
		transform: translate3d(0px, 0px, 0px) !important;
	}
}
/*----------------------------- INICIO BANNER/SLIDER DESKTOP/MOBILE TEMA 2  *****************************************************/

.carousel-services .owl-item {
	display: flex;
	justify-content: center;
}
.border-banner-mobile {
	border-bottom: 2px solid #333;
	padding-bottom: 30px;
}
.slim-file-hopper {
	cursor: pointer;
}
.banner-mobile {
	display: none;
}
@media (max-width: 600px) {
	.banner-desktop {
		display: none;
	}
	.banner-mobile {
		display: block;
	}
}
/*----------------------------- FIM BANNER/SLIDER DESKTOP/MOBILE TEMA 2  *****************************************************/

.cssload {
	width: 100%;
	height: 69px;
	text-align: center;
	display: inline-block;
}

.cssload > div {
	margin: 0 auto;
	font-size: 25px;
	width: 1em;
	height: 1em;
	vertical-align: middle;
	border-radius: 50%;
	position: relative;
	text-indent: -9999em;
	-webkit-animation: load5 1.1s infinite ease;
	animation: load5 1.1s infinite ease;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
}

@-webkit-keyframes load5 {
	0%,
	100% {
		box-shadow: 0em -2.6em 0em 0em #ffffff,
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
			2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
			0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.5),
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
	}
	12.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7),
			1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
			0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
	}
	25% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5),
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff,
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
			0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	37.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5),
			2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff,
			0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	50% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
			2.5em 0em 0 0em rgba(255, 255, 255, 0.5),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff,
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	62.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
			2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5),
			0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff,
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	75% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
			2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
			0em 2.5em 0 0em rgba(255, 255, 255, 0.5),
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff,
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	87.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
			2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
			0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
	}
}
@keyframes load5 {
	0%,
	100% {
		box-shadow: 0em -2.6em 0em 0em #ffffff,
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
			2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
			0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.5),
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
	}
	12.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7),
			1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
			0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
	}
	25% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5),
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff,
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
			0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	37.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5),
			2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff,
			0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	50% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
			2.5em 0em 0 0em rgba(255, 255, 255, 0.5),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff,
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	62.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
			2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5),
			0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff,
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	75% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
			2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
			0em 2.5em 0 0em rgba(255, 255, 255, 0.5),
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff,
			-1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}
	87.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
			1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
			2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
			0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
			-1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
	}
}

.lily-media-avaliacao-produto > div {
	margin-top: -6px !important;
	text-align: center !important;
}




/*INICIO LOADING FORM*/
.lock-modal {
	display: none;
	background-color: black;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: inherit;
}
.j_form_denuncia {
	margin: auto;
	background-color: white;
	position: relative;
}
.loading-circle {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	animation: spin 0.6s ease-in infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/*FIM LOADING FORM*/
.g-recaptcha iframe {
	height: 80px !important;
}
.j_form_denuncia .form-control,
.appTroca_form .form-control {
	border: 1px solid #c3c3c3 !important;
	border-radius: 17px !important;
}

option {
	font-size: 1.16em;
}

select[disabled] {
	background: #ededed;
}

.modal-dialog .form-control {
	border-radius: 3px !important;
}

#depoimento-review-app #depoimento-review-iframe {
	height: revert-layer !important;
}

.modal-dialog .btn-primary-montink-dashboard {
	background: rgba(0, 0, 0, 0) !important;
	border-color: #ccc !important;
	color: #333 !important;
}
.modal-dialog .btn {
	align-items: center !important;
	position: relative !important;
	top: 0 !important;
	-webkit-transition: 0.1s ease-in-out !important;
	-moz-transition: 0.1s ease-in-out !important;
	-ms-transition: 0.1s ease-in-out !important;
	-o-transition: 0.1s ease-in-out !important;
	transition: 0.1s ease-in-out !important;
}
.modal-dialog .btn-primary-montink-dashboard:hover {
	background: #00ffae !important;
	border-color: #ccc !important;
	color: #333 !important;
}
.modal-dialog .btn:hover {
	transition: none !important;
	top: 2px !important;
}

.j_form_sended {
	text-align: center;
}

.j_form_sended .h2 {
	font-size: 1.2em;
	font-weight: bold;
	color: #00ffae;
}

.j_form_sended .h2 span {
	display: inline-block;
	background: #00ffae;
	margin-bottom: 10px;
	font-size: 2em;
	color: #fff;
	padding: 8px 20px;
	border-radius: 50%;
}

.j_form_sended p {
	margin-top: 15px;
	font-size: 16px;
}
.page-troca-produto div#trocas div.linha-show,
.page-troca-produto div#devolucoes div.linha-show {
	border-top: 1px solid #646464;
}

.page-troca-produto input.select2-search__field {
	width: 100% !important;
}

.page-troca-produto
	span.select2.select2-container.select2-container--default.select2-container--below
	select2-container--open,
.page-troca-produto
	span.select2.select2-container.select2-container--default.select2-container--below {
	overflow: auto;
}

.page-troca-produto ul.select2-selection__rendered {
	min-height: 90%;
}

.page-troca-produto
	span.select2.select2-container.select2-container--default
	select2-container--open
	span.select2-selection.select2-selection--multiple,
.page-troca-produto
	span.select2.select2-container.select2-container--default
	span.select2-selection.select2-selection--multiple {
	max-height: 92%;
	overflow: auto;
}

.page-troca-produto span.name {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.page-troca-produto #a {
	padding-left: 0px;
}

.page-troca-produto #a img,
.page-troca-produto .btn-select img {
	width: 12px;
}

.page-troca-produto #a li {
	list-style: none;
	padding-top: 5px;
	padding-bottom: 5px;
}

.page-troca-produto #a li:hover {
	background-color: #f4f3f3;
}

.page-troca-produto #a li img {
	margin: 5px;
}

.page-troca-produto #a li span,
.page-troca-produto .btn-select li span {
	margin-left: 30px;
}

.page-troca-produto .btn-select li {
	list-style: none;
	float: left;
	padding-bottom: 0px;
}

.page-troca-produto .btn-select:hover li {
	margin-left: 0px;
}

/*************************** PAGINAÇÃO *********************************/
ul.product-pagination.numPg {
	display: flex !important;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

ul.product-pagination.numPg li {
	text-align: center;
}

ul.product-pagination.numPg li a {
	margin: 0;
}

ul.product-pagination.numPg a.atual {
	background-color: #7468bd;
	border-color: #7468bd;
	text-decoration: none;
	color: #fff;
	padding: 9px;
	height: 40px;
	width: 40px;
	display: inline-block;
	padding: 5px 12px;
}

.app-montink .numPg a.atual {
	background: #000 !important;
	border-color: #000 !important;
}

.app-montink .numPg a:hover {
	background: #000;
	border-color: #000;
}

.z-index-100 {
	z-index: 100;
}

.cookieConsentContainer {
	z-index: 999;
	width: 100%;
	min-height: 20px;
	box-sizing: border-box;
	box-shadow: 0 3px 6px 5px rgb(0 0 0 / 20%);
	overflow: hidden;
	position: fixed;
	bottom: 0;
	right: 0;
	opacity: 1;
}

.cookieContainer {
	position: relative;
	max-width: 1200px;
}

.cookieTitle {
	font-size: 1.125rem;
}

.cookieContainer .cookieButton {
	line-height: 1.25;
	padding: 0.375rem 0.75rem !important;
	border-radius: 0.375rem !important;
	cursor: pointer;
	outline: none;
	height: 40px !important;

	background: rgb(24 24 27); !important;
	color: #fff !important;
	border: 1px solid rgb(24 24 27); !important;

	justify-self: flex-end;
}

.cookieContainer .cookieButton:hover,
.cookieContainer .cookieButton:focus {
	outline: none;
	box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05) !important;

	background: rgba(24, 24, 27, 0.9) !important;
	color: #fff !important;
	border: 1px solid rgba(24, 24, 27, 0.9) !important;
}
