*{
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	height: 100vh;
}

#content{
	display: grid;
	grid-template-columns: 1fr 4fr;
	height: 100%;
	width: 100%;
	grid-template-areas: "list map";
}

rendez-vous{
	display: grid;
	grid-template-rows: 45px 1fr;
	padding: 10px;
	gap: 20px;
	grid-area: list;
	overflow-y: scroll;
}

#map{
	grid-area: map;
}

#nuits-amour{
	display: flex;
	flex-direction: column;
	max-height: 100%;
	overflow-y: auto;
	gap: 20px;
}

nuit-amour > label{
	padding-top: 10px;
}

echoppe-infos{
	cursor: pointer;
	display: grid;
	grid-template-columns: 20px auto;
	grid-column-gap: 10px;
}

.places-list{
	overflow-y: auto;
	max-height: 50vh;
	display: grid;
	grid-row-gap: 10px;
}

.hidden{
	display: none;
}

@media screen and (max-width : 600px){
	#content{
		display: grid;
		grid-template-rows: 2fr 1fr;
		grid-template-columns: 1fr;
		grid-template-areas:
			"map"
			"list";
		height: 100%;
		width: 100%;
	}

}
