body {
	overflow-x: hidden;
}

:root {
	--header-height: 70px;
}

#header {
	width: 100%;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: solid 1px black;
	box-shadow: 0px 1px 1px #000;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 10;
	background: #fff;
}

#header .logo-wrapper {
	height: 100%;
	display: flex;
	align-items: center;
}

#header img {
	height: 90%;
}

.contents {
	margin-top: 30px;
}

.header button#show-sidebar {
	position: absolute;
	left: 16px;
}

.header button#show-sidebar:focus {
	outline: none;
}

.header button#show-sidebar i {
	font-size: 40px;
}

.header .group-btn-right {
	position: absolute;
	right: 16px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.header .group-btn-right button {
	background: none;
	border: none;
	position: relative;
	cursor: pointer;
	padding: 8px;
}

.header .group-btn-right button i {
	font-size: 40px;
	color: #000;
}

.cart-count {
	position: absolute;
	top: 0;
	right: 0;
	background: #ff0000;
	color: white;
	border-radius: 50%;
	min-width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: '-apple-system';
	font-weight: normal;
	font-size: 14px;
	padding: 2px;
}

@media (min-width: 576px) {
	#header {
		height: 150px;
	}
	.header button#show-sidebar i {
		font-size: 68px;
	}

	.header button#show-sidebar {
		position: absolute;
		left: 40px;
	}

	.header .group-btn-right button i {
		font-size: 68px;
	}
	.cart-count {
		min-width: 25px;
		height: 25px;
	}
}

@media (max-width: 575px) {
	#header {
		height: 60px;
	}

	.header button#show-sidebar {
		left: 12px;
	}

	.header button#show-sidebar i,
	.header .group-btn-right button i {
		font-size: 24px;
	}

	.cart-count {
		min-width: 16px;
		height: 16px;
		font-size: 10px;
	}

	.header .group-btn-right {
		right: 12px;
		gap: 0;
	}

	#header img {
		height: 80%;
	}
}

@media (min-width: 576px) and (max-width: 1024px) {
	#header {
		height: 80px;
	}

	.header button#show-sidebar {
		left: 20px;
	}

	.header button#show-sidebar i,
	.header .group-btn-right button i {
		font-size: 32px;
	}

	.header .group-btn-right {
		right: 20px;
		gap: 16px;
	}
}

@media (min-width: 1025px) {
	#header {
		height: 100px;
	}

	.header button#show-sidebar {
		left: 40px;
	}

	.header button#show-sidebar i,
	.header .group-btn-right button i {
		font-size: 40px;
	}

	.header .group-btn-right {
		right: 40px;
		gap: 20px;
	}
}

nav.sidebar {
	--width: 250px;

	position: fixed;
	overflow-x: hidden;
	overflow-y: overlay;
	box-sizing: border-box;
	padding-top: 30px;
	top: 0;
	left: calc(-1 * var(--width));
	width: var(--width);
	min-height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	background-color: #f0f0f0;
	transition: left 0.3s;
	z-index: 100;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
		'Segoe UI Symbol', 'Noto Color Emoji';
}

.sidebar .sidebar-title {
	font-size: 20px;
}

.sidebar .sidebar-content {
	padding: 10px;
}

.sidebar li {
	height: 48px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 12px;
	overflow: hidden;
	padding-left: 10px;
}

.sidebar h3 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 30px;
	overflow: hidden;
}

#sidebar-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	height: calc(var(--vh, 1vh) * 100);
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 90;
	overflow: hidden;
}
.sidebar-open {
	overflow: hidden;
	height: 100%;
}
.sidebar-open nav.sidebar {
	left: 0;
}
.sidebar-open #sidebar-overlay {
	width: 100%;
}

@media (min-width: 768px) {
	.phone .tel {
		width: 6em !important;
	}
}

@media (max-width: 767px) {
	.phone .tel {
		width: 4em !important;
	}
}

@media print {
	#header {
		position: static !important;
		top: 0 !important;
		left: 0 !important;
	}
}
