/* Import de la feuille de style Normalize.css */
@import url(./normalize.css);

/* Import de la feuille de style Font Awesome */
@import url('../includes/plugins/fontawesome-pro-6.2.0-web/css/all.css');

/* Import des polices */
@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-Black.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-BlackItalic.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-BoldItalic.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-Bold.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-ExtraBold.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-ExtraLightItalic.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-ExtraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-Medium.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-Italic.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-Light.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-ExtraLight.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-MediumItalic.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-LightItalic.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-ExtraBoldItalic.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-ExtraBoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-Regular.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-SemiBoldItalic.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../includes/fonts/nunito/Nunito-SemiBold.woff2') format('woff2'),
        url('../includes/fonts/nunito/Nunito-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/*****************************************/

html {
	margin: 0;
	padding: 0;
	/* Disable pull to refresh */
	overflow: hidden;
	overscroll-behavior: none;
	
	user-select: none;
}
body
{
	margin: 0;
	padding: 0;
	background-color: #d8dadf;
	color: #282828;
}
*{
	outline: none;
	font-family: 'Nunito';
	font-size: 15px;
    box-sizing: border-box;
}
*:focus
{
	outline: none !important;
}

/*** BEGIN Custom Scrollbar styling ***/
.force_custom_scrollbar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}
.force_custom_scrollbar::-webkit-scrollbar
{
	width: 8px;
	height: 8px;
	background-color: #F5F5F5;
}
.force_custom_scrollbar::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #2880b8;
}
/*** END Custom Scrollbar styling ***/

/*** BEGIN jQuery HighchartTable ***/
tspan.highcharts-text-outline
{
	font-size: inherit;
}
/*** END jQuery HighchartTable ***/

.preloader {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 9999;
   background-image: url('../img/Spinner-1s-304px.gif');
   background-repeat: no-repeat; 
   background-color: #FFF;
   background-position: center;
}

/***** BEGIN LOADER POS SCREEN *****/
.overlayAjaxPOSscreen{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.8) url("../img/827.svg") center no-repeat;
    /*background: rgba(0,0,0,0.5) url("../img/827.svg") center no-repeat;*/
	animation: fadeIn 0.25s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/* Turn off scrollbar when body element has the loading class */
body.loadingAjaxPOSscreen{
    overflow: hidden;
}
/* Make spinner image visible when body element has the loading class */
body.loadingAjaxPOSscreen .overlayAjaxPOSscreen{
    display: block;
}
/***** END LOADER POS SCREEN *****/

/*** Crop text select2 ***/
.select2-selection { overflow: hidden !important; }
.select2-selection__rendered { white-space: normal !important; word-break: break-all !important; }

/*** Change Select2 Box Height ***/
.select2-selection__rendered {
    line-height: 31px !important;
}
.select2-container .select2-selection--single {
    height: 35px !important;
}
.select2-selection__arrow {
    height: 34px !important;
}

/*** Change Select2 option Height ***/
.select2-results__option {
    padding: 10px 8px !important;
}
/*** Clear Button ***/
.select2-container--default .select2-selection--single .select2-selection__clear {
	top: 5px;
	position: relative;
}
/*** Changement de couleur ***/
.select2-container--default.select2-container--focus .select2-selection--multiple
{
	border: solid #aaa 1px !important;
}

/*** Multiple-select ***/
.ms-choice {
    height: 35px !important;
}
.ms-choice>span {
    top: 4px !important;
}
.ms-search {
    min-height: 35px !important;
}
.ms-search input {
    min-height: 35px !important;
}

a
{
	/*color: #282828;*/
	/*color: #000;*/
	/*color: #002c52;*/
	color: #282828;
}
div:focus
{
	outline: none !important;
}
.noPadding
{
	padding: 0 !important;
}
.margin_auto
{
	margin:auto;
}
.max_width_400px
{
	max-width:400px !important;
}
.max_width_500px
{
	max-width:500px !important;
}
.max_width_550px
{
	max-width:550px !important;
}
.max_width_600px
{
	max-width:600px !important;
}
.max_width_650px
{
	max-width:650px !important;
}
.max_width_700px
{
	max-width:700px !important;
}
.max_width_800px
{
	max-width:800px !important;
}
/*** BEGIN Tooltipster ***/
.tooltip_templates
{
	display: none;
}
.tooltip_content_inline
{
	padding: 6px 14px;
	    display: block;
}
.tooltipster-sidetip .tooltipster-content {
    padding: 0 !important;
}
.table_content_tooltipster
{
	width: 100%;
    /*background-color: aqua;*/
    margin: 0;
    padding: 0;
}
.table_content_tooltipster tr
{
	border-bottom: 1px solid #e5e5e5;
}
.table_content_tooltipster tr:first-child td:first-child { border-top-left-radius: 5px; }
.table_content_tooltipster tr:first-child td:last-child { border-top-right-radius: 5px; }

.table_content_tooltipster tr:last-child td:first-child { border-bottom-left-radius: 5px; }
.table_content_tooltipster tr:last-child td:last-child { border-bottom-right-radius: 5px; }

.table_content_tooltipster tr:hover
{
	background-color: #f2f2f2;
    cursor: pointer;
}
.table_content_tooltipster tr:last-child
{
	border: none;
}
.td_content_tooltipster
{
	margin: 0;
    padding: 0;
    text-align: left;
}
.a_btn_link_content_tooltipster
{
	text-decoration: none;
	display:inline-block;
	padding: 10px;
}
.i_btn_link_content_tooltipster
{
	/*padding-right: 5px;*/
	width: 25px;
	font-size: 16px;
	text-align: left;
	
}
/*** END Tooltipster ***/

