body {
	font-family: 'Source Sans 3', sans-serif;
}

#whatsapp-float-cta {
	position: fixed;
	bottom: 75px;
	right: 5px;
	width: 50px;
	height: 50px;
	padding: 12px;
	z-index: 9999;
	border-radius: 100%;
	display: block;
	background: #148d54;
	color: #fff;
}
#whatsapp-float-cta svg {
	display: block;
	max-width: 100%;
	max-height: 100%;
	fill: #fff;
}

@media (min-width: 768px) {
	#whatsapp-float-cta {
		bottom: 20px;
		right: 20px;
		width: 60px;
		height: 60px;
		padding: 16px;
	}
}

/* SWIPPER SLIDER */
.swiper-button-prev,
.swiper-button-next {
	width: 45px;
	height: 46px;
	padding: 0;
	background-color: var(--default_secondary_color);
}
.swiper-button svg {
	width: 100%;
	height: 100%;
	display: block;
}
.swiper-button svg,
.swiper-button svg path {
	color: #fff;
	fill: #fff;
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
	opacity: 0;
	display: none;
}
.swiper-container:hover .swiper-button-prev:not(.swiper-button-disabled),
.swiper-container:hover .swiper-button-next:not(.swiper-button-disabled) {
	opacity: 1;
}
.swiper-container {
	position: relative;
}
.swiper-button-prev {
	left: 5px;
}
.swiper-button-next {
	right: 5px;
}
.showcase-background .swiper-button-next {
	right: -10px;
}
.swiper-button-prev,
.swiper-button-next {
	width: 28px;
	height: 63px;
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	background: var(--default_primary_color);
	border: 0 none;
	transition: 300ms all;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.28);
	border-radius: 30px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: var(--default_primary_color);
}
.swiper-button-prev svg,
.swiper-button-next svg {
	width: 10px;
	height: 10px;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.swiper-pagination.swiper-pagination-horizontal {
	display: flex;
	gap: 5px;
}
.swiper-pagination .swiper-pagination-bullet {
	width: 11px;
	height: 11px;
	border-radius: 10px;
	background: transparent;
	border: 2px solid var(--default_primary_color);
	transition: 300ms all;
}
.swiper-pagination .swiper-pagination-bullet:hover {
	background: var(--default_primary_color);
}
.swiper-pagination .swiper-pagination-bullet-active {
	background: var(--default_primary_color);
}

@media (min-width: 768px) {
	.swiper-container .swiper-button-prev,
	.swiper-container .swiper-button-next {
		display: block;
	}
	.swiper-button-prev {
		left: -10px;
	}
	.swiper-button-next {
		right: -10px;
	}

	.swiper-button-prev,
	.swiper-button-next {
		width: 28px;
		height: 63px;
	}

	.swiper-button-prev svg,
	.swiper-button-next svg {
		width: 15px;
		height: 15px;
	}
}

/* DROPDOWN */
.dropdown {
	position: relative;
	border: 0 none;
	background: transparent;
	padding: 0;
	opacity: 1;
	z-index: 100;
}
.dropdown.active {
	z-index: 100001;
}
.dropdown-button {
	display: block;
	padding: 0;
	margin: 0;
	border: 0 none;
	background: transparent;
}
.dropdown-content {
	position: absolute;
	width: 290px;
	left: 5px;
	top: 100%;
	bottom: auto;
	right: auto;
	height: auto;
	z-index: 10;
	box-sizing: border-box;
	background: #faf7f4;
	border: 1px solid #faf7f4;
	box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.07);
	border-radius: 12px;
	margin: 24px 0 0;
	opacity: 0;
	visibility: hidden;
	height: 0;
	overflow: hidden;
	transition: 300ms all;
}
.dropdown-content::after {
	content: '';
	border: 17px solid transparent;
	border-bottom-color: #faf7f4;
	z-index: 9;
	position: absolute;
	top: -32px;
	left: 34px;
	right: auto;
}

.dropdown-content.active {
	opacity: 1;
	visibility: visible;
	height: auto;
	overflow: visible;
}
.dropdown-content-border {
	padding: 20px;
}
.drowpdown-content-grid {
	display: grid;
	gap: 15px;
}
.shippingcep-title,
.drowpdown-content-title {
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 18px;
	color: #3f3f3f;
}
.shippingcep-title span,
.drowpdown-content-title span {
	display: block;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	color: #3f3f3f;
}
.account .drowpdown-content-title {
	display: none;
}

.shippingcep-text,
.drowpdown-content-text {
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #868686;
}
.drowpdown-content-primary-cta {
	display: block;
	padding: 12px;
	width: 253px;
	background: #221c35;
	border-radius: 6px;
	height: 44px;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #ffffff;
	text-decoration: none;
}
.drowpdown-content-primary-cta:hover {
	background: #1c1533;
}
.drowpdown-content-divisor-text {
	display: none;
	align-items: center;
	justify-content: center;
}
.drowpdown-content-divisor-text:before,
.drowpdown-content-divisor-text:after {
	content: '';
	width: 100%;
	height: 1px;
	background: #e9e9e9;
}
.drowpdown-content-divisor-text span {
	background: var(--bg_color);
	padding: 0 5px;
	min-width: 110px;
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #b9b9b9;
}
@media (min-width: 768px) {
	.dropdown-content {
		width: 290px;
		left: -34px;
		top: 100%;
		bottom: auto;
		right: auto;
		margin: 24px 0 0;
	}
	.dropdown-content::after {
		left: 34px;
		right: auto;
	}
	.dropdown-content::before {
		content: '';
		height: 24px;
		z-index: 9;
		position: absolute;
		top: -24px;
		left: 0;
		right: 0;
	}
	.dropdown-content-border {
		padding: 30px;
	}
}

/* HEADER */
.header {
	background-color: var(--Header1_bg_color);
	color: var(--Header1_txt_color);
	border-top: 8px solid var(--Header1_topbar_primary_color);
}
.header:not(.sticky-top) {
	z-index: 110;
	position: relative;
}
.header-text-color {
	color: var(--Header1_txt_color);
}
.header-link-color {
	color: var(--Header1_link_color);
	gap: 8px !important;
	display: flex !important;
	align-items: center;
	cursor: pointer;
}
@media (max-width: 767px) {
	.header-info-cart-button .header-link-color svg,
	.account-link.header-link-color svg {
		width: 42px;
		height: 42px;
	}
}
.header-link-color small {
	font-size: 12px;
	line-height: 14px;
	display: block;
}
.header-link-color b {
	font-weight: bold;
	line-height: 12px;
	font-size: 12px;
	font-style: normal;
}
@media (min-width: 768px) {
	.header-link-color small,
	.header-link-color b {
		font-size: 16px;
		line-height: 18px;
	}
}

/* TOPBAR */
.header-topbar {
	position: relative;
	z-index: 10;
	padding: 5px 0;
	background-color: var(--Header1_topbar_bg_color);
}
.header-topbar .header-topbar-list {
	display: flex;
	align-items: center;
	gap: 5%;
}
.header-topbar .header-topbar-list-item,
.header-topbar .header-topbar-list-item > a {
	font-size: var(--Header1_topbar_font_size);
	color: var(--Header1_topbar_txt_color);
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
}
.header-topbar .header-topbar-list-item[data-index='1'] {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 0;
}
.header-topbar .header-topbar-list-item[data-index='1'] > a {
	background-color: var(--Header1_topbar_txt_color);
	color: #ffffff;
	display: block;
	padding: 5px 15px;
}
.header-topbar .header-topbar-list-item:hover {
	opacity: 0.8;
}
.header-topbar .header-topbar-list-item-icon {
	display: block;
	width: 20px;
	height: 20px;
}

@media (min-width: 768px) {
	.header-topbar .header-topbar-list {
		justify-content: center;
	}
}

/* HEADER INFO */
.header-info {
}
.header-info-content-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	padding: 10px 0 0;
	flex-wrap: wrap;
}
@media (min-width: 768px) {
	.header-info-content-flex {
		padding: 15px 0;
		gap: 15px;
		flex-wrap: nowrap;
	}
}
@media (min-width: 992px) {
	.header-info-content-flex {
		gap: 30px;
	}
}

/* BRAND */
.header-info-brand {
	margin-left: 0;
	margin-right: auto;
}
@media (max-width: 991px) {
	.header-info-brand {
		max-width: 135px;
	}
	.header-info-brand-img {
		width: auto;
	}
}
.header-info-brand-h1 {
	margin: 0;
}
.header-info-brand-link {
}
.header-info-brand-img {
	display: block;
	height: auto;
	max-width: 100%;
}
.header-info-brand-label {
	position: fixed;
	left: -999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.nav-mobile-cta > span {
	margin-left: 0;
}
@media (min-width: 768px) {
	.nav-mobile-cta {
		display: none;
	}
}

/* SEARCH */
.mobile-modal {
	z-index: 1201 !important;
}
.btn-search-float {
	z-index: 1200 !important;
	display: block;
	top: 79px !important;
}
@media (min-width: 768px) {
	.btn-search-float {
		display: none;
	}
}
.search-box {
	z-index: 100;
	flex: 1 1 auto !important;
	display: none;
}
.search-box.active {
	z-index: 100000;
}
.search-mobile {
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	left: 100%;
	z-index: 201;
	transition: 300ms all;
	border-top-width: 8px;
	border-top-style: solid;
}
.search-mobile.active {
	left: 0;
	right: 0;
}
.search-mobile-header {
	margin: 10px auto;
}
.search-mobile-close {
	width: 36px;
	height: 36px;
	border: 0 none;
	background: transparent;
}
.search {
	position: relative;
	width: 100%;
	height: 100%;
}
.search-input-border {
	display: flex;
	border-radius: 50rem;
	position: relative;
	z-index: 130;
	height: 54px;
	box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, 0.3);
	background-color: #fff;
}
.search-input-border,
.search-input-border input {
	font-size: 16px;
}
.search-input-border input {
	height: 54px;
	padding: 0 54px 0 23px;
	border-radius: inherit;
}
.search-input-border button {
	padding: 0;
	width: 48px;
	height: 48px;
	top: 3px;
	right: 4px;
	text-align: center;
}
.search-input-border button:hover {
	transition: 300ms all;
	opacity: 0.7;
}
.search-results {
	position: absolute;
	left: 0;
	right: 0;
	top: 66px;
	bottom: 0;
	overflow: auto;
	margin: 0;
	width: auto;
	transition: 300ms all;
}
.search-results.active {
	opacity: 1;
	visibility: visible;
	height: auto;
}
.search-results-message {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 14px;
	color: rgba(63, 63, 63, 0.8);
	padding: 15px;
}
.search-results-border {
	height: 100%;
	box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
	background: #ffffff;
	display: flex;
	overflow: hidden;
	justify-content: space-between;
}
.search-results-border ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.search-results-border ul li {
	display: block;
	width: 100%;
	list-style: none;
	padding: 5px 0;
}
.search-results-items {
	background-color: #fff;
	padding: 0;
	overflow-y: auto;
	width: 100%;
}
.search-results-items-list {
	display: grid;
	margin-top: 10px;
	gap: 10px;
}
.search-results-items-list:hover .header-info-search-results-products-item {
	opacity: 0.9;
}
.search-results-item {
	max-width: 100%;
	display: block;
}
.search-results-item-border {
	text-decoration: none;
	opacity: 1;
	color: #3f3f3f;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: 300ms all;
	padding: 0 15px;
}
.search-results-item-border:hover {
	opacity: 1 !important;
}
.search-results-item-thumb {
	width: 42px;
	height: 42px;
	border-radius: 5px;
	overflow: hidden;
}
.search-results-item-thumb img {
	display: block;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}
.search-results-item-product-info {
	flex: 1 1 auto !important;
	display: grid;
}
.search-results-item-product-info-name {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #3f3f3f;
}
.search-results-item-product-info-name span {
	font-weight: 600;
}
.search-results-item-product-info-prices {
	display: flex;
	gap: 10px;
	align-items: center;
}
.search-results-item-product-info-prices small,
.search-results-item-product-info-prices strong {
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	font-style: normal;
}
.search-results-item-product-info-prices small {
	text-decoration-line: line-through;
	color: #737373;
}
.search-results-item-product-info-prices strong {
	color: #3f3f3f;
}
.search-results-item-seller-info {
	flex: 1 1 auto !important;
	display: grid;
	gap: 2px;
}
.search-results-item-seller-info-name {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block;
	font-size: 14px;
	line-height: 16px;
	font-weight: 600;
	color: #3f3f3f;
}
.search-results-item-seller-info-products-qty {
	color: #3f3f3f;
	font-weight: 400;
	font-size: 12px;
	line-height: 12px;
}
.search-results-item-seller-cta {
	margin: auto 0 auto auto;
	font-style: normal;
	font-weight: 400;
	line-height: 14px;
	width: 60px;
	font-size: 12px;
	text-decoration-line: underline;
	color: #3f3f3f;
	text-align: right;
}
.search-results-last-terms-border {
	background-color: #faf7f4;
	padding: 30px 30px 60px;
	min-width: 290px;
	width: 290px;
	max-height: 306px;
	overflow-y: auto;
	position: relative;
	display: none;
}
.search-results-last-terms-cta {
	padding: 5px 0;
	display: flex;
	width: 100%;
	align-items: center;
	gap: 4px;
	text-align: left;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 14px;
	color: rgba(63, 63, 63, 0.8);
}
.search-results-last-terms-cta-clean {
	position: absolute;
	right: 30px;
	bottom: 30px;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	text-decoration-line: underline;
	color: rgba(63, 63, 63, 0.8);
}
@media (max-width: 767px) {
	.search {
		padding: 0 15px;
	}
}
@media (min-width: 768px) {
	.search-box {
		display: block;
	}
	.search-results {
		padding: 15px;
		margin: 10px 0 0;
		opacity: 0;
		visibility: hidden;
		height: 0;
		padding: 0;
		left: 20px;
		right: -138px;
		top: 100%;
		bottom: auto;
	}
	.search-results-message {
		padding: 0;
	}
	.search-results-border {
		border-radius: 12px;
		max-height: 306px;
	}
	.search-results-items {
		padding: 30px;
		max-height: 306px;
	}
	.search-results-items-list {
		margin-top: 20px;
		gap: 20px;
	}
	.search-results-item-border {
		padding: 0;
	}
	.search-results-item-thumb {
		width: 54px;
		height: 54px;
	}
	.search-results-item-product-info-name {
		font-size: 18px;
		line-height: 20px;
	}
	.search-results-item-product-info-prices small,
	.search-results-item-product-info-prices strong {
		font-size: 14px;
		line-height: 16px;
	}
	.search-results-item-seller-info-name {
		font-size: 18px;
		line-height: 20px;
	}
	.search-results-item-seller-info-products-qty {
		font-size: 14px;
		line-height: 14px;
	}
	.search-results-item-seller-cta {
		font-size: 14px;
		width: 120px;
	}
	.search-results-last-terms-border {
		display: block;
	}
}

