.kitchen__container {
	overflow: hidden;
	position:relative;
	margin: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-self: flex-end;
}

/* Conteúdo principal */
.kitchen__container .kitchen__content {
	width: 100%;
}

/* Mesa principal */
.kitchen__container .kitchen__table {
	width: 100%;
	height: 40%;
}

/* Parte superior da mesa */
.kitchen__table .table__top {
	padding: 5px 15px 15px 10px;
	background-color: #AAA;
	height: 30%;
	width:100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Linha de itens (pratos, grelha, ingredientes) */
.table__top .row {
	height: 50%;
	width: 100%;
	gap:15%;
	padding: 5px auto;
	display: flex;
	justify-content: space-around;
}

/* Container de pratos */
.row .plate__container {
	height: fit-content;
}

.plate__container .plate__content {
	transform: translate(-15%, 10%);
	background-color: #556642;
	width: 100%;
	display: flex;
	gap: 5px;
	padding: 5px;
	border-radius: 10px;
	justify-content: space-around;
}

.plate__content .plate__item {
	width: 51px;
	height: 36px;
	padding: 5px;
	background-color: #FFF;
	border-radius: 50%;
	box-shadow: 2px 5px 6px #373737;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Container da grelha */
.row .grill__container {
	width: 188px;
	display: flex;
	flex-direction: column;
}

.grill__container .grill__content {
	width: 100%;
	transform:translate(0%, 10%);
	display: flex;
	justify-content: space-between;
	padding: 5px;
	background: url('../img/grelha_off.png') no-repeat;
	background-size: contain;
}

.grill__content .grill__top {
	width:100%;
	height: 1em;
	min-height:65px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 5px;
}

/* Ingredientes */
.row .ingredients__container {
	width: fit-content;
	height: 5em;
	margin: 0;
}

.ingredients__container .ingredients__content {
	background-color: #888;
	border-radius: 10px;
	width: fit-content;
	height: 4.5em;
	display: flex;
	align-items: flex-start;
	padding: 10px 10px 0 10px;
	gap: 5px;
}

.ingredients__content .ingredient__platter {
	border: 1px solid #444;
	height: 3em;
	width: 4em;
	background-size: 30px !important;
	box-shadow: inset 0 -10px 0 #333;
}

/* Parte inferior da mesa */
.kitchen__table .table__bottom {
	background-color: #888;
	height: 5%;
	box-shadow: 0 40px 50px #000;
	width: 100%;
	display:flex;
	justify-content:space-between;
}

/* Área sob a mesa */
.kitchen__container .kitchen__under-table {
	width: 100%;
	height:60%;
	background-color: #666;
	display: flex;
	justify-content: center;
}

.under-table__container {
	height:100%;
	width: 75%;
	display: flex;
	padding:15px 0px;
	gap:5px;
	justify-content:center;
	align-items: start;
	flex-direction: column;
}

.under-table__container .row {
	border:1px solid #000;
	height: 4.5em;
	width: 100%;
	gap:5px;
	display: flex;
}

.under-table__container .row *:hover {
	border: 1px solid red;
}

.row__slot {
	background-color:gray;
	min-width:50%;
	cursor: pointer;
	background-size:16.7%;
}

/* Imagens gerais */
.kitchen__container img {
	width:90%;
	transform: translate(0, -20%);
	text-align: center;
	filter: drop-shadow(0 2px 1px);
}


img.meat-item{
	width:28%;
	height:65%;
}