@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

/* GENERAL */
html
{
	height: 100%;
}
*
{
	box-sizing: border-box;
	outline: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
BODY
{
	height: 100%;
	margin: 0;
	font-family: 'Open Sans',sans-serif;
	font-size: 14px;
	color: #353535;
	background-color: #141414;
}
.window-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  margin-left: 10px;
  font-size: 12px;
  transition: background-color 0.2s;
  border-radius: 50%;
  padding: 5px;
  -webkit-app-region: no-drag;
}

.window-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.close-btn:hover {
  background-color: #ff4c4c;
}

/* Sidebar */
#titlebar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #1c202a;
	color: white;
	height: 30px;
	padding: 0 20px;
	-webkit-app-region: drag;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	z-index: 99999999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
#title {
  font-size: 18px;
  font-weight: 500;
  -webkit-app-region: no-drag;
}
::-webkit-scrollbar
{
  width: 10px;
}
::-webkit-scrollbar-thumb
{
  background-color: #1c202a;
  transition: all 0.5s ease;
}
::-webkit-scrollbar-thumb:hover
{
  background-color: #1e1e2d;
  transition: all 0.5s ease;
}
::-webkit-scrollbar-track
{
  background-color: #f1f1f1;
}
.flex-1
{
	width : 8.333333%;
}
.flex-2
{
	width : 16.666667%;
}
.flex-3
{
	width : 25%;
}
.flex-4
{
	width : 33.33%;
}
.flex-5
{
	width : 41.666667%;
}
.flex-6
{
	width : 50%;
}
.flex-7
{
	width : 58.333333%;
}
.flex-8
{
	width : 66.66%;
}
.flex-9
{
	width : 75%;
}
.flex-10
{
	width : 83.333333%;
}
.flex-11
{
	width : 91.666667%;
}
.flex-12
{
	width : 100%;
}
#loaderContentBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1c202a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1s ease;
}

#loaderContent
{
	transform: scale(2);
}
#loaderContent text {
    fill: none;
    stroke: #ffffff;
    stroke-width: 1px;
    font-family: Arial, sans-serif;
    font-size: 56px;
}

#progressBarContainer {
    width: 80%;
    height: 10px;
    background: #ffffff;
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
}

@keyframes stroke {
    from {
        stroke-dasharray: 0, 100;
    }
    to {
        stroke-dasharray: 100, 0;
    }
}

@keyframes stroke2 {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: 100;
    }
}