/** BEGIN Page login **/
#bloc_left_illustration_login_page
{
	width: 50%;
	float: left;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 5px 20px #d6dee4;
}
#bloc_left_illustration_install_page
{
	width: 50%;
	float: left;
	height: 100%;
	background-image: url('../img/steptodown.com381723.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	box-shadow: 0 5px 20px #d6dee4;
}
#bloc_right_form_login_page
{
	width: 50%;
	float: right;
	height: 100%;
	overflow-y: auto;
}
#bloc_right_form_install_page
{
	width: 50%;
	float: right;
	height: 100%;
	overflow-y: auto;
}
#bloc_form_center_login_page
{
	position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
	/*border: 1px solid*/
}
.bloc_logo_login_page,
.bloc_logo_install_page
{
	text-align: center;
}
.bloc_logo_login_page img,
.bloc_logo_install_page img
{
	width: 250px;
}
#form_login_to_app
{
	max-width: 400px;
	margin: auto;
	margin-bottom: 20px;
}
#form_install_app
{
	max-width: 500px;
	margin: auto;
	margin-bottom: 20px;
}
/** END Page login **/


.menuDeNavigation
{
	margin: auto;
    text-align: center;
    background-color: #DDE7FF;
    padding: 10px;
    /*color: white;*/
	border-radius:3px;
	clear: both;
}
.menuDeNavigation a
{
	text-transform: uppercase;
    font-size: 15px;
    /*text-decoration: none;*/
}
.blocMainContent_other_pages_backoffice
{
	width: 100%;
}
.blocMainContent_gest_backoffice
{
	width: 78%;
	float: right;
	height: 100dvh;
    overflow: auto;
}
.bloc_full_width_full_height
{
	height: 100dvh;
	width: 100dvw;
}
#top_bar_pos_screen
{
	/*background-color: #696969;margin-bottom: 15px;*/
	height: 50px;
	/*background-color: #696969;*/
	/*background-color: #272a30e3;*/
	/*background-color: #2880b8;*/
	background-color: #35363a;
	/* margin-bottom: 15px; */
	box-shadow: 0 4px 4px -4px rgb(0 0 0 / 12%);
	/*border: 1px solid cyan;*/
}
#bloc_left_in_top_bar_pos_screen
{
	float: left;
	/*background-color: #9C27B0;*/
	height: 100%;
	border-spacing: 0;
	color: #fff;
}
#bloc_libelle_pdv_in_top_bar_pos_screen
{
	padding: 0 10px;
}
#bloc_libelle_caisse_in_top_bar_pos_screen
{
	padding: 0 10px;
}
#bloc_clock_in_top_bar_pos_screen
{
	padding: 0 10px;
	text-align: left;
}
.tdMgsFromLicencePosScreen
{
	padding: 0 10px;
	/*border-left: 1px solid #fff;*/
	color: #ffc107;
}
.spanPureTextMgsFromLicencePosScreen
{
	
}
#bloc_right_in_top_bar_pos_screen
{
	float: right;
	/*background-color: #CDDC39;*/
	height: 100%;
	border-spacing: 0;
}
.tdNameUserConnected_Sidebar
{
	padding: 0;
	margin: 0;
	vertical-align: middle;
	text-align: left;
	padding-left: 5px;
}
.spanIconFlecheDowsProfil_in_top_pos_screen
{
	/*margin-left: 5px;*/
}
#main_content_pos_screen
{
	/*background-color: aqua;*/
	height: calc(100% - 50px);
	padding-top: 10px;
	/*border: 1px solid red;*/
}
#section_articles_pos_screen
{
	width: 100%;
	height: 100%;
	/*background-color: yellow;*/
}
#section_panier_pos_screen
{
	width: 100%;
	height: 100%;
	/*background-color: red;*/
}
#bloc_div_all_filter_articles_pos_screen
{
    /* background-color: blue; */
    width: 100%;
    height: 126px;
    padding: 10px 5px 5px 5px;
    overflow: auto;
	/*border: 1px solid #2196F3;*/
}
#bloc_table_filter_by_selected_pos_screen
{
	padding: 0;
	margin: 0;
	width: 100%;
	margin-bottom: 5px;
}
#td_bloc_select_type_article
{
	padding: 0;
	margin: 0;
	text-align: left;
	padding-right: 2.5px;
}
#td_bloc_select_categorie_article
{
	padding: 0;
	margin: 0;
	text-align: left;
	padding-left: 2.5px;
}
#td_bloc_recherche_article
{
	padding: 0;
	width: 50%;
	padding-right: 2.5px;
}
#td_bloc_scan_article
{
	padding: 0;
    padding-left: 2.5px;
}
#td_bloc_btn_add_other_article_in_cart
{
	padding: 0;
    padding-left: 5px;
    width: 6%;
}
#bloc_table_recherche_pos_screen
{
	padding: 0;
	margin: 0;
	width: 100%;
}
#bloc_div_all_articles_pos_screen
{
	height: calc(100% - 131px);
    /* background-color: brown; */
    margin-top: 5px;
    padding: 0;
    /*border: 1px solid yellow;*/
}
fieldset
{
	background-color: #fff;
    /* border: 1px solid #BBB; */
    /* border-radius: 4px; */
    /* box-shadow: 0 2px 4px rgb(0 0 0 / 16%); */
    padding: 10px;
    margin: 0;
    /* box-shadow: 0 1px 15px 1px rgb(62 57 107 / 7%); */
    /* box-shadow: 0 5px 20px #d6dee4; */
    border-radius: 8px;
    border: none;
    box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
	border: 1px solid #00000033;
	min-inline-size: -webkit-fill-available;
}
.fieldsetListingBlocPrincipal
{
	width: 100%;
}
fieldset legend
{
    font-variant: small-caps;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
	border: 1px solid #00000033;
	
}
fieldset legend i
{
    font-size: 20px;
}
.fieldset_force_border,
.fieldset_force_border legend
{
	
}
.striped
{
	background-color: #dcdcdc !important;
}
table
{
    border-collapse: collapse;
}
th,td
{
	text-align: center;
	padding: 5px;
}
/*table
{
	border: 1px solid;
    border-collapse: collapse;
	width:100%;
}
table tr:nth-of-type(odd)
{
    background-color: #f9f9f9;
}
tr
{
}
th
{
	text-transform: uppercase;
	text-align: center;	
	font-weight: bold;
}
td
{
	text-align: center;	
	border: 1px solid;
	padding: 5px;
}*/
.table
{
	border: 1px solid #aaa;
    border-collapse: collapse !important;
	width: 100%;
}
table tr.enteteTable
{
	/*background-color: #f9f9f9;*/
	/*background-color: #696969 !important;
	background-color: #818181 !important;*/
	/*background-color: #f3f6f9;*/
	background-color: #f1f5f9;
}
.table tr
{
}
.table th
{
	/*text-transform: capitalize;*/
    text-align: center;
    font-weight: bold;
    color: initial;
    border: 1px solid #aaa;
}
.table td
{
	text-align: center;	
	border: 1px solid #aaa;
}

.noBorder, .noBorder tr, .noBorder th, .noBorder td
{
	border: none !important;
}
.noListStyle
{
	list-style: none !important;
}
.cursorPointer
{
    cursor: pointer !important;
}
.btn
{
	line-height: initial;
	text-decoration: none;
	/* border: 1px solid black; */
	border: none;
	padding: 7px;
	/* padding: 10px;
	padding: 10px 7.5px 10px 7.5px;*/
	background-color: #2880b8;
	color: #fff;
	border-radius: 3px;
	font-size: 1em;
	min-height: 35px;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	transition: all 0.2s ease-in-out;
	/*text-transform: uppercase;*/
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
	border-radius: 5px;
}
.btn:hover
{
	opacity: 0.7;
    box-shadow: 0px 4px 5px 0px rgb(0 44 82 / 14%), 0px 1px 10px 0px rgb(0 44 82 / 20%), 0px 2px 4px -1px rgb(0 44 82 / 20%) !important;
}
.decreaseOpacityOnHover
{
	transition: all 0.2s ease-in-out;
}
.decreaseOpacityOnHover:hover
{
	opacity: 0.7;
}
.btnActionInListingPage,
.btnActionInListingPage i
{
	font-size: 11px;
}
.bgcOrange
{
	background-color: #f59d20 !important;
}
.bgcLinen
{
	background-color: #faf0e6 !important;
}
.bgcFirebrick
{
	background-color: #b22222 !important;
}
.bgcTomato
{
	background-color: #ff6347 !important;
}
.bgcRed
{
	background-color: #ea0038 !important;
}
.bgcVert
{
	background-color: green !important;
}
.bgcLimeGreen
{
	background-color: #57bd47 !important;
}
.bgcVertCaca
{
	background-color: #739434 !important;
}
.bgcMediumSeaGreen
{
	background-color: #41af4b !important;
}
.bgcLightCoral
{
	background-color: #f88781 !important;
}
.bgcHotPink
{
	background-color: #f64abc !important;
}
.bgcDimGray
{
	background-color: #5d5d5dc7 !important;
}
.bgcMediumPurple
{
	background-color: #a992e3 !important;
}
.bgcOrangeRed
{
	background-color: #d83b01 !important;
}
.bgcDarkMagenta
{
	background-color: #7719aa !important;
}
.bgcBlueLight
{
	background-color: #00bcd4 !important;
}
.bgcStellblue
{
	background-color: #2880b8 !important;
}
.bgcDarkSlateGray
{
	background-color: #35363a !important;
}
.bgcGray
{
	background-color: #5d5d5dc7 !important;
}
.bgcWhiteSmoke
{
	background-color: #dcdcdc !important;
}
.colorGreen
{
	color: green !important;
}
.colorMediumSeaGreen
{
	color: #41af4b !important;
}
.colorLimeGreen
{
	color: #15b71a !important;
}
.colorBlueLight
{
	color: #00bcd4 !important;
}
.colorStellblue
{
	color: #2880b8 !important;
}
.colorDodgerBlue
{
	color: #3699ff !important;
}
.colorOrange
{
	color: orange !important;
}
.colorRed
{
	color: #ea0038 !important;
}
.colorRedVif
{
	color: red !important;
}
.colorTomato
{
	color: #f44336 !important;
}
.colorVertCaca
{
	color: #739434 !important;
}
.colorWhite
{
	color: #fff !important;
}
.colorGray
{
	color: #5d5d5dc7 !important;
}
.fullWidth
{
	width:100%;
}
.success
{
	text-align: center;
    border: 1px solid;
    border-radius: 3px;
    padding: 5px;
    background-color: #6BDA6B;
    color: #FFFEFE;
    max-width: 50%;
    margin: 20px auto;
}
.error
{
	text-align: center;
    border: 1px solid;
    border-radius: 3px;
    padding: 5px;
    background-color: #d60c1f;
    color: #ffffff;
    max-width: 80%;
    margin: auto;
    margin-bottom: 15px;
}
.danger
{
	background-color: #d60c1f;
    color: white;
}
.showElement
{
	display: revert;
}
.hideElement
{
	display: none;
}
.centerElementVertically
{
	position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
}
.inputDisabled {
    /*color: rgb(84, 84, 84)!important;*/
    color: rgb(170, 170, 170)!important;
    background-color: rgb(235, 235, 228)!important;
}
.labelEtat
{
	border-radius: 20px;
    padding: 5px;
    color: #fff;
    font-size: 12px;
    /*font-weight: bold;*/
}
.labelEtatSuccess
{
    background-color: #41af4b!important;
}
.labelEtatAlert
{
    background-color: orange !important;
}
.labelEtatSecondary
{
    background-color: #6c757d !important;
}

.labelEtatDanger
{
    background-color: #d60c1f!important;
}

.center
{
	text-align: center !important;
}
.formGroup
{
	margin-bottom: 10px;
}
label input[type="checkbox"],
label input[type="radio"]
{
	position: relative;
	top: 1px;
}
input[type="date"],
input[type="text"],
input[type="email"],
input[type="search"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea,
select
{
	width: 100%;
	padding: 5px 8px;
	border-radius: 4px;
	border: solid 1px #aaa;
	min-height: 35px;
}
input[type="search"]
{
	-webkit-appearance: none !important;
}
input[type="date"]
{
	cursor: pointer !important;
}
textarea
{
	min-height: 55px;
}
label,
input[type="checkbox"]
{
	cursor:pointer;
}
input::-webkit-calendar-picker-indicator
{
	cursor: pointer !important;
}
label
{
    display: block;
    margin-bottom: 5px;
	/*font-weight: bold;*/
}
.center
{
	text-align:center;
}
.remove_field
{
	text-decoration: none;
}
.add_field_button
{
	border: 1px solid white;
    color: white;
    border-radius: 50%;
    background-color: green;
    width: 22px;
    cursor: pointer;
}
.btnRemove
{
	display: inline-block;
    margin-left: 10px;
    border: 1px solid white;
    color: white;
    border-radius: 50%;
    background-color: red;
    width: 20px;
}
.btnDeletePJ
{
	display: inline-block;
    background-image: url('../img/btn-delete.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    top: 5px;
    margin-left: 10px;
    width: 15px;
    height: 15px;
}

.separatorVerticalHeaderPageLising
{
    border-left: 1px solid #282828;
    height: 35px;
    vertical-align: middle;
    margin: 0 10px;
}
/**************** Menu de navigation *****************************/			

.activeNavFirstLevel
{
    border-left: 8px solid orange;
    /* background-color: #2880b8;*/
    
}
.activeNavFirstLevel > a
{
	color: #fff !important;
	background-color: #2880b8;
}
.activeNavFirstLevel > a > span
{
	color: #fff !important;
}
.activeNavFirstLevel > a > span > i
{
	color: #fff !important;
}
.activeNavSecondLevel
{
	
}
.activeNavSecondLevel > a
{
	color: #2880b8 !important;
	font-weight: bold !important;
}
.activeNavSecondLevel > a > i
{
	
}
   
/**********************************************************/
/** BEGIN Aside and MainContent Backoffice **/
.blocSidebar
{
	/*width: 22%;
    float: left;
    height: 100dvh;
    overflow: auto;
    background-color: #fff;
    padding: 5px 0;
	box-shadow: 0 1px 2px rgb(0 0 0 / 20%);*/
    /*border-radius: 8px;*/
	
	width: calc(22% - 5px);
	float: left;
	height: calc(100dvh - 10px);
	overflow: auto;
	background-color: #fff;
	margin: 5px 0 0 5px;
	padding: 5px 0;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}
.blocLogoAndClockSideBar
{
	text-align: center;
	padding: 5px;
	padding-top: 0;
	border-bottom: 1px solid #ddd;
	display: table;
	width: 100%;
}
.blocLogoAndPOSNameSideBar
{
    display: table-cell;
    width: 50%;
    background-color: #f6f6f6;
    vertical-align: middle;
    border: 1px solid #bdbdbd4d;
    border-radius: 6px;
    padding: 5px;
}
.blocLogoSideBar
{
	height: 60px;
	width: 100%;
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.logoPOSSideBar
{
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-radius: 4px;
	border: 1px solid #E0E0E0;
	background-color: #fff;
}
.logoDefaultSideBar
{
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-radius: 4px;
}
.blocNamePOSSideBar
{
	margin: 5px 0 0 0;
}
.iconNamePOSSideBar
{
	/*display:none;*/
}
.blocClockSideBar
{
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}

.blocMgsFromLicenceSidebar
{
	/*border-bottom: 1px solid #ddd;*/
}
.mgsFromLicenceSidebar
{
	text-align: center;
	padding: 10px 0;
	font-size: 13px;
	border-bottom: 1px solid #ddd;
}
#blocImgAndInfoUserSideBar
{
	padding: 5px 10px;
	border-bottom: 1px solid #ddd;
}
.sousBlocImgAndInfoUserSideBar
{
	width: max-content;/**/
	/*margin: auto;*/
}
.iconTitreMenuSideBar
{
    width: 30px;
    display: inline-block;
    text-align: left;
}
.blocGroupeMenu
{
    background-color: #fff;
    /* border: 1px solid #BBB; */
    /* border-radius: 4px; */
    margin-bottom: 10px;
    padding: 5px;
    /* box-shadow: 0 2px 4px rgb(0 0 0 / 16%); */
    border-radius: 8px;
    border: none;
    box-shadow: 0 1px 2px rgb(0 0 0 / 20%);
}
.blocGroupeMenu ul
{
	margin: 0;
    padding: 5px 0 0 0;
}
.blocGroupeMenu ul li
{
	padding: 2.5px 0px 5px 15px;
	/*list-style: none;*/
	list-style-position: inside;
	/*list-style-type: disclosure-closed;*/
}
.blocGroupeMenu ul li a
{
	text-decoration: none;
	margin-left: -7px;
}
.blocGroupeMenu ul li a:hover
{
	/*border-bottom: 2px solid #0398db;*/
	opacity: 0.6;
}
.iconTitleMenu
{
	display: inline-block;
	vertical-align: top;
	margin-right: 5px;
	color: #2880b8;
}
.titleMenu
{
	font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
	margin-top: 2.5px;
}
.iconTitleSousMenu
{
	color: #2880b8;
}
.titleSousMenu
{
display: inline-block;
    margin-left: 5px;
    text-transform: capitalize;
    font-variant: small-caps;
    font-weight: bold;
}
.noListStyle a
{
	
}
/** END Aside and MainContent Backoffice **/
.survole:hover
{
	background-color: #fffacd;
    border-radius: 3px;
}
.img-circle
{
	border-radius: 50%;
}
.img-rounded {
    border-radius: 4px;
}

/* Catégorie des articles
=========================*/
.firstCatProd
{
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0.25rem !important;
	border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}
.lastCatProd
{
    border-right: none;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

#ecran_vente_search_article,
#encaissement_scan_product_barcode
{
	font-size: 14px;
}

.selected_cat_prod
{
	background-color: #5d5d5dc7 !important;
    color: #fff !important;
    box-shadow: none;
}

.blocProductSearchAndBarCode {
	position: relative;
	color: #aaa;
	font-size: 16px;
	width: 100%;
	/* margin: auto; */
	/* margin-top: 20px; */
	/* margin-bottom: 10px; */
}
.blocProductSearch {
}
.blocProductBarCode {
}
.blocProductSearchAndBarCode input {
    /*width: 100%;
    height: 35px;
    background: #fcfcfc;
    border: 1px solid #aaa;
    border-radius: 3px;
    box-shadow: 0 0 3px #ccc, 0 10px 15px #ebebeb inset;*/
}

.blocProductSearchAndBarCode input { text-indent: 22.5px;}
.blocProductSearchAndBarCode .fa-search,
.blocProductSearchAndBarCode .fa-barcode
{ 
	position: absolute;
	top: 9px;
	left: 10px;
}
/***************************************/

.blocContainerfilterizr
{
	
	/*background-color: blue;*/
	/*background-color: #dcdcdc;*/
	/*background-color: #f5f5f5;*/
	background-color: #d8dadf;
	/*border-radius: 12.5px;*/
    width: 100%;
    height: 100%;
	text-align: center;
	overflow-y: scroll;
	/*padding: 0.5%;*/
	padding: 0%;
}
.filtr-container
{
	/*max-width: 1150px;*/
	margin:auto;
}
.btn_item
{
	position: relative;
	user-select: none;
}
.product_item
{
	/*width: 25%;*/
	/*width: 33.33333333333333%;*/
	/*background-color: springgreen;*/
	/*height: 200px;*/
	
	width: calc(100% / 4);
    height: 225px;
    padding: 5px 0;
    background-color: #fff;
	border-radius: 12.5px;
	box-shadow: 0 0 0 3px #d8dadf inset;/**/
	border-right: 0.0000000001px solid #d8dadf;/**/
	cursor: pointer;
}
.product_item:active {
	background-color: orange;
	/*background-color: #2880b8;*/
}
.bloc_imgItem_ProductBox
{
	/*padding-left: 10px;
	padding-right: 10px;
	width: 100%;
	height: 120px;
	margin-bottom: 5px;*/
	/* background-color: blueviolet; */
	/*border: 1px solid #d8dadf;*/
	
    width: 120px;
    height: 120px;
    margin: auto;
    margin-bottom: 5px;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
}
.imgItem_ProductBox
{
	max-height: -webkit-fill-available;
    border-radius: 12.5px;
    /*border-radius: 50%;*/
    max-width: -webkit-fill-available;
    position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
}
.blocLibelleArticle_ProductBox
{
	height: 35px;
    text-align: center;
    vertical-align: middle;
    /*background-color: blue;*/
    padding: 0 10px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.sousBlocLibelleArticle_ProductBox
{
	position: relative;
	top: 50%;
	transform: perspective(1px) translateY(-50%);
	display: block;
}

.blocPriceItem_ProductBox
{
	position: absolute;
	/*bottom: 0;*/
	bottom: 15px;
	width: 100%;
	/*padding: 5px 0;*/
	/* background-color: chartreuse;*/
}
.priceItem_ProductBox
{
	/*color: #2880b8;*/
	/*color: #00bcd4;*/
	
    font-weight: bold;
	background-color: #d8dadf;
    padding: 10px;
    border-radius: 25px;
}
#bloc_table_facture_old_panier_pos_screen
{
	padding: 0;
    margin: 0;
    width: 100%;
    margin-bottom: 5px;
	/*background-color: burlywood;*/
}
#bloc_table_clients_pos_screen
{
	padding: 0;
    margin: 0;
    width: 100%;
	/*background-color: burlywood;*/
}
#bloc_select_type_facture
{
	padding: 0;
	text-align: left;
	/*border: 1px solid;*/
}
#bloc_ref_fact_originale
{
	padding: 0 0 0 5px;
	text-align: left;
	/*border: 1px solid;*/
}
#bloc_btn_panier_en_attente_pos_screen
{
	text-align: right;
	padding: 0 0 0 5px;
	/*border: 1px solid;*/
	width: 200px;
}

#field_select_customer
{
	padding: 0;
	text-align: left;
	/*border: 1px solid;*/
	/*width: calc(100% - 150px - 160px);*/
}
#field_date_facture
{
	padding: 0 0 0 5px;
	text-align: left;
	width: 125px;
}
#field_date_facture #date_facture
{
	width: 125px;
}
#bloc_btn_add_new_client_pos_screen
{
	padding: 0 0 0 5px;
	text-align: center;
	/*border: 1px solid;*/
	width: 200px;
}
#bloc_facture_old_panier_clients_in_panier_pos_screen
{
    padding: 10px 5px 5px 5px;
    height: 126px;
    /* background-color: aqua; */
    overflow: auto;
    /*border: 1px solid blue;*/
}
#bloc_listing_articles_in_panier_pos_screen
{
    padding: 5px;
    margin-top: 5px;
    height: calc(100% - 336px);
    /* background-color: violet; */
    overflow: auto;
    /*border: 1px solid violet;*/
}
#bloc_infos_generales_panier_pos_screen
{
    width: 100%;
    margin-top: 5px;
    height: 68px;
    padding: 5px;
    overflow: auto;
    /*border: 1px solid #3f51b5;*/
    /*background-color: chartreuse;*/
}
#bloc_listing_funct_btn_in_panier_pos_screen
{
	min-width: auto;
	margin-top: 5px;
    height: 127px;
    padding: 5px;
    /* background-color: springgreen; */
    overflow: auto;
    /*border: 1px solid yellow;*/
}
.blocAllBtnForEncaissement
{
	/*border: 1px solid red;*/
}
/* Float container */
.containerBlocCountDashBord {
    margin: 0;
    padding: 0;
    overflow: auto;
}
.containerBlocCountDashBord::after {
/* Clearfix */
content: "";
clear: both;
display: table;
}

.clearBoth {
	clear: both !important;
}
.floatLeft {
	float: left !important;
}
.floatRight {
	float: right !important;
}

.oneBlocCountDashBord
{
	width: 100%;
}
.oneBlocCountDashBord-in
{
    padding: 30px 10px;
    color: #fff;
    /* border-radius: 4px; */
    box-shadow: 0 2px 4px rgb(0 0 0 / 16%);
    border-radius: 8px;
    border: none;
    /* box-shadow: 0 1px 2px rgb(0 0 0 / 20%);*/
}
.blocIconDash
{
    width: 80px;
    float: left;
    border-right: 1px solid;
	text-align: center;
}
.blocIconDash i
{
	font-size:50px;
}
.blocTextDash
{
    text-align: center;
}
.blocTextDash .textPrecisionChiffreDash
{
	font-size: 14px;
}
.blocTextDash h1
{
	padding: 0;
    margin: 0;
    font-size: 30px;
}
.cornerBloc {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 18px;
	position: absolute;
	top: -2px;
	right: 3px;
	color: #fff;
	border-radius: 0 10px 0 0;
}

.cornerBloc span {
	position: absolute;
	top: -10px;
	left: -7px;
	width: 24px;
	text-align: center;
	font-size: 10px;
	font-weight: bold;
	transform: rotate(45deg);
	display: block;
}

.badgeExponent
{
    /*position: absolute; */
    /* top: 5px; */
    /* right: 0; */
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    /*font-family: arial;*/
    padding: 2px 3px;
    /* line-height: .9; */
    /* background-color: red !important; */
    color: #fff!important;
    border-radius: 0.25em;
}

/*******************************/
.imgProductUploadContainer{
    /*width: 260px;*/
    margin: 10px auto;
}

.imgProductUploadLabel{
	display: block;
	max-width: 200px;
    margin: 0 auto 15px;
	text-align: center;
    word-wrap: break-word;
	color: #1a4756;
}

.hidden, #uploadImg:not(.hidden) + .imgProductUploadLabel{
	display: none !important;
}

#imgProductUploadFile{
	display: none;
  	margin: 0 auto;
}

#inputUpload{
	display: block;
	/*padding: 10px 25px;*/
	border: 0;
	margin: 0 auto;
	font-size: 15px;
	letter-spacing: 0.05em;
	cursor: pointer;
	background: orange;
	color: #fff;
	outline: none;
	transition: .3s ease-in-out;
	/*&:hover, &:focus{
		background: #1AA39A;
	};*/
	/*&:active{
		background: #13D4C8;
		transition: .1s ease-in-out;
	};*/
	text-transform: uppercase;
}

#uploadImg{
	display: block;
	margin: 0 auto 15px;
}

/*************/
.tdBlocRemiseGlobale .ui-stoggle--label-on .ui-stoggle--label-text,
#spanBtnChoiceTypeRemiseArticle .ui-stoggle--label-on .ui-stoggle--label-text
{
    background: #00bcd4 !important;
}
.tdBlocRemiseGlobale .ui-stoggle--label-off .ui-stoggle--label-text,
#spanBtnChoiceTypeRemiseArticle .ui-stoggle--label-off .ui-stoggle--label-text
{
    background: orange !important;
}
.tdBlocRemiseGlobale .ui-stoggle,
#spanBtnChoiceTypeRemiseArticle .ui-stoggle
{
	top: 7px;
}
.tdBlocRemiseGlobale .ui-stoggle--label-text,
#spanBtnChoiceTypeRemiseArticle .ui-stoggle--label-text
{
	color: #FFF !important;
}
.tdBlocRemiseGlobale .ui-stoggle--slider,
#spanBtnChoiceTypeRemiseArticle .ui-stoggle--slider
{
	cursor: pointer !important;
}

/**** DataTables ********/
table.dataTable thead th,
table.dataTable tfoot th
{
	text-align:center !important;
}
table.dataTable tbody th, table.dataTable tbody td{
    padding: 7px !important;
}
table.dataTable thead th, table.dataTable thead td,
table.dataTable tfoot th, table.dataTable tfoot td {
    padding: 7px 18px!important;
}
.dataTables_length select,
.dataTables_filter input[type="search"]
{
	width:auto !important;
	background-color:#fff !important;
}
table.dataTable thead>tr>th.sorting:before, table.dataTable thead>tr>th.sorting:after, table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_asc:after, table.dataTable thead>tr>th.sorting_desc:before, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>th.sorting_asc_disabled:before, table.dataTable thead>tr>th.sorting_asc_disabled:after, table.dataTable thead>tr>th.sorting_desc_disabled:before, table.dataTable thead>tr>th.sorting_desc_disabled:after, table.dataTable thead>tr>td.sorting:before, table.dataTable thead>tr>td.sorting:after, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_asc:after, table.dataTable thead>tr>td.sorting_desc:before, table.dataTable thead>tr>td.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc_disabled:before, table.dataTable thead>tr>td.sorting_asc_disabled:after, table.dataTable thead>tr>td.sorting_desc_disabled:before, table.dataTable thead>tr>td.sorting_desc_disabled:after {
    right: 5px !important;
}

table.dataTable>tbody>tr.child span.dtr-title:after
{ 
	content: " : ";
}
/******************/

.labelMontantOuvCaisse
{
	display: inline-block !important;
	font-weight: bold;
}
.inputMontantOuvCaisse
{
	display: inline-block !important;
	width: 100px !important;
}
.blocAllBtnForEncaissement button
{
	width: 100%;
}
#table_infos_generales_panier_pos_screen
{
	width: 100%;
}
#table_infos_generales_panier_pos_screen td
{
	padding: 5px 2px;
	/*padding: 0;*/
	font-size: 14px;
	border-right: 1px dashed #d3d3d3;
}
#table_infos_generales_panier_pos_screen td:last-child {
    border: none;
}
#table_infos_generales_panier_pos_screen th
{
	font-size: 14px;
    text-transform: initial;
    color: initial;
    border: none;
    background-color: #f1f5f9;
    border-right: 1px dashed #d3d3d3;
    font-weight: normal;
}
#table_infos_generales_panier_pos_screen th:first-child {
    border-top-left-radius: 8px;
}
#table_infos_generales_panier_pos_screen th:last-child {
    border-top-right-radius: 8px;
    border: none;
}
#table_infos_generales_panier_pos_screen span,
#table_infos_generales_panier_pos_screen b
{
	font-size: 15px;
}
#bloc_all_btn_other_funct_in_panier_pos_screen
{
	margin-bottom: 2.5px;
    padding-bottom: 2.5px;
}
#bloc_all_btn_other_funct_in_panier_pos_screen td:first-child
{
	padding-left: 0;
}
#bloc_all_btn_other_funct_in_panier_pos_screen td:last-child
{
	padding-right: 0;
}
#bloc_all_btn_other_funct_in_panier_pos_screen table
{
	table-layout: fixed;
}
#bloc_all_btn_other_funct_in_panier_pos_screen td
{
	padding: 0 2.5px;
    width: 92px;
}
#bloc_all_btn_main_funct_in_panier_pos_screen
{
	width: 100%;
	/*border: 1px solid #0037ff;*/
}
#bloc_all_btn_main_funct_in_panier_pos_screen td
{
	width: 33.33333333333333%;
	padding: 0 2.5px;
	/*border: 1px solid;*/
}
#bloc_all_btn_main_funct_in_panier_pos_screen td:first-child
{
	padding-left: 0;
}
#bloc_all_btn_main_funct_in_panier_pos_screen td:last-child
{
	padding-right: 0;
}

