.header {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 60px;
	background: white;
	padding: 0 10px;
}
.header img {
	object-fit: contain;
	width: 30px;
}
.header .item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header .logo {
	position: absolute;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 14px;
}
.header .logo img {
	object-fit: center;
	height: 100%;
	width: 100%;
}
.header  .logo-on {
	animation: header-logo-on 0.4s both 1 ease-in-out;
}
.header  .logo-off {
	animation: header-logo-off 0.4s both 1 ease-in-out;
}
@keyframes header-logo-on {
	0% {
		opacity: 0;
		display: flex;
	}
	100% {
		opacity: 1;
	}
}
@keyframes header-logo-off {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		display: none;
	}
}
.header .search-bar {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 0 10px;
	flex: 1;
}
.header .search-bar .unit {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border: 1px solid transparent;
	padding: 8px;
}
.header .search-bar .unit input {
	width: 100%;
	outline: none;
	border: none;
	flex: 1;
	opacity: 0;
	/* display: none; */
}
.header .search-bar .input-unit-on {
	animation: header-input-unit-on 0.4s both 1 ease-in-out;
}
.header .search-bar .input-unit-off {
	animation: header-input-unit-off 0.4s both 1 ease-in-out;
}
.header .search-bar .input-on {
	animation: header-input-on 0.4s both 1 ease-in-out;
}
.header .search-bar .input-off {
	animation: header-input-off 0.4s both 1 ease-in-out;
}
@keyframes header-input-unit-on {
	0% {
		border-color: transparent;
	}
	100% {
		border-color: black;
	}
}
@keyframes header-input-unit-off {
	0% {
		border-color: black;
	}
	100% {
		border-color: transparent;
	}
}
@keyframes header-input-on {
	0% {
		opacity: 0;
		display: block;
	}
	100% {
		opacity: 1;
	}
}
@keyframes header-input-off {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		display: none;
	}
}
.footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	background: black;
	.row {
		display: flex;
		width: 100%;
	}
}
.footer img {
	object-fit: contain;
}
.footer .item {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 40px;
	padding: 10px 0;
}
.footer .item-on {
	background: gray;
}
.footer .item .icon {
	position: relative;
	height: 30px;
}
.footer .item img {
	height: 100%;
	object-fit: contain;
	filter: invert(100%);
}
.footer .item svg {
	stroke:white;
	height: 30px;
}
.footer .item .label {
	color: white;
	font-size: 0.4rem;
}
.footer .divider {
	height: 100%;
	width: 1px;
	background: rgba(255, 255, 255, 0.2);
}
.footer .badge {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: -5px;
	right: -10px;
	width: 20px;
	height: 20px;
	font-size: 10px;
	border-radius: 20px;
	background: white;
	color: black;
	scale: 0.7;
}
.sidemenu {
	position: fixed;
	top: 60px;
	left: 0;
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0 20px 20px 20px;
	width: 100%;
	height: calc(100% - 60px);
	overflow: scroll;
	background: white;
	z-index: 1000;
}
.sidemenu .item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	line-height: 2rem;
	font-size: 0.7rem;
}
.sidemenu .label {
	font-size: 0.8rem;
	font-weight: bold;
	line-height: 2.8rem;
	margin-top: 10px;
}
.sidemenu .cards {
	display: flex;
	gap: 20px;
}
.sidemenu .cards div {
	width: 40px;
	height: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.sidemenu .cards img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}
.sidemenu .sns-ig {
	width: 30px;
	height: 30px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.sidemenu .sns-ig img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}