.cart-error,
.not_avail {
	text-align: center;
}

.cart-error {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 1.5em;
	color: var(--red);
}

.material {
	display: flex;
	flex-direction: column;
}

.material>div {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 25px 0px;
}

.material_top {
	display: flex;
}

.material_left {
	width: 50%;
}

.material_right {
	display: flex;
	flex-direction: column;
	width: calc(50% - 25px);
	margin-left: 25px;
}

.figure {
	width: 100%;
	position: relative;
}

.figure>img {
	max-width: 100%;
	height: 100%;
	display: flex;
	margin: auto;
	cursor: zoom-in;
}

.botanical {
	font-size: 1.5em;
	color: var(--black);
	margin-bottom: 15px;
}

.common {
	font-size: 1.75em;
	color: var(--primary);
	margin-bottom: 10px;
}

.updatebtn {
	text-align: right;
	cursor: pointer;
	text-decoration: underline;
}

.description {
	font-size: 1em;
	color: var(--grey-dark);
	margin: 0;
}

.material_facts {
	font-size: 1em;
}

.facts {
	display: flex;
	flex-direction: column;
	color: var(--grey-dark);
	margin-bottom: 10px;
}

.facts>div {
	display: flex;
}

.facts>div>div:LAST-CHILD {
	font-weight: 600;
}

.facts>div>div:FIRST-CHILD:after {
	content: ':';
	padding-right: 5px;
}

.facts p {
	margin: 0;
}

.categories {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.categories a {
	text-decoration: none;
	color: var(--primary);
}

.categories a:hover {
	text-decoration: underline;
	color: var(--primary-dark);
}

.categories a:after {
	content: ', ';
}

.categories a:last-of-type:after {
	content: '';
}

.not_avail {
	font-size: 1em;
	margin-top: 10px;
}

.products {
	display: flex;
	flex-direction: column;
	width: 100%;
	color: var(--black);
	font-size: 1em;
	margin: 25px 0px;
}

.products>div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0px;
	border-bottom: 1px solid var(--grey);
}

.products>div>div {
	padding: 0px 2px;
}

.products>div>div:nth-child(1) {
	min-width: 96px;
	width: calc(40% - 4px);
}

.products>div>div:nth-child(2) {
	min-width: 70px;
	width: calc(35% - 4px);
}

.products>div>div:nth-child(3) {
	min-width: 56px;
	width: calc(15% - 4px);
}

.products>div>div:nth-child(4) {
	min-width: 50px;
	width: calc(10% - 4px);
	text-align: center;
}

.qty_input {
	max-width: 48px;
	height: 20px;
	border: 1px solid var(--black);
	text-align: center;
}

@media screen and (max-width: 768px) {
	.material>div {
		flex-direction: column;
		justify-content: center;
	}

	.material_top {
		flex-direction: column;
	}

	.material_left {
		width: 100%;
		margin-bottom: 25px;
	}

	.material_right {
		width: 100%;
		margin: 0;
	}
}

@media screen and (max-width: 768px) {
	.material_right>div:FIRST-CHILD {
		flex-direction: column;
	}

	.material_right>div:FIRST-CHILD>div:FIRST-CHILD {
		margin-bottom: 10px;
	}
}