#btnFinishToPrintFacture
{
    /*display: block;*/
    min-width: 150px;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 10px;
}
#btnFinishToDownloadFacture
{
    /*display: block;*/
    min-width: 150px;
    margin: auto;
    margin-bottom: 5px;
}



.label_border {
    border: 0.1px dotted grey !important;
    overflow: hidden;
    box-sizing: border-box;
}
.text-center {
    text-align: center;
}
.text-uppercase {
    text-transform: uppercase;
}
.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.displayInline
{
	display: inline !important;
}
.displayInlineBlock
{
	display: inline-block !important;
}
.displayBlock
{
	display: block !important;
}
/***************************************/
#tablePanierEncaissement
{
	/*border: 1px solid #aaa !important;*/
	border: none;
}
#tablePanierEncaissement tr
{
	background: none;
}
#tablePanierEncaissement th
{
	font-size: 14px;
    text-transform: initial;
    color: initial;
	border: none;
    background-color: #f1f5f9;
	border-right: 1px dashed #d3d3d3;
	font-weight: normal;
}
#tablePanierEncaissement th:first-child
{
	border-top-left-radius: 8px;
}
#tablePanierEncaissement th:last-child
{
	border-top-right-radius: 8px;
	border: none;
}
#tablePanierEncaissement td
{
	/*background-color: #FFF;*/
	border: none;
}
#tablePanierEncaissement td:hover
{
	
}
#id_line_item_empty
{
	/*background-color: #e4e6ef !important;*/
	border: none !important;
}
#id_line_item_empty td
{
	/*background-color: #e4e6ef !important;*/
}
#bodyTableListingArticlePanier tr
{
	border-bottom: 1px solid #d8dadf;
}
table td.td_designation_in_cart_pos_screen
{
	text-align: left;
	font-size: 12px;
	font-weight: bold;
}
.td_qte_article_in_cart_pos_screen
{
	min-width: 135px;
	user-select: none;
}
.td_qte_article_in_cart_pos_screen i
{
	background: transparent;
}
.td_qte_article_in_cart_pos_screen .input_qte_item
{
	width: 50px;
	text-align: center;
}
table td.td_puttc_in_cart_pos_screen
{
	text-align:right;
	min-width: 115px;
}
table td.td_ptttc_in_cart_pos_screen
{
	text-align:right;
	min-width: 100px;
}
table td.td_ptttc_in_cart_pos_screen .span_ptttc_in_cart_pos_screen
{
	font-weight: bold;
}
.td_actions_in_cart_pos_screen
{
	min-width: 85px;
}
.td_actions_in_cart_pos_screen i
{
	background: transparent;
}
.subQuantity,
.addQuantity
{
	font-size: 20px;
	vertical-align: middle;
	min-width: 35px;
}
.btn_edit_item,
.btn_split_item,
.btn_remove_item
{
	font-size: 21px;
	margin: 0 3px;
}
.text_btn_other_funct_in_cart_pos_screen
{
    display: block;
    font-size: 12px;
    margin: auto;
    text-align: center;
}

