body {
	font-family: "Inter", sans-serif;
	font-weight: 400;
	overflow-x: hidden;
	background-color: #f3f5f6;
	color: #333;
}
html {
	scroll-behavior: smooth;
}
b,
strong {
	font-weight: 700 !important;
}
a {
	text-decoration: none;
}

.elementLeft_invisible,
.elementRight_invisible {
	visibility: hidden;
}
.animated {
	position: relative;
	animation-duration: 0.8s;
}

.ul_reset {
	padding: 0;
	margin: 0;
}
.ul_reset li {
	list-style: none;
}

/*
* START MENU
*/
input[type="search"]::-webkit-search-cancel-button {
	display: none;
}
.navbar_top {
	border-bottom: 2px solid #ffc107;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
}
.navbar-collapse {
	border-top: 1px solid #00ea8c;
	margin-top: 10px;
}
.logo_site {
	margin-right: 0;
	margin-left: 0 !important;
}
.logo_site img {
	max-height: 30px;
}
.nav-link {
	color: rgba(0, 0, 0, 0.7);
	font-weight: 400 !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .show > .nav-link:hover {
	color: #fff !important;
}
.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
	color: #ffffff !important;
	font-weight: 700 !important;
}
.boxSearch {
	width: 100%;
	margin-top: 15px;
	margin-bottom: 15px;
}
.boxSearch .input_search,
.containerSearch .input_search {
	border-radius: 4px;
	padding: 6px 40px 6px 20px;
	font-weight: 400;
	border: none;
	font-size: 1rem;
	background-color: #ede6e6 !important;
}
.containerSearch .input_search {
	font-size: 1rem;
	border-color: #ada8a8;
}
.boxSearch .input_search:hover,
.boxSearch .input_search:focus {
	box-shadow: none;
}
.boxSearch .input_search:focus {
	border-color: #303078;
}
.boxSearch .btn {
	margin-left: -52px;
	color: #303078;
	border: none;
	outline: none;
	border-radius: 0 4px 4px 0;
	padding-right: 14px;
	padding-left: 14px;
}
.boxSearch .btn:hover,
.boxSearch .btn:focus {
	box-shadow: none;
	background-color: #00ea8c;
	color: #303078;
}
.navbar-toggler {
	width: 32px;
	height: 32px;
	padding: 4px;
	cursor: pointer;
	position: relative;
	transition: 0.5s ease-in-out;
	box-sizing: border-box;
	border-color: #ff6600;
}
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
	outline: none;
	box-shadow: none;
}
.navbar-toggler span {
	margin: 0;
	padding: 0;
}
.toggler-icon {
	display: block;
	position: absolute;
	height: 2px;
	width: 20px;
	background-color: #ff6600;
	border-radius: 1px;
	opacity: 1;
	left: 5px;
	transform: rotate(0deg);
	transition: 0.25s ease-in-out;
}
.middle-bar {
	margin-top: 0;
}
.navbar-toggler .top-bar {
	margin-top: 0;
	transform: rotate(135deg);
}
.navbar-toggler .middle-bar {
	opacity: 0;
	filter: alpha(opacity=0);
}
.navbar-toggler .bottom-bar {
	margin-top: 0;
	transform: rotate(-135deg);
}
/* collapsed */
.navbar-toggler.collapsed .top-bar {
	margin-top: -16px;
	transform: rotate(0);
}
.navbar-toggler.collapsed .middle-bar {
	opacity: 1;
	filter: alpha(opacity=100);
}
.navbar-toggler.collapsed .bottom-bar {
	margin-top: 16px;
	transform: rotate(0);
}
.navbar-toggler.collapsed .toggler-icon {
	background-color: #ff6600;
}
/** END MENU */

