.required:not(.showcontent):after {
    color: #c91834;
    content: "*";
    display: inline-block;
	margin-left: 5px;
}

.container2 > div {
	height: 100vh;
}

.cursor {
	cursor: pointer;
}

.lien {
	color: #008ecc;
}

.loader {
	border: 2px solid transparent;
	border-top: 2px solid #3a3a3a;
	border-bottom: 2px solid #3a3a3a;
	border-left: 2px solid #3a3a3a;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	display: inline-block;
	width: 25px;
	height: 25px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

[disabled] {
	cursor: not-allowed;
}

.alert {
	background-color: rgb(255, 229, 202);
	border-top-left-radius: 0.3rem;
	border-top-right-radius: 0.3rem;
	border-bottom-left-radius: 0.3rem;
	border-bottom-right-radius: 0.3rem;
	padding: 15px;
}

body {
	--main-background-color: #cc3333;
}

.wh100 {
	width: 100%;
	height: 100%;
}

.strike > * {
	text-decoration: line-through;
}