#table_infos_totaux_modal_paiement_pos_screen
{
	margin-bottom: 20px;
	border: none;
}
#table_infos_totaux_modal_paiement_pos_screen th
{
    background-color: #f1f5f9;
    border: 1px dashed #d3d3d3;
    font-weight: normal;
}
#table_infos_totaux_modal_paiement_pos_screen td
{
	border: 1px dashed #d3d3d3;
}
#table_infos_moyens_paiement_modal_pos_screen
{
	margin-bottom: 20px;
	border: none;
}
#table_infos_moyens_paiement_modal_pos_screen th
{
    background-color: #f1f5f9;
    border: 1px dashed #d3d3d3;
    font-weight: normal;
}
#table_infos_moyens_paiement_modal_pos_screen td
{
	border: 1px dashed #d3d3d3;
}


.table_content_montant_encaisse
{
	width: 100%;
    border: none;
}
.table_content_montant_encaisse td
{
	/* border: 1px solid red !important;*/
    border: none !important;
	padding: 0;
}
.champ_montant_encaisse
{
	text-align: right;
	width: 100%;
}
.btn_transfert_appoint
{
	border-radius: 50%;
}
.btn_transfert_appoint i
{
	color: white;
	font-size: 15px;
}

/*********************/

span.jq-dte {
    /*width: 100% !important;*/
    padding: 7px !important;
    border-radius: 4px !important;
    border: solid 1px #aaa !important;
}