/*
* START PRODUCT
*/
.info_header p {
	font-size: 0.65rem !important;
}
.product_item {
	position: relative;
	transition: all 0.2s ease-in-out;
	overflow: hidden;
}
.product_item:hover {
	border-color: var(--dark) !important;
	box-shadow: 0 0 0 7px rgba(255, 131, 0, 0.4),
		inset 0 0 10px 0 rgba(0, 0, 0, 0.53);
}
.product_item__bg_animate {
	content: "";
	position: absolute;
	width: 200%;
	height: 120%;
	top: 50%;
	left: 50%;
	transform-origin: left;
	transition: transform 300ms ease;
	transform: translate(-150%, 100%);
	border-radius: 50%;
	background-color: rgba(10, 191, 49, 0.365);
	z-index: 2;
}
.product_item:hover .product_item__bg_animate {
	transform: translate(-50%, -50%);
}
.product_item__icon_add {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
	opacity: 0;
	transition: opacity 500ms ease;
}
.product_item:hover .product_item__icon_add {
	opacity: 1;
}
.product_item__icon_add i {
	font-size: 2.5rem;
	color: #0b0b0b;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
	transition: transform 200ms ease;
}
.product_item__icon_add i:hover {
	transform: scale(1.2);
}
.product_item .product_item__thumb {
	height: auto;
	max-height: 272px;
	width: auto;
	max-width: 100%;
	border-radius: 5px;
	overflow: hidden;
}
.product_item .product_item__title {
	min-height: 36px;
	font-weight: 600;
}
.product_item .product_item__title .product_item__link {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	color: var(--black);
	font-size: 1.4rem;
	line-height: 1.5rem;
	transition: color 0.2s ease-in-out;
}
.product_item .product_item__title .product_item__link:hover {
	color: var(--blue);
}
.product_item .product_item__price .price_compare {
	text-decoration: line-through;
	color: var(--gray3);
	font-size: 1.2rem !important;
}
.product_item .product_item__price .price_highlight {
	font-weight: 700;
	font-size: 1.8rem !important;
	line-height: 1.6rem;
}
.product_item .product_item__discount {
	font-weight: 400;
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 3;
	background-color: #e7e006 !important;
	color: #000;
	font-size: 1.3rem;
	font-weight: 400;
	border-radius: 50px;
	transition: background-color 400ms ease, color 200ms ease,
		transform 200ms ease;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.55);
}
/** END PRODUTOS*/
/** START PRODUTOS ALEATÓRIOS*/
.recommendations_item .recommendations_item__title {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.8rem;
}
/** END PRODUTOS ALEATÓRIOS*/
.box_showcase {
	border-radius: 5px;
	overflow: hidden;
	transition: all 0.2s ease-in-out;
	animation: fadeIn 1s;
	cursor: zoom-in;
}
#showcase {
	transform-origin: center;
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.fade-in-image {
	animation: fadeIn 1s;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.thumb_list {
	margin: 20px 0 10px;
	padding: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 10px;
}
.thumb_list .thumb {
	list-style: none;
	margin-bottom: 5px;
	border-radius: 4px;
	cursor: pointer;
	display: inline-block;
	width: 63px;
	height: 63px;
	aspect-ratio: 1 / 1;
	box-shadow: 0 0 0 0 rgba(0, 234, 140, 1);
	overflow: hidden;
	transition: all 0.2s linear;
}
.thumb_list .thumb:hover {
	box-shadow: 0 0 0 4px rgba(0, 234, 140, 1);
}
.thumb_list .thumb.case_active {
	box-shadow: 0 0 0 4px rgba(72, 112, 245, 1);
}
.thumb_list .thumb:last-child {
	margin-bottom: 0;
}
.thumb_list .thumb .case {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}

.box_ratings .qtd-rating {
	font-size: 1rem;
	font-weight: 600;
}
.box_ratings .qtd-rating-text {
	font-size: .8rem;
	font-weight: 400;
	color: #919191;
	margin-top: .20rem;
	margin-left: 5px;
}

.animation-pulse {
	-webkit-animation: pulse 1s infinite;
	animation: pulse 2s infinite;
}
.animation-pulse:hover {
	transform: scale(1);
	animation: step-end !important;
}
@keyframes pulse {
	0% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0 var(--greenLight);
	}
	60% {
		transform: scale(1);
		box-shadow: 0 0 0 20px transparent;
	}
	100% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0 transparent;
	}
}

.info_item {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: baseline;
	justify-content: space-between;
}
.info_box .info_icon,
.info_box .info_text {
	display: inline-block;
}
.info_box .info_icon {
	fill: #6d6d6f;
	height: 20px;
	width: 10%;
}
.info_box .info_text {
	width: 90%;
	line-height: 1rem;
}