.content
{
	border-radius: 0.5rem;
	background-color: #fff;
	padding: 1rem;
	box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.05);
}
BODY > .content_page
{
	display: flex;
/*	height: 100%;*/
	min-height: 100vh;
}
BODY > .content_page > header
{
	position: fixed;
	background-color: rgba(255, 255, 255, 1);
	transition: flex-basis 0.3s ease;
	left: 0;
	top: 30px;
	z-index: 0;
	height: calc(100vh - 20px + -30px);
	margin: 10px;
	border-radius: 50vh;
	box-shadow: 0 0 #0000, 0 0 #0000, 0 0 3px rgb(60, 72, 88, 0.15);

	display: flex;
	align-items: center;
}
BODY > .content_page > header > .logo
{
	width: 100%;
	height: 70px;
	overflow: hidden;
	padding: 10px 30px;
	position: relative;
}
BODY > .content_page > header > .logo > div
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
BODY > .content_page > header > .logo img
{
	width: 100%;
}
BODY > .content_page > header > nav > ul
{
	list-style: none;
	margin: 0;
	padding: 0;
}
BODY > .content_page > header > nav > ul > li > a
{
	margin: 5px 0 5px 0;
	padding: 10px 15px;
	width: 100%;
	display: block;
	text-decoration: none;
	box-sizing: border-box;
	transition: background-color, font-size 0.2s ease;
	color: #1c202a;
	position: relative;
	display: flex;
	align-items: center;
}
BODY > .content_page > header > nav > ul > li > a > div
{
	display: none;
}
BODY > .content_page > header > nav > ul > li > a > i
{
	font-size: 15px;
}
BODY > .content_page > header > nav > ul > li > a > div
{
/*	display: inline-block;*/
	margin-left: 10px;
	height: fit-content;
}
BODY > .content_page > header > nav > ul > li > a.select, BODY > .content_page > header > nav > ul > li > a:hover
{
	color: #4E7CFF;
}
BODY > .content_page > .contenu
{
	flex-basis: 100%;
	transition: flex-basis 0.3s ease;
	background-color: #f8f8ff;
	overflow: hidden;
	padding-left: 75px;
	padding-top: 30px;
}
BODY > .content_page > header .reduction
{
	position: fixed;
	top: 4px;
	left: 228px;
	width: 39px;
	transition: 0.3s ease all;
	z-index: 99;
}
BODY > .content_page > .contenu > section
{
	margin: 15px;
	min-height: calc(100% - 30px);
	padding: 10px 20px 20px 0;
}
h1
{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	text-align: left;
	color: #000000;
	margin: 0;
	margin-bottom: 20px;
}
h2
{
	margin: 0;
	padding: 25px 0 10px;
	text-align: center;
	text-transform: uppercase;
	font-size: 26px;
	font-weight: normal;
	color: #010101;
}
h3
{
	margin: 5px 0;
	text-align: center;
	font-size: 14px;
	color: #010101;
}
a
{
	color: #696969;
}
a:active,
a:focus
{
	color: #fff;
}
.titre-article
{
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-size: 17px;
	line-height: 23px;
	text-align: justify;
	color: #000000;
	margin: 30px 0 0;
	padding: 0;
	text-transform: initial;
}
.notification
{
  margin: 20px auto;
	padding: 12px 20px;
	border-radius: 5px;
	font-size: 14px;
	text-align: center;
	color: #fff;
	width: 100%;
	text-align: left;
}
label.notification
{
	padding: 5px 10px;
	font-weight: normal;
	font-size: 12px;
}
.notification.validation
{
  background-color: #e4f6e6;
  color: #3abf3d;
}
.notification.erreur
{
  background-color: #f9dddc;
  color: #f76b5b;
}
.notification.information
{
  background-color: #d4e4fb;
  color: #3c8dfb;
}
.notification.alert
{
  background-color: #faf2dd;
  color: #e5b235;
}


/*TOASTMM*/
.notification-top {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 320px;
    z-index: 1000;
    perspective: 1000px; /* Ajout de perspective pour l'effet 3D */
    transition: transform 0.3s ease;
}
.notification-top:hover > div {
	display: block !important;
	transform: initial !important;
	position: relative;
	margin: 5px 0;
}
.notification-top:hover > div:first-child
{
	margin-top: 0px;
}
.notification-top:hover > div .close-toast
{
	z-index: 100;
}

.notif-top {
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px) translateX(10px) scale(0.9); /* Effet empilé initial */
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute; /* Modifié pour un positionnement absolu */
    pointer-events: auto;
    width: 100%;
}

.notif-top > div
{
	display: flex;
	flex: 1;
	align-items: center;
}

/* Appliquer des transformations de superposition */
.notif-top.show {
    opacity: 1;
}

.notification-top .notif-top:nth-child(1) {
    transform: translateY(0px) translateX(0px) scale(1);
    z-index: 99;
}

.notification-top .notif-top:nth-child(2) {
    transform: translateY(-10px) translateX(-5px) scale(0.80);
    z-index: 98;
}

.notification-top .notif-top:nth-child(3) {
    transform: translateY(-20px) translateX(-10px) scale(0.70);
    z-index: 97;
}

.notification-top .notif-top:nth-child(4) {
    transform: translateY(-30px) translateX(-15px) scale(0.60);
    z-index: 96;
}