/********** Select Multiple Checkboxes With Ctrl and Shift Keys ***********/
tr.jquery-multi-select-checkbox-checked {
    background: #ebf9ff !important;
}

.cursorHelp
{
	cursor: help !important;
}



/******************* JQUERY-CONFIRM *************************/

.jconfirm.jconfirm-white .jconfirm-bg, .jconfirm.jconfirm-light .jconfirm-bg{
	opacity: initial !important;
	background-color: rgba(0,0,0,0.75) !important;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
    line-height: initial;
}
.jconfirm {
    z-index: auto !important;
    /*z-index: 999 !important;*/
}
.jconfirm-content {
    margin-left: 5px;
    margin-right: 5px;
}
.jconfirm .jconfirm-box div.jconfirm-closeIcon
{
    font-weight: bold;
	background-color: #fff;
    opacity: 1 !important;
}
.jconfirm-box_max_width_400px {
	max-width: 400px;
}
.jconfirm-box_max_width_450px {
	max-width: 450px;
}
.jconfirm-box_max_width_500px {
	max-width: 500px;
}
.jconfirm-box_max_width_550px {
	max-width: 550px;
}
.jconfirm-box_max_width_600px {
	max-width: 600px;
}
.jconfirm-box_max_width_650px {
	max-width: 650px;
}
.jconfirm-box_max_width_700px {
	max-width: 700px;
}
.jconfirm-box_max_width_750px {
	max-width: 750px;
}
.jconfirm-box_max_width_800px {
	max-width: 800px;
}
.jconfirm-box_max_width_900px {
	max-width: 900px;
}
.jconfirm-box_max_width_1000px {
	max-width: 1000px;
}
/******************* jQuery HighchartTable *************************/
.highcharts-area
{
	opacity: 0.3 !important;
}

/******************* printJS *************************/
#printJS
{
	display:none !important;
}

/******************* TipTip *************************/
#tiptip_content
{
	padding: 5px 10px !important;
}



/******************* Modal choose Variantes products POS *************************/
.screen_pos_modal_products {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  /*background: #444;*/

  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;

  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.screen_pos_modal_product {
	-webkit-flex: 0 0 auto;
	flex: 0 0 auto;
	width: calc(100% / 2);
	/*margin-bottom: 10px;*/
	/*padding: 10px;*/
	border: 5px solid #fff;
	border-radius: 10px;
	/*background-color: #5d5d5dc7;*/
	background-color: #2880b8;
}
.screen_pos_modal_product:active {
	background-color: orange;
}
.screen_pos_modal_product-inner {
	padding: 10px;
	/*background: #222;*/
	text-align: center;
	color: white;
	cursor: pointer;
}

/********************/
.styled-table {
	border-collapse: collapse;
	font-size: 0.9em;
	font-family: sans-serif;
	width: 100%;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
	background-color: #2880b8;
	color: #ffffff;
	text-align: left;
}
.styled-table th,
.styled-table td {
	padding: 10px;
}
.styled-table tbody tr {
	border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
	background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
	border-bottom: 2px solid #2880b8;
}
.styled-table tbody tr.active-row {
	font-weight: bold;
	color: #2880b8;
}
/*************/
.blocChiffresClesDashboard
{
	display: grid;
	grid-template-columns: 31.33% 31.33% 31.33%;
	grid-column-gap: 3%;
}
.blocGrid {
	display: grid;
	grid-template-columns: 49% 49%;
	grid-column-gap: 2%;
	/* background-color: #fff; */
	/* color: #444;*/
}


/* BEGIN CHECKBOX STYLE */
.btnRadio {
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: left;
}
.btnRadio:hover {
	color:#2880b8;
	/*color:#f59d20;*/
}
.btnRadio + .btnRadio {
  margin-top: 15px;
}
.btnRadio input {
  display: none;
}
.btnRadio input + span {
  display: inline-block;
  position: relative;
  padding-left: 30px;
}
.btnRadio input + span:before {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 0px;
  border-radius: 50%;
  margin-right: 5px;
  width: 14px;
  height: 14px;
  border: 1px solid #2880b8;
  background: #fff;
}
.btnRadio input + span:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: #2880b8;
  position: absolute;
  border-radius: 50%;
  top: 5px;
  left: 3px;
  opacity: 0;
  transform: scale(0, 0);
  transition: all 0.2s cubic-bezier(0.64, 0.57, 0.67, 1.53);
}
.btnRadio input:checked + span:after {
  opacity: 1;
  transform: scale(1, 1);
}

/* END CHECKBOX STYLE */

/* STYLE CIRCLE IMAGE */
.bloc-circle-img {
	background-color: #fff;
	border-radius: 100%;
	max-width: 100px;
	overflow: hidden;
	position: relative;
	width: 100%;
	margin: auto;
}
.bloc-circle-img:after {
	content: "";
	display: block;
	padding-bottom: 100%;
}
.bloc-circle-img img {
	position: absolute;
	top: 0;
	left: 0;
	/*top: 50%;*/
	/*transform: translateY(-50%);*/
	width: 100%;
	height: auto;
	max-width: 100%;
}

/* RESET RESPONSIVE TABS WORKO */
.responsive_tabs_worko,
.responsive_tabs_worko .rtw_tabs
{
	width: 100%;
    height: 100%;
}
.responsive_tabs_worko .rtw_state,
.responsive_tabs_worko #rtw_tab-one-label,
.responsive_tabs_worko #rtw_tab-two-label
{
	display: none;
}
.responsive_tabs_worko #rtw_tab-one-panel
{
	width: 49.50%;
    float: left;
    margin: 0 0.25% 0 0.25%;
}
.responsive_tabs_worko #rtw_tab-two-panel
{
	width: 49.50%;
    float: right;
    margin: 0 0.25% 0 0.25%;
}
.responsive_tabs_worko .rtw_flex-tabs .rtw_panel
{
	height: 100%;
}


/** A nice looking HTML table **/
.content-table {
  border-collapse: collapse;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.content-table thead tr {
  background-color: #2880b8;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
}

.content-table th,
.content-table td {
  padding: 12px 15px;
}

.content-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
  border-bottom: 2px solid #2880b8;
}

.content-table tbody tr.active-row {
  font-weight: bold;
  color: #2880b8;
}


/***************************************************************** ALL Media Queries *****************************************************************/


/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	body
	{
		
	}
	.blocSidebar
	{
		width: 30%;
	}
	.blocMainContent_gest_backoffice
	{
		width: 70%;
	}
	#bloc_left_in_top_bar_pos_screen
	{
		
	}
	#bloc_left_in_top_bar_pos_screen td
	{
		font-size: .8em;
	}

	#bloc_libelle_pdv_in_top_bar_pos_screen,
	#bloc_libelle_caisse_in_top_bar_pos_screen,
	#bloc_clock_in_top_bar_pos_screen
	{
		display:none;
	}
	.tdMgsFromLicencePosScreen
	{
		
	}
	.spanPureTextMgsFromLicencePosScreen
	{
		
	}
	#bloc_right_in_top_bar_pos_screen
	{
		
	}
	.spanNameUserConnected_Sidebar
	{
		
	}
	
	.blocProductSearch
	{
		
	}
	.blocProductBarCode
	{
		
	}
	#ecran_vente_search_article,
	#encaissement_scan_product_barcode
	{
		font-size: 11px;
	}
	.product_item
	{
		width: 50%;
	}
	#table_infos_generales_panier_pos_screen th,
	#table_infos_generales_panier_pos_screen td
	{
		font-size: 0.8em;
	}
	.blocGrid
	{
		grid-template-columns: 100%;
	}
	.oneBlocCountDashBord
	{
		margin-bottom: 10px;
	}
	
	.fieldsetListingBlocPrincipal
	{
		top: 25px;
		position: relative;
	}
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media only screen and (min-width: 481px) and (max-width: 767px) {
	body
	{
		/*background-color: yellow !important;*/
	}
	.screen_pos_modal_product {
		width: calc(100% / 2);
	}
}

