/*couleur dominante : 0088cc*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');

*
{
	outline: none;
	box-sizing: border-box;
}

/* --Style par défaut-- */
body
{
	background-color: #f3f5f7;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	
	margin: 0;
	padding: 0;
}
html,body
{
	height: 100%;
	margin: 0;
	padding: 0;
}
::-webkit-scrollbar
{
	width: 5px;
	height: 5px;
}
::-webkit-scrollbar-thumb
{
	background: #2e3540;
}
::-webkit-scrollbar-track
{
	background: #f3f5f7;
}
.center
{
	text-align: center;
}
.left
{
	text-align: left;
}
.right
{
	text-align: right;
}
.middle
{
	display: inline-flex!important;
	align-items: center;
}
.row
{
    margin: 0 -10px;
    padding: 0;
    font-size: 0;
    list-style: none;
}

.row.no-auto-width
{
    display: inline-block;
}

.row > *
{
    display: inline-block;
    margin: 0;
    padding: 0 10px;
    font-size: 15px;
    /*font default*/
    vertical-align: top;
}

.row > .col-1
{
    width: 8.333333%;
}

.row > .col-2
{
    width: 16.666667%;
}

.row > .col-3
{
    width: 25%;
}

.row > .col-4
{
    width: 33.33%;
}

.row > .col-5
{
    width: 41.666667%;
}

.row > .col-6
{
    width: 50%;
}

.row > .col-7
{
    width: 58.333333%;
}

.row > .col-8
{
    width: 66.66%;
}

.row > .col-9
{
    width: 75%;
}

.row > .col-10
{
    width: 83.333333%;
}

.row > .col-11
{
    width: 91.666667%;
}

.row > .col-12
{
    width: 100%;
}

.row > .bottom
{
	vertical-align: bottom;
}
.center.middle
{
	justify-content: center!important;
}
.left.bottom
{
	justify-content: left!important;
}
.right.bottom
{
	justify-content: right!important;
}
.input-group
{
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    /*width: 100%;*/
}
span.input-group
{
	display: inline-flex;
}
.input-group > *:not(:last-child)
{
	-webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%!important;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > *:last-child
{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    margin-left: -1px;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 0 3px 3px 0;
    min-width: 30px;
    height: 30px;
}
.input-group > *:last-child:not(.bouton)
{
	border: 1px solid #CCC;
	background-color: #f1f1f1;
}

th
{
	font-weight: 600;
}

#loader
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	backdrop-filter: saturate(0) blur(4px);
}
#loader > div
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#loader > div > div
{	
    position: relative;
    left: 50px;
    height: 50px;
    width: 50px;
    animation: rotate 1s infinite;
}
#loader > div > div:before,
#loader > div > div:after
{
    border-radius: 50%;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
}
#loader > div > div:before
{
    animation: ball1 1s infinite;
    background-color: #2e3540;
    /*box-shadow: 30px 0 0 #0088cc;*/
    margin-bottom: 10px;
}
#loader > div > div:after
{
    animation: ball2 1s infinite;
    /*background-color: #0088cc;*/
    box-shadow: 30px 0 0 #2e3540;
}
#loader > div > span
{
	display: block;
	text-align: center;
	width: 160px;
	color: #2e3540;
	padding: 5px;
}
@keyframes rotate
{
    0% {
        transform: rotate(0deg) scale(0.8)
    }

    50% {
        transform: rotate(360deg) scale(1.2)
    }

    100% {
        transform: rotate(720deg) scale(0.8)
    }
}
@keyframes ball2
{
    0% {
        box-shadow: 30px 0 0 #2e3540;
    }

    50% {
        box-shadow: 0 0 0 #2e3540;
        margin-top: -20px;
        transform: translate(15px, 15px);
    }

    100% {
        box-shadow: 30px 0 0 #2e3540;
        margin-top: 0;
    }
}

/*Liens*/
a
{
	color: #000000;
}
a:hover, 
a:active
{
	color: #000000;
	text-decoration: none;
}

