.choices {
	display: flex;
	flex-direction: row;
	gap: min(100px, 5%);
	justify-content: center;
	padding: 0 5px;
}

.choices p {
	color: #f2f2f2;
  	background-color: rgba(0, 0, 0, 0.4);
	font-size: 35px;
	padding: 5px;
	border-radius: 50px;
	cursor: pointer;
	width: 200px;
	height: 55px;
	line-height: 55px;
	text-align: center;
}

.choices p:hover {
	cursor: pointer;
	background-color: #383C4B;
}

.choices p.active {
	cursor: pointer;
	background-color: #383C4B;
}

.content {
    display: flex;
	justify-content: center;
    margin-bottom: 20px;
}

.cartes {
	display: none;
	flex-direction: column;
    gap: 20px;
    width: 100%;
}

.cartes.active {
	display: flex;
}

.continent h2 {
	font-size: 28px;
	text-align: center;
}

.continent .liste {
	display: grid;
	gap: 10px;
	padding: 5px;
	grid-template-columns: repeat(auto-fit, min(450px, 100%));
	grid-auto-flow: dense;
	justify-content: center;
}

.carte {
	background-color: #383C4B;
    color: #f2f2f2;
	border-radius: 5px;
	padding: 1px 20px;
	cursor: pointer;
	display: none;
}

.carte:hover {
	background-color: #545762;
}

.carte.info {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
}

.carte.info span {
	padding: 16px 0;
	white-space: nowrap;
}

.carte.info :first-child {
	margin-right: auto;
	white-space: unset;
}

.carte.info img {
	height: 30px;
	width: auto;
}

.carte.active .arrow {
	transform: scale(-1, -1);
}

.carte.distribution {
	grid-column: 1 / -1;
}

.carte.distribution.active {
	display: block;
}

.subdivision {
	display: flex;
	width: min(425px, 100%);
	margin: 8px 0;
	justify-content: space-between;
}

.subdivision.title {
	font-weight: bold;
	margin: 16px 0;
}