@media only screen and (min-width: 481px) and (max-width: 767px) and (orientation: portrait) {

}


@media only screen and (min-width: 412px) and (max-width: 480px) {
	
	.product_item
	{
		width: 50%;
	}
}

@media only screen and (min-width: 320px) and (max-width: 374px) {
	.product_item
	{
		width: 100%;
	}
}



/************************************************** BEGIN => Media Queries for all hauteurs et largeurs **********************************************/

@media only screen and (min-width: 320px) and (max-width: 599px) {
	
	
	/*** Bloc 1er panier ***/
	
	#bloc_select_type_facture,
	#bloc_ref_fact_originale,
	#bloc_btn_panier_en_attente_pos_screen,
	#field_select_customer,
	#field_date_facture,
	#bloc_btn_add_new_client_pos_screen
	{
		display: block;
		width: 100% !important;
		margin: 5px 0;
		padding: 0;
	}
	#field_date_facture #date_facture
	{
		width: 100% !important;
	}
	#bloc_btn_panier_en_attente_pos_screen
	{
		margin-bottom: 0;
	}
	#bloc_select_type_facture,
	#field_select_customer
	{
		margin-top: 0 !important;
	}
	/****** Tableau listing article panier ******/
	#tablePanierEncaissement { 
		width: 100%; 
	}
	#tablePanierEncaissement, 
	#tablePanierEncaissement thead, 
	#tablePanierEncaissement tbody, 
	#tablePanierEncaissement th, 
	#tablePanierEncaissement td, 
	#tablePanierEncaissement tr { 
		display: block; 
	}
	#tablePanierEncaissement
	{ 
		position: relative;
	}
	#tablePanierEncaissement #id_line_item_empty
	{ 
		position: absolute;
		top: 50%;
		transform: perspective(1px) translateY(-50%);
		width: 100%;
		border: none;
		/*background-color: chartreuse;*/
		background: none !important;
	}
	#tablePanierEncaissement #id_line_item_empty td { 
		border: none;
		padding:0;
	}
	#tablePanierEncaissement thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	#tablePanierEncaissement tr:nth-child(odd) {
	    /*background: #eee !important;*/
	    /*background: #d8dadf !important;*/
	    background: #f1f5f9 !important;
	}
	#tablePanierEncaissement td { 
		text-align: center;
		border: none;
		border-bottom: 1px dashed #aaa; 
		position: relative;
		/*padding-left: 50%;*/
		padding-left: 35%;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	#tablePanierEncaissement td:last-child { 
		border: none;
	}
	#tablePanierEncaissement td:before { 
		position: absolute;
		left: 5px;
		padding-right: 10px;
		white-space: nowrap;
		content: attr(data-column);
		font-weight: initial;
		text-align: left;
		font-size: 14px;
		top: 50%;
		transform: perspective(1px) translateY(-50%);
	}
	.subQuantity,
	.addQuantity
	{
		font-size: 30px;
		/* margin: 0 14px; */
		-moz-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
		/* background-color: black !important; */
		width: 55px;
	}
	.btn_edit_item,
	.btn_split_item,
	.btn_remove_item
	{
		font-size: 25px;
		margin: 0 6px;
	}
	.screen_pos_modal_product {
		width: calc(100% / 2);
	}
	
	/****** BEGIN Tableau infos générales panier ******/
	#table_infos_generales_panier_pos_screen { 
		width: 100%;
		position: relative;
		height: auto;
		/*background-color: darkorange;*/
	}
	
	#table_infos_generales_panier_pos_screen, 
	#table_infos_generales_panier_pos_screen thead, 
	#table_infos_generales_panier_pos_screen tbody, 
	#table_infos_generales_panier_pos_screen th, 
	#table_infos_generales_panier_pos_screen td, 
	#table_infos_generales_panier_pos_screen tr { 
		display: block; 
	}
	#table_infos_generales_panier_pos_screen thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	#table_infos_generales_panier_pos_screen tr
	{
		/*border: 1px solid #ccc;*/
	}
	#table_infos_generales_panier_pos_screen td
	{ 
		position: relative;
		padding-left: 50%;
		padding-top: 4px;
		padding-bottom: 4px;
		border-bottom: 1px dashed #aaa;
		text-align: right;
		padding-right: 5px;
		border-right: none !important;
		background-color: #f1f5f9;
	}
	#table_infos_generales_panier_pos_screen td:first-child
	{ 
		/*border-top: 1px solid #aaa;*/
	}
	#table_infos_generales_panier_pos_screen td:first-child
	{ 
		/*border-top: 1px solid #aaa;*/
	}
	#table_infos_generales_panier_pos_screen td:last-child
	{ 
		border-bottom: none;
	}
	#table_infos_generales_panier_pos_screen td:before { 
		position: absolute;
		left: 5px;
		padding-right: 10px;
		white-space: nowrap;
		content: attr(data-column);
		
		text-align: left;
		font-size: 14px;
		top: 50%;
		transform: perspective(1px) translateY(-50%);
	}
	#table_infos_generales_panier_pos_screen td:last-child:before { 
		font-weight: bold;
	}
	/****** END Tableau infos générales panier ******/
	
	/**** BEGIN Pure CSS Responsive Table ****/
	.table_responsive_pure_css { 
		width: 100%; 
	}
	.table_responsive_pure_css, 
	.table_responsive_pure_css thead, 
	.table_responsive_pure_css tbody, 
	.table_responsive_pure_css th, 
	.table_responsive_pure_css td, 
	.table_responsive_pure_css tr { 
		display: block; 
	}
	.table_responsive_pure_css thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.table_responsive_pure_css td { 
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.table_responsive_pure_css td:last-child { 
		border-bottom: none;
	}
	.table_responsive_pure_css td:before { 
		/* background-color: #f1f5f9; */
		position: absolute;
		/* top: 0; */
		left: 5px;
		white-space: nowrap;
		content: attr(data-column);
		/*font-weight: bold;*/
		text-align: left;
		font-size: 14px;
		top: 50%;
		transform: perspective(1px) translateY(-50%);
		/* height: 100%; */
		width: 50%;
	}
	/**** END Pure CSS Responsive Table ****/
	
	/**** BEGIN Dashboard ****/
	.blocChiffresClesDashboard
	{
		grid-template-columns: 100%;
	}
	.oneBlocCountDashBord
	{
		margin-bottom: 10px;
	}
	/**** END Dashboard ****/
	
	/**** BEGIN Modal : Ajouter un article à la volée ****/
	.table_Qte_Unit_Price td,
	.table_Remise_Groupe_Tax td
	{
		display: block;
		width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.table_Remise .td_input_value_remise,
	.table_Remise .td_select_type_value_remise
	{
		margin-bottom: 10px;
	}
	.table_Remise .td_input_value_remise
	{
		display: inline-block;
		width: 50% !important;
		padding-right: 2.5px !important;
	}
	.table_Remise .td_select_type_value_remise
	{
		display: inline-block;
		width: 50% !important;
		padding-left: 2.5px !important;
	}
	/**** END Modal : Ajouter un article à la volée ****/
	
	/**** BEGIN : Bloc d'actions au dessus des fieldsets BO ****/
	.bloc_actions_top_main_content_BO
	{
		
	}
	.bloc_actions_top_main_content_BO .oneBlocAction_top_main_content_BO
	{
		float: none !important;
		width: max-content;
		display: block;
		margin: 0 auto 10px auto !important;
	}
	/**** END Modal : Bloc d'actions au dessus des fieldsets BO ****/
	
	.text_btn_last_down_in_cart_pos_screen
	{
		max-width: 100px;
		/*background-color: black;*/
		margin: auto;
	}
	.formGroup {
		width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.spanNameUserConnected_Sidebar
	{
		display: none;
	}
	
	#table_infos_totaux_modal_paiement_pos_screen td,
	#table_infos_moyens_paiement_modal_pos_screen td
	{
		background-color: #f1f5f9;
	}
	
	.table_content_montant_encaisse td
	{
		position: initial;
		padding: 0 2px;
		display: table-cell;
	}
	.table_content_montant_encaisse td:before
	{
		
	}
}
@media only screen and (min-width: 320px) and (max-width: 599px) and (min-height: 568px) and (max-height: 666px) {
	/*** BEGIN Main sections in Panier ***/
	#bloc_facture_old_panier_clients_in_panier_pos_screen
	{
		padding: 5px;
		height: 51px;
		overflow: auto;
	}
	#bloc_listing_articles_in_panier_pos_screen
	{
		height: calc(100% - 328px);
	}
	#bloc_infos_generales_panier_pos_screen
	{
	    height: 88px;
	}
	#bloc_listing_funct_btn_in_panier_pos_screen
	{
		height: 174px;
	}
	/*** END Main sections in Panier ***/
}
@media only screen and (min-width: 320px) and (max-width: 599px) and (min-height: 667px) and (max-height: 735px) {
	/*** BEGIN Main sections in Panier ***/
	#bloc_facture_old_panier_clients_in_panier_pos_screen
	{
		padding: 5px;
		height: 92px;
		overflow: auto;
	}
	#bloc_listing_articles_in_panier_pos_screen
	{
		height: calc(100% - 423px);
	}
	#bloc_infos_generales_panier_pos_screen
	{
	    height: 142px;
	}
	#bloc_listing_funct_btn_in_panier_pos_screen
	{
		height: 174px;
	}
	/*** END Main sections in Panier ***/
}
@media only screen and (min-width: 320px) and (max-width: 599px) and (min-height: 736px) and (max-height: 811px) {
	/*** BEGIN Main sections in Panier ***/
	#bloc_facture_old_panier_clients_in_panier_pos_screen
	{
		padding: 5px;
		height: 92px;
		overflow: auto;
	}
	#bloc_listing_articles_in_panier_pos_screen
	{
		height: calc(100% - 423px);
	}
	#bloc_infos_generales_panier_pos_screen
	{
	    height: 142px;
	}
	#bloc_listing_funct_btn_in_panier_pos_screen
	{
		height: 174px;
	}
	/*** END Main sections in Panier ***/
}
@media only screen and (min-width: 320px) and (max-width: 599px) and (min-height: 812px) {
	/*** BEGIN Main sections in Panier ***/
	#bloc_facture_old_panier_clients_in_panier_pos_screen
	{
		padding: 5px;
		height: 131px;
		overflow: auto;
	}
	#bloc_listing_articles_in_panier_pos_screen
	{
		height: calc(100% - 462px);
	}
	#bloc_infos_generales_panier_pos_screen
	{
	    height: 142px;
	}
	#bloc_listing_funct_btn_in_panier_pos_screen
	{
		height: 174px;
	}
	/*** END Main sections in Panier ***/
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
	body
	{
		/*background-color: green !important;*/
	}
	/*** BEGIN Top screen POS ***/
	#bloc_left_in_top_bar_pos_screen
	{
		table-layout: fixed;
		width: 57%;
	}
	#bloc_left_in_top_bar_pos_screen #bloc_logo_app_in_top_bar_pos_screen
	{
		width: 50px;
	}
	#bloc_left_in_top_bar_pos_screen #bloc_logo_app_in_top_bar_pos_screen a
	{
		width: 100% !important;
	}
	#bloc_left_in_top_bar_pos_screen #bloc_libelle_pdv_in_top_bar_pos_screen
	{
		padding: 0 5px;
		text-align:left;
		/*width: calc(100% - 90px);*/
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}
	#bloc_left_in_top_bar_pos_screen #bloc_libelle_caisse_in_top_bar_pos_screen
	{
		padding: 0 5px;
		text-align:left;
	}
	#bloc_left_in_top_bar_pos_screen #bloc_clock_in_top_bar_pos_screen
	{
		padding: 0 5px;
		text-align:left;
	}
	.tdMgsFromLicencePosScreen
	{
		padding: 0 5px;
	}
	.spanPureTextMgsFromLicencePosScreen
	{
		
	}
	#text_libelle_pdv_in_top_bar_pos_screen
	{
		/*display: inline-block;
		text-overflow: ellipsis;
		max-width: 130px;
		white-space: nowrap;
		overflow: hidden;
		vertical-align: bottom;
		text-align: left;*/
	}
	#bloc_clock_in_top_bar_pos_screen
	{
		display:none;
	}
	/*** END Top screen POS ***/
	
	#section_articles_pos_screen
	{
		padding-top: 5px;
	}
	#section_panier_pos_screen
	{
		padding-top: 5px;
	}
	#bloc_div_all_filter_articles_pos_screen
	{
		padding: 5px;
		height: 167px;
	}
	#bloc_div_all_articles_pos_screen
	{
		height: calc(100% - 172px);
	}
	#bloc_div_all_filter_articles_pos_screen legend,
	#bloc_facture_old_panier_clients_in_panier_pos_screen legend
	{
		display: none;
	}
	#bloc_table_filter_by_selected_pos_screen
	{
		margin-bottom: 0;
	}
	#bloc_table_filter_by_selected_pos_screen td,
	#bloc_table_recherche_pos_screen #td_bloc_recherche_article
	{
		display: block;
		width: 100% !important;
		margin: 5px 0;
		padding: 0;
	}
	#bloc_table_recherche_pos_screen #td_bloc_scan_article,
	#bloc_table_recherche_pos_screen #td_bloc_btn_add_other_article_in_cart
	{
		display: inline-block;
		padding: 0;
	}
	#bloc_table_recherche_pos_screen
	{
		
	}
	#bloc_table_recherche_pos_screen td
	{
		
	}
	#bloc_table_filter_by_selected_pos_screen td:first-child,
	#bloc_table_recherche_pos_screen td:first-child
	{
		margin-top: 0 !important;
	}
	.product_item
	{
		width: 50%;
	}
	
	
	#bloc_ref_fact_originale
	{
		display:none;
	}
	
	
	
	.blocAllBtnForEncaissement button
	{
		min-height: 69px;
	}
	#bloc_all_btn_other_funct_in_panier_pos_screen
	{
		overflow-x: auto;
	}
	#bloc_all_btn_other_funct_in_panier_pos_screen td
	{
	}
	#bloc_all_btn_other_funct_in_panier_pos_screen td:first-child
	{
		padding-left: 0;
	}
	#bloc_all_btn_other_funct_in_panier_pos_screen td:last-child
	{
		padding-right: 0;
	}
	#bloc_all_btn_other_funct_in_panier_pos_screen td button
	{
	}
	.text_btn_other_funct_in_cart_pos_screen
	{
		/*display: block;*/
		/*white-space: normal;*/
	}
	
	/**** BEGIN RESPONSIVE CSS TABS - FLEXBOX ****/
	.responsive_tabs_worko {
		width: 100%;
		height: 100%;
		/*background-color: black;*/
	}
	.responsive_tabs_worko .rtw_state {
		position: absolute;
		left: -10000px;
		display: initial;
	}
	.responsive_tabs_worko .rtw_flex-tabs {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		height: 100%;
	}
	.responsive_tabs_worko .rtw_flex-tabs .rtw_tab {
		height: 10%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0;
		flex-basis: 50%;
		flex-grow: 0;
		/*border: 1px solid red;*/
	}
	.responsive_tabs_worko .rtw_flex-tabs .rtw_panel {
		/* background-color: #fff; */
		height: 90%;
		display: none;
		width: 100%;
		flex-basis: auto;
		/* background-color: chartreuse;*/
		/*border: 1px solid yellow;*/
	}
	.responsive_tabs_worko .rtw_tab {
		display: inline-block;
		padding: 10px;
		/*background-color: #eee;*/
		cursor: pointer;
		/*border-left: 10px solid #ccc;*/
		/*background-color: #fff;*/
		background-color: #e5e7eb;
	}
	.responsive_tabs_worko .rtw_tab:hover {
		background-color: #fff;
	}
	.responsive_tabs_worko #rtw_tab-one-label
	{
		display: inherit;
		border-right: 2.5px solid #d8dadf;
		color: #282828 !important;
	}
	.responsive_tabs_worko #rtw_tab-two-label
	{
		display: inherit;
		border-left: 2.5px solid #d8dadf;
		color:#282828 !important;
	}
	.responsive_tabs_worko #rtw_tab-one-label i,
	.responsive_tabs_worko #rtw_tab-two-label i
	{
		font-size: 25px;
		margin-right: 10px;
		color: #282828 !important;
		font-weight: 300;
	}
	.responsive_tabs_worko #rtw_tab-one-label .text_to_select_tab,
	.responsive_tabs_worko #rtw_tab-two-label .text_to_select_tab
	{
		font-size: 22px;
		font-weight: initial;
	}
	.responsive_tabs_worko #rtw_tab-one-panel
	{
		width: 100%;
		float: none;
		margin: 0;
	}
	.responsive_tabs_worko #rtw_tab-two-panel
	{
		width: 100%;
		float: none;
		margin: 0;
	}
	#rtw_tab-one:checked ~ .rtw_tabs #rtw_tab-one-label,
	#rtw_tab-two:checked ~ .rtw_tabs #rtw_tab-two-label{
		/* background-color: #fff; */
		cursor: default;
		/* border-left-color: #2880b8; */
		background-color: #2880b8;
		color: #fff !important;
	}
	#rtw_tab-one:checked ~ .rtw_tabs #rtw_tab-one-label i,
	#rtw_tab-two:checked ~ .rtw_tabs #rtw_tab-two-label i{
		color: #fff !important;
		font-weight: 900;
	}
	#rtw_tab-one:checked ~ .rtw_tabs #rtw_tab-one-label .text_to_select_tab,
	#rtw_tab-two:checked ~ .rtw_tabs #rtw_tab-two-label .text_to_select_tab{
		font-weight: bold;
	}
	#rtw_tab-one:checked ~ .rtw_tabs #rtw_tab-one-panel,
	#rtw_tab-two:checked ~ .rtw_tabs #rtw_tab-two-panel {
		display: block;
	}
	.rtw_tab:active
	{
		/*background-color:orange !important;*/
	}
	/**** END RESPONSIVE CSS TABS - FLEXBOX ****/
	
	/** BEGIN Page login **/
	#bloc_left_illustration_login_page,
	#bloc_left_illustration_install_page
	{
		display: none;
	}
	#bloc_right_form_login_page,
	#bloc_right_form_install_page
	{
		width: 100%;
	}
	/** END Page login **/
	
	
	#badge_nbre_item_in_cart
	{
		font-weight: bold;
		border-radius: 50%;
		padding: 5px 9px;
	}
	
	#main_content_pos_screen
	{
		padding-top:0;
	}
	#bloc_libelle_pdv_in_top_bar_pos_screen
	{
		/*display:none;*/
		text-align: left;
	}
	#bloc_libelle_caisse_in_top_bar_pos_screen
	{
		display:none;
	}
	#bloc_clock_in_top_bar_pos_screen
	{
		display:none;
	}
	.tdMgsFromLicencePosScreen
	{
		width: 30px;
	}
	.spanPureTextMgsFromLicencePosScreen
	{
		display: none;
	}
	.spanNameUserConnected_PosScreen
	{
		display:none;
	}
	.spanIconFlecheDowsProfil_in_top_pos_screen
	{
		/*margin: 0;*/
	}
}

