.flex-container {
	display: flex;
	flex-wrap: nowrap;
}

.desktop {
	display: none;
}

.programme-body-items {
	display: grid;
	align-content: start;
	height: 100%;
}

.subcontainers {
	padding: 2rem 1rem 0 1rem;
	display: grid;
	grid-template-rows: max-content 1fr;
}

.menu-button-container {
	display: grid;
    grid-row: 1;
    justify-items: center;
}

.menu-button-container img {
	max-width: 100%;
}

.menu-button-container span {
	font-weight: bold;
	font-size: .9rem;
}

.input-modal-mobile-menu {
	display: grid;
	grid-auto-columns: 1fr;
	height: 4rem;
	width: 100%;
	justify-items: center;
	background: white;
}

.input-modal-mobile-menu img {
	max-height: 100%;
}

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

.input_modal_field {
	display: grid;
	background-color: white;
	padding: 1rem;
	width: calc(100% - 2rem);
	border-radius: 15px;
	flex-direction: column;
	height: calc(100dvh - 2rem);
}

.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;
}

.move-right {
	transform: translateX(0) !important;
}

.row-suggestion:nth-child(even) {
	background-color: rgb(185, 255, 232);
}

.row-suggestion:hover {
	background-color: rgb(119, 255, 210);
}

.modal-menu {
	display: grid;
	overflow: visible;
	grid-auto-flow: column;
	align-items: center;
}

.modal-menu .close-button {
	justify-self: end;
	grid-column: initial;
}

.relation-search-suggestion-container {
	overflow: auto;
	display: grid;
	grid-template-rows: max-content;
}

@media only screen and (min-width: 433px) {
	.desktop {
		display: revert;
	}
	
	.hamburger-toggle {
		display: none;
	}
}