.desktop {
	display: none;
}

.modal {
	padding: 1rem;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	z-index: 20;
	justify-content: center;
	align-content: center;
	background: rgba(0, 0, 0, 0.3);
}

.modal-message-box {
	padding: 1rem 0.5rem;
	border-radius: 10px;
	background: white;
	display: grid;
	grid-template-columns: auto auto;
}

.hamburger-toggle {
	padding: .7rem;
	position: absolute;
	height: 3rem;
	aspect-ratio: 1;
	left: 100%;
	background: white;
	border-top-right-radius: 1rem;
	border-bottom-right-radius: 1rem;
}

.overlay {
	background-color: rgba(0, 0, 0, 0.3);
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100dvh;
	z-index: 3;
	align-content: center;
	justify-items: center;
}

.popup {
	background: white;
	border-radius: 1rem;
	padding: 1rem;
	display: grid;
	grid-auto-flow: row;
	width: 100%;
}

.popup > div {
	display: flex;
}

.search-format-buttons {
	display: grid;
	grid-auto-flow: column;
	gap: 1rem;
	padding: 1rem 0;
}

@media only screen and (min-width: 433px),
screen and (hover: hover) and (pointer: fine) {
	.desktop {
		display: revert;
	}

	.popup {
		width: 80%;
	}

	.hamburger-toggle {
		display: none;
	}
}