body, html {
	font-family: 'Poppins', sans-serif;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	scroll-behavior: smooth;
	color:#434040;
	zoom: .95;
}
body {
	background-color: #fff;
}
label {
	color: #e5376e;
}
.btn-ees {
	background-color: #e72666;
	color: white;
}
.btn-ees:hover {
	font-weight: 900;
	background-color: white;
	color: #e72666;
	border: 1.5px solid #e72666;
}

.header-ees{
	background-color: #e72666;
	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: #e72666;
	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: #e72666;
	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;
}