#save {
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 120px;
	height: 50px;
	text-align: center;
	background-color: hsl(0, 80%, 50%);
	color: white;
	padding: 0 1em;
	top: -50px;
	left: calc(50% - 60px - 1em);
	border-bottom-left-radius: 0.5em;
	border-bottom-right-radius: 0.5em;
	cursor: pointer;
	transition-duration: 0.5s;
}
#save.visible {
	top: 0;
}
#save > div:first-child {
	font-weight: 600;
}
#save > div:last-child {
	font-size: 13px;
}

.pentathlon-defis {
	display: flex;
	flex-wrap: wrap;
	gap: 2em;
}
.pentathlon-defis > * {
	flex-grow: 1;
	flex-shrink: 1;
	display: flex;
	flex-direction: column;
	gap: 1em;
	background-color: var(--color);
	color: white;
	text-decoration: none;
	border-radius: 1em;
	padding: 1em;
	align-items: center;
}

.pentathlon-defis .titre {
	font-size: 1.25em;
	font-weight: 700;
}
.pentathlon-defis .sTitre {
	font-size: 0.9em;
}
.pentathlon-defis .icones {
	display: flex;
	justify-content: center;
	gap: 0.5em;
}
.pentathlon-defis .icones img {
	display: block;
	width: 54px;
}

.pentathlon-inscription .ligne {
	border-top: 3px solid;
	position: relative;
}
.pentathlon-inscription .signet {
	position: absolute;
	width: 100px;
	height: 40px;
	left: calc(-100px - 1em);
	background-image: url(/images/signet.svg);
	top: 20px;
}
.pentathlon-inscription .complet {
	background-color: hsl(0, 80%, 50%);
	color: white;
	padding: 0.2em 0.5em;
	border-radius: 0.5em;
	margin-left: 1em;
}