/* NAV */
.nav-mobile-body {
	overflow-y: scroll;
}
.main-nav-all-departments-link-icon svg,
.main-nav-all-departments-link-icon img {
	height: 100%;
}

.main-nav-container-list {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.main-nav-all-departments-link {
	border-radius: 50rem;
	text-decoration: none;
	gap: 0.25rem;
	align-items: center;
	display: flex;
	height: 46px;
}

.main-nav-all-departments-link-text {
	font-weight: 600;
	display: none;
	margin-right: 2px;
}
@media (min-width: 992px) {
	.main-nav-all-departments-link-text {
		display: block;
	}
}

.nav-mobile {
	position: fixed;
	top: 0;
	bottom: 0;
	left: -100%;
	right: 100%;
	z-index: 202;
	transition: 300ms all;
	background-color: var(--Header1_bg_color);
	overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    
    scrollbar-width: thin;
    scrollbar-color: var(--colors_neutral2) transparent;
}
.nav-mobile.active {
	left: 0;
	right: 0;
	z-index: 99999999;
}
.nav-mobile-header {
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	background-color: var(--Header1_bg_color);
	z-index: 1;
	border-bottom: 1px solid #ddd1c5;
}
.nav-mobile-header h3 {
	font-weight: bold;
	font-size: 18px;
	padding: 20px 15px;
	line-height: 20px;
	color: var(--Header1_nav_departments_cta_text_color);
}
.nav-mobile-header button {
	width: 50px;
	height: 50px;
}
.nav-mobile-header button svg {
	margin: auto;
}
.nav-mobile-header-close {
	width: 36px;
	height: 36px;
	border: 0 none;
	background: transparent;
}
.nav-mobile-header-close svg {
	display: block;
	margin: auto;
}
.nav-mobile-header-body {
	width: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
	padding: 0;
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}
.nav-mobile-header-list {
	padding: 0;
	margin: 0;
	list-style: none;
}
.nav-mobile-header-list-item {
	padding: 10px 15px;
	width: 100%;
	border-top: 1px solid #e9dbd0;
}
.nav-mobile-header-list-item-link {
	display: block;
	text-align: left;
	width: 100%;
}
.nav-mobile-header-list-item.extra-links {
	background-color: #dbd3ca;
}

body .main-nav {
	box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.07);
	background-color: var(--Header1_nav_bg_color);
	z-index: 10001;
}
.main-nav-divider {
	padding: 0 10px;
}
.main-nav-divider span {
	background-color: #eae0d5;
	display: block;
	height: 30px;
	width: 2px;
	border-radius: 2px;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.main-nav-link-h {
	height: 46px;
}
.main-nav-all-departments {
	position: static;
	padding-right: 8px;
	cursor: pointer;
	z-index: 12;
}
.main-nav-all-departments-mask {
	border: 0 none;
	padding: 0;
	margin: 0;
	cursor: auto;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	height: 0;
	transition: 300ms all;
}
.main-nav-all-departments-mask.active {
	opacity: 1;
	visibility: visible;
	height: 100%;
	width: 100%;
	z-index: 10000;
}
.main-nav-all-departments-content {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	max-height: 400px;
	opacity: 0;
	visibility: hidden;
	height: 0;
	transition: 300ms all;
	z-index: 10001;
}
.main-nav-all-departments-content.active {
	opacity: 1;
	visibility: visible;
	height: auto;
}
.main-nav-all-departments-content-bg {
	background-color: #fff;
	border-radius: 12px;
	margin-top: -12px;
	max-height: calc(100vh - 200px);
	overflow-y: auto;
}
.main-nav-all-departments-link {
	border-color: var(--Header1_nav_departments_cta_border_color);
	color: var(--Header1_nav_departments_cta_text_color);
	font-size: 18px;
}
.main-nav-all-departments-link-icon {
	display: grid;
	align-items: center;
}

.nav-groups-details-group,
.nav-groups-details-go-back {
	flex: 0 0 100%;
	width: 100%;
}
.nav-groups-details-group {
	display: flex;
	gap: 30px;
}
.nav-groups-details-info {
	flex: 0 0 calc(25% - 20px);
	width: calc(25% - 20px);
}
.nav-groups-details-items {
	flex: 0 0 calc(75% - 20px);
	width: calc(75% - 20px);
}
.nav-groups-details-items-full {
	flex: 0 0 100%;
	width: 100%;
}

.nav-groups-details-items-item {
	border-top: 1px solid #e9dbd0;
	padding: 15px 15px;
	width: 100%;
	flex: 0 0 100%;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

.nav-groups-list {
}
.nav-groups-list.mode-grid {
	flex-wrap: wrap;
	gap: 10px;
}
.nav-groups-list ul {
	list-style: none;
}
.nav-groups-list .cta-go-to-back {
	display: flex;
	gap: 6px;
	padding: 0;
	background-color: transparent;
	border: 0 none;
}
.nav-groups-list .cta-go-to-back span {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	color: rgba(63, 63, 63, 0.8);
}
.nav-groups-list-items {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 20px;
}
.nav-groups-list-items.highlights {
	flex: 0 0 calc(75% - 20px);
	width: calc(75% - 20px);
}
.nav-groups-list-items-item {
	width: calc(33.33333% - 20px);
	flex: 0 0 calc(33.33333% - 20px);
}
.nav-groups-list-items.others {
	flex: 0 0 calc(25% - 20px);
	width: calc(25% - 20px);
}
.nav-groups-list-items-item {
	width: 100%;
	flex: 0 0 100%;
}
.nav-groups-list-items-item-title {
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 28px;
	color: rgba(63, 63, 63, 0.8);
}
.nav-groups-list-items-item-categories {
	display: grid;
	gap: 10px;
}
.nav-groups-list-items-item-categories-item {
	display: block;
	margin: 0;
}
.nav-groups-list-items-item-categories-item-show-mor {
	display: flex;
	align-items: center;
	gap: 5px;
}
.nav-groups-list-items-item-categories-item-show-mor .underline {
	text-decoration: underline;
}
.nav-groups-list-items-item-categories-item-show-mor span {
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	color: rgba(63, 63, 63, 0.8);
}
.nav-categories-item-link {
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--Header1_nav_departments_cta_text_color);
}
.nav-categories-item-name {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--colors_text_base);
}
.extra-links-item {
	margin-right: 10px;
}
.extra-links-item-link {
	color: var(--Header1_nav_txt_color);
	text-decoration: none;
	height: 100%;
}
.extra-links-item-link-border small {
	font-size: 18px;
	line-height: 28px;
}
.extra-links-item.highlight {
	margin: 0 0 0 auto;
}
.extra-links-item.highlight small {
	font-size: 16px;
	line-height: 20px;
	color: var(--Header1_nav_txt_color);
}
@media (max-width: 767px) {
	.nav-mobile-list-item.extra-links,
	.nav-groups-details-items-categories-item {
		display: 100%;
        padding: 0 20px;
	}
	.nav-mobile-list-item.extra-links a,
	.nav-groups-details-items-categories-item .nav-categories-item-link {
		display: block;
		width: 100%;
		padding: 16px 0;
		border-bottom: 1px solid #ddd1c5;
	}

   .nav-groups-details-items-categories-item:first-child .nav-categories-item-link {
		border-top: 1px solid #ddd1c5;
	}
}
@media (min-width: 768px) {
	.nav-groups-details-items-categories {
		margin: -5px -15px;
		display: flex;
		flex-wrap: wrap;
	}
	.nav-groups-list,
	.nav-groups-details {
		padding: 15px;
	}
	.nav-groups-list {
		display: flex;
		justify-content: space-between;
		gap: 20px;
	}
	.nav-groups-list ul {
		list-style: none;
		padding: 0;
	}
	.nav-groups-details-items-categories {
		display: block;
		column-count: 3;
	}
	.nav-groups-details-items-item {
		border-top: 0 none;
		padding: 5px 15px;
	}
	.nav-groups-details {
		padding: 20px;
	}
	.nav-categories-item-link {
		color: rgba(63, 63, 63, 0.8);
	}
	.nav-categories-item-name {
		color: rgba(63, 63, 63, 0.8);
	}
	.nav-groups-details-items-categories-item {
		border-top: 0 none;
		padding: 5px 15px;
	}
}
@media (min-width: 1200px) {
	.nav-groups-list,
	.nav-groups-details {
		padding: 40px;
	}
	.nav-groups-details-info {
		flex: 0 0 calc(25% - 30px);
		width: calc(25% - 30px);
	}
	.nav-groups-details-items {
		flex: 0 0 calc(75% - 30px);
		width: calc(75% - 30px);
	}
	.nav-groups-list {
		gap: 30px;
	}
	.nav-groups-list-items {
		gap: 30px;
	}
	.nav-groups-list-items.highlights {
		flex: 0 0 calc(75% - 30px);
		width: calc(75% - 30px);
	}
	.nav-groups-list-items-item {
		width: calc(33.33333% - 30px);
		flex: 0 0 calc(33.33333% - 30px);
	}
	.nav-groups-list-items.others {
		flex: 0 0 calc(25% - 30px);
		width: calc(25% - 30px);
	}
	.nav-categories-item-link {
		gap: 10px;
	}
	.nav-categories-item-name {
		font-size: 18px;
		line-height: 28px;
	}
}

/* SHIPPING CEP */
.header-info-shippingcep-link {
	text-decoration: none;
}

#address-cep {
	border: 0 none;
}
.header-info-shippingcep-link {
	display: block;
}

.header-info-shippingcep-link.active-mobile .icon-arrow {
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);
}

.header-info-shippingcep {
	position: relative;
}
.header-info-shippingcep-link-message {
	text-align: left;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: var(--colors_neutral2);
	display: flex;
	align-items: center;
	gap: 4px;
}
@media (min-width: 768px) {
	.header-info-shippingcep-link-message {
		font-size: 16px;
		line-height: 18px;
		color: var(--Header1_link_color);
	}
}
.header-info-shippingcep-link-message span {
	font-weight: 400;
}
.header-info-shippingcep-link-message b {
	font-weight: bold;
}
.header-info-shippingcep-address-text {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: rgba(63, 63, 63, 0.8);
	display: flex;
	align-items: start;
	gap: 5px;
	text-align: left;
	margin: 0;
}
.header-info-shippingcep-address-text svg {
	min-width: 16px;
	min-height: 22px;
}
.header-info-shippingcep-dropdown-cta {
	width: 100px;
	height: 44px;
	top: 2px;
	right: 2px;
	background-color: var(--Header1_icon_color);
	color: #fff;
	font-weight: 400;
}
.header-info-shippingcep-link-helper-mobile {
	display: flex;
    flex-grow: 1;
	gap: 5px;
	align-items: center;
    width: 100%;
}

.header-info-shippingcep-link-helper-mobile .header-info-shippingcep-link-icon .img-fluid svg {
  width: 16px !important;
  height: 16px !important;
}

@media (min-width: 768px) {
	.header-info-shippingcep-link-helper-mobile {
		gap: 8px;
	}

  .header-info-shippingcep-link-helper-mobile .header-info-shippingcep-link-icon .img-fluid svg {
    width: 36px !important;
    height: 36px !important;
  }
}
#header-info-shippingcep-dropdown .drowpdown-content-title,
#header-info-shippingcep-dropdown .drowpdown-content-text,
#header-info-shippingcep-dropdown .drowpdown-content-primary-cta,
#header-info-shippingcep-dropdown .drowpdown-content-divisor-text {
	display: none;
}

.shippingcep-form {
	position: relative;
}
.shippingcep-form-input {
	padding-right: 100px;
	width: 100%;
}
.shippingcep-form-cta{
	position: absolute;
	border: 0 none;
	border-radius: 50rem;
	width: o;
	height: 44px;
	top: 1px;
	right: 1px;
	color: #fff;
	font-weight: 400;
	margin-right: 20px;
}

.shippingcep-form-cta svg path{
	stroke:var(--colors_primary) !important;
}

.shippingcep-form-link a{
	font-size: 12px;
	line-height: 14px;
}
.shippingcep-form-address-text{
	display: flex;
	gap: 5px;
	align-items: flex-start;
	font-size: 12px;
    line-height: 16px;
	border: 1px solid var(--colors_neutral0);
	border-radius: 6px;
	padding: 12px;
}

