/* GERAL */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: #29323b;
	font-size: 13px;
}
body {
	font-family: "Quicksand-Regular";
	background-color: #fff !important;
	height: 100vh;
	display: flex;
	flex-direction: column;
}
@font-face {
	font-family: 'Quicksand-Regular';
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	unicode-range: U+000-5FF;
	src: local('Quicksand-Regular'), url('../fonts/Quicksand-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'Quicksand-SemiBold';
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	unicode-range: U+000-5FF;
	src: local('Quicksand-SemiBold'), url('../fonts/Quicksand-SemiBold.ttf') format('truetype');
}
@font-face {
	font-family: 'Quicksand-Bold';
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	unicode-range: U+000-5FF;
	src: local('Quicksand-Bold'), url('../fonts/Quicksand-Bold.ttf') format('truetype');
}
@font-face {
	font-family: 'Quicksand-Light';
	font-weight: normal;
	font-style: normal;
	font-display: swap;
	unicode-range: U+000-5FF;
	src: local('Quicksand-Light'), url('../fonts/Quicksand-Light.ttf') format('truetype');
}
 p {
    margin-bottom: 0 !important;
}
.content-custom {
	flex: 1 0 auto;
}
.fontBold {
	font-family: 'Quicksand-Bold';
}
.fontSemiBold {
	font-family: 'Quicksand-SemiBold';
}
.fontLight {
	font-family: 'Quicksand-Light';
}
.ls-1 {
	letter-spacing: 1px;
}
.ls-2 {
	letter-spacing: 3px;
}
.fs-7 {
	font-size: 12px !important
}
.line-height {
	line-height: 2;
}
.label-input {
	background: #ddd;
	border-radius: 10px;
	padding: 2px 12px;
	color: #555;
	width: 100%;
	height: 25px;
}
.object-fit-cover {
	object-fit: cover;
}
.alert-growl {
	top: 70px;
	z-index: 9;
	width: 525px;
	position: fixed;
	left: calc(50% - 262px);
	animation: cssAnimation 0s ease-in 5s forwards;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
.equal-height {
    display: flex; /* Ativa o Flexbox no elemento pai (row) */
}
.equal-height > div {
    display: flex; /* Ativa o Flexbox nas colunas */
    flex-direction: column; /* Organiza os itens em coluna */
}
.equal-height > div > div {
    flex-grow: 1; /* Permite que as divs internas cresçam para preencher o espaço */
}

@keyframes cssAnimation {
    to {
  		display: block;
  		visibility: hidden;
    }
}
/* CARRINHO */
.btn-icon {
	margin: 3px 9px;
	background: transparent;
	border: none;
}

/* OUTROS */
.box-title-price {
	background-color: #f7f7f7;
	height: 134px;
}
.box-image-code {
	background-color: #fff;
	border: 2px solid #ccc;
	min-height: 215px;
}
.box-title {
	font-size: 12px;
	height: 80px;
	text-align: center;
}
.box-image {
	height: 150px;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
}
.box-image img {
	height: auto;
	width: auto;
	max-height: 100%;
	max-width: 100%;
}
.cursor-pointer {
	cursor: pointer;
}
.center-vertical {
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.box-categoria {
	width: 16.66%
}
.box-product {
	width: 23%; 
	float: left;
	margin-left: .5rem !important;
	margin-right: .5rem !important;
	border: 1px solid rgba(0,0,0,.125);
	box-shadow: 1px 2px 3px #ccc !important;
	min-height: 262px;
	background-color: #fff;
}
.box-counter {
	display: inline-flex;
	border: 1px solid #dcdcdc;
	border-radius: 4px;
	background: #f5f5f5;
}
.tooltip {
	z-index: 100000000;
}
.img-categoria {
	width: 10rem;
	height: 10rem;
}
.categoria-titulo {
	width: 10rem;
	height: 10rem;
	padding: 12px;
	border-radius: 50%;
	border: 10px solid #ddd;
	background-color: #eee;
	display: flex;
  	justify-content: center;
  	align-items: center;
  	text-align: center; 
}
.w-max-content {
	width: max-content;
}

@media screen and (max-width: 767px) {
	.box-categoria {
		width: 50%
	}
	.box-product {
		width: 100%; 
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.center-vertical-sm {
		display: block !important;
	}
	.text-center-footer {
		text-align: center !important;
		margin-bottom: 30px;
	}
	img.logo-footer {
		max-width: 110px;
		margin: 0 auto;
		margin-bottom: 30px;
		height: auto;
	}
}

.popup-produtos-width {
	max-width: 1195px; 
	width: 95%;
}

@media screen and (max-width: 640px) {
	.popup-produtos-none {
		display: none;
	}
	.popup-produtos-width {
		max-width: 800px;
	}
}

/***** PRINT *****/
.print {
	display: none;
}

.no-print {
	display: block;
}

/***** BOOTSTRAP *****/
.navbar {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}
.nav-link {
	padding: .5rem 1rem !important;
}
.btn {
	padding-top: 0.455rem !important;
	text-transform: uppercase;
	font-size: 12px;
}
.btn-lg {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
}
.btn-secondary.active {
	background-color: #576066 !important;
	border-color: #576066 !important;
	font-family: 'Quicksand-SemiBold';
}
.bg-light {
	background-color: #f7f7f7 !important;
}
.accordion-button:not(.collapsed) {
	color: inherit;
  	background-color: var(--bs-accordion-btn-bg);
  	box-shadow: none;
}
.accordion-button::after {
	margin-left: 10px;
}
.form-control {
	border: none;
}
.table-transparent>:not(caption)>*>* {
    background-color: transparent !important;
}
.accordion-button::after {
    filter: invert(1) sepia(1); /* Isso transformará o ícone em branco */
}

/***** PRODUTO *****/
.quantidade-produto {
	display: inline-block;
	width: 60px;
	text-align: center;
	margin: 3px 0;
}
.produto-imagem {
	height: 250px;
	display: flex;
	display: -webkit-flex;
	/* Garante compatibilidade com navegador Safari. */
	justify-content: center;
	align-items: center;
}
.produto-imagem img {
	height: auto;
	width: auto;
	max-height: 100%;
	max-width: 100%;
}
.custom-tooltip {
  --bs-tooltip-bg: rgb(13, 110, 253);
  --bs-tooltip-color: #fff;
}


/***** CARD *****/
.border-card {
	box-shadow: 1px 2px 2px #ccc !important;
	border-radius: 1.2rem !important;
	overflow: hidden;
}
.card-header {
	background-color: #e5e5e5 !important;
	color: #888;
	border-top-left-radius: 15px !important;
	border-top-right-radius: 15px !important;
	padding-top: 10px;
	padding-bottom: 10px;
}

/***** CAROUSEL *****/
.MultiCarousel { 
     float: left; 
     overflow: hidden; 
     padding: 15px; 
     width: 100%; 
     position: relative; 
 }
 .MultiCarousel .MultiCarousel-inner { 
     transition: 1s ease all; 
     float: left; 
 }
 .MultiCarousel .MultiCarousel-inner .item { 
     float: left;
 }
 .MultiCarousel .MultiCarousel-inner .item > div { 
     text-align: center; 
     margin:10px; 
     color:#666;
     height: 334px;
 }
.MultiCarousel .leftLst, .MultiCarousel .rightLst { 
     position:absolute; 
     top:calc(50% - 20px);
 }
 .MultiCarousel .leftLst { left:0; }
 .MultiCarousel .rightLst { right:0; }
 
 /****** CARRINHO FILIAIS *****/
.DivCart, .SmallDiv {
	display: flex;
	border-top-left-radius: 3rem;
}
.DivCart {
	flex-direction: column;
	padding-bottom: 30px;
}
.SmallDiv {
	height: 26%;
  	border-top-right-radius: .8rem;
  	background-color: red;
  	justify-content: space-between;
  	align-items: center;
}
.DivCart, .SmallDiv {
	display: flex;
  	border-top-left-radius: 3rem;
}
.BigDiv {
	flex: 5 1;
	border-bottom-right-radius: 3rem;
	border-bottom-left-radius: .8rem;
	padding-top: 6.5rem;
	background: #FFF;
}
.BigDiv, .SmallDiv {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.DivShoppingCart, .DivSquare {
	display: flex;
	justify-content: center;
	align-items: center;
}
.DivShoppingCart em {
	font-size: 42px;
}
.DivSquare {
	width: 12rem;
	height: 12rem;
	border-radius: .8rem;
	position: relative;
	top: 55px;
	background-color: #FFF;
}
.DivShoppingCart {
	width: 6rem;
	height: 6rem;
}
.DivShoppingCart, .DivSquare {
	display: flex;
	justify-content: center;
	align-items: center;
}

 /****** LOJAS *****/
.ribbon {
    left: 0px;
    top: 5px;
    height: 0;
    z-index: 1;
    display: flex;
    position: relative;
    flex-direction: column;
    max-width: max-content;
    align-items: flex-start;
}
.ribbon_ {
	text-align: center;
	padding: .5rem .8rem;
	height: auto !important;
	width: 100%;
 	position: relative;
	display: flex;
	text-transform: uppercase;
	font-size: 10px;
	align-items: center;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	background: rgb(242, 82, 32);
	left: -8px;
	font-family: 'Quicksand-Bold';
	-webkit-box-shadow: 2px 4px 6px 2px rgba(0, 0, 0, 0.11);
  	-moz-box-shadow: 2px 4px 6px 2px rgba(0, 0, 0, 0.11);
  	box-shadow: 2px 4px 6px 2px rgba(0, 0, 0, 0.11);
}
.ribbon_::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: -5px;
	border-top: 5px solid #555;
	border-left: 8px solid transparent;
}
.loja-descricao {
	min-height: 38px;
	max-height: 38px;
}

@media screen and (max-width: 991px) {
	.loja-descricao {
		min-height: min-content;
		max-height: min-content;
	}
}
