.rm-menu {
	width: 100%;
}

.rm-item {
	width: 100%;
	border-bottom: 1px solid #d9d9d9;
	padding: 18px 0 16px;
}

/* HEAD */
.rm-head {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0px;
}

.rm-title-wrap {
	width: 70%;
	flex: 0 0 70%;
	min-width: 0;
}

.rm-meta-top {
	width: 30%;
	flex: 0 0 30%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 16px;
}

.rm-item {
	border-bottom: 1px solid #f0f0f0;
}

.rm-allergens {
	color: #cccccc;
}

.rm-price-wrap {
	flex: 0 0 auto;
}

/* BODY */
.rm-body {
	width: 100%;
	margin-top: 8px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0px;
}

.rm-desc-wrap {
	width: 85%;
	flex: 0 0 85%;
	min-width: 0;
}

.rm-meta-bottom {
	width: 15%;
	flex: 0 0 15%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 0;
}

/* TYPO */
.rm-title,
.rm-price {
	margin: 0;
	font-family: 'Instrument Serif';
	font-size: 26px;
	line-height: 32px;
	font-weight: 400;
	letter-spacing: 0.65px;
}

.rm-price {
	white-space: nowrap;
	text-align: right;
}

.rm-price-mobile {
	margin: 0;
	white-space: nowrap;
	font-family: 'Instrument Serif';
	font-size: 26px;
	line-height: 32px;
	font-weight: 400;
}

.rm-desc,
.rm-allergens {
	font-family: 'Yaldevi';
	font-size: 18px;
	line-height: 32px;
	font-weight: 400;
}

.rm-desc {
	width: 100%;
}

.rm-allergens-wrap {
	width: 100%;
}

.rm-allergens {
	color: #9a9a9a;
	text-align: right;
	white-space: nowrap;
}

/* ICONS */
.rm-icons-wrap {
	flex: 0 0 auto;
	position: relative;
	top: 4px;
}

.rm-icons {
	display: flex;
	align-items: center;
	gap: 10px;
}

.rm-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 20px;
}

.rm-icon-image {
	display: block;
	width: auto;
	height: 20px;
	object-fit: contain;
}

.rm-icons-mobile,
.rm-icons-mobile-wrap,
.rm-price-mobile-wrap {
	display: none;
}

/* TABLET */
@media (max-width: 1200px) {
	.rm-head,
	.rm-body {
		gap: 0px;
	}

	.rm-meta-top {
		gap: 0px;
	}
}

/* MOBILE */
@media (max-width: 767px) {
	.rm-item {
		padding: 16px 0 14px;
	}

	.rm-head,
	.rm-body {
		display: block;
	}

	.rm-title-wrap,
	.rm-meta-top,
	.rm-desc-wrap,
	.rm-meta-bottom,
	.rm-price-mobile-wrap {
		width: 100%;
		flex: none;
	}

	.rm-title-wrap {
		margin-bottom: 0px;
	}

	.rm-desc {
		font-weight: 300 !important;
		font-size: 16px;
		line-height: 24px;
	}

	.rm-meta-top {
		display: none;
	}

	.rm-price-mobile-wrap {
		display: block;
		width: 100%;
		margin-bottom: 14px;
	}

	.rm-meta-bottom {
		margin-top: 14px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0px;
	}

	.rm-allergens-wrap {
		flex: 1 1 auto;
		width: auto;
		margin-left: 0;
	}

	.rm-allergens {
		text-align: left;
		white-space: normal;
	}

	.rm-icons-mobile-wrap {
		display: block;
		flex: 0 0 auto;
	}

	.rm-icons-mobile {
		display: flex;
		margin-left: auto;
	}
}