#footer {
	display: flex;
	padding-bottom: 104px;
	text-align: center;
	flex-direction: column;
	gap: 10px;
}
#footer .footer-info li {
	color: var(--Grayscale-400);
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
}
#footer .footer-link {
	display: flex;
	gap: 15px;
	justify-content: center;
}
#footer .footer-link li {
	position: relative;
}
#footer .footer-link li + li:before {
	position: absolute;
	top: 0;
	left: -8px;
	bottom: 0;
	width: 1px;
	height: 10px;
	margin: auto 0;
	background-color: var(--Grayscale-300);
	content: '';
}
#footer .footer-link li a {
	color: var(--Grayscale-400);
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
	text-decoration: underline;
}