.icone-notif {
    margin-right: 10px;
    font-size: 22px;
}

.text-notif {
    flex: 1;
    font-size: 16px;
    font-weight: bold;
}

.close-toast {
  background: none;
	font-size: 20px;
	color: #888;
	cursor: pointer;
	position: absolute;
	top: -3px;
	left: -15px;
	z-index: 99;
	background-color: #fff;
	border: 1px solid #1c202a;
	border-radius: 50vh;
}

.close-toast:hover {
    color: #333;
}

.notif-top.success {
    border-left: 5px solid #51a351;
}
.notif-top.validation {
    border-left: 5px solid #51a351;
}

.notif-top.error {
    border-left: 5px solid #bd362f;
}
.notif-top.erreur {
    border-left: 5px solid #bd362f;
}

.notif-top.warning {
    border-left: 5px solid #BD932F;
}

.notif-top.violet {
    border-left: 5px solid #932FBD;
}


/*BOUTIQUE*/
#filterFormFactures
{
	display: flex;
	background-color: #272f3f;
	margin: 5px 0;
	padding: 5px;
	color: #fff;
}
#filterFormFactures > div
{
	display: flex;
	align-items: center;
	gap: 10px;
}
#filterFormFactures > div input, #filterFormFactures > div select
{
	padding: 5px 10px;
	width: 100%;
	max-width: initial;
	border-radius: 0.5rem;
}
#filterFormFactures > .dateGroup input
{
	max-width: 100px;
}
#filterFormFactures > .Client
{
	flex: 1;
	margin-left: 15px;
	padding-left: 15px;
	border-left: 1px solid #fff;
}
#filterFormFactures > .Client select
{
	max-width: 190px;
}
#filterFormFactures .button
{
	all: unset;
	background-color: #0f1729;
	border-color: #0f1729;
	padding: 0.25rem 0.5rem;
	font-size: 0.765625rem;
	border-radius: 0.2rem;
	text-decoration: none;
	color: #fff;
}
.infoBottomTable, .infoBottomTable:hover
{
	background-color: #272f3f;
	color: #fff;
}
#exporter
{
	all: unset;
	background-color: #0f1729;
	border-color: #0f1729;
	padding: 0.25rem 0.5rem;
	font-size: 0.765625rem;
	border-radius: 0.2rem;
	text-decoration: none;
	color: #fff;
}

/*DATE*/
#formulaire .dateGroup
{
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 10px;
}
#formulaire .dateGroup input
{

}

