@charset "utf-8";

main {
	width: 1600px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

main #carousel {
	width: 600px;
	margin: 0 50px;
}

/* Center the images vertically in the frame. */
.owl-carousel .owl-stage img {
	height: 600px;
	width: 600px;
	object-fit: contain;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	z-index: 10;
	width: 3rem;
	height: 3rem;
	background-color: #3A4980;
	border-radius: 50%;
}

.owl-carousel .owl-nav button.owl-prev {
	left: -50px;
}

.owl-carousel .owl-nav button.owl-next {
	right: -50px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
	background-color: #E8943D;
}

.owl-nav button span {
	display: inline-block;
	width: 100%;
	height: 100%;
	font-size: 3rem;
	line-height: 3rem;
	color: white;
}

.owl-theme .owl-nav .disabled {
	opacity: 0.5;
}

main #detail {
	width: 800px;
	padding: 0 50px;
}

main #detail .name {
	font-size: 2.5rem;
	color: #3A4980;
}

main #detail .description {
	margin-top: 20px;
	font-size: 1.5rem;
	color: #3A4980;
}

main #detail .EAN {
	margin-top: 20px;
	font-size: 1.3rem;
	color: #3A4980;
}

main #detail .green,
main #detail .orange,
main #detail .red,
main #detail .black {
	margin-top: 20px;
	font-size: 1.5rem;
}

main #detail .green {
	color: #008000;
}

main #detail .orange {
	color: #FF9900;
}

main #detail .red {
	color: #FF0000;
}

main #detail .black {
	color: #000000;
}

main #detail .green::before,
main #detail .orange::before,
main #detail .red::before,
main #detail .black::before {
	display: inline-block;
	background-size: 1.2rem 1.2rem;
	width: 1.2rem;
	height: 1.2rem;
	margin-right: 10px;
	line-height: 1.5rem;
	content: '';
}

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

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

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

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

main #detail button {
	margin-top: 20px;
}

main #detail button.else {
	margin-left: 30px;
}

#FetchMessage {
	font-size: 1.5rem;
}