@media only screen and (min-width: 320px) and (max-width: 1199px) {
	/** BEGIN Aside and MainContent Backoffice **/
	.blocSidebar
	{
		float: none;
		height: initial;
		width: 100%;
		position: absolute;
		z-index: 1;
		border-radius: initial;
		padding: 0;
		margin: 0;
	}
	.blocMainContent_gest_backoffice
	{
		float: none;
		width: 100%;
		padding-top: 60px;
	}
	.menu-container .crbnMenu .link-stack {
		padding: 0 !important;
		background-color: #EEEEEE !important;
		border:none !important;
		display: block;
		width: 100%;
	}
	.ulMainMenuNavSideBar
	{
		height: calc(100dvh - 50px);
		/*background-color: burlywood;
		border: 1px solid;*/
		overflow-y: auto;
	}
	.blocLogoAndClockSideBar
	{
		width: 46.5%;
		vertical-align: middle;
		padding: 0;
		border: none;
		display: inline-block;
		margin-right: -4px;
		/*background-color: burlywood;*/
		text-align: left;
	}
	.blocMgsFromLicenceSidebar
	{
		vertical-align: middle;
		padding: 0;
		border: none;
		display: inline-block;
		margin-right: -4px;
		width: 7%;
		/* border: 1px solid; */
		/*background-color: blue;*/
	}
	.mgsFromLicenceSidebar
	{
		border-radius: 3px;
		cursor: pointer;
	}
	.pureTextMgsFromLicenceSidebar
	{
		display: none;
	}
	.blocLogoAndPOSNameSideBar
	{
		width: 100%;
		padding: 0;
		background: none;
		vertical-align: middle;
		border: none;
		border-radius: initial;
		display: inline-block;
		text-align: left;
	}
	.blocLogoSideBar
	{
		max-width: 50px;
		height: 50px;
		vertical-align: middle;
		/* border: 1px solid red; */
		display: inline-block;
		margin-right: -4px;
	}
	.logoPOSSideBar
	{
		border: none;
		border-radius: initial;
		display: block;
		position: relative;
		top: 50%;
		transform: perspective(1px) translateY(-50%);
	}
	.logoDefaultSideBar
	{
		
	}
	.blocNamePOSSideBar
	{
		display: inline-block;
		margin: 0;
		/* border: 1px solid; */
		vertical-align: middle;
		padding-left: 5px;
		text-align: left;
		text-overflow: ellipsis;
		/*max-width: 100px;*/
		white-space: nowrap;
		overflow: hidden;
		width: calc(100% - 50px);
	}
	.iconNamePOSSideBar
	{
		/*display: initial;*/
	}
	.blocClockSideBar
	{
		display: none;
	}
	#blocImgAndInfoUserSideBar
	{
		display: inline-block;
		vertical-align: middle;
		width: 46.5%;
		/* border: 1px solid; */
		padding: 0;
		border: none;
		/*background-color: violet;*/
	}
	.sousBlocImgAndInfoUserSideBar
	{
		float: right;
		/* border: 1px solid red; */
		margin-right: 55px;
	}
	
	/** END Aside and MainContent Backoffice **/
}
@media only screen and (min-width: 600px) and (orientation: portrait) {
	/*** BEGIN Top screen POS ***/
	#bloc_left_in_top_bar_pos_screen
	{
		
	}
	#bloc_left_in_top_bar_pos_screen #bloc_logo_app_in_top_bar_pos_screen
	{
		
	}
	#bloc_left_in_top_bar_pos_screen #bloc_logo_app_in_top_bar_pos_screen a
	{
		
	}
	#bloc_left_in_top_bar_pos_screen #bloc_libelle_pdv_in_top_bar_pos_screen
	{
		
	}
	#bloc_libelle_caisse_in_top_bar_pos_screen
	{
		display: table-cell;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}
	.tdMgsFromLicencePosScreen
	{
		
	}
	.spanPureTextMgsFromLicencePosScreen
	{
		
	}
	.spanNameUserConnected_PosScreen
	{
		display:inline-block;
	}
	/*** END Top screen POS ***/
	
	/*** BEGIN Main sections in Panier ***/
	#bloc_facture_old_panier_clients_in_panier_pos_screen
	{
		padding: 5px;
		height: 92px;
		overflow: auto;
	}
	#bloc_listing_articles_in_panier_pos_screen
	{
		height: calc(100% - 330px);
	}
	#bloc_infos_generales_panier_pos_screen
	{
	    height: 68px;
	}
	#bloc_listing_funct_btn_in_panier_pos_screen
	{
		height: 155px;
	}
	/*** END Main sections in Panier ***/
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
	.product_item
	{
		width: calc(100% / 3);
	}
	/**** BEGIN Dashboard ****/
	.blocChiffresClesDashboard
	{
		
	}
	.oneBlocCountDashBord
	{
		
	}
	.blocIconDash
	{
		float: none;
		width: 100%;
		border: none;
		/*border-bottom: 1px solid;*/
		padding-bottom: 10px;
	}
	.blocTextDash
	{
		padding-top: 10px;
	}
	/**** END Dashboard ****/
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.product_item
	{
		width: calc(100% / 4);
	}
	/**** BEGIN Dashboard ****/
	.blocChiffresClesDashboard
	{
		
	}
	.oneBlocCountDashBord
	{
		
	}
	.blocIconDash
	{
		float: none;
		width: 100%;
		border: none;
		/*border-bottom: 1px solid;*/
		padding-bottom: 10px;
	}
	.blocTextDash
	{
		padding-top: 10px;
	}
	/**** END Dashboard ****/
}
@media only screen and (min-width: 1200px) {
	/** BEGIN Aside and MainContent Backoffice **/
	.menu-container .crbnMenu .link-stack {
		padding: 0 !important;
		background-color: #fff !important;
		border:none !important;
	}
	
	/** END Aside and MainContent Backoffice **/
}
@media only screen and (min-height: 1071px) and (max-height: 1080px) and (orientation: portrait) {
	
}
@media only screen and (min-height: 1084px) and (max-height: 1366px) and (orientation: portrait) {
	/*#top_bar_pos_screen {
		height: 3%;
	}*/
	
	
	
}



