@charset "utf-8";

main {
	position: relative;
	width: 1600px;
	margin: 0 auto;
}

main #lines {
	width: 60%;
	display: inline-flex;
	flex-direction: column;
	gap: 20px;
}

main #lines .line {
	height: 75px;
	display: flex;
	column-gap: 20px;
	align-items: center;
}

main #lines .line img {
	width: 75px;
	height: 75px;
	object-fit: cover;
}

main #lines .line .name {
	width: 400px;
	font-size: 1.5rem;
}

main #lines .line .EAN {
	font-size: 1.3rem;
}

main #lines .line .green,
main #lines .line .orange,
main #lines .line .red,
main #lines .line .black {
	width: 150px;
	font-size: 1.5rem;
}

main #lines .line .green {
	color: #008000;
}

main #lines .line .orange {
	color: #FF9900;
}

main #lines .line .red {
	color: #FF0000;
}

main #lines .line .black {
	color: black;
}

main #lines .line .green::before,
main #lines .line .orange::before,
main #lines .line .red::before,
main #lines .line .black::before {
	display: inline-block;
	background-size: 1rem 1rem;
	width: 1rem;
	height: 1rem;
	margin-right: 5px;
	line-height: 1.3rem;
	content: '';
}

main #lines .line .green::before {
	background-image: url('/assets/img/icons/circle_green.svg');
}

main #lines .line .orange::before {
	background-image: url('/assets/img/icons/circle_orange.svg');
}

main #lines .line .red::before {
	background-image: url('/assets/img/icons/circle_red.svg');
}

main #lines .line .black::before {
	background-image: url('/assets/img/icons/circle_black.svg');
}

main #lines .line .quantityChooser .lessOrMore {
	display: inline;
	width: 30px;
	height: 30px;
	vertical-align: bottom;
	cursor: pointer;
}

main #lines .line .quantity {
	display: inline-block;
	width: 30px;
	font-size: 1.8rem;
	text-align: center;
	line-height: 30px;
}

main #lines .line .remove {
	width: 30px;
	height: 30px;
	cursor: pointer;
}

main #lines .line .quantityChooser .lessOrMore:hover,
main #lines .line .remove:hover {
	fill: #E8943D;
}

main #lines .line .loader {
	width: 25px;
	height: 25px;
	visibility: hidden;
}

main #lines .empty {
	font-size: 2rem;
	align-self: center;
}

main #lines .line.comment {
	margin: 20px auto 20px 0;
}

main .tileSwitch {
	float: right;
	width: min-content;
	padding: 30px;
	border: solid 4px #3A4980;
	border-radius: 10px;
	color: #3A4980;
	font-size: 1.8rem;
}

main .switch {
	width: max-content;
}

main .tileSwitch .switch button {
	margin-top: 20px;
}

main .tileSwitch .switch button.else {
	display: inline-block;
	margin-left: 30px;
}

#FetchMessage {
	font-size: 1.5rem;
}