* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html{
	font-size: 14px;
}
body{
	height: 100vh;
	font-family: 'Poppins', sans-serif;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	scroll-behavior: smooth;
	font-size: 1rem;
}
:root{
	--corPrimaria: #232222;
	--corSecundaria: #D8B877;
	--txtDark: #0d1b16;
	--txtLight: #D8B877;
}
.btn-padrao-1 {
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
	font-weight: 300;
	border-radius: 3px;
	transition: .2s all;
}
.btn-padrao-1:hover {
	background-color: #fff;
	border: 1px solid #000;
	color: #000;
	font-weight: 300;
	border-radius: 3px;
	transition: .4s all;
}
.btn-padrao-2 {
	background-color: #fff;
	border: 1px solid #000;
	color: #000;
	font-weight: 300;
	border-radius: 3px;
	transition: .2s all;
}
.btn-padrao-2:hover {
	background-color: #000;
	border: 1px solid #000;
	color: #fff;
	font-weight: 300;
	border-radius: 3px;
	transition: .4s all;
}
.btnLight,
.btnLight:link,
.btnLight:visited{
	background-color: var(--corSecundaria);
	color: white;
	border: 2px solid var(--corSecundaria);
}
.btnLight:hover,
.btnLight:active{
	background-color: var(--corPrimaria);
	color: var(--corSecundaria);
	border: 2px solid var(--corPrimaria);
	box-shadow: 2px 2px 0.5rem rgba(255, 255, 255, 0.9);
}
.btnDark,
.btnDark:link,
.btnDark:visited{
	background-color: var(--corPrimaria);
	color: var(--corSecundaria);
	border: 2px solid var(--corPrimaria);
	box-shadow: 4px 4px 0.5rem rgba(0, 0, 0, 0.5);
}
.btnDark:hover,
.btnDark:active{
	background-color: white;
	border: 3px solid var(--corPrimaria);
	color: var(--corPrimaria);
}
.modal-header{
	background-color: var(--corPrimaria);
	color: var(--corSecundaria);
	font-weight: bolder;
}
.header-ees{
	background-color: var(--corPrimaria);
	color: white;
}
.card-header{
	background-color: var(--corPrimaria);
	color: white;
}
.bd-placeholder-img {
	font-size: 1.125rem;
	text-anchor: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
@media (min-width: 768px) {
	.bd-placeholder-img-lg {
		font-size: 3.5rem;
	}
}
.aba {
	background-color: white;
	color: var(--corPrimaria);
	border-style: solid;
	border-color: #CECECE;
	border-width: 1px;
	text-align: center;
	padding: 5px 0 5px 0;
	line-height: 20px;
	font-weight: bold;
	border-radius: 15px 15px 0 0;
}
.abaAtiva {
	background-color: var(--corPrimaria);
	color: white;
	text-align: center;
	padding: 5px 0 5px 0;
	line-height: 20px;
	font-weight: bold;
	border-radius: 15px 15px 0 0;
}

.cardProd{
	background-color: #fefdfc;
	border-radius: 0.5em;
	color: #56514d;
	padding: 1em;
	width: 200px;
	height: 150px;
	position: relative;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
	box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
}
.cardLixeira {
	border-radius: 0.15em;
	color: #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3rem;
	cursor: pointer;
	transition: .3s all;
}
.cardLixeira:hover {
	background-color: rgba(0,0,0,0.7);
	transition: .6s all;
}
.iconTrash {
	display: none;
	transition: .3s all;
}
.cardLixeira:hover > .iconTrash {
	display: flex;
	transition: .6s all;
}
.cta-voltar {
	background-color: white;
	color: var(--corPrimaria);
	border: 2px solid var(--corPrimaria);
	max-width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor:pointer;
	font-weight: 800;
	box-shadow: 2px 2px 0.5rem rgba(0, 0, 0, 0.30);
	font-size: 0.9rem;
	padding-top: 0.2rem;
	padding-bottom: 0.2rem;
	padding-left: 2rem;
	padding-right: 2rem;
	&:hover{
		color: var(--corSecundaria);
		background-color: var(--corPrimaria);
	}
}
.custom-input {
	border: 1px solid #000;
	border-radius: 5px;
	line-height: 30px;
}
.custom-input:focus {
	border-color: #000;
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .25);
}
.custom-label {
	width: fit-content;
	margin-bottom: -10px;
	margin-left: 10px;
	position: relative;
	background-color: #fff;
	padding: 3px;
	line-height: 1;
	font-weight: 600;
}
.cinza {
	color: #868686;
}
.bege {
	color: #D8B877;
}
.bg-cinza {
	background-color: #232222;
}
.radius-padrao {
	border-radius: 10px;
}