@charset "utf-8";
body {
	background-color: aliceblue;
}
.div-main-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1000px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	background-color: white;
	padding: 20px 40px;
	padding-bottom: 0;
	border: 1px dotted lightgrey;
	box-shadow: 0 8px 8px -4px lightgrey;
}
.div-title-banner {
	font-size: 2rem;
	font-weight: 600;
	line-height: 2;
	text-align: center;
}
.div-menu-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted lightgrey;
	margin-bottom: 10px;
	gap: 20px;
}
.div-content-container {
	flex: 1;
	padding: 10px;
}
.div-footer-wrapper {
	width: 100%;
	font-size: 0.8rem;
	line-height: 3;
	text-align: center;
	border-top: 1px dotted lightgrey;
}
.css-logo {
	width: 100px;
}
.css-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.summary-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