/*pop*/
a[rel='img']
{
	cursor: zoom-in;
}
#pop-img
{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.8);
	cursor: pointer;
	z-index: 101;
	cursor: zoom-out;
}
#pop-img img
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 90%!important;
	max-height: 80%!important;
	cursor: zoom-out;
	width: initial!important;
	height: initial!important;
}
#pop-img .pop-close,
#pop-iframe .pop-close,
#pop-ajax .pop-close
{
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 30px;
	cursor: pointer;
	color: #FFF;
}

#pop-iframe
{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.8);
	z-index: 101;
}
#pop-iframe iframe
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 90%!important;
	max-height: 80%!important;
	cursor: zoom-out;
	width: initial!important;
	height: initial!important;
}

#pop-ajax
{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.8);
	z-index: 101;
}
#pop-ajax > div
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 90%!important;
	max-height: 80%!important;
	cursor: zoom-out;
	width: initial!important;
	height: initial!important;
	background-color: #FFF;
	overflow: auto;
}

/*Badge*/
.badge
{
	
	display: inline-block;
	padding: 3px 10px;
    border-radius: 3px;

    color: #FFF;
	font-size: 12px;
	line-height: initial;
}
.badge.validation
{
	background-color: #37bc9b;
}
.badge.information
{
	background-color: #5D9CEC;
}
.badge.erreur
{
	background-color: #F05050;
}
.badge.alert
{
	background-color: #f0bd50;
}
.badge.autre
{
	background-color: #7237BC;
}
.badge.divers
{
	background-color: #f050eb;
}

/*Tableau*/
table
{
	border-collapse: collapse;
	border-spacing: 10px;
}
table td, table th
{
	padding: 0px;
	text-align: left;
	vertical-align: middle;
}

/*Images*/
img
{
	border: 0;	
}

/*Hr*/
hr
{
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-bottom: 1px solid #000000;
}

/*Titres*/
h1,h2,h3
{
	margin: 10px 0;
	padding: 0;
}
h1
{
	font-size: 19px;
	font-weight: normal;
}
h2
{
	font-size: 17px;
	font-weight: normal;
}
h3
{
	font-size: 15px;
	font-weight: normal;
}

.disable
{
	color: #CCC;
}
.soft
{
	color: #7D7D7D;
}
.highlight
{
	color: #0088cc;
}
.secondary
{
	font-style: italic;
	color: #A3A3A3;
	font-weight: initial;
}

/*Formulaires*/
input[type=text], 
input[type=int],
input[type=password], 
select, 
textarea 
{
	border: 1px solid #CCC;
	border-radius: 3px;
	outline: none;
	margin: 0;
	font-size: 14px;
	width: 100%;
	
	background-color: #FFFFFF;
	
	font-family: 'Open Sans', sans-serif;
	color: #363636;
}
input[type=text], 
input[type=int],
input[type=password]
{
	padding: 5px;
	height: 30px;
	max-width: 200px;
}
input.disable
{
	background-color: rgb(211, 211, 211);
	cursor: default;
	pointer-events: none;
}
select
{
	max-width: 200px;
	height: 30px;
}
textarea
{
	margin: 1px 0;
	box-sizing: border-box;
	outline: none;
}

/*Formulaires div*/
.formulaire.filtre
{
	padding: 10px;
	margin: -10px -10px 10px;
}
.formulaire.filtre button
{
	padding: 7px 15px 7px 15px;
}

/*Re taille champ*/
input[type='text'].spinner, 
input[type='text'][name*='frais'], 
input[type='text'][name*='poids'],
input[type='text'][name*='quantite'],
input[type='text'][name*='stock'],
input[type='text'][name*='prix']
{
	max-width: 80px;
}
input[type='text'][name*='titre'],
input[type='text'][name*='lien'],
input[type='text'][name*='url'],
input[type='text'][name*='question'],
input[type='text'][name*='title'],
input[type='text'][name*='h1'],
input[type='text'][name*='keywords'],
input[type='text'].input-2x
{
	max-width: 500px;
}
input[type='text'][name*='mail']
{
	max-width: 200px;
}