.onglet_page ul
{
	margin: 0;
	padding: 0;
	list-style: none;
}
.onglet_page ul > li
{
	display: inline-block;
	padding: 5px 15px;
	background-color: #ebebeb;
	border-radius: 5px;
	transition: all 0.2s ease;
	cursor: pointer;
}
.onglet_page ul > li.select, .onglet_page ul > li:hover
{
	font-weight: bold;
	background-color: #141414;
	color: #fff;
	transition: all 0.2s ease;
}
.onglet_page ul > li > a
{
	text-decoration: none;
}
.onglet_page ul > li:hover > a
{
	color: #fff;
}
.contenu_page > div
{
	display: none;

	margin: 20px 0;
	border-radius: 5px;
}
.contenu_page > .select
{
	display: block;
}
.login
{
	background: url('../img/bg_login.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	width: 100%;
}
.login_left h2
{
	color: #fff;
	font-weight: bold;
	margin: 0;
	padding: 0;
}
.form_login
{
	width: 75%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.form_login label
{
	text-align: center;
	font-weight: bold;
	width: 100%;
	display: block;
	margin-bottom: 5px;
}
.form_login > form > div
{
	margin-bottom: 20px;
}
.login_left
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.login_form
{
	width: 575px;
	padding: 15px;
	top: 50%;
	left: 50%;
	position: absolute;
	height: 350px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
}
.login_form input[type='text'], .login_form input[type='password']
{
	margin: 2px 0;
	padding: 10px 15px;
	outline: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	border-radius: 10px;
	border: 1px solid #bad0f5;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.3);
	color: #000000;
	backdrop-filter: blur(11px);
}
.login_form h2
{
	text-transform: initial;
	margin-bottom: 40px;
	color: #1c202a;
}
.logo_login
{
	max-width: 300px;
	margin: 30px auto;
}
.form_login input[type="submit"]
{
	width: 100%;
	display: block;
	padding: 15px;
	background-color: #1c202a;
	transition: background-color ease 0.2s;
}
.form_login input[type="submit"]:hover
{
	background-color: #404040;
	transition: background-color ease 0.2s;
}

/* CSS BASE */
.center
{
	justify-content: center;
	text-align: center;
}
.middle
{
	display: flex!important;
	align-items: center!important;
}
.middle.center
{
	justify-content: center;
}
table
{
	width: 100%;
	margin-bottom: 1rem;
	color: #212529;
	border-collapse: collapse;
	overflow: hidden;
}
table tbody tr
{
	border-bottom: 1px solid #f7f7f7;
}
table tbody tr.alert
{
	background-color: #f4c22b;
}
table tbody tr:hover
{
	background-color: #f7f7f7;
}
table th,
table td
{
	padding: 0.75rem;
	vertical-align: middle;
}

table thead th
{
	vertical-align: bottom;
	border-bottom: 1px solid #e7edf3;
	border-top: 1px solid #e7edf3;
	text-align: left;
}

table tbody + tbody
{
	border-top: 2px solid #dee2e6;
}

table-striped tbody tr:nth-of-type(odd)
{
	background-color: rgba(0, 0, 0, 0.05);
}

table-hover tbody tr:hover
{
	background-color: rgba(0, 0, 0, 0.075);
}
table .action_table
{
	width: 0;
	white-space: nowrap;
}
table .action_table
{
	width: 0;
	white-space: nowrap;
}
.btn_table
{
	padding: 8px;
	background-color: #141414;
	border-radius: 10px;
	color: #fff;
	font-weight: bold;
}
table .action_btn_table
{
	text-align: center;
	width: 0;
	white-space: nowrap;
}
#position_produit td.position
{
	display: flex;
	gap: 5px;
	align-items: center;
}
#position_produit td.position > input
{
	max-width: 51px;
}
#position_image ul
{
	padding: 0;
	margin: 0;
}
#position_image li
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f7f7f7;
	padding: 10px;
	margin-bottom: 5px;
}

#position_image .position-container
{
	display: flex;
	align-items: center;
	gap: 20px;
}
#position_image .position-container input
{
	width: 51px;
	text-align: center;
}

/*MESSAGERIE*/
.messagerie
{
	height: calc(100vh - 215px);
	display: flex;
	background-color: #f1f0f0;
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.messagerie > .contenu_contact
{
	flex-basis: 25%;
	background-color: #fff;
	height: 100%;
	overflow: auto;
	border-right: 1px solid #cecece;
}
.messagerie > .contenu_contact > ul
{
	list-style: none;
	margin: 0;
	padding: 0;
}
.messagerie > .contenu_contact > ul .contact
{
	display: flex;
	padding: 15px;
	border-bottom: 1px solid #cecece;
	align-items: center;
}
.messagerie > .contenu_contact > ul > .nonlu
{
	background-color: #ededed;
}
.messagerie > .contenu_contact > ul > li > a
{
	text-decoration: none;
}
.messagerie > .contenu_contact > ul .contact > .img_contact
{
	flex-basis: 15%;
}
.messagerie > .contenu_contact > ul .contact > .img_contact img
{
	width: 100%;
	border-radius: 50vh;
}
.messagerie > .contenu_contact > ul .contact > .info_contact
{
	padding: 0 0 0 15px;
	flex-basis: 85%;
}
.messagerie > .contenu_contact > ul .contact > .info_contact > div
{
	flex-basis: 85%;
}
.messagerie > .contenu_contact > ul .contact > .info_contact > .contact_info > div
{
	display: flex;
	align-items: top;
}
.messagerie > .contenu_contact > ul .contact > .info_contact > .contact_info > div > div:first-child
{
	flex-basis: 70%;
}
.messagerie > .contenu_contact > ul .contact > .info_contact > .contact_info > div > div:last-child
{
	flex-basis: 60%;
}
.messagerie > .contenu_contact > ul .contact > .info_contact > .contact_info > div > .time
{
	font-size: 11px;
	text-align: right;
	color: #1c202a;
}
.messagerie > .contenu_contact > ul .contact > .info_contact > .contact_info
{
	flex-basis: 50%;
}
.messagerie > .contenu_contact > ul .contact > .info_contact > .contact_info .nom_contact
{
	display: block;
	font-weight: bold;
	color: #1c202a;
}
.messagerie > .contenu_contact > ul .contact > .info_contact .sujet
{
	font-style: italic;
	color: #979797;
}
.messagerie > .contenu_contact > ul .contact > .info_contact .nom_form
{
	margin-top: 10px;
	margin-bottom: 10px;
}
.messagerie > .contenu_contact > ul .contact > .info_contact .nom_form > label
{
	padding: 5px 10px;
	border-radius: 10px;
	color: #1c202a;
	background-color: #ebf3fe;
	font-size: 10px;
}
.messagerie > .contenu_message
{
	flex-basis: 75%;
}
.contenu_message > .content_msg > .info_message
{
	padding: 15px;
	background-color: #fff;
	display: flex;
}
.contenu_message > .content_msg > .info_message > div
{
	flex-basis: 50%;
}
.contenu_message > .content_msg > .info_message > div:first-child > .nom_prenom
{
	font-weight: bold;
}
.contenu_message > .content_msg > .info_message > div:first-child > .sujet
{
	font-style: italic;
	color: #979797;
}
.contenu_message > .content_msg > .info_message > div:last-child
{
	text-align: right;
}
.contenu_message > .content_msg > .info_message > div:last-child > .heure
{
	font-weight: bold;
}
.contenu_message > .content_msg > .message
{
	margin: 15px;
	background-color: #fff;
	min-height: 67vh;
	padding: 15px;
}

.preview
{
	height: 150px;
}
.preview > a > img
{
	height: 100%;
}

/*POPUP*/
#popup
{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	display: none;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(3px) saturate(0);
}

#popup-background
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.7;
}

#popup img
{
	display: block;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#popup .contenu-popup
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	background-color: #fff;
	transform: translate(-50%, -50%);
	border-radius: 0.3rem;
	border: 1px solid #e9ebec;
	box-shadow: 0 3px 3px rgba(56, 65, 74, 0.1);
	transition: transform .3s ease-out,-webkit-transform .3s ease-out;
	max-width: 500px;
}
#popup .popup_content
{
	background-color: #fff;
	z-index: 99;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 45%;
	transform: translate(-50%, -50%);
	padding: 15px;
	border-radius: 15px;
}
#popup .contenu-popup .popup-header
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	padding-top: 10px;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	border-bottom: 1px solid #cecece;
	margin-bottom: 15px;
}
#popup .contenu-popup .title-header
{
	font-size: 1.015625rem;
	line-height: 1.5;
	color: #0f1729;		
	font-weight: bold;
}
#popup .contenu-popup .close-header span
{
	text-decoration: none;
	display: inline-block;
	width: 33px;
	height: 33px;
	border-radius: 50%;
	background-color: #fff;
	text-align: center;
	line-height: 33px;
	color: #0f1729;
	font-size: 24px;
	transition: all ease 0.5s;
	font-family: initial;
} 
#popup .contenu-popup .popup-section
{
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
#popup .contenu-popup .popup-footer
{
	align-items: center;
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid #cecece;
	margin-top: 15px;
}

@keyframes fadeIn
{
	0% {transform: translate(-50%, -60%); opacity: 0;}
	100% {transform: translate(-50%, -50%); opacity: 1;}
}

/*FORMULAIRE*/
fieldset
{
	margin : 0;
	padding : 0;
	border : 0;
}
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
input[type='number'],
input[type='calendar'],
select,
textarea
{
	margin: 2px 0;
	outline: none;
	font-family: 'Open Sans', sans-serif;
	border: 1px solid rgba(203, 213, 225, 0.6);
	font-size: 0.875rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	border-radius: 0.375rem;
	width: 100%;
}
input[type='color']
{
	margin: 2px 0;
	padding: 5px;
	outline: none;
	font-family: 'Open Sans',sans-serif;
	font-size: 14px;
	border-radius: 15px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border: 1px solid transparent;
	width: 100%;
	min-height: 35px;
}
textarea
{
	padding : 6px;
}
input[type='text']:focus,
input[type='email']:focus,
input[type='tel']:focus,
input[type='password']:focus,
input[type='number']:focus,
input[type='calendar']:focus,
select:focus,
textarea:focus
{
	border : 1px solid #51b1e7;
	outline : none;
}
input.error_form, textarea.error_form, select.error_form
{
	border: 1px solid #f44336;
	font-weight: bold;
	color: #7d7d7d;
}
button
{
	all: unset;
	background-color: #0f1729;
	border-color: #0f1729;
	padding: 0.25rem 0.5rem;
	font-size: 0.765625rem;
	border-radius: 0.2rem;
	text-decoration: none;
	color: #fff;
}
form > fieldset
{
	display: block;
	gap: 20px;
}
form > fieldset > div > label, form > fieldset > div > .label
{
	font-weight: bold;
	color: rgb(185 185 185);
	line-height: 1.25rem;
}
form > fieldset > .articles > div:not(.label)
{
	width: 100%;
}
#formulaire > fieldset > div:not(:first-child)
{
	padding-top: 1rem;
}
#formulaire > fieldset > div > div
{
	width: 100%;
}
#formulaire > fieldset > div > .btn_input
{
	display: flex;
	align-items: center;
	gap: 10px;
}
.articles > div > .article
{
	padding: 10px;
	border: 1px solid #1c202a;
	border-radius: 10px;
	margin-bottom: 20px;
}
.articles > div > .article > label
{
	width: 100%;
	background-color: #141414;
	display: flex;
	color: #fff;
	padding: 10px;
	font-weight: bold;
	margin-bottom: 10px;
	align-items: center;
}
.articles > div > .article > label > div:first-child
{
	flex-basis: 100%;
}
.articles > div > .article > label > div:nth-child(2)
{
	background-color: #323232;
	padding: 5px 10px;
	margin: 0 5px;
	border-radius: 5px;
}
.articles > div > .article > label > div:nth-child(3)
{
	background-color: #323232;
	padding: 5px 13px;
	margin: 0 5px;
	border-radius: 5px;
}
.articles > div > .article > div > input
{
	margin-bottom: 10px;
}
.btn_add_article
{
	text-align: center;
	width: 100%;
}
.btn_add_article > .add_article
{
	background-color: #141414;
	border: 0;
	padding: 7px 20px;
	border-radius: 10px;
	color: #fff;
	margin: 20px 0;
	cursor: pointer;
}
form > fieldset:not(:first-child) > div
{
	margin-top: 30px;
}
form > fieldset textarea
{
	resize: vertical;
}
form > .btn
{
	text-align: center;
}
form .image-uploader, form .image-uploaders
{
	width: 100%;
}
form .upload-container
{
	border: 2px dashed #ccc;
	padding: 20px;
	width: 100%;
	height: 200px;
	text-align: center;
}
form input[type="submit"]
{
	background-color: #141414;
	border: 0;
	padding: 7px 20px;
	border-radius: 10px;
	color: #fff;
	margin: 20px 0;
}
.onoffswitch {
    position: relative; width: 90px !important;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #999999; border-radius: 20px;
}
.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 30px;
    font-size: 14px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    box-sizing: border-box;
}
.onoffswitch-inner:before {
    content: "ON";
    padding-left: 10px;
    background-color: #0f1729; color: #FFFFFF;
}
.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 10px;
    background-color: #EEEEEE; color: #999999;
    text-align: right;
}
.onoffswitch-switch {
    display: block;
	width: 16px;
	margin: 9px;
	background: #FFFFFF;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 56px;
	border: 2px solid #999999;
	border-radius: 50rem;
	transition: all 0.3s ease-in 0s;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
}
#datedropper
{
	position: fixed;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.box_raccourcis > ul
{
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
.box_raccourcis li
{
	background-color: #fff;
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
	transition: all .4s;
}
.box_raccourcis li:hover
{
	transform: translateY(calc(-1.5rem / 5));
	box-shadow: 0 5px 10px rgba(30,32,37,.12);
	transition: all .4s;
}
.box_raccourcis > ul a
{
	height: 70px;
	width: 115px;
	display: block;
	text-decoration: none;
	color: #7B7B7B;
	position: relative;
}
.box_raccourcis > ul a > div
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
.box_raccourcis > ul a > div > span
{
	display: block;
	font-size: 37px;
}

#cards
{
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-top: 20px;
}
#cards > div
{
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(56, 65, 74, 0.15);
}
#cards .card-header
{
	padding: 0 15px;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
}
#cards .card-subheader
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #f9fbfc;
}
#cards .card-subheader > div
{
	flex-basis: calc(100% / 4);
	text-align: center;
	border-right: 1px dashed #e9ebec;
	border-top: 1px dashed #e9ebec;
	border-bottom: 1px dashed #e9ebec;
}
#cards .card-subheader > div:first-child
{
	border-left: 0;
}
#cards .card-subheader > div:last-child
{
	border-right: 0;
	border-left: 0;
}
#cards .card-subheader h5
{
	font-size: 18px;
	padding: 10px 0;
	margin: 0;
	color: #495057;
}
#cards .card-subheader p
{
	padding-bottom: 10px;
	margin: 0;
	color: #878a99;
}

#position_image ul
{
	padding: 0;
	margin: 0;
}
#position_image li
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f7f7f7;
	padding: 10px;
	margin-bottom: 5px;
}