.seller-info__status-info {
	display: -webkit-flex;
	display: flex;
	margin-bottom: 20px;
}
.seller__status-title {
	font-size: 16px;
	font-weight: 600;
	color: #00a650;
	padding: 0;
	margin: 2px 0 -12px 0 !important;
}
.seller-info__status-info__subtitle {
	font-size: 14px;
	color: #919191;
	font-weight: normal;
	margin: 10px 0 0 0 !important;
}
.thermometer {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	overflow: hidden;
	display: block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* vertical-align: baseline; */
}
.thermometer__level {
	width: 20%;
	height: 8px;
	margin-top: 2px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	border-left: 6px solid #fff;
}
.thermometer__level--1 {
	background: #fff0f0;
}
.thermometer__level--2 {
	background: #fff5e8;
}
.thermometer__level--3 {
	background: #f5f1cd;
}
.thermometer__level--4 {
	background: #daeeb1;
}
.thermometer[value="5"] .thermometer__level--5 {
	height: 12px;
	margin: 0;
	background: #39b54a;
}

.seller__list-description {
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
}
.seller__item-description {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
	text-align: center;
	font-size: 12px;
	position: relative;
	line-height: 1;
	padding: 8px 5px;
}
.seller__item-description:after {
	background: #ddd;
	content: "";
	height: 91%;
	position: absolute;
	right: 0;
	top: 8%;
	width: 1px;
}
.seller__item-description:last-child::after {
	content: none;
}
.seller_sales {
	font-size: 24px;
	color: #000;
	line-height: 1.2;
	font-weight: 400;
	display: block;
}
.seller_icon {
	display: inline-block;
	width: 28px;
	padding-top: 3px;
	vertical-align: top;
}
.store_info p {
	margin: 5px;
}
.seller__text-description {
	font-size: 0.7rem;
	line-height: 1.1;
	color: rgba(0, 0, 0, 0.55);
}

/*Start Icon Scroll Animation*/
.mouse-box {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.link-scroll {
	text-align: center;
	text-decoration: none;
}
.mouse--scroll {
	width: 2.3em;
	height: 4em;
	border: 0.3em solid var(--yellow2);
	border-radius: 2em;
	position: relative;
	margin: 0 auto;
}
.mouse--scroll::before {
	content: "";
	width: 0.6em;
	height: 0.6em;
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translate(-50%, 0);
	border-radius: 0.6em;
	background-color: var(--yellow2);
	opacity: 1;
	animation: mouse-scroll-move 2s infinite;
}
@keyframes mouse-scroll-move {
	from {
		opacity: 1;
		top: 15%;
	}
	to {
		opacity: 0;
		top: 75%;
	}
}

.mouse--scroll-text {
	font-size: 1em;
	font-weight: 500;
	letter-spacing: 0.5px;
	line-height: 1.1em;
	text-transform: uppercase;
	color: var(--white);
	margin-top: 1em;
	animation: mouse-scroll-text 1.5s infinite;
}
@keyframes mouse-scroll-text {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	90%,
	100% {
		opacity: 1;
	}
}
/*End Icon Scroll Animation*/

.information_item h3 b,
.information_item h3 strong {
	font-size: 1.1em !important;
}

/*start Product Page*/
.product_variant {
	overflow: hidden;
	background-color: var(--white);
	padding: 15px;
}
.product_variant.best_seller {
	border: 5px solid var(--yellow2);
}
.product_variant.best_seller .product_variant__thumb {
	border-color: var(--yellow2) !important;
}
.product_variant .product_variant__thumb {
	max-height: 310px;
	box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.3);
}
.product_variant .product_variant__title h5 {
	font-size: calc(1.1rem + 0.6vw) !important;
}
.product_variant .product_variant__color .badge_product .separator {
	color: var(--yellow2);
}
.product_variant .product_variant__price .price_old {
	margin-bottom: -10px;
}
/*end Product Page*/

/*start Reviews*/
.average_rating__card {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
	text-align: center;
	font-size: 12px;
	position: relative;
	line-height: 1;
	padding: 15px;
}
/*end Reviews*/