/* 
  ##Height
*/
@media only screen and (min-height: 0px) and (max-height: 568px) {
	/** BEGIN Hauteur minimale du bloc central **/
	.minHeighBlocContentCentraltBO
	{
		min-height: calc(100dvh - 125px);
	}
	/** END Hauteur minimale du bloc central **/
}
@media only screen and (min-height: 569px) and (max-height: 667px) {
	/** BEGIN Hauteur minimale du bloc central **/
	.minHeighBlocContentCentraltBO
	{
		min-height: calc(100dvh - 85px);
	}
	/** END Hauteur minimale du bloc central **/
}
@media only screen and (min-height: 668px) and (max-height: 736px) {
	/** BEGIN Hauteur minimale du bloc central **/
	.minHeighBlocContentCentraltBO
	{
		min-height: calc(100dvh - 110px);
	}
	/** END Hauteur minimale du bloc central **/
}
@media only screen and (min-height: 737px) and (max-height: 812px) {
	/** BEGIN Hauteur minimale du bloc central **/
	.minHeighBlocContentCentraltBO
	{
		min-height: calc(100dvh - 110px);
	}
	/** END Hauteur minimale du bloc central **/
}
@media only screen and (min-height: 813px) and (max-height: 1024px) {
	/** BEGIN Hauteur minimale du bloc central **/
	.minHeighBlocContentCentraltBO
	{
		min-height: calc(100dvh - 50px);
	}
	/** END Hauteur minimale du bloc central **/
}
@media only screen and (min-height: 1025px) and (max-height: 1366px) {
	/** BEGIN Hauteur minimale du bloc central **/
	.minHeighBlocContentCentraltBO
	{
		min-height: calc(100dvh - 50px);
	}
	/** END Hauteur minimale du bloc central **/
}
/* 
  ##Width 
*/
@media only screen and (min-height: 0px) and (max-height: 560px) {
	/** BEGIN Page login **/
	#bloc_form_center_login_page
	{
		position: initial;
		top: initial;
		transform: initial;
	}
	/** END Page login **/
}
@media only screen and (min-width: 320px) and (max-width: 359px) and (orientation: portrait) {
	.product_item {
		width: 100%;
	}
	.blocNamePOSSideBar
	{
		/*max-width: 100px;*/
	}
}
@media only screen and (min-width: 360px) and (max-width: 374px) and (orientation: portrait) {
	.product_item {
		width: 50%;
	}
}
@media only screen and (min-width: 375px) and (max-width: 383px) and (orientation: portrait) {
	.product_item {
		width: 50%;
	}
}
@media only screen and (min-width: 384px) and (max-width: 392px) and (orientation: portrait) {
	.product_item {
		width: 50%;
	}
}
@media only screen and (min-width: 393px) and (max-width: 411px) and (orientation: portrait) {
	.product_item {
		width: 50%;
	}
}
@media only screen and (min-width: 412px) and (max-width: 428px) and (orientation: portrait) {
	.product_item {
		width: 50%;
	}
}
@media only screen and (min-width: 429px) and (max-width: 480px) and (orientation: portrait) {
	.product_item {
		width: 50%;
	}
}

/************************************************** END => Media Queries for all hauteurs et largeurs **********************************************/

/* 
  ##CSS Media Queries for Print
*/

@media print {
	.btnPrint
	{
	  display : none !important;
	}
	body,
	fieldset legend
	{
		background-color: white !important;
	}
	fieldset {
		box-shadow: none;
	}
}