.shippingcep-form-address-text span {
	margin:0;
}
.shippingcep-form-address-text small{
	display: block;
}
@media (max-width: 767px) {
	.shippingcep-form-link {
		position: static !important;
		display: block !important;
	}
	.header-info-shippingcep-link .dropdown-content.mobile-full {
		left: -15px;
		right: -15px;
		margin: 0;
		width: auto;
		max-width: none;
		border-radius: 0 0 10px 10px;
	}
	.header-info-shippingcep-link .dropdown-content.mobile-full:after {
		display: none;
	}
	.shippingcep-text br {
		display: none !important;
	}
	.header-info-shippingcep-link {
		width: 100%;
	}
	
	.shippingcep-form-address-text svg,
	.shippingcep-form-address-text img {
		width: 26px;
		max-width: 26px;
		max-height: 26px;
	}
	.header-info-shippingcep {
		flex: 0 0 100% !important;
	}
	.header-info-shippingcep-link-helper-mobile {
		background-color: var(--Header1_nav_bg_color);
		margin: 0 -15px;
		padding: 10px 15px;
	}
	.shippingcep-text {
		font-size: 12px;
		line-height: 12px;
	}

	.header-info-shippingcep-link-icon {
		width: 16px;
		height: 16px;
		position: relative;
		overflow: hidden;
	}
}
@media (min-width: 768px) {
	.header-info-shippingcep-link-message {
		gap: 0;
		display: grid;
	}
}

/* ACCOUNT */
#user-options-cta-logged .drowpdown-content-divisor-text,
#user-options-cta .drowpdown-content-divisor-text,
#user-options-cta-logged .drowpdown-content-subtitle,
#user-options-cta .drowpdown-content-subtitle,
#user-options-cta-logged .header-account-cta-register,
#user-options-cta .header-account-cta-register {
	display: none;
}

.drowpdown-content-subtitle {
	margin-top: 30px;
	margin-bottom: -10px;
}
.header-account-cta-register {
	text-decoration: underline;
}
#user-options-cta-logged .dropdown-content,
#user-options-cta .dropdown-content {
	width: 380px;
	left: auto;
	top: 100%;
	bottom: auto;
	right: 47px;
	margin: 24px 0 0;
}
#user-options-cta-logged .dropdown-content:after,
#user-options-cta .dropdown-content:after {
	left: auto;
	right: 34px;
}
#user-options-cta-logged .dropdown-content {
	width: 190px;
	left: -120px;
	right: auto;
}
.account-cta {
	padding: 0;
	margin: 0;
	background-color: transparent;
	line-height: 1;
	border: 0 none;
}
.account-text-group {
	display: none;
}
@media (min-width: 992px) {
	.account-text-group {
		display: block;
	}
}
.account-link {
	text-align: left;
	color: var(--Header1_nav_txt_color);
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
}
.account-link b,
.account-link small {
	display: block;
}
.account-left {
	border-right: 2px solid var(--default_primary_color);
	padding-right: 7px;
	color: var(--Header1_nav_txt_color);
}
.account-right {
	padding-left: 4px;
	color: var(--Header1_nav_txt_color);
}
@media (min-width: 768px) {
	.account-link {
		font-size: 16px;
		line-height: 18px;
	}
}

/* CART */
.header-info-cart {
	margin-left: 5px;
}
.header-info-cart-button {
	position: relative;
}
.header-info-cart-button .header-info-cart-qty {
	top: -3px;
	right: -6px;
	background-color: var(--Header1_cart_qty_bg_color);
	color: var(--Header1_cart_qty_txt_color);
	width: 18px;
	height: 18px;
	position: absolute;
	border-radius: 100%;
	text-align: center;
	line-height: 19px;
	font-size: 12px;
}