/*start FAQ*/
#accordionFaq .accordion-item {
	background-color: transparent;
	font-size: 1rem;
	font-weight: 600;
	color: #676767;
	text-align: left;
}
#accordionFaq .accordion-body {
	border: 1px solid #dad8d8;
	border-radius: 10px;
}
#accordionFaq .accordion-button {
	font-weight: 700;
	color: #54595f;
	text-align: left;
	font-size: 1.2rem;
	background-color: transparent;
	display: block;
	padding-left: 45px;
}
#accordionFaq .accordion-button:focus {
	border-color: transparent;
	box-shadow: none;
}
#accordionFaq .accordion-button:not(.collapsed) {
	color: #000;
	background-color: transparent;
	font-weight: 900;
	outline: none;
}
.accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#accordionFaq .accordion-button::after {
	position: absolute;
	top: 18px;
	left: 5px;
}
/*end FAQ*/

/*start Footer*/
.nav_footer .nav_link {
	text-decoration: none;
	color: #eee;
}
.nav_footer .nav_link.active {
	color: #ffc107 !important;
}
.footer_block__int {
	padding: 0;
}
.btn_footer_block {
	pointer-events: all;
	position: relative;
	width: 100%;
	display: inline-block;
	padding: 1rem;
	margin-left: 0;
	margin-right: 0;
	background-color: transparent;
	border: none;
	outline: none;
	box-shadow: none;
	border-radius: 0;
	text-align: left;
	font-size: 1rem;
	font-weight: 700;
	color: #ffc107;
	border-bottom: 1px solid #444;
	cursor: pointer;
	transition: all 0.15s ease-in-out;
}
.btn_footer_block:hover,
.btn_footer_block:active{
	background-color: transparent !important;
	border-color: #ece323 !important;
}
.btn.btn_footer_block::after,
.btn.btn_footer_block.collapsed::after {
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	font-family: "Font Awesome 6 Pro";
	font-weight: 500;
	font-size: 1rem;
	color: #ffc107;
	transition: all 0.15s ease-in-out;
}
.btn.btn_footer_block.collapsed::after {
	content: "\2b";
}
.btn.btn_footer_block:not(.collapsed)::after {
	content: "\f068";
	color: #ffc107 !important;
}
.btn.btn_footer_block:not(.collapsed) {
	color: #ffc107 !important;
	border-color: #ffc107 !important;
}
.footer_block .card-body {
	color: #eee;
	background-color: transparent;
	border: none;
	border-radius: 0;
	font-size: 0.9rem;
	font-weight: 400;
	border-bottom: 1px solid #444;
	padding-bottom: 2rem;
}
.footer_block .card-body a {
	transition: color 250ms ease-in-out;
}
.footer_block .card-body a:hover {
	color: #ffc107 !important;
}
.footer_block.footer_block__newsletter input,
.footer_block.footer_block__newsletter button {
	width: 100%;
	border: none;
	outline: none;
	box-shadow: none;
	border-radius: 50px;
	padding: 10px 20px;
}
.footer_block.footer_block__newsletter input {
	margin-bottom: 7px;
	background-color: #e9e8e8;
	color: var(--white);
	transition: box-shadow 200ms ease-in-out;
}
.footer_block.footer_block__newsletter input:focus {
	box-shadow: 0 0 1px 2px rgba(0, 0, 0, 0.53);
}
.footer_block.footer_block__newsletter button {
	font-weight: bold;
	font-size: 1.2rem;
	margin-top: 3px;
}
.footer_info_1 p,
.footer_info_2 p,
.footer_info_3 p,
.footer_info_4 p,
.footer_info_5 p {
	color: #eee;
}
/*end Footer*/

/*start Scroll Progress*/
#scroll_progress {
	position: fixed;
	bottom: 20px;
	right: -150%;
	height: 70px;
	width: 70px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}
#scroll_progress:hover {
	transform: scale(0.9);
}
#scroll_progress__value {
	display: block;
	height: calc(100% - 15px);
	width: calc(100% - 15px);
	background-color: #fff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 35px;
	color: #001a2e;
	transition: background-color 0.2s ease-in-out;
}
#scroll_progress__value:hover {
	background-color: #ffc107;
}
/*end Scroll Progress*/