#position_image .position-container
{
	display: flex;
	align-items: center;
	gap: 20px;
}
#position_image .position-container input
{
	width: 51px;
	text-align: center;
}

@media screen and (max-width:414px)
{
	BODY > .content_page > header
	{
		display: none;
		transition: all ease 0.5s;
		width: 0%;
	}
	BODY > .content_page > .contenu
	{
		width: 100%;
		word-break: break-word;
		flex-basis: 100%;
	}
	.nav-toggle
	{
		left: 10px;
	}
	.nav-top
	{
		padding: 15px 15px 15px 65px;
	}
	BODY > .content_page > header.reduc
	{
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		background-color: rgba(30, 30, 30,0.9);
		transition: all ease 0.5s;
		backdrop-filter: blur(5px) saturate(100%);
	}
	BODY > .content_page > header.reduc > nav > ul > li > a
	{
		color: #fff;
		text-align: left;
	}
	BODY > .content_page > header.reduc > nav > ul > li > a > div
	{
		display: inline-block;
	}
	form > fieldset > div
	{
		display: block;
	}
	.eleve_box
	{
		display: block;
	}
	.eleve_box > div
	{
		width: 100%;
	}

	.contenu_page > div
	{
		overflow: auto;
	}

	table
	{
		overflow-x: scroll;
		width: 100vh;
	}

	#table_eleve > thead > tr > th
	{
		white-space: nowrap;
	}
}