/* BANNERS */
@media (max-width: 767px) {
	.banner-row {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.banner-row > .banner-row-col {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}
.banner-item-image-centered {
	max-width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.banner-item-description {
	display: grid;
	margin-top: 0.5rem;
	gap: 0.5rem;
}
.banner-item-description h3,
.banner-item-description p {
	margin: 0;
}
.banner-item {
	position: relative;
	overflow: hidden;
}
.banner-item img {
	margin: auto;
}
.banner-item-content {
	overflow: hidden;
}
.banner-item-link {
	text-decoration: none;
	display: block;
	opacity: 1;
}
.banner-item-link:hover .banner-item-border,
.banner-item-link:hover .banner-item-no-border {
	background-color: var(--Banners_item_bg_color_hover);
}
.banner-item-link:hover .banner-item-image-hover-effect {
	filter: brightness(0) invert(1);
}
.banner-item-link:hover h3 {
	text-shadow:
		0 0 var(--Banners_txt_color),
		0 0 var(--Banners_txt_color),
		0 0 var(--Banners_txt_color),
		0 0 var(--Banners_txt_color);
}
.banner-item-border,
.banner-item-no-border {
	transition: 300ms all;
}
.banner-item-border {
	border: 1px solid var(--Banners_border_color);
	padding: 2px;
	display: grid;
	align-items: center;
	margin: auto;
	width: var(--Banners_format_item_width);
	aspect-ratio: 1 / 1;
	max-width: 100%;
	background-color: var(--Banners_item_bg_color);
}
.banner-item-border.circle {
	border-radius: 100%;
}
.banner-item-border.circle img {
	max-width: 90%;
	max-height: 90%;
	width: auto;
	height: auto;
}
.banner-item-description.float {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 96%;
	max-height: 96%;
}

.banner-item-description.out {
	margin-top: 10px;
}
.banner-item-description h3,
.banner-item-description p {
	margin: 0;
	color: var(--Banners_txt_color);
}
.banner-item-description a {
	color: var(--Banners_link_color);
}
.banner-item-description a:hover {
	color: var(--Banners_primary_color);
}
.banner-item-description h3 {
	font-size: calc(var(--Banners_format_title_size) - 4px);
	line-height: 1;
	font-weight: 400;
	transition: 300ms all;
	text-shadow:
		0px 0 transparent,
		0px 0 transparent,
		0 -1px transparent,
		0 0px transparent;
}
.banner-item-description p {
	font-size: calc(var(--Banners_format_subtitle_size) - 4px);
	line-height: 1;
}
.banner-item-image-hover-effect {
	transition: 300ms brightness;
}
.position-relative {
	height: 100%;
}
@media (max-width: 767px) {
	.mobile-not-padding .banner-item {
		padding: 0 !important;
	}
}
@media (min-width: 768px) {
	.banner-item {
		padding: 0 0 0 10px;
	}
	.banner-item-description h3 {
		font-size: var(--Banners_format_title_size);
	}
	.banner-item-description p {
		font-size: var(--Banners_format_subtitle_size);
	}
}

.banner-item {
	padding: 0 5px;
}

/* BANNER MOZAIK */
.banner-mozaik {
	margin: 30px 0;
	display: flex;
	gap: 16px;
}
.banner-mozaik-row {
	width: 100%;
	display: flex;
	gap: 16px;
}
.banner-mozaik-col-banner-1 {
	flex: 67%;
	max-width: 67%;
	display: grid;
	gap: 16px;
}
.banner-mozaik-col-banner-2 {
	flex: 34%;
	max-width: 34%;
}
.banner-mozaik-col-banner-3,
.banner-mozaik-col-banner-4 {
	flex: 50%;
	max-width: 50%;
}
.banner-mozaik-item {
	position: relative;
	flex-grow: 1;
	overflow: hidden;
}
.banner-mozaik-item-border {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}
.banner-mozaik-item-link {
	text-decoration: none;
	line-height: 0;
	display: block;
	opacity: 1;
}
.banner-mozaik-item-link:hover {
	opacity: 1;
}
.banner-mozaik-item-link.link-hover:hover .banner-mozaik-item-image {
	transform: scale(1.03);
}
.banner-mozaik-item-image {
	display: block;
	width: 100%;
	height: auto;
	line-height: 0;
	position: relative;
	z-index: 1;
	transition: 300ms all;
}
.banner-mozaik-item-info {
	position: absolute;
	z-index: 2;
	background: transparent;
	padding: 20px;
	display: grid;
	gap: 5px;
}
.banner-mozaik-item-info.top_right {
	top: 0;
	right: 0;
	text-align: right;
	justify-content: end;
}
.banner-mozaik-item-info.top_left {
	top: 0;
	left: 0;
}
.banner-mozaik-item-info.bottom_right {
	bottom: 0;
	right: 0;
	text-align: right;
	justify-content: end;
}
.banner-mozaik-item-info.bottom_left {
	bottom: 0;
	left: 0;
}
.banner-mozaik-item-info.center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.banner-mozaik-item-info-title {
	font-size: 32px;
	font-weight: 500;
}

.banner-mozaik > .banner-mozaik-item {
	flex-basis: 33.333333333%;
	max-width: 33.3333333333%;
}
.banner-mozaik > .banner-mozaik-item.banner-mozaik-item-0 {
	max-width: 66.6666666666%;
	flex-basis: 66.6666666666%;
}
.banner-mozaik-item-0 .banner-mozaik-item-info {
	max-width: 33.33333%;
}
.banner-mozaik-item-1 .banner-mozaik-item-info {
	max-width: 60%;
}

/** SHOWCASE **/
.showcase {
	background-color: var(--ProductsList_colors_background);
	padding: 20px 0 10px;
}
.showcase-bg-banner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.showcase-in-result-banner {
	margin: 20px auto;
}
.showcase-in-result-banner-link {
	display: block;
	line-height: 0;
}
.showcase-in-result-banner-image {
	display: block;
	margin: auto;
	max-width: 100%;
	height: auto;
}

.showcase-header {
	display: grid;
	gap: 10px;
	padding-bottom: 20px;
	position: relative;
}

.showcase-header-box-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.showcase-header-title {
	margin: 0;
	font-size: 22px;
	color: var(--ProductsList_colors_title);
}

.showcase-header p {
	color: var(--ProductsList_colors_text);
}

.showcase-header-tabs {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 8px;
	gap: 5px;
	background: #ffffff;
	border: 1px solid #e1ddc8;
	border-radius: 6px;
}
.showcase-header-tabs-item {
	min-width: 85px;
	height: 36px;
	padding: 0 15px;
	background: transparent;
	border-radius: 4px;
	color: #221c35;
	border: 0 none;
}
.showcase-header-tabs-item:hover {
	color: #000000;
}
.showcase-header-tabs-item.showcase-header-tabs-item-active {
	background-color: #221c35;
	color: #ffffff;
}
.showcase-row {
	border-top: 1px solid #eae0d5;
	padding-top: 20px;
	padding-bottom: 20px;
}
.showcase-row:last-child {
	padding-bottom: 0px !important;
}
.showcase-loadmore {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0px 32px 0px;
}
.showcase-loadmore button {
	display: flex;
	align-items: center;
	gap: 6px;
	border: 1px solid #ece3d9;
	padding: 10px 90px;
	border-radius: 50px;
	font-size: 18px;
	line-height: 28px;
}
.showcase-background {
	position: relative;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-0.5 * var(--bs-gutter-x));
	margin-left: calc(-0.5 * var(--bs-gutter-x));
	padding: 15px 0 15px 15px;
	border-radius: 6px;
	overflow: hidden;
}
.showcase .col {
	border-top: 1px solid #eae0d5;
	padding-top: 20px;
	padding-bottom: 20px;
}
.swiper-container-ajust-mobile {
	margin: 0 -15px;
}
@media (min-width: 768px) {
	.showcase-header h2 {
		font-size: 30px;
	}
	.showcase {
		padding: 40px 0 30px;
	}
	.swiper-container-ajust-mobile {
		margin: 0;
	}
}
@media (max-width: 767px) {
	.showcase-background > img {
		max-width: none;
		width: auto !important;
		height: auto !important;
	}
	.showcase .container {
		overflow: hidden;
	}
}

/* SHOWCASE ITEM */
$neutral2: var(--neutral2);

.showcase-item {
	position: relative;
	overflow: hidden;
	padding-top: 5px;
}
.showcase-item-shadow .showcase-item-border {
	box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.07);
}
.showcase-item-shadow .showcase-item-border:hover {
	box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
.showcase-item.slider-item {
	padding: 5px 0 10px 15px;
}
.showcase-item-image-box {
	border-radius: 5px 5px 0 0;
}
.showcase-item-tag-discount-marketplace {
	display: none !important;
}
.showcase .showcase-item-tag-marketplace-discount-info {
	margin: 5px 0 5px -10px;
	width: auto;
	height: 24px;
	background: #00995d;
	border-radius: 0 3px 3px 5px;
	display: table;
	padding: 0 7px;
	position: relative;
}
.showcase .showcase-item-tag-marketplace-discount-info b {
	color: #fff;
}
.showcase .showcase-item-tag-marketplace-discount-info:before {
	content: '';
	position: absolute;
	border: 5px solid transparent;
	border-top-color: #005534;
	top: -5px;
	left: 0;
	border-radius: 5px;
	transform: rotate(-47deg);
}

.showcase .row .showcase-item-tag-marketplace-discount-info {
	background: #e6f5ef;
	border-radius: 5px;
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 18px;
	color: #00995c;
	display: table;
	margin: 10px 0;
	align-items: center;
}
.showcase .row .showcase-item-tag-marketplace-discount-info b {
	color: #00995c;
	font-weight: 600;
}
.showcase .row .showcase-item-tag-marketplace-discount-info:before {
	display: none;
}
.showcase .row .showcase-item-tag-marketplace-discount-info svg,
.showcase .row .showcase-item-tag-marketplace-discount-info svg path {
	color: #00995c;
	fill: #00995c;
}
@media (min-width: 768px) {
	.showcase .showcase-item-tag-marketplace-discount-info {
		margin: 10px 0 10px -20px;
	}
	.showcase .showcase-item-tag-marketplace-discount-info b {
		font-size: 16px;
		line-height: 24px;
	}
	.showcase .showcase-item-tag-marketplace-discount-info:before {
	}
}
.showcase-item-border {
	border: none;
}
.showcase-item-info {
	padding: 15px 0;
}
.showcase-item a {
	text-decoration: none;
}
.showcase-item-tag-discount-marketplace {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding: 6px 5px 5px;
	color: #fff;
	background-color: #00995d;
	font-weight: 400;
	font-size: 12px;
	line-height: 12px;
	letter-spacing: -0.01em;
	text-align: center;
	z-index: 2;
	margin: 0;
	display: none;
}
.showcase-item-tag-marketplace-nodiscount-info {
	height: 24px;
	margin: 5px 0;
}
@media (min-width: 768px) {
	.showcase-item-tag-marketplace-nodiscount-info {
		margin: 10px 0;
	}
}
.showcase-item-tag-marketplace-discount-info {
	margin: 10px 0 10px -11px;
	width: auto;
	height: 24px;
	background: #00995d;
	border-radius: 0 3px 3px 5px;
	display: table;
	padding: 0 7px;
	position: relative;
}
.showcase-item-tag-marketplace-discount-info svg {
	display: inline-block;
	vertical-align: middle;
	margin: -2px 4px 0 5px;
}
.col-item .showcase-item-tag-marketplace-discount-info svg {
	margin-left: 0;
}
.showcase-item-tag-marketplace-discount-info b {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #ffffff;
	display: inline-block;
	vertical-align: middle;
}
.showcase-item-tag-marketplace-discount-info::before {
	content: '';
	position: absolute;
	border: 5px solid transparent;
	border-top-color: #005534;
	top: -5px;
	left: 0;
	border-radius: 5px;
	transform: rotate(-47deg);
}
.showcase-item-border {
	border-radius: 5px;
	width: 100%;
	border-radius: 5px;
	transition: 300ms all;
	margin-top: 0;
	/* border-bottom: 5px solid transparent; */
}
.showcase-item-border:hover {
	margin-top: -4px;
}
.showcase-item-category {
	position: absolute;
	z-index: 2;
	top: 5px;
	left: 5px;
	border-radius: 15px;
	padding: 2px 10px;
	line-height: 14px;
	font-size: 10px;
}
.showcase-item-wishlist {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	top: -35%;
	right: 10px;
	background-color: white;
	border-radius: 50%;
	border: 0 none;
	-webkit-box-shadow: 2px 1px 3px -4px rgba(0, 0, 0, 1);
	-moz-box-shadow: 2px 1px 3px -4px rgba(0, 0, 0, 1);
	box-shadow: 2px 1px 3px -4px rgba(0, 0, 0, 1);
	width: 30px;
	height: 30px;
	padding: 0;
	transition: 300ms all;
}
.showcase-item-wishlist:hover {
	transform: scale(1.05);
}
.showcase-item-image {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.showcase-item-image-box {
	width: 100%;
	padding-top: 100%; /* Proporção de 1:1 para manter o quadrado */
	position: relative;
	overflow: hidden;
}
.showcase-item-image-primary,
.showcase-item-image-secondary {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Faz o fill da imagem, mantendo o foco central */
	object-position: center; /* Centraliza o preenchimento */
}
.showcase-item-image-primary {
	display: block;
	margin: auto;
	width: 100%;
}
.showcase-item-image-secondary {
	transition: 300ms all;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	max-width: 100%;
	background-color: #ffffff;
}
.showcase-item-image:hover .showcase-item-image-secondary {
	opacity: 1;
	visibility: visible;
}
.showcase-ranting {
	display: flex;
	align-items: center;
	padding-left: 6px;
	padding-right: 6px;
}
.showcase-item-info {
	padding: 6px;
	position: relative;
}
.showcase-item-name {
	line-height: 14px;
	font-size: 12px;
	min-height: 28px;
	max-height: 28px;
	margin-bottom: 5px;

	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
}
@media (min-width: 768px) {
	.showcase-item-name {
		line-height: 16px;
		font-size: 13px;
		min-height: 32px;
		max-height: 32px;
		margin-bottom: 13px;
	}
}

.showcase-item-prices {
	display: grid;
	align-items: center;
}
.showcase-item-prices-de {
	font-size: 10px;
	line-height: 10px;
	min-height: 16px;
	color: $neutral2;
	text-decoration: line-through;
}
@media (min-width: 767px) {
	.showcase-item-prices-de-offer {
		font-size: 12px;
		line-height: 10px;
		min-height: 20px;
	}
}
.showcase-item-prices-de-offer {
	font-style: normal;
	font-weight: 400;
	font-size: 10px;
	line-height: 12px;
	color: #d8141c;
	font-weight: 400;
	margin-left: 4px;
}
.showcase-item-prices-only {
	min-height: 24px;
	font-weight: 400;
	font-size: 10px;
	line-height: 12px;
	display: flex;
	align-items: center;
}
@media (min-width: 767px) {
	.showcase-item-prices-only {
		min-height: 18px;
		font-size: 12px;
		line-height: 16px;
	}
}
.showcase-item-prices-por {
	font-size: 14px;
	line-height: 16px;
	font-weight: 600;
}
@media (min-width: 767px) {
	.showcase-item-prices-por {
		font-size: 18px;
		line-height: 20px;
	}
}
.showcase-item-seller {
	display: block;
	margin-top: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media(min-width:768px) {
	.showcase-item-seller {
		margin-top: 5px;
	}
}}
@media (max-width: 767px) {
	.showcase-item-seller > span {
		display: none;
	}
}
.showcase-item-seller,
.showcase-item-seller a {
	font-size: 11px;
	line-height: 14px;
	color: inherit;
}
.showcase-item-colors {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2px;
	margin-top: 15px;
}
.showcase-item-colors-value {
	width: 18px;
	height: 18px;
	border-radius: 100%;
	transition: 300ms all;
	border: 2px solid transparent;
	padding: 0;
}
.showcase-item-colors-value.active,
.showcase-item-colors-value:hover {
	border-color: #000;
}
.showcase-item-colors-value-bullet {
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	transition: 300ms all;
	border: 2px solid #fff;
}
@media (min-width: 768px) {
	.showcase-item-tag-marketplace-discount-info svg {
		margin: -3px 5px 0 13px;
	}
	.showcase-item.slider-item {
		padding: 5px 5px 10px;
	}
	.showcase-item-tag-marketplace-discount-info {
		margin-left: -20px;
	}
	.showcase-item-tag-marketplace-discount-info b {
		font-size: 16px;
	}
}
@media (min-width: 992px) {
	.showcase-item-info {
		padding: 7px;
	}
	.showcase-item-name {
		line-height: 20px;
		font-size: 18px;
		min-height: 39px;
		max-height: 39px;
		margin-bottom: 15px;
	}
	.showcase-item-prices-de {
		font-size: 14px;
		min-height: 24px;
	}
	.showcase-item-prices-de-offer {
		font-size: 12px;
		line-height: 14px;
	}
	.showcase-item-prices-only {
		min-height: 24px;
		font-weight: 400;
		font-size: 14px;
		line-height: 16px;
	}
	.showcase-item-prices-por {
		font-size: 26px;
		line-height: 28px;
	}
	.showcase-item-seller,
	.showcase-item-seller a {
		font-size: 14px;
		line-height: 16px;
	}
	.showcase-item-seller {
		margin-top: 14px;
	}
}
@media (min-width: 1200px) {
	.showcase-item-info {
		padding: 15px;
	}
}

/* KIT LOOK */
.kit-look {
	margin: 60px 0;
}
.kit-look-container {
}
.kit-look-content {
	display: flex;
	align-items: center;
}
.kit-look-products,
.kit-look-banner {
	width: 50%;
}
.kit-look-banner-left {
	order: 1;
}
.kit-look-banner-left + .kit-look-products {
	order: 2;
}
.kit-look-banner-right {
	order: 2;
}
.kit-look-banner-right + .kit-look-products {
	order: 2;
}
.kit-look-products {
	display: flex;
	align-items: center;
	justify-content: center;
}
.kit-look-products-content {
	max-width: 450px;
	display: grid;
	gap: 20px;
}
.kit-look-products-title {
	font-style: normal;
	font-weight: 500;
	font-size: 40px;
	line-height: 120%;
}
.kit-look-products-list {
	display: grid;
	gap: 0;
}
.kit-look-products-list-item {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}
.kit-look-products-list-item-bullet {
	width: 32px;
	flex: 0 0 32px;
	height: 32px;
	background: #ffffff;
	border-radius: 30px;
	text-align: center;
	line-height: 32px;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
}
.kit-look-products-list-item-image-box {
	width: 88px;
	flex: 0 0 88px;
	padding-top: 88px;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.kit-look-products-list-item-image-content {
	background-color: #e9e9e9;
	border-radius: 4px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.kit-look-products-list-item-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.kit-look-products-list-item-image picture {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.kit-look-products-list-item-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
	object-position: center;
}
.kit-look-products-list-item-info {
	flex: 1 1 calc(100% - 88px - 32px - 36px - 45px);
}
.kit-look-products-list-item-name {
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
}
.kit-look-products-list-item-prices {
	display: flex;
	gap: 10px;
	align-items: center;
}
.kit-look-products-list-item-prices-only {
	display: none !important;
}
.kit-look-products-list-item-prices-de {
	order: 2;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
	text-decoration-line: line-through;
	color: #868686;
}
.kit-look-products-list-item-prices-por {
	order: 1;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
}
.kit-look-products-list-item-show-product {
	flex: 1 1 36px;
	width: 36px;
	height: 36px;
	background: #ffffff;
	border: 1px solid #e1ddc8;
	border-radius: 4px;
	padding: 6px;
	transition: 300ms all;
}
.kit-look-products-list-item-show-product:hover {
	background: #e1ddc8;
}
.kit-look-products-list-item-show-product svg {
	display: table;
	margin: auto;
}
.kit-look-products-cta-add-all {
	width: 100%;
	height: 44px;
	padding: 12px;
	border-radius: 6px;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
}

/* About Marktplace */
.about-info {
	margin: 80px 0;
}
.about-info-bg {
	padding: 130px 0;
}
.about-info-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.about-info-banner {
	max-width: 770px;
	order: 2;
}
.about-info-banner.about-info-banner-left {
	order: 1;
}
.about-info-banner.about-info-banner-left + .about-info-text {
	order: 2;
}
.about-info-banner-image {
	width: auto;
	height: auto;
}
.about-info-text {
	width: 30%;
	flex: 0 0 30%;
	order: 1;
}
.about-info-text-title {
	font-style: normal;
	font-weight: 500;
	font-size: 40px;
	line-height: 46px;
	margin-bottom: 20px;
}
.about-info-text-description {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
}
.about-info-text-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
	margin-top: 30px;
}
.about-info-text-link {
	text-align: center;
	height: 48px;
	border-radius: 4px;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	padding: 14px 20px;
	display: block;
}

@media (min-width: 768px) {
	.footer-nav-items > .d-md-flex {
		display: flex !important;
	}
}

body .dropdown-content {
	z-index: 120 !important;
}

body .header-info-shippingcep-address-text {
	margin-top: 10px;
}

/* FOOTER */
.footer {
	padding: 0;
}
.footer-nav-items {
	padding-bottom: 10px;
}
.footer-bg {
	display: grid;
	padding-top: 0;
	padding-bottom: 0;
	gap: 0;
}
.footer-content-flex {
	display: grid;
	gap: 10px;
}
.footer-col-contact {
	display: grid;
	gap: 10px;
}
.footer-col-navs {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 5%;
}
.footer-col-navs .footer-nav-item {
	width: 47%;
}
.footer-nav-item-title {
	margin-bottom: 10px;
	height: auto;
	padding: 0;
	background: transparent;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 25px;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer-nav-item-title::before {
	content: '';
	width: 3px;
	height: 25px;
	background-color: var(--default_secondary_color);
	margin: 0;
	border-radius: 5px;
	padding: 0;
}
.footer-nav-item-title > svg,
.footer-nav-item-title > svg path {
	color: var(--Footer1_colors_title_color);
	fill: var(--Footer1_colors_title_color);
}
.footer-nav-item-title svg {
	transition: 0.3s all;
}
.footer-nav-item-title.active svg {
	transform: scaleY(-1);
}

.footer-link-list {
	padding: 0;
	list-style: none;
	margin: 0;
	display: grid;
	gap: 6px;
}
.footer-link-list-item {
	padding: 0;
	list-style: none;
	margin: 0;
}
.footer-link {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	text-decoration: none;
	color: var(--Footer1_navs_link_color);
}
.footer-link-content {
	display: flex;
	gap: 5px;
}
.footer-link-content-icon {
	width: 26px;
	height: 26px;
}
.footer-link-content-text {
}

.footer-newsletter-info-title {
	font-weight: 300;
	font-size: 40px;
	line-height: 46px;
	color: #ffffff;
}
.footer-newsletter-info-title b {
	display: block;
	font-weight: 300;
}
.footer-newsletter-form {
	position: relative;
	overflow: hidden;
	margin-top: 15px;
}
.footer-newsletter-form-input {
	width: 100%;
	height: 44px;
	padding: 0 65px 0 10px;
	background: #ffffff;
	border-radius: 6px;
	z-index: 1;
	color: #868686;
}
.footer-newsletter-form-button {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 0 10px;
	background-color: #fff;
	border-radius: 6px;
	z-index: 2;
}
.footer-newsletter-form-button svg,
.footer-newsletter-form-button svg path {
	color: #868686;
	fill: #868686;
}

.footer-payments {
	display: grid;
	gap: 10px;
}
.footer-payments-title {
	font-size: 12px;
	line-height: 16px;
	margin: 0;
}
.footer-payments-list {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}
.footer-payments-item {
	width: auto;
	height: auto;
	max-width: 120px;
	max-height: 48px;
}

.footer-copyright {
	display: grid;
	gap: 10px;
	flex-wrap: wrap;
}
.footer-copyright {
	align-items: center;
	justify-content: space-between;
	display: flex;
	flex-wrap: nowrap;
	padding: 14px 0;
}
.footer-copyright p {
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
}
.footer-message {
	padding: 8px 0;
	background-color: #027346;
	font-size: 12px;
	font-weight: 400;
	color: #fff;
}
.footer-message-grid {
	display: flex;
}
.footer-message-grid > * {
	width: 50%;
	flex: 0 0 50%;
}

.footer-message-grid-text1 {
	display: flex;
	gap: 2px;
	justify-content: left;
	margin: 0;
}
@media (min-width: 768px) {
	.footer-message-grid-text1 {
		justify-content: center;
	}
}
.footer-message-grid-text2 {
	text-align: right;
}
.footer-message-grid-text1,
.footer-message-grid-text1 p,
.footer-message-grid-text1 svg,
.footer-message-grid-text1 svg path,
.footer-message-grid-text2,
.footer-message-grid-text2 a {
	color: #fff !important;
	fill: #fff !important;
}
@media (max-width: 767px) {
	.footer-nav-item-title {
		margin: 0;
		padding-top: 15px;
		padding-bottom: 15px;
		position: relative;
		width: 100%;
	}
	.footer-nav-item-title span {
		margin-left: 0;
		margin-right: auto;
	}
	.footer-nav-item-title + .footer-nav-item-content {
		transition: 0.3s all;
		height: 0;
		visibility: hidden;
		opacity: 0;
		overflow: hidden;
	}

	.footer-nav-item-title.active + .footer-nav-item-content {
		height: auto;
		opacity: 1;
		visibility: visible;
		margin: 0 0 15px;
	}
}
@media (min-width: 768px) {
	.footer-nav-items {
		padding-bottom: 20px;
	}
	.footer-bg {
		padding-top: 25px;
		padding-bottom: 0;
		gap: 0;
	}
	.footer-content-flex {
		display: flex;
		justify-content: space-between;
		gap: 20px;
	}
	.footer-col-contact {
		width: 35%;
		flex: 0 0 35%;
		gap: 40px;
	}
	.footer-col-navs {
		width: 55%;
		flex: 0 0 55%;
		gap: 10%;
		flex-wrap: nowrap;
	}
	.footer-col-navs .footer-nav-item {
		width: auto;
	}
	.footer-nav-item-content {
	}
	.footer-link-list {
		padding-left: 10px;
	}
	.footer-link-list-item {
	}
	.footer-link-list-item a {
		font-size: 14px;
		line-height: 20px;
		text-decoration: none;
	}
	.footer-message-grid > * {
		width: 33.33333%;
		flex: 0 0 33.33333%;
	}
}

/* DEPARTAMENTOS */
.department {
	padding-top: 15px;
	padding-bottom: 15px;
}
.department-header {
	padding: 10px 0;
	margin-bottom: 0;
	display: block;
}
.department-header-title {
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 20px;
	color: var(--ProductsList_colors_title);
	margin: 0;
}
.cta-filtrar {
	border: 1px solid var(--ProductsList_colors_border);
	background-color: transparent;
	line-height: 20px;
	padding: 4px 15px;
	text-align: center;
	border-radius: 5px;
}
.filters-header {
	display: none;
}
.department-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (min-width: 992px) {
	.department-header {
		margin-bottom: 25px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 20px;
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.department-header-title {
		font-size: 30px;
		line-height: 30px;
	}
}
@media (max-width: 991px) {
	.department-header-box {
		border-bottom: 1px solid var(--ProductsList_colors_border);
		margin-bottom: 10px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.filters {
		position: fixed;
		left: -100%;
		right: 100%;
		bottom: 0;
		top: 0;
		background: #fff;
		z-index: 10000;
		opacity: 0;
		visibility: hidden;
		transition: 300ms all;
	}
	.filters.active {
		left: 0;
		right: 0;
		opacity: 1;
		visibility: visible;
	}
	.filters-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 15px;
	}
	.filters-body {
		padding: 0 15px 15px;
		overflow-x: hidden;
		overflow-y: auto;
		height: calc(100vh - 60px);
	}
}

.filters-body {
	border: 1px solid #d9d9d9;
	border-radius: 5px;
	padding: 20px;
}
.department-filter-item {
	margin: 30px 0;
}
.department-filter-clear-filters {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 5px 10px;
	gap: 8px;
	height: 28px;
	background: #3f3f3f;
	border-radius: 65px;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #ffffff;
}
.department-filter-item-title {
	margin-bottom: 10px;
	text-transform: capitalize;
}
.department-filter-item-title .department-filter-item-options-item-label{
	display: flex;
	gap: 5px;
}
.department-filter-item-department {
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	margin: 0;
	padding: 10px 0;
}
.department-filter-item-department .department-filter-item-title {
	margin: 0;
}
.department-filter-item-title,
.department-filter-item-title a {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #ababab;
}
.department-filter-item-search {
	position: relative;
	width: 100%;
	margin-bottom: 20px;
}
.department-filter-item-search-input {
	background: #ffffff;
	border: 1px solid #ababab;
	border-radius: 33px;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	color: #ababab;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 38px;
	padding: 0 50px 0 15px;
}
.department-filter-item-search-icon {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	z-index: 2;
}
.department-filter-item-options {
}
.department-filter-item-department .department-filter-item-options {
	padding: 10px 0 0 15px;
}
.department-filter-item-options-item,
.department-filter-item-options-item-categories {
	margin: 10px 0;
}
.department-filter-item-options-item label,
.department-filter-item-options-item-categories a {
	margin: 0;
	transition: 300ms all;
	cursor: pointer;
	text-decoration: none;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #737373;
	gap: 10px;
	display: flex;
	align-items: center;
}

.department-filter-item-options-item-label-checkbox {
	display: none;
}
.department-filter-item-options-item-label-checkbox-icon svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.department-filter-item-options-item-label-checkbox-icon {
	display: block;
	border-radius: 1px;
	width: 16px;
	height: 16px;
	border: 1px solid #737373;
	background-color: #fff;
	transition: 300ms all;
	position: relative;
}
.department-filter-item-options-item-label-checkbox:checked
	+ .department-filter-item-options-item-label-checkbox-icon {
	background: #3f3f3f;
}

.department-filter-item-search-cta-toggle-list {
	margin-top: 15px;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #ababab;
	display: flex;
	gap: 5px;
	align-items: center;
}
.department-filter-item-search-cta-toggle-list.is-open svg {
	transform: rotate(180deg);
}

.department-filter-item-prices .rangeSlider {
	background: #e5e5e5;
}
.department-filter-item-prices .rangeSlider .rangeNub {
	background-color: #fff !important;
	border: 2px solid #333 !important;
}
.department-filter-item-prices .rangeSlider .rangeHandle:before {
	box-shadow: 0 0 0 transparent !important;
}
.department-filter-item-prices-label {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #ababab;
	display: flex;
	align-items: center;
	gap: 5px;
}
.department-filter-item-prices-divisor {
	width: 20px;
	height: 1px;
	background: #e5e5e5;
}
.department-filter-item-prices-min,
.department-filter-item-prices-max {
	border: 1px solid #e5e5e5;
	border-radius: 31px;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	padding: 3px 10px;
	color: #737373;
}

.department-filter-item-options-item-categories label {
	width: 30px;
	height: 30px;
	border: 0 none;
	padding: 0;
	text-align: center;
	line-height: 30px;
	background: transparent;
	cursor: pointer;
}
.department-filter-item-options-item-children {
	opacity: 0;
	visibility: hidden;
	height: 0;
	overflow: hidden;
	transition: 0.3s all;
}
.department-filter-item-options-item-children ul a {
	color: #888;
}
.department-filter-item-options-item-categories
	input:checked
	+ .department-filter-item-options-item-subheader
	.icon-plus {
	display: none !important;
}
.department-filter-item-options-item-categories
	input:checked
	+ .department-filter-item-options-item-subheader
	.icon-minus {
	display: block !important;
}
.department-filter-item-options-item-categories
	input:checked
	+ .department-filter-item-options-item-subheader
	+ .department-filter-item-options-item-children {
	opacity: 1;
	visibility: visible;
	height: auto;
}
.department-filter-item-options-item-categories-item {
	padding: 2px 15px;
}
.department-filter-item-options-item-categories-item label {
	font-size: 14px;
	line-height: 20px;
	margin: 0;
	transition: 300ms all;
	cursor: pointer;
}
.department-filter-item-options-item-categories-item label input {
	display: none;
}
.department-filter-item-options-item-categories-item label span {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #484848;
}
.department-filter-item-options-item-categories-item label span:before {
	transition: 300ms all;
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 3px;
	background-color: #eee;
	border: 1px solid #d4d4d4;
}

.department-filter-item-options-item-categories-item label input:checked + span ::before {
	border-color: #f47920;
	background-color: #f47920;
}
.department-filter-item-options-item-categories-item label:hover span {
	color: #1f1f1f;
}
.department-filter-item-options-item-categories-item label:hover span::before {
	border-color: #c0c0c0;
}
.department-filter-item-options-item-categories-item-children {
	opacity: 0;
	visibility: hidden;
	height: 0;
	overflow: hidden;
	transition: 300ms all;
}
.department-filter-item-options-item-categories-item-children ul {
	padding: 0;
	list-style: none;
	display: block;
}
.department-filter-item-options-item-categories-item-children ul a {
	color: #888888;
}

/* PAGINA DE PRODUTO */
.product-detail {
  background-color: var(--colors_theme_color_1);
}
 {
  position: relative;
  margin-bottom: 20px;
}
.product-detail-bg {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 5px 5px 0px 0px;
  margin: 20px 0px;
}
.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product-detail-info-name {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--colors_text_base);
  margin: 0 0 8px;
}

.product-detail-description {
  // margin: 20px 0px;
}

.product-detail-info-details {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-detail-info-details-item {
  font-size: 12px;
  line-height: 16px;
  color: var(--colors_neutral1-5);
}

.product-detail-info-used {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .product-detail-info-name {
    font-size: 30px;
    line-height: 35px;
    margin: 0 0 8px;
  }
}

/* PRODUTO DETAIL */
.product-detail-info-seller .product-detail-info-seller-content-name,
.product-detail-info-details-item {
	font-size: 12px;
	line-height: 16px;
}

.product-detail-info-seller-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  border: 1px solid var(--colors_neutral0);
  padding: 20px;
  border-radius: 5px;
}
.product-detail-info-seller-content-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-detail-info-seller-content-name span {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: var(--colors_neutral1-5);
}

.product-detail-info-seller-content-name a {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: var(--colors_neutral2);
  text-decoration: underline;
}

.product-detail-info-seller-content-others {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
}

.product-detail-info-seller-content-thumb {
  width: 40px;
  height: 40px;
  border-radius: 30px;
}
.product-detail-info-seller-content-others-message,
.product-detail-info-seller-content-others-price {
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: var(--colors_neutral1-5);
}
.product-detail-info-seller-content-others-price {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .product-detail-info-seller-content-name a,
  .product-detail-info-seller-content-name span,
  .product-detail-info-seller-content-others-message,
  .product-detail-info-seller-content-others-price {
    font-size: 14px;
    line-height: 16px;
  }
}

/* SELLER OTHERS MODAL */
.other-seller-body {
  padding: 20px;
  border: 1px solid var(--colors_neutral0);
  border-radius: 5px;
}
.other-seller-body-title {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 14px;
  color: var(--colors_neutral2);
}

.seller-others-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
}
.seller-others-modal-mask {
  border: 0 none;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.seller-others-modal-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  max-width: 420px;
  width: 100%;
  z-index: 2;
  border-top: 4px solid #ffae62;
}
.seller-others-modal-header {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.seller-others-modal-header h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: var(--colors_text_base);
  margin: 0;
}
.seller-others-modal-close {
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 4px;
  padding: 0;
  text-align: center;
  position: absolute;
  right: 6px;
  top: 4px;
}
.seller-others-modal-close svg {
  display: block;
  margin: auto;
}
.seller-others-modal-body {
  height: calc(100% - 88px);
  /*padding: 0 20px 5px;*/
}
.seller-others-modal-body.compact .seller-others-modal-product {
  display: none;
}
.seller-others-modal-product {
  display: flex;
  align-items: center;
  gap: 10px;
}
.seller-others-modal-product-image :global(img) {
  border-radius: 5px;
}
.seller-others-modal-product-info h5 {

  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: var(--colors_text_base);
  margin-bottom: 5px;
}
.seller-others-modal-product-info-sku {
  margin-top: 10px;
}
.seller-others-modal-product-info-sku,
.seller-others-modal-product-info-sku b {
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 13px;
  color: #6e6e6e;
}

.seller-others-modal-list {
  display: block;
  width: 100%;
  margin-top: 20px;
}
.seller-others-modal-list-item {
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  margin-top: -1px;
  padding: 12px 0;
  width: 100%;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.seller-others-modal-list-item-thumb {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  overflow: hidden;
  background: #e9e9e9;
}
.seller-others-modal-list-item-thumb picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seller-others-modal-list-item-thumb picture img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.seller-others-modal-list-item-seller-info {
  margin-left: 0;
  margin-right: auto;
}
.seller-others-modal-list-item-seller-info span {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(colors_neutral1-5);
}
.seller-others-modal-list-item-seller-info h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 5px;
  color: var(--colors_text_base);
}
.seller-others-modal-list-item-seller-link {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-align: right;
  color: var(--colors_text_base);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .seller-others-modal-list-item-seller-link {
    width: 36%;
  }
}

.seller-others-modal-product-image {
  min-width: 80px;
  width: 80px;
}

.seller-others-modal-product-image :global(img) {
  width: 80px;
  height: 80px;
}

.seller-others-modal-product-info-seller {
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 10px;
  color: var(--colors_neutral1-5);
}
.seller-others-modal-list-item-seller-price {
  display: flex;
  align-items: center;
  gap: 4px;
}
.seller-others-modal-list-item-seller-price .de {
  font-size: 14px;
  line-height: 100%;
  color: var(--colors_neutral1-5);
}

.seller-others-modal-list-item-seller-price .por {
  font-size: 14px;
  line-height: 100%;
  color: var(--colors_neutral2);
  font-weight: 600;
}

.seller-others-modal-product-info .seller-others-modal-list-item-seller-price .de {
  font-size: 16px;
}

.seller-others-modal-product-info .seller-others-modal-list-item-seller-price .por {
  font-size: 16px;
}

/* PRODUTO PRECOS */
.product-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.product-prices-consulta {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: var(--colors_neutral2);
}

.product-marketplace-discount {
  width: 100%;
  border-radius: 5px;
  /*padding: 10px 10px 10px 15px;*/
  display: flex;
  border: 1px solid var(--colors_accent);
  flex-direction: column;
}

.product-marketplace-discount .product-prices-installment .installment {
  font-size: 12px;
}
.product-marketplace-discount .product-prices-de {
  font-size: 14px;
}
.product-marketplace-discount .product-prices-por {
  font-size: 18px;
  line-height: 18px;
}
.product-marketplace-discount .showcase-item-prices-de-offer {
  font-size: 10px;
}
.product-marketplace-discount-header {
  width: 100%;
  display: flex;
  border-radius: inherit;
  align-items: center;
  /* justify-content: space-between; */
  gap:6px;
  padding: 10px;
  background-color: var(--colors_accent_light);
}
.product-marketplace-discount-message {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  color: var(--colors_accent);
}
.product-marketplace-discount-info {
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 15px;
  background-color: var(--colors_theme_color_1);
  border-radius: inherit;
}
.product-marketplace-discount-more {
  text-decoration: underline;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: var(--colors_accent);
}
@media screen and (min-width: 768px) {
  .product-prices-consulta {
    font-size: 16px;
    line-height: 19px;
  }

  .product-prices {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .product-marketplace-discount-info {
    flex-direction: row;
    align-items: center;
  }
}

.product-prices-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-prices-wrapper.row-style {
  flex-direction: row;
  gap: 6px;
}
.product-prices-info {
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-prices-de {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  text-decoration-line: line-through;
  color: var(--colors_neutral2);
}
.product-prices-por {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: var(--colors_text_base);
}
.product-prices-installment {
  display: flex;
  flex: 1; /* ocupa todo o espaço disponível */
  align-items: center;
  border-top: 1px solid var(--colors_neutral0);
  padding-top: 15px;
  width: 100%;
}
.product-prices-installment span {
  font-size: 14px;
  line-height: 16px;
  color: var(--colors_neutral2);
}
.product-prices-installment .installment {
  text-decoration: underline;
}
.showcase-item-prices-de-offer {
  font-size: 12px;
  line-height: 12px;
  min-height: auto;
}
.row-style .showcase-item-prices-de-offer {
  display: none;
}
.row-offer {
  display: none;
}
.row-style .row-offer {
  display: flex;
  align-items: center;
  margin-left: 0px;
}
@media screen and (min-width: 768px) {
  .product-prices-de {
    font-size: 16px;
    line-height: 16px;
  }
  .product-prices-por {
    line-height: 28px;
  }

  .product-prices-wrapper.row-style {
    flex-direction: column;
    gap: 4px;
  }
  .row-style .row-offer {
    display: none;
  }
  .row-style .showcase-item-prices-de-offer:not(.row-offer) {
    display: flex;
  }

  .product-prices-installment {
    display: flex;
    align-items: center;
    border-left: 1px solid var(--colors_neutral0);
    border-top: 0px;
    padding: 0px 15px 0px;
    height: 100%;
  }
}

/* PRODUTO IMAGENS */
.product-image-box-default-content,
.product-image-box-default,
.product-image-box-row,
.product-image-box{
  width: 100%;
  padding: 0;
}

.product-image-box {
  position: relative;
}

.product-image-box .swiper-button-prev,
.product-image-box .swiper-button-next {
  display: none;
}

.product-image-box-thumbs {
  z-index: 2;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .product-image-box-thumbs {
    left: 0px;
    // bottom: 30px;
    transform: none;
  }
}

.product-image-height .product-image-box-thumbs-vertical,
.product-image-height .product-image-box-thumbs-swiper,
.product-image-height .product-image-box-default-content,
.product-image-height .product-image-box-default-slider,
.product-image-height .product-image-box-thumbs-box {
  height: auto;
}
.product-image-box-thumbs-swiper .swiper-slide {
  padding: 2px;
}
.product-image-box-default {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border: 1px solid var(--colors_neutral0);
}
.product-image-box-default-slider,
.product-image-box-default-content,
.product-image-box-default-content picture,
.product-image-box-default-content .swiper-slide {
  /*min-height: 300px;*/
}

.product-image-box-default-content picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-box-default-content picture img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.product-image-box-default {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  order: 1;
  margin-bottom: 20px;
}
.product-image-box-default-content img {
  display: block;
  max-width: 100%;
  margin: auto;
  height: auto;
  max-height: 100%;
}

.button-prev-product-thumbs,
.button-next-product-thumbs {
  width: 22px;
  height: 22px;
}
.button-prev-product-thumbs {
  left: -22px;
}
.button-next-product-thumbs {
  right: -22px;
}
.button-prev-product-thumbs svg,
.button-next-product-thumbs svg {
  width: 12px;
  height: 22px;
}

.product-image-box-thumbs-vertical {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  order: 2;
}
.product-image-box-thumbs-item {
  width: 100%;
  height: 164.2px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--colors_neutral0);
  box-shadow: 0 0 0 0 transparent;
  transition: 300ms all;
  cursor: pointer;
}
.product-image-box-thumbs.product-image-box-thumbs-horizontal {
  display: none;
}
.product-image-box-thumbs-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.product-image-box-thumbs-item picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image-box-thumbs .swiper-slide-thumb-active .product-image-box-thumbs-item {
  border: 1px solid var(--colors_secondary);
  /*box-shadow: 0 0 0 1px var(--colors_secondary);*/
}
.product-image-box-thumbs-vertical .swiper-button-prev,
.product-image-box-thumbs-vertical .swiper-button-next {
  width: 26px;
  height: 26px;
}
.product-image-box-thumbs-vertical .swiper-button-prev svg,
.product-image-box-thumbs-vertical .swiper-button-next svg {
  width: 6px;
}
.product-image-box-default-content {
  height: 300px;
}
.product-image-box-default-slider {
  height: 100%;
}

@media (min-width: 992px) {
  .product-image-height .product-image-box-thumbs-vertical,
  .product-image-height .product-image-box-thumbs-swiper,
  .product-image-height .product-image-box-default-content,
  .product-image-height .product-image-box-default-slider,
  .product-image-height .product-image-box-thumbs-box {
    height: 500px;
  }

  .product-image-box-thumbs-vertical {
    order: 1;
    height: 500px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
    width: 70px;
  }
  .product-image-box-thumbs-vertical .swiper-slide {
    max-height: 70px;
  }
  .product-image-box-thumbs-vertical .swiper-button-prev,
  .product-image-box-thumbs-vertical .swiper-button-next {
    margin: 0;
    left: 50%;
    top: auto;
    bottom: auto;
    transform: translateX(-50%) rotate(90deg);
  }

  .product-image-box-thumbs-vertical .swiper-button-prev {
    top: -15px;
  }
  .product-image-box-thumbs-vertical .swiper-button-next {
    bottom: -15px;
  }
  .product-image-box-default-content {
    height: 640px;
  }
  .product-image-box-default-slider {
    height: 100%;
  }
}
@media (min-width: 768px) {
  .product-image-box-thumbs.product-image-box-thumbs-horizontal {
    display: block;
  }
  .product-image-box {
    position: sticky;
    top: 190px;
  }
  .product-image-box .swiper-button-prev,
  .product-image-box .swiper-button-next {
    display: block;
    width: 28px;
    height: 58px;
    background-color: var(--colors_primary);
  }

  .product-image-box .swiper-button-next {
    right: -8px;
  }
  .product-image-box .swiper-button-prev {
    left: -8px;
  }
}
@media (min-width: 1200px) {
  .product-image-box-thumbs-vertical {
    width: 100px;
  }
  .product-image-box-thumbs-vertical .swiper-slide {
    max-height: 100px;
  }
}
@media (max-width: 767px) {
  .product-image-box-row {
    display: flex;
    flex-wrap: wrap;
  }
}

/* PRODUTO ACTIONS */
.product-actions {
  margin: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.product-actions-qty-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-actions-qty-label {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #444;
  margin: 0;
  display: none;
}
.product-actions-qty-box {
  display: flex;
  /*border: 1px solid #eeeeee;*/
  border-radius: 20px;
  // overflow: hidden;
}
.product-actions-qty-cta {
  width: 45px;
  height: 45px;
  margin: 0;
  display: block;
  background-color: #fff;
  padding: 0;
  text-align: center;
  opacity: 1;
  border-radius: var(--inputs_radius);
  border: 1px solid var(--colors_secondary);
}
.product-actions-qty-cta svg {
  height: 30px;
  width: 14px;
  display: block;
  margin: auto;
}
.product-actions-qty-cta svg path {
  transition: 300ms all;
  color: #333;
  fill: #333;
}
.product-actions-qty-cta:hover {
  background: #fff;
}
.product-actions-qty-cta:disabled {
  background: var(--colors_neutral1);
  border: var(--colors_neutral1);
  color: var(--colors_neutral1-5);
}
.product-actions-qty-cta:hover svg,
.product-actions-qty-cta:hover svg path {
  color: var(--colors_primary);
  fill: var(--colors_secondary);
}
.product-actions-qty-input {
  max-width: 30px;
  border: 0 none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #4f4f4f;
  text-align: center;
  padding: 0;
}
.product-actions-qty-input.disabled {
  color: var(--colors_neutral1-5);
}
.product-actions-qty-input::-webkit-outer-spin-button,
.product-actions-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-actions-ctas {
  width: 100%;
}
.product-actions-ctas-add-to-cart {
  /*max-width: 320px;*/
  width: 100%;
  height: 45px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #ffffff;
	border-radius: var(--btn_radius);
  transition: 300ms all;
  background-color: var(--colors_accent);
  border-color: var(--colors_accent);
}
.product-actions-ctas-add-to-cart:hover {
  background-color: var(--colors_secondary);
  border-color: var(--colors_secondary);
  opacity: 1;
}

.product-actions-ctas-add-to-cart:disabled {
  background-color: var(--colors_neutral1);
  border: none;
  color: var(--colors_neutral1-5);
}

.disabled-btn {
  opacity: 0.4;
  cursor: not-allowed;
}

/* PRODUTO SHIPPING */
.product-shipping-form {
  margin-bottom: 20px;
}
.product-shipping-form-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.product-shipping-form-flex-btn {
  display: none;
  min-width: 130px;
}
.product-shipping-form-flex-btn .super-btn {
  box-shadow: none;
}
.product-shipping-form-flex-input .tw-d-input input {
  width: 100%;
  font-size: 14px;
  line-height: 14px;
  color: var(--colors_neutral1-5);
  height: 38px;
}

.product-shipping .s1-form-control {
	margin: 0;
}
.product-shipping .s1-form-control .input-type-default {
	height: 38px;
	border: 1px solid var(--colors_neutral0);
  font-size: 14px;
}

.product-shipping .s1-form-control .input-type-default input {
	height: 38px;
	padding: 0 10px;
}

.product-shipping-form-not-zipcode {
  flex: 1 0 auto;
}
.product-shipping-form-not-zipcode a {
  color: #828282;
}

.product-shipping .s1-form-control .input-type-default .primary-button {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	border: 0 none !important;
	color: #221c35 !important;
	background-color: transparent !important;
}

@media (min-width: 768px) {
  .product-shipping-form-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }
  .product-shipping-form-flex-input {
    flex: 1;
  }
}

.product-shipping .submit-button {
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	padding: 0 15px;
	height: 38px;
	text-align: center;
	transition: 300ms all;
	background-color: transparent;
  border: 1px solid var(--colors_secondary);
	border-radius: var(--btn_radius);
  color: var(--colors_secondary);
  width: 62%;
}
.product-shipping .submit-button:disabled {
	background: rgba(63, 63, 63, 0.2);
	opacity: 1;
}

@media (min-width: 768px) {
	.product-shipping .submit-button {
    width: 37%;
	}
}

.product-shipping-results {
  border: 1px solid var(--colors_neutral0);
  border-radius: 5px;
  margin-top: 10px;
}
.product-shipping-results-groups {
  max-width: 400px;
  padding-top: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-shipping-results-groups-list {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.product-shipping-results ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-shipping-results ul li,
.product-shipping-results ul li a {
  font-size: 14px;
  line-height: 16px;
}
.product-shipping-results-item-values a {
  color: var(--colors_neutral2);
  text-decoration: underline;
}
.product-shipping-results ul li b {
  width: 30%;
}
.product-shipping-results-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.product-shipping-results-item-option {
  display: flex;
  flex-direction: column;
}
.product-shipping-results-item-option span {
  font-size: 14px;
  line-height: 18px;
  color: var(--colors_neutral2);
  font-weight: 400;
}
.product-shipping-results-error {
  background-color: var(--colors_error_light);
  border-radius: 5px;
  color: var(--colors_error);
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 10px 1rem;
  border: 0.8px solid var(--colors_error);
}

/* PRODUTO CARACTERISTICAS */
.product-characteristics {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--colors_neutral0);
  border-radius: 5px;
  padding: 20px;
}
.product-characteristics-group {
  display: grid;
  gap: 10px;
}
.product-characteristics-group-name {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: var(--colors_neutral1-5);
  margin: 0;
}
.product-characteristics-group-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
}
.product-characteristics-group-options-item {
  padding: 8px;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid var(--colors_neutral0);
  border-radius: var(--inputs_radius);
  background-color: transparent;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: var(--colors_text_base);
  overflow: hidden;
}
.product-characteristics-group-options-item.color {
  padding: 0px;
  min-height: auto;
}
.product-characteristics-group-options-item-color-value {
  display: none;
}

.product-characteristics-group-options-item.color.active
  .product-characteristics-group-options-item-color-value {
  display: inline-block;
  padding: 0px 13px 0px 4px;
}
.product-characteristics-group-options-item-color-wrapper {
  padding: 0px;
  border-radius: var(--inputs_radius);
  border: 2px solid transparent;
}
.product-characteristics-group-options-item-color {
  width: 24px;
  height: 24px;
  border-radius: var(--inputs_radius);
  display: block;
  border: 2px solid var(--colors_theme_color_1);
}
.product-characteristics-group-options-item.active {
  background-color: transparent;
  border: 2px solid var(--colors_primary);
  color: var(--colors_text_base);
  font-weight: 600;
}
.product-characteristics-group-options-item:disabled {
  opacity: 1;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  color: #bdbdbd;
  border: 2px dashed #bdbdbd;
}

/* PRODUTO LEAD */
.lead-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lead-info-message {
  padding: 20px;
  border: 1px solid var(--colors_neutral0);
  border-radius: 5px;
  font-size: 14px;
  line-height: 18px;
}
.lead-info-message .bold {
  font-weight: 600;
}
.lead-info-new {
  text-decoration: underline;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  line-height: 14px;
}
.lead-sent {
  margin: 10px 0px;
}

form {
  margin-bottom: 20px;
}
.form-lead {
  --text-base: 14px;

  border: 1px solid var(--colors_neutral0);
  display: flex;
  border-radius: 5px;
  flex-direction: column;
  gap: 10px;
  padding: 15px 30px;
  margin-bottom: 20px;
}

/* ==========================================================================
   EDITOR VIEWER
   ========================================================================== */

.product-detail-description {
  margin-top: 40px;
  padding: 40px 0px 40px 0px;
  border-top: 1px solid var(--colors_neutral0);
}

/* PRODUTO SUPORTE FOOTER */
.product-support {
  width: 100%;
  border-top: 1px solid var(--colors_neutral0);
  border-bottom: 1px solid var(--colors_neutral0);
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.product-support-wpp,
.product-support-share {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.product-support-wpp {
  display:none;
}

.product-support-share-text,
.product-support-wpp-text {
  font-size: 14px;
  line-height: 14px;
  color: var(--colors_neutral2);
}

/** LOGIN/CADSATRO **/
.auth-page {
	background: var(--bg-page) no-repeat fixed transparent;
	background-size: cover;
	position: relative;
	width: 100vw;
	min-height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	place-items: center;
}
.auth-page-content {
	height: auto;
	display: block;
	width: 100%;
	max-width: 100%;
	background: #faf7f4;
	border-radius: 12px;
	box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.1);
}
.login-page {
	width: 100%;
}
.login-page-form {
	width: 100%;
	max-width: 320px;
	display: block;
	margin: auto;
}
.auth-header {
	padding: 20px;
}
.auth-header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.auth-header-link {
	display: block;
	line-height: 0;
}
.auth-header-brand {
	display: flex;
	align-items: center;
	gap: 20px;
}
.auth-header-brand.brand-center {
	justify-content: center;
}
.auth-header-brand-image {
	max-width: 170px;
	max-height: 30px;
	display: block;
	width: auto;
	height: auto;
}
.auth-cotent-body h2 b {
	font-weight: bold;
}
.auth-cotent-body {
	padding: 10px 20px 20px;
}
.auth-cotent-body h2 {
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	color: #f47920;
	margin-bottom: 10px;
}

.submit-button {
	font-size: 16px;
	color: #fff;
	font-weight: 400;
	padding: 0 15px;
	height: 42px;
	text-align: center;
	transition: 300ms all;
	background-color: #f47920;
	border-radius: 25rem;
}
.submit-button:disabled {
	background: rgba(63, 63, 63, 0.2);
	opacity: 1;
}

/* @media (min-width: 768px) {
	.submit-button {
		display: block;
	}
} */

.form-login {
	display: grid;
	gap: 16px;
}
.form-login .form-login-other-options {
	margin-top: 10px;
	gap: 5px;
}
.form-login .form-login-other-options div {
	height: 16px;
}
.form-login .form-login-input-box {
	position: relative;
	border-radius: 23px;
	border: 1px solid #eee;
}
.form-login input {
	font-size: 16px;
	color: #4e4d4d;
	background-color: #ffffff;
	height: 46px;
	width: 100%;
}
.form-login input::placeholder,
.form-login input::-moz-placeholder,
.form-login input::-webkit-input-placeholder {
	color: #4e4d4d;
}

.form-login input:focus,
.form-login input:focus-within {
	outline: none;
}
.form-login button {
	font-size: 14px;
	background-color: #f37921;
	color: #fff;
	font-weight: 400;
	padding: 0 10px;
	height: 46px;
	text-align: center;
	transition: 300ms all;
	border-radius: 25rem;
}
.form-login button.cta-verify {
	top: 0px;
	right: 0px;
	width: 100px;
	position: absolute;
}
.form-login button.cta-verify span {
	display: block;
}
.form-login button.cta-verify svg {
	display: none;
}
@media (max-width: 767px) {
	.form-login button.cta-verify {
		background-color: transparent;
		border: 0 none;
		width: 46px;
	}
	.form-login button.cta-verify span {
		display: none;
	}
	.form-login button.cta-verify svg {
		display: block;
		margin: auto;
	}
	.form-login .input-user-identifier {
		padding-right: 0;
	}
}

.tw-d-input:focus,
.tw-d-input:focus-within {
	outline-color: var(--colors_primary);
	outline-width: 0.8px;
	outline-offset: 1px;
}

@media (min-width: 640px) {
	.login-page {
		width: 606px;
	}
}

@media (min-width: 768px) {
	.auth-page {
		display: grid;
	}
	.auth-header {
		padding: 40px;
	}
	.auth-cotent-body {
		padding: 20px 40px 40px;
	}
	.auth-cotent-body h2 {
		font-size: 30px;
		line-height: 34px;
	}
}
@media (min-width: 992px) {
	.auth-page-content {
		width: auto;
	}
}

/* PAGINAÇÃO */
.department-list-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
}

.department-list-pagination-buttons {
	display: flex;
	align-items: center;
	gap: 15px;
}

.department-list-pagination-buttons button {
	width: 37px;
	height: 37px;
	font-size: 16px;
	border-radius: 5px;
	color: var(--neutral2) !important;
}

.department-list-pagination-buttons button.disable {
	cursor: not-allowed;
	opacity: 0.5;
	background-color: #faf7f4;
}

.department-list-pagination-buttons button.active,
.department-list-pagination-buttons button:hover {
	background-color: #f7f3ee;
}

.department-list-pagination-buttons .department-list-pagination-btn-page-number {
	color: var(--neutral2);
}

/*DEPARTMENTMENU*/
.seller-page-departments-menu-nav {
	display: none;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 38px;
	gap: 30px;
	margin-bottom: 40px;
}

@media (min-width: 768px) {
	.seller-page-departments-menu-nav {
		display: flex;
		border-bottom: 0.6px solid #d4d4d4;
		border-top: 0.6px solid #d4d4d4;
		height: 59px;
		padding: 20px 0;
	}
}

.seller-page-departments-menu-nav-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 30px;
}

.seller-page-departments-menu-nav-content-link {
	display: flex;
	align-items: center;
	gap: 30px;
	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.seller-page-departments-menu-nav-content-link::-webkit-scrollbar {
	display: none;
}

.seller-page-departments-menu-nav-content-link-button {
	font-size: 18px;
	line-height: 18px;
	color: var(--neutral2);
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
	padding: 20px 0;
	display: inline-block;
	text-align: center;
	min-width: max-content;
	cursor: pointer;
	position: relative;
	opacity: 1;
}

.seller-page-departments-menu-nav-content-link-button::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background-color: var(--default_primary_color);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.seller-page-departments-menu-nav-content-link-button.active {
	text-shadow: 0px 0px 0.3px rgba(0, 0, 0, 0.8);
}

.seller-page-departments-menu-nav-content-link-button.active::after {
	transform: scaleX(1);
}

.seller-page-departments-menu-nav-content-link-button:hover {
	text-shadow: 0px 0px 0.3px rgba(0, 0, 0, 0.8);
}

/*SECTIONITEM*/
.seller-page-section-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.seller-page-section-content-title {
	padding: 10px 0;
	border-bottom: 1px solid #d4d4d4;
}

.seller-page-section-content-title h2 {
	font-size: 18px;
	color: var(--default_primary_color);
	line-height: 18px;
}

.seller-page-section-content-items {
	display: grid;
	grid-template-columns: repeat(6, 170px);
	gap: 10px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 10px;
	padding-top: 10px;
	scroll-padding-left: 10px;

	-webkit-scrollbar {
		display: none;
	}

	-ms-overflow-style: none;
	scrollbar-width: none;
}

@media (min-width: 992px) {
	.seller-page-section-content-items {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 16px;
		width: 100%;
	}
}

@media (min-width: 1024px) and (max-width: 1366px) {
	.seller-page-section-content-items {
		grid-template-columns: repeat(6, 1fr);
	}
}

/* SECTIONLIST */
.seller-page-section {
	padding-top: 0;
	padding-bottom: 15px;
}

.seller-page-section-container {
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* MOBILEDEPARTMENTMENU */

.seller-page-mobile-department-menu {
	display: flex;
	align-items: center;
	height: 38px;
	margin-bottom: 20px;
}

.seller-page-mobile-department-menu-content {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.seller-page-mobile-department-menu-content span {
	font-size: 18px;
	color: var(--neutral2);
}

.seller-page-mobile-department-menu-content-button {
	cursor: pointer;
}

.seller-page-mobile-department-menu-content-divisor {
	width: 1px;
	height: 20px;
	background-color: #d4d4d4;
}

.seller-page-mobile-department-menu-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 3;
}

@media (min-width: 768px) {
	.seller-page-mobile-department-menu {
		display: none;
	}
}

.seller-page-mobile-department-menu-dropdown {
	position: absolute;
	top: 346px;
	right: 0px;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 0;
	z-index: 6;
}

.seller-page-mobile-department-menu-dropdown-items {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 0 20px;
	background-color: white;
	overflow-y: auto;
	max-height: 1200px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.seller-page-mobile-department-menu-dropdown-items::-webkit-scrollbar {
	display: none;
}

.seller-page-mobile-department-menu-dropdown-items div:first-child {
	position: sticky;
	top: 0;
	background-color: white;
	z-index: 2;
	transition: box-shadow 0.2s ease-in-out;
}

.seller-page-mobile-department-menu-dropdown-item {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	font-size: 18px;
	color: #737373;
	cursor: pointer;
	z-index: 1;
	border-bottom: 1px solid #e5e5e5;
}

.seller-page-mobile-department-menu-dropdown-items.scrolled div:first-child {
	box-shadow: rgba(33, 35, 38, 0.2) 0px 10px 10px -10px;
}

/* DEPARTAMENTOS */
.department-header-term {
	font-size: 18px;
	line-height: 18px;
	color: var(--neutral2);
}

/* DEPARTMENTSORTBY */

.department-sort-by {
	margin-bottom: 5px;
}

@media (min-width: 768px) {
	.department-sort-by {
		margin-bottom: 0;
	}
}
/*SHOWCASE*/

.seller-page .showcase-item-seller {
	display: none;
}

.seller-page .showcase-item-border {
	box-shadow: 0 0 0;
}
.seller-page .showcase {
	padding-top: 6px;
}
.seller-page .showcase-header-title {
	font-size: 18px;
}
.seller-page .showcase-header {
	border-bottom: 1px solid #d4d4d4;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/*PAGE SELLERS LIST */
.sellers-list-page {
	margin-top: 40px;
	padding: 0 30px;
}

@media (min-width: 768px) {
	.sellers-list-page {
		margin-top: 0;
		padding: 0 14px;
	}
}

.sellers-list-page-container {
	display: flex;
	flex-direction: column;
	margin-bottom: 60px;
}

@media (min-width: 768px) {
	.sellers-list-page-container {
		margin-bottom: 70px;
	}
}

.sellers-list-page-container-header {
	border-bottom: 1px solid #ece3d9;
}

.sellers-list-page-container-header-text {
	color: var(--default_primary_color);
	font-size: 24px;
	line-height: 100%;
	padding-bottom: 15px;
}

@media (min-width: 768px) {
	.sellers-list-page-container-header-text {
		font-size: 30px;
		padding-bottom: 20px;
		margin-top: 20px;
	}
}

.sellers-list-page-container-logos {
	display: flex;
	padding-top: 15px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

@media (min-width: 768px) {
	.sellers-list-page-container-logos {
		padding-top: 20px;
		width: 100%;
	}
}

.sellers-list-page-container-logos-roll {
	display: flex;
	gap: 35px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;
	scrollbar-width: none;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.sellers-list-page-container-logos-roll {
		justify-content: space-between;
		width: 100%;
	}
}

.sellers-list-page-container-logos-roll a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.sellers-list-page-container-logos-roll a img {
	object-fit: contain;
	width: 120px;
	height: 120px;
}

@media (min-width: 768px) {
	.sellers-list-page-container-logos-roll a img {
		width: 160px;
		height: 160px;
	}
}

.sellers-list-page-sellers-list {
	display: flex;
	flex-direction: column;
	gap: 35px;
	margin-bottom: 80px;
}

@media (min-width: 768px) {
	.sellers-list-page-sellers-list {
		gap: 30px;
	}
}

.sellers-list-page-sellers-list-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.sellers-list-page-sellers-list-container-header {
	border-bottom: 1px solid #ece3d9;
}

.sellers-list-page-sellers-list-container-header-title {
	color: #737373;
	font-size: 14px;
	line-height: 14px;
	padding-bottom: 10px;
}

.seller-list-group {
	column-count: 1;
	column-fill: auto;
	max-height: none;
}

.seller-list-group.balance {
	column-fill: balance;
	max-height: none;
}

.seller-list-group-item {
	margin-bottom: 10px;
}

.seller-list-group-item:last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.seller-list-group-item {
		margin-right: 50px;
	}
	.seller-list-group-item:last-child {
		margin-bottom: 10px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.seller-list-group {
		column-count: 4;
		max-height: 90px;
	}
}

@media (min-width: 768px) {
	.seller-list-group {
		column-count: 5;
		max-height: 90px;
	}
}

.sellers-list-page-seller-link {
	display: block;
	line-height: 20px;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 1;
}

.sellers-list-page-seller-link:hover {
	text-shadow: 0px 0px 0.3px rgba(0, 0, 0, 0.8);
}

/* ABOUT PAGE */

.about-page {
	padding: 0 30px;
}

@media (min-width: 768px) {
	.about-page {
		padding: 0 14px;
	}
}

.about-page-wrapper {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.about-page-wrapper {
		gap: 20px;
		margin-bottom: 40px;
	}
}

.about-page-header {
	border-bottom: 1px solid #eee6dd;
	padding-bottom: 15px;
	text-align: left;
}

@media (min-width: 768px) {
	.about-page-header {
		padding-bottom: 20px;
	}
}

.about-page-heading {
	font-size: 24px;
	color: #f47920;
	margin-top: 40px;
}

@media (min-width: 768px) {
	.about-page-heading {
		font-size: 30px;
	}
}

@media (min-width: 768px) {
	.about-page-heading {
		margin-top: 20px;
	}
}

.about-page-main-title {
	font-size: 24px;
	color: #f47920;
	margin-bottom: 20px;
}

.about-page-main {
	margin-bottom: 60px;
}

@media (min-width: 768px) {
	.about-page-main {
		margin-bottom: 80px;
	}
}
.about-page-text-block {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-page-text {
	font-size: 16px;
	color: #3f3f3f;
	text-align: left;
}

.about-page-cta {
	margin-top: 40px;
	display: flex;
	justify-content: start;
}

.about-page-button {
	border: 1px solid #f47920;
	padding: 14px 27px;
	border-radius: 54px;
	color: #f47920;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
}

.about-page-hero-desktop {
	display: none;
}

@media (min-width: 768px) {
	.about-page-hero-desktop {
		display: block;
	}
}

.about-page-hero-mobile {
	display: block;
}

@media (min-width: 768px) {
	.about-page-hero-mobile {
		display: none;
	}
}

/*AJUSTES NA SOMENTE NO SELLER-PAGE*/

.seller-page .modal-header {
	background-color: #f9f7f4;
	border: 0 none;
}
.seller-page .department-header {
	padding: 10px 0px;
	@media (min-width: 768px) {
		margin-bottom: 20px;
	}
}

.seller-page .department {
	padding: 10px 20px;
	margin-bottom: 20px;
	padding-top: 0;
}

@media (min-width: 768px) {
	.seller-page .department-header {
		margin-bottom: 20px;
	}

	.seller-page .department {
		padding: 0px 16px;
	}
}

@media (max-width: 768px) {
	.seller-page .modal-dialog {
		display: flex;
		align-items: center;
		min-height: calc(100% - 1.75rem * 2);
	}
}

.seller-page .department-sort-by select {
	width: 110px;
}

.seller-page .department-header-title {
	color: #3f3f3f;
}

.seller-page-department-list-clean-search {
	display: block;
	padding: 0 12px;
	margin-bottom: 20px;
	margin-top: 10px !important;
}
@media (min-width: 768px) {
	.seller-page-department-list-clean-search {
		display: none;
	}
}

@media (max-width: 768px) {
	.department-header-title {
		max-width: 188px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}
@media (max-width: 768px) {
	.department-sort-by .col-auto {
		padding-left: 8px !important;
	}
}

/*AJUSTES HOME DA LOJA*/
.seller-page .showcase-header {
	margin-bottom: 8px;
}

.seller-page .department-sort-by {
	margin-bottom: 0;
}

.seller-page .showcase-item.slider-item {
	padding: 12px 12px;
}

@media (min-width: 768px) {
	.about-page-hero-mobile {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.footer-mobile {
	position: relative;
	z-index: 5;
}

/* AJUSTES NA HOME DA LOJA */

.seller-page-header-content-banner-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}
.seller-page-header-content-banner-thumb img {
	display: block !important;
	min-width: auto !important;
	min-height: auto !important;
	position: static !important;
	transform: none !important;
	/* width: auto !important; */
	height: auto !important;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center;
}

.seller-page .showcase-item.slider-item {
	padding: 12px 12px 12px 12px;
	margin-left: 3px;
}

@media (min-width: 768px) {
	.seller-page-sections-lists .showcase .tw-container {
		padding: 0;
	}

	.seller-page-sections-lists .showcase .tw-container .showcase-header {
		margin: 0 16px 8px 16px;
	}

	.seller-page .showcase-item.slider-item {
		padding: 12px 12px;
	}
}

/*PAGE ERROR*/
.page-error {
	padding: 30px 0 0 0;
	text-align: center;
	color: #ababab;
}

.page-error-status-code {
	font-size: 100px;
	line-height: 100px;
	font-weight: bold;
}

.page-error-status-message {
	font-size: 25px;
	line-height: 30px;
	font-weight: bold;
}

.page-error-status-description {
	font-size: 15px;
	line-height: 20px;
}
.page-error-container {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	margin-bottom: 60px;
}

.page-error-img {
	display: none;
	width: 100%;
}

.page-error-mobile-img {
	display: block;
	width: 100%;
	max-width: 450px;
	margin-left: 20px;
}

.page-error-content {
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: -5%;
	text-align: left;
	padding-left: 20px;
	padding-right: 24px;
}

.page-error-text-box {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 25px;
}

.page-error-title {
	font-size: 70px;
	line-height: 70px;
	color: #3f3f3f;
	font-weight: lighter !important;
}

.page-error-subtitle {
	font-size: 24px;
	line-height: 24px;
	color: #000000;
	font-weight: lighter !important;
}

.page-error-cta {
	font-size: 18px;
	color: white;
	background-color: #f47920;
	padding: 13px 60px;
	border-radius: 100px;
	display: inline-block;
	width: 100%;
	text-align: center;
}

.page-error-showcaselist {
	margin-bottom: 80px;
}

.page-error .showcase-item-border {
	box-shadow: 0 0 0;
}

.page-error .showcase-item-name,
.page-error .showcase-item-prices-por,
.page-error .showcase-item-seller {
	text-align: left;
	color: #3f3f3f;
}

.page-error .showcase-item-prices-only,
.page-error .showcase-item-prices-de {
	color: #737373;
	text-align: left;
}

.page-error img {
	color: #3f3f3f;
}

.page-error .showcase-item-prices {
	text-align: left;
}

.page-error .showcase .col {
	border: none;
	margin-top: 20px;
	padding-top: 0;
	padding-bottom: 0;
}

@media (min-width: 768px) {
	.page-error {
		padding: 30px 0;
	}
	.page-error-container {
		padding-right: 50px;
		padding-left: 90px;
		margin-bottom: 20px;
	}

	.page-error-content {
		position: absolute;
		left: 8.5%;
		bottom: 11.5%;
		text-align: left;
		width: 60%;
		padding: 0;
	}

	.page-error-text-box {
		margin-bottom: 40px;
	}

	.page-error-title {
		font-size: 128px;
		line-height: 128px;
	}

	.page-error-subtitle {
		font-size: 48px;
		line-height: 48px;
	}

	.page-error-cta {
		padding: 13px 88px;
		width: 318px;
	}

	.page-error-img {
		display: block;
		width: 100%;
	}

	.page-error-mobile-img {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.page-error-container {
		padding-left: 40px;
		padding-right: 20px;
	}

	.page-error-content {
		width: 60%;
		bottom: 8.5%;
	}
}
@media (min-width: 1024px) and (max-width: 1366px) {
	.page-error-container {
		padding-left: 60px;
		padding-right: 20px;
	}

	.page-error-content {
		width: 60%;
		bottom: 10.5%;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.page-error-content {
		width: 60%;
	}

	.page-error-title {
		font-size: 70px;
		line-height: 70px;
	}

	.page-error-subtitle {
		font-size: 24px;
		line-height: 24px;
	}

	.page-error .showcase-header-title {
		font-size: 18px;
	}
}

.seller-page-header-content-banner-thumb {
	background-color: white;
}

.department-header-products-count {
	font-size: 14px;
	color: #868686;
	display: none !important;
}

.login-page-link {
	margin-top: 36px;
}

.drowpdown-content-message {
	display: none;
}

.form-login .form-login-input-box:nth-child(2) .cta-verify {
	display: block !important;
}

@media (min-width: 768px) {
	.form-login .form-login-input-box:nth-child(2) .cta-verify {
		display: none !important;
	}
}

.seller-page-header-search {
    display: none;
    position: relative;
    margin-top: 15px;
}

.seller-page-header-search input:focus {
    outline: 2px solid #f47920;
}

.seller-page-header-search-control {
    width: 100%;
    height: 38px;
    background: #ffffff;
    border: 1px solid #d4d4d4;
    border-radius: 30px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: rgba(115, 115, 115, 0.6);
    position: relative;
    z-index: 1;
    padding: 0 45px 0 15px;
}

.seller-page-header-search-cta {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    border: 0 none;
    border-radius: 100%;
    padding: 0;
    z-index: 2;
}

.seller-page-header-search-cta svg {
    width: 12px;
    height: 38px;
    display: block;
    margin: auto;
}

.show-input {
    display: block;
    margin-top: 0;
    width: 100%;
}

@media (min-width: 992px) {
    .seller-page-header-search {
        display: block;
        margin-top: 0;
    }
    .seller-page-header-search-control {
        width: 288px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .seller-page-header-search {
        display: block;
        margin-top: 0;
    }
}

.department-filter-item-prices .rangeSlider.range:not(.min):not(.max) .rangeNub {
  border-radius: 10em 10em 10em 10em !important;
}

.form-login button.cta-password{
	background-color: transparent !important;
	border: 0 none;
	width: 54px !important;
}

.form-login button.cta-password {
    top: -1px;
	right: 0px;
	width: 102px;
    margin-top: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:768px) {
  .header-info-shippingcep-link-message br {
    display: none;
  }
}

.shipping-mobile-exit-cta {
  display: none;
}

.product-page-banner-mobile {
  display: none;
}

.loading-circle::before {
	background-color: #FAF7F4 !important;
}

.product-detail .products-prices-info .showcase-item-prices-de-offer,
.product-detail-quickview .products-prices-info .showcase-item-prices-de-offer {
  display: none;
}

.auth-form-terms-box {
	padding: 0 16px;
}

@media (min-width: 768px) {
  .auth-form-terms-box {
	 padding: 0;
   }
}

.auth-page .alert-popup-content {
	top: 41% !important;
	width:90% !important;
}

@media (min-width: 768px) {
	.auth-page .alert-popup-content {
		top: 44% !important;
	}
}

@media (max-width: 768px){
	.alert-popup-close-cta-float svg {
		width: 16px !important;
		height: 16px !important;
	}
}

.alert-popup-content.error .alert-popup-close-cta-float svg path {
	stroke: #B53636 !important;
}

.product-detail .product-actions-ctas-add-to-cart span {
  margin: 0 !important;
}


.product-detail .product-actions-ctas-add-to-cart svg {
  display: none;
}

.auth-page .message-page-content {
  margin-bottom: 45px;
  padding: 0 20px;
}

@media (min-width:768px) {
  .auth-page .message-page-content {
    margin-bottom: 60px;
    padding: 0 40px;
  }
}

.auth-page .singup-page .form-group-inputs {
	display: block;
}

@media(min-width:768px) {
	.auth-page .singup-page .form-group-inputs {
		display: grid;
	}
}

.filtrer-title {
	color: var(--colors_primary);
	font-size: 24px;
	line-height: 30px;
	margin-bottom: 16px !important;
}

.product-detail .swiper-pagination.swiper-pagination-horizontal {
	display:none;
}

.seller-page-mobile-department-menu-content .seller-page-header-search {
	margin-bottom: 0;
}

.search-box form {
  margin-bottom: 0;
}

.header-info-shippingcep-link-message svg {
	display:none;
}

}
.smart-cart .submit-button {
	width: 0;
	border:none;
	margin-right:20px;
}

.smart-cart .submit-button svg {
	width: 20px;
	height: 20px;
}

.footer-message-grid-text2 svg {
  display: none;
}

.nav-mobile .nav-categories-item-link {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.nav-categories-item-link svg {
	display:block;
}

@media(min-width:768px) {
	.nav-categories-item-link svg {
		display:none;
	}
}

.nav-categories-item-link svg {
    transform: rotate(270deg);
    transform-origin: center;
}

.nav-groups-details-show-more {
	color: var(--colors_neutral2);
}
