.side-by-side {
	display: flex;
	align-content: center;
	height: calc(100vh - 2rem);
	padding: 1rem;
}

.detail-side {
	width: 50%;
	height: 100%;
	display: grid;
	gap: 1rem;
	justify-content: center;
	align-content: center;
}

.logo-side {
	padding: 1rem;
	width: 50%;
	height: calc(100% - 2rem);
	display: grid;
	justify-content: center;
	align-content: center;
	background: linear-gradient(310deg, rgb(255, 133, 0), rgb(251, 207, 51));
	border-radius: 0.75rem;
	gap: 1rem;
}

.logo-container {
	display: grid;
	width: 100%;
	height: 100%;
	align-content: center;
	justify-content: center;
}

.logo-row {
	width: 100%;
	height: 100%;
	grid-column: 1;
	grid-row: 1;
	display: grid;
	align-content: center;
	justify-items: center;
}

.logo-img {
	width: 100%;
	max-width: 31.25rem;
}

.logo-note {
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
}

.logo-note-subtitle {
	color: white;
	font-size: 1rem;
	font-weight: bold;
	text-wrap: none;
}

.lines-img {
	width: 100%;
	height: 100vh;
}

.input-box {
	border: 0.0625rem solid rgb(210, 214, 218);
	padding: 0.5rem;
	border-radius: 0.5rem;
	box-sizing: border-box;
	height: 3rem;
	width: 100%;
}

.popover {
	margin: revert;
	border: 0.1rem solid black;
	border-radius: 0.5rem;
	padding: 1rem;
	height: 20rem;
	width: 12rem;
	box-shadow:
		0 1px 3px 0 rgba(0, 0, 0, 0.1),
		0 1px 2px -1px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.popoverInner {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.popoverText {
	font-size: 3rem;
}

.popoverSubText {
	font-size: 1rem;
}

.popoverImage {
	height: 5rem;
}

.popoverButton {
	background-image: linear-gradient(
		310deg,
		rgb(255, 133, 0),
		rgb(251, 207, 51)
	);
	color: white;
	border-radius: 0.5rem;
	border: 0px;
	font-weight: bold;
	cursor: pointer;
	text-align: center;
	transition: 150ms ease-in;
	font-size: 0.875rem;
	padding: 0.5rem;
	align-content: center;
	text-decoration: none;
	width: 100%;
	align-self: flex-end;
}