span.ui-spinner input
{
	border: none;
	margin: 0;
	font-size: 14px;
}
iframe
{
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
table.formulaire
{
	width: 100%;
	margin: 0;
	border-collapse: separate;
	border-spacing: 0px;
}
table.formulaire img
{
	vertical-align: middle;
}
table.formulaire th, 
table.formulaire td
{
	height: 33px;
	padding-top: 5px;
	padding-bottom: 5px;
	
	text-align: left;
	vertical-align: middle;
}
table.formulaire th
{
	vertical-align: middle;
	white-space: nowrap;
	padding-right: 5px;
	
	width: 100px;
}
table.formulaire > tbody > tr > td,
table.formulaire > tbody > tr > th
{
	border-bottom: 1px solid #e8e8e8;
}
table.formulaire > tbody > tr > td .bouton,
table.formulaire > tbody > tr > td button
{
	line-height: 14px;
}
table.formulaire > tbody > tr:last-child > td,
table.formulaire > tbody > tr:last-child > th
{
	border-bottom: none;
}
table.formulaire td
{
	width: calc(100% - 133px);
}
table.formulaire th em
{
	font-weight: normal;	
}
input[type='checkbox'].checkbox
{
	display: none;
}
.checkbox_js
{
	display: inline-block;
	position: relative;
	width: 69px;
	height: 21px;
	overflow: hidden;
	background-color: #0088cc;
	background-image: url(../img/checkbox.png);
	background-position: 100%;
	border-radius: 4px;
	border: 1px solid #CCC;
	cursor: pointer;
	vertical-align: middle;
}


fieldset.titre
{
    margin: 0;
    padding: 0;
    border-top: 3px solid #2e3540;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}
fieldset.titre > legend
{
    margin: 0;
    padding: 0 5px;
    text-align: center;
    font-size: 18px;
}
fieldset
{
    margin: 0;
    padding: 0;
    border-top: 3px solid #2e3540;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}
fieldset > legend
{
    margin: 0;
    padding: 0 5px;
    text-align: center;
    font-size: 18px;    
    font-weight: normal;
}


/*Boutons*/
input[type='submit'], 
input[type='button'], 
button, 
a.bouton, 
.ui-dialog .ui-button-text
{
	display: inline-block;
	padding: 8px 15px;
	margin: 1px;
	
	color: rgba(255,255,255,0.8);
	
	text-decoration: none;
	text-align: center;
	font-size: 14px;
	
	border: 0;
	border-radius: 3px;
	background-color: #2e3540;
	
	cursor: pointer;
}
input[type='submit']:hover, 
input[type='button']:hover, 
button:hover, 
a.bouton:hover, 
.ui-dialog .ui-button-text:hover
{
	color: rgba(255,255,255,1);
	
	background-color: #455061;
}
input[type='submit']:active, 
input[type='button']:active, 
button:active, 
a.bouton:active, 
.ui-dialog .ui-button-text:active
{
	color: rgba(255,255,255,0.5);
	
	background-color: #424243;
}
.radios a.bouton.select
{
	background: rgba(0,0,0,0.8);
}
.radios a.bouton span, .radios a.bouton.select span
{
	margin: 0;
}

.groupe_btn
{
	border-top: 4px solid #2e3540;
	text-align: center;
	padding-top: 5px;
}

/*Bouton raccourci*/
a.raccourci
{
	display: inline-block;
	
	width: 160px;
	height: 115px;
	padding: 5px;
	
	border: 1px solid #CFCFCF;
	border-radius: 3px;
	
	margin: 5px;
	
	text-align: center;
	text-decoration: none;

	background-color: #FFF;
}
a.raccourci:hover
{
	border: 1px solid #000000;
	background-color: rgba(0, 0, 0, 0.1);
	
	cursor: pointer;
}
a.raccourci > i
{
	display: block;
	margin: 10px;
}

/*Pagination*/
.pagination form
{
	display: inline-block;
}
.pagination
{
	margin-top: 10px;
	text-align: right;
}
.pagination input
{
	display: inline-block;
	width: 50px;
	height: 32px;
	padding: 3px 4px;
	margin: 0 5px;
	text-align: center;
}
.pagination a
{
	display: inline-block;
	padding: 5px 10px;
	margin: 1px;
	border-radius: 3px;	
	background: #E8E8E8;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
}
.pagination a:hover
{
	background: #CCCCCC;
	color: #000000;
}
.pagination a:active
{
	background: #E8E8E8;
	color: #000000;
}
.pagination a.disabled
{
	background: #E8E8E8;
	color: #CCCCCC;
}

/*Radios*/
.radios a.bouton input[type='radio']
{
	display: none;
}
.radios a.bouton
{
	min-width: 20px;
}
.radios a.bouton:first-child
{
	border-right: none;
	border-radius: 3px 0 0 3px;
}
.radios a.bouton:nth-child(n+2)
{
	border-right: none;
	border-left: none;
	border-radius: 0;
}
.radios a.bouton:last-child
{
	border-left: none;
	border-right: 1px solid #000000;
	border-radius: 0 3px 3px 0;
}

.radios.vertical a
{
	display: block;
}
.radios.vertical a.bouton:first-child
{
	border-right: 1px solid #000000;
	border-left: 1px solid #000000;
	border-bottom: none;
	border-radius: 3px 3px 0 0;
}
.radios.vertical a.bouton:nth-child(n+2)
{
	border-top: none;
	border-bottom: none;
	border-right: 1px solid #000000;
	border-left: 1px solid #000000;
	border-radius: 0;
}
.radios.vertical a.bouton:last-child
{
	border-left: 1px solid #000000;
	border-left: 1px solid #000000;
	border-bottom: 1px solid #000000;
	border-radius: 0 0 3px 3px;
}

/*Data liste*/
ul.data_liste
{
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.data_liste > li
{
	position: relative;
    margin: 5px 0;
    padding: 0;
    padding-left: 10px;
}
ul.data_liste:not(.liste) > li
{
    border-left: 1px solid #0088cc;
}
ul.data_liste > li:before
{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    border-top: 1px solid #0088cc;
}
ul.data_liste > li:after
{
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5px;
    border-bottom: 1px solid #0088cc;
}
ul.data_liste > li.row > *
{
	vertical-align: middle;
}
ul.data_liste > li.row > *:first-child
{
	padding-left: 0;
}

/*Listes*/
table.liste
{
	width: 100%;
	margin: 5px 0;
}
table.liste img
{
	vertical-align: middle;
}
table.liste th
{
	color: #000000;
	font-weight: 600;
	text-align: left;
	
	height: 20px;
	
	border-bottom: 1px solid #000000;
}
table.liste td.titregroupe
{
	color: #000;
    background-color: #d5d7d9;
}
table.liste tr.erreur td
{
	background-color: #FFC4C4;
}
table.liste tr.modif td,
.messages > li.lecture
{
	background-color: #FFFDC4;
}
table.liste tr:hover td:not(.titregroupe)
{
	background-color: rgba(0, 0, 0, 0.1);
}
table.liste td
{
	padding-left: 5px;
	
	text-align: left;
	height: 33px;
	
	vertical-align: middle;
	
	border-bottom: 1px solid #e8e8e8;
}
table.liste .bouton
{
	padding: 8px 10px;
	margin: 1px;
	vertical-align: middle;
	line-height: 18px;
}
table.liste.sortable .handle
{
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 30px;
	background: url(../img/icones/move_up_down_24.png) no-repeat 50% 50%;
	cursor: move;
	vertical-align: middle;
}
table.liste.sortable input[name='positions[]']
{
    display: inline-block;
	margin: 0;
    padding: 0;
    width: 28px;
    height: 14px;
    margin-top: 7px;
    border: 0;
    background: none;
    text-align: center;
    vertical-align: middle;
    background-color: #FFF;
    border: 1px solid #CCC;
    font-size: 11px;
    pointer-events: none;
}

/*Liste messages*/
.messages
{
	list-style: none;
	margin: 0;
	padding: 0;
}
.messages > li
{
	position: relative;
	margin: 0;
	padding: 10px 5px;
	border-bottom: 1px solid #e8e8e8;
	border-left: 2px solid transparent;
}
.messages > li.nouveau
{
	font-weight: 600;
	border-left: 3px solid #0088cc;
}
.messages > li:hover
{
	background-color: rgba(0, 0, 0, 0.1);
}
.messages > li > a:first-child
{
	display: block;
	text-decoration: none;
	line-height: 16px;
}
.messages > li > a:first-child + a
{
	display: none;
	position: absolute;
	top: 10px;
	right: 5px;
}
.messages > li:hover > a:first-child + a
{
	display: block;
}
.messages > li .bouton
{
	padding: 8px 10px;
	margin: 1px;
}
.messages > li .message-date
{
	position: absolute;
	top: 10px;
	right: 5px;
}
.messages > li:hover .message-date
{
	display: none;
}
.messages > li .message-sujet,
.messages > li .message-message
{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.messages > li .message-message
{
	color: rgba(0,0,0,0.8);
	font-weight: normal;
}
.messages > li .avatar
{
	vertical-align: top;
	display: inline-block;
}
.messages > li .avatar + div
{
	display: inline-block;
	width: calc(100% - 41px);
}

/*Message*/
.message > .message-sujet
{
	font-size: 16px;
	font-weight: 600;
	line-height: 40px;
}
.message .message-expediteur
{
	font-weight: 600;
}
.message .message-date
{
}
.message .message-message
{
	display: inline-block;
	overflow-y: auto;
	width: 100%;
	max-width: 700px;
}
.message .message-message > *
{
	width: 100%!important;
}
.message > .avatar
{
	vertical-align: top;
	display: inline-block;
}
.message > .avatar + div
{
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 10px;
	width: calc(100% - 41px);
}
.message > .avatar + div .bouton
{
	position: absolute;
	top: 0;
	right: 0;
}

/*Couleur statut*/
.statut_ok
{
	color: #339900;
	font-weight: 600;
}
.statut_nok
{
	color: #CC0000;
	font-weight: 600;
}

/*Notifications*/
.notification
{
	border-radius: 2px;
	color: #FFFFFF;
	padding: 10px;
	margin: 1px 0;
}
span.notification
{
	display: inline-block;
	margin: 1px;
	vertical-align: middle;
}
.notification.small
{
	padding: 3px;
	font-size: 11px;
}
.notification:before
{
    display: inline-block;
	font-size: 18px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    text-rendering: auto;
    vertical-align: middle;
    margin: 0 10px 0 0;
}
.notification > span
{
	display: inline-block;
	vertical-align: middle;
}
.notification > span a
{
	color: #FFF;
}
.notification.closable:after
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	content: "\f00d";
	font-size: 18px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    text-rendering: auto;
    vertical-align: middle;
    margin: 0 10px 0 0;
    cursor: pointer;
}
.notification.erreur
{
	background-color: #9B0004;
}
.notification.erreur:before
{
	content: "\f06a";
}
.notification.alert
{
	background-color: #eba734;
}
.notification.alert:before
{
	content: "\f071";
}
.notification.information
{
	background-color: #005493;
}
.notification.information:before
{
	content: "\f05a";
}
.notification.validation
{
	background-color: #009330;
}
.notification.validation:before
{
	content: "\f00c";
}
.notification.astuce
{
	background-color: #15A2BB;
}
.notification.astuce:before
{
	content: "\e1ca";
}

/*Conteneurs*/
#header
{
	position: absolute;
	z-index: 3;
    top: 44px;

	width: 250px;
    height: 90px;
	
	padding: 0;
	margin: 0;
	
	color: #FFFFFF;
	font-size: 20px;
	text-shadow: 1px 1px 0px #000000;

	background-color: #f3f5f7;	
}



#admin, 
body > #page
{
	position: relative;
	
	width: 80%;
	/*min-width: 980px;*/
	min-height: 600px;
	
	margin-left: auto;
	margin-right: auto;
	
	/*background-color: #f3f5f7;*/
}
body > #page
{
	/*position: absolute;
	
	top: 50%;
	left: 50%;
	
	margin-left: -200px;
	margin-top: -81px;*/
	
	min-width: 0;
	min-height: 0;
	
	/*width: 400px;*/
	
	padding: 5px;
	
	border-radius: 5px;
}

#admin
{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#admin #top_menu
{
	position: absolute;
	top: 0;
	left: 250px;
	z-index: 2;
	width: calc(100% - 250px);
	height: 44px;
	
	background-color: #FFF;
	
	font-size: 15px;
	color: #2e3540;
	text-align: right;

	box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
#admin #top_menu #identite
{
	position: absolute;
	top: 0;
	left: 0;
	height: 44px;
	
	padding-left: 10px;
	
	text-align: left;
	line-height: 42px;
}
.avatar
{
	display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    margin: 0 5px 0 0;
    text-align: center;
    line-height: 33px;
    color: #FFF;
    font-weight: initial!important;
}
#admin #top_menu #identite > span:last-child
{
	display: inline-block;
    vertical-align: middle;
}
.round
{
	border-radius: 100%;
}
#admin #top_menu #date
{
	position: relative;
	display: inline-block;
	
	height: 44px;
	
	padding-right: 10px;
	text-align: right;
	line-height: 42px;
}
#admin #top_menu #date .heure
{
	display: inline-block;
}
#admin #top_menu #raccourcis
{
	position: relative;
	display: inline-block;
	height: 44px;
	
	text-align: right;
	line-height: 44px;	
	font-size: 0;
}
#admin #top_menu #raccourcis a.bouton
{
	min-width: 0;
}
#admin #top_menu #raccourcis > a.bouton
{
	font-size: 14px;
	margin: 0;
	padding: 0 10px;
	border: 0;
	border-left: 1px solid #000000;
	border-radius: 0;
}

#admin #corps
{
	position: relative;

	height: 100%;
	padding-top: 44px;
	/*z-index: 1;*/
}
#admin #corps #menu
{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;

	width: 250px;
	
	box-shadow: 1px 0 1px rgba(0,0,0,0.2);
	
	z-index: 3;
}
#admin #corps #menu .badge
{
	float: right;
	margin-right: 5px;
}
#admin #corps #menu > div.burger + div
{
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: #2e3540;
	overflow: auto;
}
#admin #corps #menu .burger
{
	display: none;
	color: #FFF;
	font-size: 20px;

    position: absolute;
    width: 44px;
    height: 44px;
    top: 0;
    left: 100%;
    background-color: #2e3540;
    z-index: 4;
}
#admin #corps #menu .burger i
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
body.show-menu #admin #corps #menu .burger i.fa-bars:before
{
	content: "\f00d";
}
#admin #corps #menu #logo
{
	position: relative;
	margin: 10px auto;
    padding: 5px;
    width: calc(100% - 80px);
    max-width: 170px;
    height: 100px;
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    /*background-color: #f3f5f7;*/
}
#admin #corps #menu > div > ul
{
	margin: 0;
	padding: 0;
	
	list-style: none;

	border-top: 1px solid rgba(0,0,0,0.3);	
}
#admin #corps #menu > div > ul > li
{
	/*border-bottom: 1px solid rgba(0,0,0,0.3);*/
	padding: 0 0 2px 0;
}
#admin #corps #menu > div > ul > li > a
{
	display: block;
	
	padding: 8px 5px 10px 10px;
	
	font-size: 15px;
	color: #ABB4BE;
	text-decoration: none;
	border-left: 2px solid transparent;
}
#admin #corps #menu > div > ul > li > a > i
{
	margin-right: 10px;
	font-size: 18px;
}

#admin #corps #menu > div > ul > li > a:hover,
#admin #corps #menu > div > ul > li.select > a
{
	background-color: rgba(0,0,0,0.30);
	color: #FFF;
	border-left: 2px solid #0088cc;
}
/*Sous menu*/
#admin #corps #menu > div > ul > li > ul
{
	margin: 0 0 5px 0;
	padding-top: 5px;
	padding-bottom: 5px;
	
	background-color: #f3f5f7;
	
	list-style: url(../img/puce_fld.gif);
}
#admin #corps #menu > div > ul > li > ul > li
{
	color: #515151;
}
#admin #corps #menu > div > ul > li > ul > li:hover
{
	color: #000000;
	list-style: url(../img/puce_fld_select.gif);
}
#admin #corps #menu > div > ul > li > ul > li > a
{
	display: block;
	
	padding: 3px 0;
	
	font-size: 15px;
	color: #515151;
	text-decoration: none;
}
#admin #corps #menu > div > ul > li > ul > li > a.select
{
	display: block;
	
	padding: 3px 0;
	
	font-size: 15px;
	color: #000000;
	font-weight: 600;
	text-decoration: none;
}
#admin #corps #menu > div > ul > li > ul > li:hover > a
{
	color: #000000;
	text-decoration: none;
}
#admin #corps #page
{
	position: relative;
	margin-left: 250px;
	padding: 20px 30px 10px 30px;

	overflow-y: auto;
	height: 100%;
}

/*Onglets*/
#admin > #corps > #page .onglets,
#cboxLoadedContent .onglets
{
	border-bottom: 4px solid #2e3540;
}
#admin > #corps > #page .contenu_onglet .onglets:not(.left),
#cboxLoadedContent .contenu_onglet .onglets:not(.left)
{
	/*border-bottom: none;*/
	text-align: right;
}
#admin > #corps > #page .onglets a,
#cboxLoadedContent .onglets a
{
	display: inline-block;
	
	padding: 7px 15px;
	background-color: #b0b0b0;
	border-radius: 3px 3px 0 0;
	
	color: #000000;
	text-decoration: none;
}
#admin > #corps > #page .onglets a:hover,
#cboxLoadedContent .onglets a:hover
{
	background-color: #cdcdcd;
}
#admin > #corps > #page .onglets a.select,
#cboxLoadedContent .onglets a.select
{
	background-color: #2e3540;
	
	color: #FFFFFF;
	font-weight: 600;
}
#admin > #corps > #page .onglets a > i,
#cboxLoadedContent .onglets a > i
{
	margin: 0 0 0 5px;
}
#admin > #corps > #page .onglets + .contenu,
#cboxLoadedContent .onglets + .contenu
{
	background-color: #FFF;
    padding: 10px;
    border-radius: 3px;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
#admin > #corps > #page > .contenu .contenu_onglet,
#cboxLoadedContent .contenu .contenu_onglet
{
	display: none;
}
#admin > #corps > #page > .contenu .contenu_onglet.select,
#cboxLoadedContent .contenu .contenu_onglet.select
{
	display: block;
}




.ui-widget-header .ui-icon
{
	background-image: url(../js/jquery/theme/images/ui-icons_ffffff_256x240.png);
}
.ui-dialog
{
	padding: 0;
	border: 0;
	box-shadow: 0 0 2px rgba(0,0,0,0.4);
}
.ui-widget-header
{
	background: none;
	border: 0;
	border-radius: 0;
	background-color: #2e3540;
}
.ui-dialog-title
{
	color: #FFF;
	border: 0;	
}
.ui-state-hover, 
.ui-widget-content .ui-state-hover, 
.ui-widget-header .ui-state-hover, 
.ui-state-focus, 
.ui-widget-content .ui-state-focus, 
.ui-widget-header .ui-state-focus
{
	/*background-image: url(images/ui-icons_FFFFFF_256x240.png);*/
	border: 0;
	background: none;
}
.ui-dialog .ui-dialog-titlebar-close:hover, 
.ui-dialog .ui-dialog-titlebar-close:focus
{
	padding: 1px;
}
.ui-dialog .ui-button-text
{
	padding: 8px 15px;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default
{
	background: none;
	border: 0;
}
.ui-widget-overlay
{
	background: none;
	background-color: #2e3540;
}


/*Formulaire de connexion */
#login-page *
{
	box-sizing: border-box;
	outline: none;
}
#login-page > form > .logo
{
    position: relative;
	height: 120px;
}
#login-page > form > .logo img
{
	max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: initial;
    height: initial;
}
#login-page input[type="text"], 
#login-page input[type="password"] 
{
    box-shadow: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    width: 100%;
    max-width: initial;
    height: inherit;

	border-radius: 50px;
    padding: 10px;
    text-align: center;
    margin: 10px 0;
    border: 2px solid #000;
    color: #000;
    background-color: transparent;
}
#login-page .button
{
	position: relative;
    display: inline-block;
    padding: 5px 25px;
    color: rgba(255,255,255,0.8);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    background-image: none;
    background-color: #2e3540;
    border: 0;
    cursor: pointer;
    transition: ease-in-out 200ms;
    box-shadow: none;
    text-shadow: none;
    text-decoration: none;
    text-align: center;

	border-radius: 50px;
    padding: 10px;
    margin: 10px 0 20px;
    width: 100%;
}
#login-page .button:hover
{
    color: #FFF;
    background-color: #455061;
}
#login-page a
{
	display: block;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
}
#login-page
{
	text-align: center;
	background-color: #ececec;

	background-image: url(../img/login.jpg);
	background-attachment: fixed;
	background-size: cover;
    background-position: 50% 50%;
	position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
}
/*#login-page input:-webkit-autofill 
{
    transition: background-color 99999999s ease-in-out 0s;
    -webkit-text-fill-color: white !important;
}*/
#login-page:after
{
	content: '';
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
#login-page > form
{
	display: inline-block;
	vertical-align: middle;
	text-align: left;
	color: white;
	font-family: 'Open Sans', sans-serif;
	width: 90%;
	max-width: 350px;
    color: #000;
    text-align: center;
    font-size: 15px;
}
#login-page h1
{
	margin-top: 10px;
	padding: 0;
    font-size: 28px;
	color: #000;
	font-weight: normal;
	text-align: center;
}	

.minicolors-theme-default .minicolors-swatch
{
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
}
.minicolors-theme-default .minicolors-input
{
	padding-left: 30px;
}



@media print
{
	.page-commandes *:not(
	.page-commandes > #admin,
	.page-commandes > #admin > #corps,
	.page-commandes > #admin > #corps > #page,
	.page-commandes > #admin > #corps > #page > .contenu,
	.page-commandes > #admin > #corps > #page > .contenu > .contenu_onglet.select,
	.page-commandes > #admin > #corps > #page > .contenu > .contenu_onglet.select *),
	.page-commandes .commande-transaction,
	.page-commandes .commande-statut,
	.page-commandes a.bouton
	{
		display: none;
	}
	html
	{
		height: initial;
	}
	.page-commandes
	{
		background-color: initial;
		height: initial;
	}
	.page-commandes > #admin
	{
		height: initial;
		overflow: initial;
	}
	.page-commandes > #admin > #corps
	{
		padding: initial;
		height: initial;
	}
	.page-commandes > #admin > #corps > #page
	{
		margin:  initial;
		height: initial;
		padding: initial;
		overflow: initial;
	}
	.page-commandes > #admin > #corps > #page > .contenu,
	.page-commandes > #admin > #corps > #page > .contenu > .contenu_onglet.select > .contenu,
	.page-commandes > #admin > #corps > #page > .contenu > .contenu_onglet.select > .contenu > .contenu_onglet.select > .contenu
	{
		padding: initial;
		box-shadow: initial;
		border-radius: initial;
	}
}