.safe-payment-icon {
	height: 25px;
	margin: 5px;
	display: inline-block;
	visibility: visible;
}

/*start Search*/
.containerSearch .input_search:hover,
.containerSearch .input_search:focus {
	box-shadow: none;
}
.containerSearch .input_search:focus {
	border-color: var(--yellow);
}
.containerSearch .btn {
	margin-left: -52px;
	color: #000;
	border: none;
	outline: none;
	border-radius: 50px;
	padding-right: 14px;
	padding-left: 14px;
}
.containerSearch .btn:hover,
.containerSearch .btn:focus {
	box-shadow: none;
	background-color: var(--yellow);
}
/*end Search*/

@media screen and (min-width: 520px) {
	.info_box .info_icon {
		width: 7%;
	}
	.info_box .info_text {
		width: 93%;
	}
	.info_header p {
		font-size: 0.85rem !important;
	}
}

@media screen and (min-width: 768px) {
	.box_showcase {
		border-radius: 10px;
	}
	.thumb_list {
		margin: 0;
		flex-direction: column;
		align-items: center;
	}
	.thumb_list .thumb {
		width: auto;
		height: auto;
		display: block;
	}
	.thumb_list .thumb:hover {
		box-shadow: 0 0 0 5px rgba(0, 234, 140, 1);
	}
	.thumb_list .thumb.case_active {
		box-shadow: 0 0 0 5px rgba(72, 112, 245, 1);
	}
	.info_box .info_icon {
		width: 9%;
	}
	.info_box .info_text {
		width: 91%;
	}
	.product_variant .product_variant__thumb img {
		transform: translateY(0);
	}
	.col-md-2.box_product_variant {
		width: 50%;
	}
	.product_item .product_item__discount {
		font-size: 1.1rem;
	}
	.product_item .product_item__title .product_item__link {
		font-size: 1.2rem;
		line-height: 1.4rem;
	}
	.btn_footer_block {
		pointer-events: none;
	}
	.btn.btn_footer_block::after,
	.btn.btn_footer_block.collapsed::after {
		content: "";
	}
	.footer_block .card-body {
		border: none;
	}
}

@media screen and (min-width: 992px) {
	.navbar-collapse {
		border-top: none;
		margin-top: 0;
	}
	.logo_site {
		margin-right: 0;
	}
	.boxSearch {
		width: 50%;
		margin-top: 0;
		margin-bottom: 0;
	}
	.product_item .product_item__price .price_compare {
		font-size: 1rem !important;
	}
	.product_item .product_item__price .price_highlight {
		font-size: calc(1.275rem + 0.3vw) !important;
		line-height: 1.4rem;
	}
	.product_item .product_item__title .product_item__link {
		font-size: 1rem;
		line-height: 1.3;
	}
	.product_item .product_item__discount {
		font-size: 0.75em;
	}
}

@media screen and (min-width: 1024px) {
	.info_box .info_icon {
		width: 8%;
	}
	.info_box .info_text {
		width: 92%;
	}
	.product_variant .product_variant__thumb img {
		transform: translateY(-9%);
	}
	/*start Reviews*/
	.average_rating__card::after {
		background: #ddd;
		content: "";
		height: 91%;
		position: absolute;
		right: 0;
		top: 2%;
		width: 1px;
	}
	.average_rating__card:last-child::after {
		content: none;
	}
	.btn_make_review {
		margin-top: -10px;
	}
	/*end Reviews*/
}

@media screen and (min-width: 1300px) {
	.info_box .info_icon {
		width: 7%;
	}
	.info_box .info_text {
		width: 93%;
	}
	.col-md-2.box_product_variant {
		width: 33%;
	}
	.product_variant .product_variant__title h5 {
		font-size: 1.75rem !important;
	}
}

.box {
	min-height: 95vh;
	border-radius: 30px;
}
.box h2 {
	font-size: 2.8rem !important;
	color: var(--white);
	text-transform: uppercase;
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
}
.greenLight {
	background-color: var(--greenLight);
}
.redLight {
	background-color: var(--redLight);
}
.yellow {
	background-color: var(--yellow);
}
.blueLight {
	background-color: var(--blueLight);
}
.mt_150 {
	margin-top: 150px;
}
