/*
=> 	Submit */
.submit-bloc_base 
{
    width: 100%;
    margin-top: 15px;
    display: inline-block;
    text-align: center;
	position: relative;
}

.submit-btn_base
{
	display: inline-block; 
	cursor: pointer;
	height: 50px;
	font-size: 18px;
    border-style: none;
    text-align: center;
    margin: 5px 0px;
    font-weight: bold;
	opacity: 1;
	transform: scale(1);
	transition: opacity 250ms, transform 250ms;
	vertical-align: middle;
	
}
	/* Submit span (pas input) */
	.btn_submit .submit_span 
	{
		display: block;
		margin-top: 12px;
	}
	
.submit-btn_validate
{
	width: calc(100% - 75px);
	max-width: 250px;
	border-radius: 15px;
    border-width: 1px 6px;
    border-style: solid;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}	

.submit-btn_validate::before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% - 20px);
    max-width: 250px;
    height: 44px;
    left: 10px;
    top: 3px;
    z-index: -1;
}


.submit-btn_cancel
{
	position: absolute;
    top: 50px;
    left: calc(50% - 50px);
    width: 100px;
    padding-top: 10px;
    border-radius: 0px 0px 15px 15px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.submit-btn_cancel_top
{
	position: absolute;
    top: 5px;
    right: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
	.submit-btn_cancel:hover
	{
		opacity: 1;
	}
	

.cross-picture
{
	width: 30px;
}
.cross-svg_white_light
{
	fill: var(--gray-30);
}
.cross-svg_white_night
{
	fill: var(--gray-70);
}

.cancel_white_light
{
	background-color: var(--gray-70);
}
	.cancel_white_light:hover
	{
		background-color: var(--gray-90);
	}
.cancel_white_night
{
	background-color: var(--gray-30);
}
	.cancel_white_night:hover
	{
		background-color: var(--gray-10);
	}



	
/* Colors */
.submit_white_light
{
	background-color: var(--blue-30);
	color: var(--blue-70);
	border-color: var(--blue-70);	
}
	.submit_white_light:hover
	{
		background-color: var(--blue-10);
	}
.submit_white_night
{
	background-color: var(--blue-70);
	color: var(--blue-30);
	border-color: var(--blue-30);
}
	.submit_white_night:hover
	{
		background-color: var(--blue-90);
	}	
	
	
	
/*--- --- --- --- --- --- 
=> 	Onglets */
.onglet-bloc
{
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	font-size: 0.8em;
	cursor: pointer;
}

	.onglet-background
	{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		padding: 0px 30px;
		border-radius: 25px;
	}

	.onglet-bloc a
	{
		display: flex;
		align-items: center;
		padding: 10px 15px 5px 15px;
		font-weight: bold;
		user-select: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
	}

		.onglet-text 
		{
			margin-left: 10px;
		}
		
		.onglet-space
		{
			width: 10px;
		}
		
	@media (min-width:992px)
	{
		.onglet-bloc a
		{
			width: auto;
		}
	}	

	/* 	Colors */
	.onglet-color_white_light, .onglet-bloc_color_white_light
	{
		background: var(--blue-70);
		color: var(--gray-10);		
	}
		.onglet-color_white_light
		{
			border-bottom: solid 5px var(--blue-70);
		}
		.onglet-color_white_light:hover
		{
			color: var(--blue-10);
			border-bottom: solid 5px var(--blue-10);
		}
		.onglet-actif_white_light
		{
			background: var(--blue-90);
			color: var(--blue-10);
			border-bottom: solid 5px var(--blue-90);
		}
		
	.onglet-color_white_night, .onglet-bloc_color_white_night
	{
		background: var(--blue-30);
		color: var(--gray-90);		
	}
		.onglet-color_white_night
		{
			border-bottom: solid 5px var(--blue-30);
		}
		.onglet-color_white_night:hover
		{
			color: var(--blue-70);
			border-bottom: solid 5px var(--blue-70);
		}
		.onglet-actif_white_night
		{
			background: var(--blue-10);
			color: var(--blue-70);
			border-bottom: solid 5px var(--blue-10);
		}
	
	
/*--- --- --- --- --- --- 
=> 	Logout */
.logout-background 
{
	display: block;
	text-align: center;
    padding: 10px 10px 10px 20px;
    border-style: solid;
    border-radius: 45px;
    border-width: 1px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    transform: rotate(0deg);
    transition: transform 250ms;
    margin: auto;
    max-width: 230px;
    margin-top: 15px;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}	
	.logout-picture
	{
		width: 30px;
		vertical-align: middle;
		transform: rotate(0deg);
		transition: transform 250ms;
		position: absolute;
		left: 10px;
		top: 5px;
	}	

	.logout-text
	{
		vertical-align: middle;
	}
	
	/* Color */
	.logout_white_light, .logout_white_light .b
	{
		background: var(--background-red-71);
		color: var(--red-10);
		stroke: var(--red-10);
	}
		@keyframes flicker-logout_white_light
		{
			0% { opacity: 1; filter: drop-shadow(0 0 5px var(--red-10)); }
			25% { opacity: 0.8; filter: drop-shadow(0 0 8px var(--red-10)); }
			50% { opacity: 0.6; filter: drop-shadow(0 0 12px var(--red-10)); }
			75% { opacity: 0.8; filter: drop-shadow(0 0 8px var(--red-10)); }
			100% { opacity: 1; filter: drop-shadow(0 0 5px var(--red-10)); }
		}
		
		.logout_white_light:hover > svg
		{
			transform: rotate(1turn);
			animation: flicker-logout_white_light 0.8s infinite alternate;
		}
		
	
	.logout_white_night, .logout_white_night .b
	{
		background: var(--background-red-71);
		color: var(--red-10);
		stroke: var(--red-10);
	}
		
		@keyframes flicker-logout_white_night
		{			
			0% { opacity: 1; filter: drop-shadow(0 0 5px var(--red-10)); }
			25% { opacity: 0.8; filter: drop-shadow(0 0 8px var(--red-10)); }
			50% { opacity: 0.6; filter: drop-shadow(0 0 12px var(--red-10)); }
			75% { opacity: 0.8; filter: drop-shadow(0 0 8px var(--red-10)); }
			100% { opacity: 1; filter: drop-shadow(0 0 5px var(--red-10)); }
		}
		
		.logout_white_night:hover > svg
		{
			transform: rotate(1turn);
			animation: flicker-logout_white_night 1s infinite alternate;
		}
		
		
/* Tags */
.tag-bloc
{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;	
	margin-top: 20px;
    margin-bottom: 20px;
}


.tag-btn
{
	display: inline-block;
    padding: 10px 20px;
    margin: 5px;
	border-radius: 25px;
	font-size: 0.8em !important;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
	
	.tag-btn_img
	{
		width: 30px;
		vertical-align: middle;
	}
	
	.tag-btn_text
	{
		vertical-align: middle;
	}
			
	/* Color */
	.tag_white_light
	{
		background-color: var(--blue-55);
		color: var(--blue-30);
	}
		.tag_white_light:hover
		{
			background-color: var(--blue-70);
		}
		.tag_actif_white_light
		{
			background-color: var(--blue-70);
			color: var(--blue-10);	
			font-weight: bold;
		}

	.tag_white_night
	{
		background-color: var(--blue-45);
		color: var(--blue-70);	
	}
		.tag_white_night:hover
		{
			background-color: var(--blue-10);
		}
		.tag_actif_white_night
		{
			background-color: var(--blue-10);
			color: var(--blue-90);	
			font-weight: bold;
		}
		

/* Filtres */
.filtre-bloc
{
	display: block;
	text-align: center;
}

	.filtre-section
	{
		display: inline-block;
		min-width: 150px;
		max-width: 150px;
		text-align: left;
		margin: 5px 20px 10px 20px;
		vertical-align: top;
	}

		.filtre-btn
		{
			display: block;
			padding: 5px 10px;
			margin: 5px;
			font-size: 0.8em !important;
			user-select: none;
			-webkit-user-select: none;
			-moz-user-select: none;
			-ms-user-select: none;
			cursor: pointer;
		}

			.filtre-img
			{
				display: inline-block;
				width: 15px;
				vertical-align: middle;
				margin-right: 5px;
			}
			
			.filtre-btn_text
			{
				vertical-align: middle;
			}
					
			/* Color */
			.filtre_white_light
			{
				background-color: var(--blue-55);
				color: var(--blue-30);
			}
				.filtre_white_light:hover
				{
					background-color: var(--blue-70);
				}
				.filtre_actif_white_light
				{
					background-color: var(--blue-70);
					color: var(--blue-10);	
					font-weight: bold;
				}

			.filtre_white_night, .filtre_base_white_night, .filtre_male_white_night, .filtre_female_white_night, .filtre_secure_1_white_night, .filtre_secure_2_white_night
			{
				color: var(--gray-40);	
			}
				.filtre_actif_white_night, .filtre_white_night:hover, .filtre_base_actif_white_night, .filtre_base_white_night:hover
				{
					color: var(--gray-10);
					font-weight: bold;
				}
				
				.filtre_male_actif_white_night, .filtre_male_white_night:hover
				{
					color: var(--blue-45);
					font-weight: bold;
				}
				
				.filtre_female_actif_white_night, .filtre_female_white_night:hover
				{
					color: var(--red-45);
					font-weight: bold;
				}
				
				.filtre_secure_1_actif_white_night, .filtre_secure_1_white_night:hover, .filtre_secure_2_actif_white_night, .filtre_secure_2_white_night:hover
				{
					color: var(--blue-30);
					font-weight: bold;
				}
				

		
/* Page */
.page-bloc
{
	width: 100%;
	text-align: center;
	margin-top: 20px;
    margin-bottom: 20px;
}

	.page-btn_arrows
	{
		display: inline-block;
	}
		.page-btn_arrows img
		{
			width: 100%;
			cursor: pointer;
			padding: 0px 10px;
		}
	
	.page-btn_bloc
	{
		width: calc(100% - 100px);
		max-width: 500px;
		display: inline-block;
		vertical-align: middle;
	}
	
		.page-btn
		{
			user-select: none;
			-webkit-user-select: none;
			-moz-user-select: none;
			-ms-user-select: none;
		}
	
	.page-month
	{
		display: inline-block;
		vertical-align: middle;
		width: 200px;
		font-weight: bold;
	}
	
	
	/* Color */	
	.btn_page_actif_white_light
	{
		color : var(--orange-60);
		font-weight: bold;
	}
		.btn_page_white_light:hover
		{
			color : var(--orange-60);
		}
		
	.btn_page_actif_white_night
	{
		color : var(--orange-40);
		font-weight: bold;
	}	
		.btn_page_white_night:hover
		{
			color : var(--orange-40);
		}
		
		
/* Opérations comptes */
.operation-bloc
{
	
}

.operation-bloc_icons
{
	display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    vertical-align: bottom;
	margin: 10px 0px;
}
	.arrow_order
	{
		width: 30px;
	}

.operation-ligne
{
	display: inline-flex;
    margin: 10px 5px;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
    border-style: none none solid none;
    border-width: 2px;
	border-radius: 10px 10px 0px 0px;
    padding: 10px 10px 0px 0px;
	width: calc(100% - 90px);
}
	@media (min-width:992px)
	{
		.operation-ligne
		{
			width: calc(100% - 100px);
		}
	}


.operation-ligne_color_white_light:hover, .operation-ligne_color_actif_white_light
{
	background-color: var(--gray-0_40);
}

.operation-ligne_color_white_night:hover, .operation-ligne_color_actif_white_night
{
	background-color: var(--gray-100_40);
}

/* Lines */
.line-bloc
{
	
}

.line-bloc_icons
{
	display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    vertical-align: middle;
    margin: 10px 0px;
}

.line-ligne
{
	display: inline-flex;
    margin: 10px 0px;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
    padding: 10px 10px 0px 0px;
	width: calc(100% - 90px);
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

	@media (min-width:992px)
	{
		.line-ligne
		{
			width: calc(100% - 100px);
		}
	}

/* Actions */
.action-btn
{
	display: inline-block;
    cursor: pointer;
    padding: 10px 20px;
    margin: 10px 5px;
    font-size: 0.8em;
	font-weight: bold;
	border: none;
    border-radius: 5px;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}	

	.action-text
	{
		vertical-align: middle;
	}

	/* Color */
	.action_neutre_white_light
	{
		background: var(--background-blue-70);
		color: var(--blue-10);
	}
		.action_neutre_white_light:hover
		{
			background: var(--background-blue-70-reverse);
		}	
	.action_neutre_white_night
	{
		background: var(--background-blue-30);
		color: var(--blue-70);
	}
		.action_neutre_white_night:hover
		{
			background: var(--background-blue-30-reverse);
		}	
		
	.action_positif_white_light
	{
		background: var(--background-green-70);
		color: var(--green-10);
	}
		.action_positif_white_light:hover
		{
			background: var(--background-green-70-reverse);
		}	
	.action_positif_white_night
	{
		background: var(--background-green-30);
		color: var(--green-70);
	}
		.action_positif_white_night:hover
		{
			background: var(--background-green-30-reverse);
		}		
		
	.action_negatif_white_light
	{
		background:var(--background-red-70);
		color: var(--red-10);
	}
		.action_negatif_white_light:hover
		{
			background: var(--background-red-70-reverse);
		}	
	.action_negatif_white_night
	{
		background: var(--background-red-30);
		color: var(--red-70);
	}
		.action_negatif_white_night:hover
		{
			background: var(--background-red-30-reverse);
		}


		
	/* ARK */
	.action_ark_white_light
	{
		background: var(--background-negatif-white-light);
		color: #ffa8a8;
	}
		.action_ark_white_light:hover
		{
			background: var(--background-negatif-reverse-white-light);
			color: #ffcaca;
		}	
	.action_ark_white_night
	{
		background: linear-gradient(90deg, #001216 0%, #003e4d 5%, #001216 100%);
		color: #53deff;
	}
		.action_ark_white_night:hover
		{
			background: linear-gradient(90deg, #001216 0%, #003e4d 95%, #001216 100%);
			color: #53deff;
		}


/* Files */
.file-btn
{
	cursor: pointer;
	font-size: 15px;
    margin: 10px 0px;
	font-weight: bold;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}	

.file-btn::-webkit-file-upload-button
{
	cursor: pointer;
	border: none;
}

.file-color_white_light, .file-color_white_light::-webkit-file-upload-button
{
	color: var(--blue-55);
	background-color: transparent;
}
.file-color_white_night, .file-color_white_night::-webkit-file-upload-button
{
	color: var(--blue-30);
	background-color: transparent;
}



/* Categories */	
.bloc_categories
{
	
}	
	
.category-btn 
{
    cursor: pointer;
    display: inline-block;
    text-align: center;
    height: 150px;
    min-width: 160px;
    max-width: 180px;
    padding: 10px;
    margin: 10px;
    font-weight: bold;
    vertical-align: middle;
	border: solid 5px;
	border-radius: 25px;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
	.category-btn span
	{
		vertical-align: middle;
		z-index: 1;
	}
	
	.btn_categories_inset
	{
		
	}
	
	.btn_categories_outset
	{
		
	}
	
/* Color */	
.category-color_white_light
{
	border-color: var(--gray-30) var(--gray-60) var(--gray-60) var(--gray-30);
}
	.category-color_white_light:hover
	{
		border-color: var(--gray-60) var(--gray-30) var(--gray-30) var(--gray-60);
	}


.category-color_white_night
{
	border-color: var(--gray-70) var(--gray-90) var(--gray-90) var(--gray-70);
}
	.category-color_white_night:hover
	{
		border-color: var(--gray-90) var(--gray-70) var(--gray-70) var(--gray-90);
	}
	
	
/* Loading */
.loading-btn
{
	position: relative;
	width: 100%;
	padding: 5px 10px;
	z-index: 0;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.loading-text
{
	position: relative;
	z-index: 2;
}

.loading-move
{
	position: absolute;
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
	z-index: 1;
}

/* Color */
.loading-base-color_white_light
{
	background-color: var(--gray-40);
}
	.loading-base-color_white_night
	{
		background-color: var(--gray-70);
	}
	
.loading-success-color_white_light
{
	background-color: var(--green-30);
}
	.loading-success-color_white_night
	{
		background-color: var(--green-70);
	}

.loading-error-color_white_light
{
	background-color: var(--red-30);
}
	.loading-error-color_white_night
	{
		background-color: var(--red-70);
	}	
	
	
/* Answers */
.answer-btn 
{
    padding: 10px 20px 20px 20px;
    margin: 5px;
    cursor: pointer;
    display: inline-block;
    border-radius: 10px;
    min-width: 100px;
    text-align: center;
    border-style: solid;
    border-width: 2px;
	position: relative;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.answer-number 
{
    position: absolute;
    bottom: -10px;
    right: 20px;
    padding: 2px 10px;
    border-radius: 25px;
    min-width: 50px;
    font-size: 0.8em;
    border-style: solid;
    border-width: 2px;
}

/* Color */

.answer-color_white_light
{
	background-color: var(--blue-70);
	color: var(--blue-10);
}
	.answer-color_white_night
	{
		background-color: var(--blue-30);
		color: var(--blue-90);
	}
	
.answer-color_white_light:hover, .answer-color_actif_white_light
{
	background-color: var(--blue-90);
	color: var(--blue-10);
}
	.answer-color_white_night:hover, .answer-color_actif_white_night
	{
		background-color: var(--blue-10);
		color: var(--blue-90);
	}

	
.answer-number-color_white_light
{
	background-color: var(--blue-70);
	color: var(--blue-10);
}
	.answer-number-color_white_night
	{
		background-color: var(--blue-70);
		border-color:  var(--blue-70);
		color: var(--blue-10);
	}
	
/* Subject */	
.subject-btn
{
	display: block;
	padding: 5px 10px;
	margin: 10px 0px;
	border-style: solid;
	border-width: 1px;
	cursor: pointer;
	width: 100%;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.subject-left
{
	display: inline-block;
	width: 100%;
	vertical-align: top;
}
.subject-right
{
	display: inline-block;
	width: 100%;
	vertical-align: top;
	text-align: right;
}

	@media (min-width:992px)
	{
		.subject-left
		{
			width: 70%;
		}
		.subject-right
		{
			width: 30%;
		}
	}


.subject-icon
{
	display: inline-block;
	width: 50px;
}

.subject-svg_white_light
{
	fill: var(--gray-90);
	stroke: var(--gray-90);
}
.subject-svg_white_night
{
	fill: var(--gray-10);
	stroke: var(--gray-10);
}
	
.subject-color_white_light:hover
{
	background-color: var(--gray-10);
}
	.subject-color_white_night:hover
	{
		background-color: var(--gray-90);
	}
	
.subject-color_actif_white_light
{
	background-color: var(--gray-10);
}
	.subject-color_actif_white_night
	{
		background-color: var(--gray-90);
	}	

.view-picture
{
	width: 40px;
}
.view-svg_white_light
{
	fill: var(--gray-70)
}
.view-svg_white_night
{
	fill: var(--gray-30)
}

/* release */
.release-bloc_btns
{
	display: inline-block;
	width: 100%;
	padding: 0px 10px;
	vertical-align: top;
}
@media (min-width:992px)
{
	.release-bloc_btns
	{
		width: calc(50% - 20px);
	}
}
	
	
.release-bloc_text
{
	display: inline-block;
    width: calc(100% - 10%);
	padding: 0px 10px;
    margin: 0px 5%;
    vertical-align: top;
    border-style: none solid;
    border-width: 1px;
}
@media (min-width:992px)
{
	.release-bloc_text
	{
		width: calc(50% - 20px);
		margin: 0px;
		border: none;
	}
}

/* cgu */
.cgu-bloc_btns
{
	display: inline-block;
	width: 100%;
	padding: 0px 10px;
	vertical-align: top;
}



/* Copy */
.copy-bloc
{
    display: inline-block;
    width: 100%;
    text-align: center;
	padding: 80px 0px;
}
	.copy-btn
	{
		display: inline-block;
		font-size: 20px;
		padding: 10px;
		cursor: pointer;
		margin: auto;
		width: 200px;
		height: 40px;
		font-weight: bold;
		border-radius: 10px;
		position: relative;
		user-select: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
	}
	
	.copy-validate::before
	{
		content: "Copié !";
		font-size: 0.6em;
		font-style: italic;
		position: absolute;
		right: -5px;
		top: -10px;
	}
	
.copy-validate-color_white_light::before
{
	color: var(--green-70);
}
.copy-validate-color_white_night::before
{
	color: var(--green-30);
}


/* Format */
.format-btn
{
    padding: 5px;
    margin: 10px;
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: bottom;
    text-align: center;
    border-style: solid;
    border-width: 2px;
	cursor: pointer;
}

.format-btn_open
{
	border-radius: 10px 0px 0px 10px;
}

.format-btn_close
{
	border-radius: 0px 10px 10px 0px;
}

.format_p_white_light
{
	background-color: var(--pink-30);
}

.format_p_white_night
{
	background-color: var(--pink-30);
}




.redirect-btn
{
	display: inline-block;
	height: 40px;
	position: relative;
	margin: 10px 20px;
    padding: 10px 15px 0px 50px;
	border-radius: 20px 0px 0px 20px;
}

.redirect-text 
{
    font-size: 30px;
    font-weight: bold;
}

.redirect-img
{
	display: inline-block;
    width: 40px;
    height: 40px;
	position: absolute;
	left: 0px;
	top: 0px;
}

.redirect-img svg
{
	width: 100%;
	height: 100%;
}

	
	.redirect-color_white_light, .redirect-svg_white_light
	{
		fill: var(--blue-70);
		stroke: var(--blue-70);
		color: var(--blue-70);
	}	
		.redirect_actif-color_white_light, .redirect_actif-svg_white_light
		{
			fill: var(--blue-90);
			stroke: var(--blue-90);
			color: var(--blue-90);
		}
	
	.redirect-color_white_night, .redirect-svg_white_night
	{
		fill: var(--blue-45);
		stroke: var(--blue-45);
		color: var(--blue-45);
	}
		.redirect_actif-color_white_night, .redirect_actif-svg_white_night
		{
			fill: var(--blue-10);
			stroke: var(--blue-10);
			color: var(--blue-10);
		}
	
	.redirectAdmin-color_white_light, .redirectAdmin-svg_white_light
	{
		fill: var(--red-70);
		stroke: var(--red-70);
		color: var(--red-70);
	}
		.redirectAdmin_actif-color_white_light, .redirectAdmin_actif-svg_white_light
		{
			fill: var(--red-90);
			stroke: var(--red-90);
			color: var(--red-90);
		}
		
	.redirectAdmin-color_white_night, .redirectAdmin-svg_white_night
	{
		fill: var(--red-30);
		stroke: var(--red-30);
		color: var(--red-30);
	}
		.redirectAdmin_actif-color_white_night, .redirectAdmin_actif-svg_white_night
		{
			fill: var(--red-10);
			stroke: var(--red-10);
			color: var(--red-10);
		}
	
	.circle
	{
		transform-origin: center;
		transform-box: fill-box;
	}
	
	.redirect-btn:hover .circle
	{
		animation: spin 5s linear infinite;
	}
	
	@keyframes spin 
	{
		to 
		{
			transform: rotate(360deg);
		}
	}



.navigation-btn
{
	display: inline-block;
	height: 60px;
	position: relative;
	margin: 10px 20px;
    border: solid 1px;
    padding: 10px;
    border-radius: 10px;
}

.navigation-text 
{
    font-size: 30px;
    font-weight: bold;
}

.navigation-img
{
	display: inline-block;
    width: 40px;
    height: 40px;
}

.navigation-img svg
{
	width: 100%;
	height: 100%;
}