/* GLOBAL */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
    background-color:#f7af1b;
    color:var(--primary-color);
}

html {
    height:100%;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    /*display: none;
    -webkit-appearance: none;*/
    pointer-events: none;
}

input[type='number'] {
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.count {
    z-index: 2;
    font-size: 11px;
    border-radius: 50%;
    background: #d60b28;
    width: 16px;
    height: 16px;
    line-height:16px;
    display: block;
    text-align: center;
    color: white;
    font-weight: bold;
    margin-left: -10px;
    margin-top: -10px;
  }

body {
    margin:0;
    height:100%;
    font-family: var(--my-font);
    color:var(--text-color-dark);
    font-size:0.95rem;
}

main {
    justify-content: center;
    align-items: center;
    margin-top:56px; /*Header fixed*/
    margin-bottom:6vh; /*Footer fixed*/
    padding-top:3vh;
    padding-left:5vw;
    padding-right:5vw;
    padding-bottom:7vh;
    min-height: calc(90vh - 12vh);
}

footer > div {
	display:flex;
	align-items:center;
}
footer {
	padding: 0 10px;
}
footer > div a, footer > div p {
	color:white;
	font-size:14px;
}

form {
    margin-block-end:0;
}

h1, .h1 {
    font-family: var(--my-font);
    font-size:1.3rem;
    margin-bottom:5vh;
}

h2 {
    font-family: var(--my-font);
    text-align: center;
    font-size:1rem;
}

p {
    text-align: justify;
    margin-bottom: 3px;
}


.dataTables_filter {
    margin-bottom: 4px;
}

.dataTable tbody tr:hover {
    background-color: rgb(255, 244, 158)!important;
}
   
.dataTable tbody tr:hover > .sorting_1 {
    background-color:rgb(255, 244, 158)!important;
}

.jconfirm-box {
    width: 30vw;
}

.prix_masques {
    display: none !important;
    margin-bottom: 0px;
}

td {
    height:32px;
}


/*INPUT + BOUTONS */

input,button {
    font-family: var(--my-font);
}

button, input[type="submit"] {    
    cursor: pointer;
}

input:focus, input:hover, select:hover {
    outline: none;
    border-color: #c8cccf;
    transition: 0.2s;
}

.btn {    
    color: var(--text-color-light);
    border: none;
    border-radius: 3px;
    padding: 5px;
    font-size: 0.9rem;
    transition: 0.5s;
    min-width: 30px;
    margin-right:2px;
    margin-left:2px;
}

.btn-blue{
    background-color: var(--primary-color) !important;
    color:white;
}
.btn-orange {
    background-color: var(--tertiary-color) !important;
    color:white;
}
.btn-white {
    background-color:white !importantimportant;
    color:var(--primary-color) !important;
}

.btn-green{
    background-color: #28a745;
}

.btn-red{
    background-color: #dc3545;
}

.btn-descr{
    position: absolute;
    background-color: #FFFFFF;
    border-radius: .5rem;
    box-sizing: border-box;
    color: #111827;
    font-family: "Inter var",ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.25rem;
    padding: .5rem .75rem;
    text-align: center;
    text-decoration: none #D1D5DB solid;
    text-decoration-thickness: auto;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin: 2px 2px;
}

.btn-grey{
    background-color: #dfdfdf;
    color:var(--text-color-dark);
    border: 0.5px solid #adadad; 
}

.btn-yellow{
    background-color: #ffc107;
    color:#212529;
}

.btn-small{
    height: fit-content;
    width: fit-content;
    padding: 3px;
}

.btn-large{
    min-width: 60px;
    width: fit-content;
    padding: 5px;
}

.btn:disabled{
    opacity: 0.40;
    cursor: default;
}

.btn-filled {
    background-color: white;
    font-weight: bold;
} 


input:optional {
    border-color: gray;
}

input:required {
    border-color: black;
}

#cardCompte input[type="checkbox"]{
    pointer-events: none;

}

.btnSign, .btnConnexion {
    border-radius:5px;
    border:none;
    height:36px;
    padding:0 16px;
    flex:1;
    
}
.btnsIdentification {
    display: flex !important;
    gap:1rem;
}

/*TABLEAUX*/


table .num{
    font-family: var(--my-font-num);
    text-align: right;
    font-size: medium;
}

table tfoot td {
    font-weight: bold;
    font-weight: 800;
    padding:12px 8px !important;
}

table .colButtons  {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

/* FLEX BARRE */
.align-items-center {
    align-items:center;
}
.d-flex {
    display: flex;
    justify-content: space-between;
}
.d-none {
    display:none;
}

.d-flex a, .d-flex p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:0.8rem;
}
.flex-wrap {
	flex-wrap:wrap;
}
.flex-col {
    display:flex;
    flex-direction:column;
}

.w100 {
    width:100%;
}
.flex1 {
    flex:1;
}
.gap1 {
    gap:1rem;
}
.align-start {
    align-items:start;
}

/* BARRE RECHERCHE*/

.barre {
    display: flex;
    flex-wrap: wrap;
    flex-direction:row;
    justify-content: space-between;
    margin-bottom:1.5rem;
}

.barre > form {
    display: inline-flex;
    align-items: center;
}

.barre > form > label, .barre > form > span {
    display: inline-block;
    line-height: 50px;
    min-width: fit-content;
    padding:5px;
}

.barre > form > button, .barre > form > select {
    padding: 5px;
    margin: 0 2px;
    font-family: var(--my-font);
}

#btnMarque, #btnIle, #validFiltre {
    height:40px !important;
}
#validFiltre {
    padding:0 16px;
    color:white;
    border-radius:4px;
    border:0;
}

.recherche {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}
.recherche > button, .recherche > select {
    margin:0 8px 0 0;
    background-color:transparent;
    border:1px solid #eee;
    color:#000;
}
.search-product input {
    background-color: white;
    width:250px;
    border:#eee;
    color: #000;
    padding:0 8px;
    height:33px;
}
.recherche > form > * {
    margin:0 8px 0 0 !important;
    height:33px;
}
.search-product {
    position:relative;
}
.search-product button {
    position:absolute;
    right:8px;
    height:33px;
    background-color:transparent;
    color: #000;
}
.recherche > form:nth-child(3) button, #commandes_reset {
    margin:0 !important;
    background-color:transparent;
    border:1px solid #eee;
    color:#000;
}
.recherche > form:nth-child(3) button span {
    margin-right:5px;
}

.recherche > form {
    display: inline-flex;
}

.recherche > form > input[type='text'] {
    max-width:30vw;
} 

.btn-catalog {
    display:flex;
    align-items:center;
    height:33px;
    background-color: vwhite;
    color:var(--bleuF-bellon);
    border-radius:5px;
    border:1px solid var(--bleuF-bellon);
    padding: 0 15px;
    text-decoration:none;
    margin-right:8px;
}

/* MODAL PROSPE */
#modalProspeForm {
    width:100%;
    height:100vh;
    position:fixed;
    z-index:30000;
    top:0;
    left:0;
    background-color: rgba(11,72,157,0.3);
    backdrop-filter:blur(4px);
    display:none;
    justify-content:center;
    align-items:center;
}
#divIdentification {
    display:flex;
    gap:1.2rem;
    height:100%;
}
#imgIdentification {
    background-image:url('../img/backgrounds/palmier.png');
    background-size:cover;
    width:415px;
    min-width:415px;
    position:relative;
    border-radius:8px;
    overflow:hidden;
}
#imgIdentification > *  {
    position:absolute;
}
#imgIdentification > img {
    bottom:16px;
    left:5px;
    width:160px;
}
#gradientIdentification {
    bottom:0;
    left:0;
    right:0;
    width:100%;
    height:210px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
#formIdentification {
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
#formIdentification label, #formIdentification input {
    margin:0;
}
#formIdentification input {
    height:36px;
    min-height:36px;
}
#formIdentification .form-control {
    display:flex;
    justify-content:space-between;
}
label span {
    color: var(--tertiary-color);
}
#modalProspeForm > div {
    border-radius:16px;
    background-color:white;
    height:800px;
    width:950px;
    padding:16px;
}
#connexionProspeForm {
    color:white;
    background-color:var(--primary-color);
    border-radius:5px;
    width:200px;
    height:40px;
    border:0;
}
#closeModalProspe {
    position:absolute;
    top:20px;
    right:20px;
    z-index:500;
    cursor:pointer;
}
#modalProspeForm h2 {
    text-align:start;
}
#modalProspeForm p {
    margin-bottom:20px;
}
#modalProspeForm form {
    margin-bottom: 20px;
}
#modalProspeForm #prospeBtns {
    align-items:flex-end;
}
#modalProspeForm #validProspeForm {
    background-color: var(--tertiary-color);
    color:#fff;
    border-radius:5px;
    padding:5px 10px;
    border:0;
    text-align:center;
    width:200px;
    height:40px;
    font-size:1rem;
}
#modalProspeForm h3 {
    font-size:0.8rem;
    margin-bottom:0.75rem;
}
#modalProspeForm #loginRedirect {
    border-radius:5px;
    padding:5px 10px;
    width:200px;
    height:40px;
    text-align:center;
    background-color:var(--primary-color);
    color:white;
    border:none;
    font-size:1rem;
}

/* HEADER + MENU */
#blocHeader {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index:9999;
    display:flex;
}
#blocHeader > div:first-child img {
    height:112px;
}
#blocHeader > div:nth-child(2) {
    flex:1;
}
header .itemMenu {
    position:relative;
}
header .bloc-menu {
    display:none;
    position:absolute;
    background-color:rgba(255,255,255,0.95);
    top:56px;
    z-index:17;
    padding:20px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.67);
}
header .bloc-menu .col-menu {
    width:280px;
}
header .bloc-menu ul {
    list-style:none;
}
header .bloc-menu li {
    padding:2px 5px;
}
header .bloc-menu li a {
    color:#000;
    line-height:unset !important;
    display:block;
}
header a i, header a span {
    margin-right:5px;
}
header {
    background-color: var(--primary-color);
    height: 56px;
    z-index:1000;
}

header nav a,header nav p {
    text-decoration: none;
    color:var(--background-color);
    display: inline-block;
    /*line-height: 6vh;*/
    margin:0;
    padding:0 16px;
}

.dropdown {
    height:100%;
}

header > nav, header > nav .itemMenu > a, header #divPanierCompte .dropdown a {
    height:100%;
}
header #divPanierCompte a i {
    margin-top:0 !important;
}
#dropdown-client > a:last-child {
    margin-bottom:15px;
}

header img {
    padding-left:10px;
    max-height: 6vh;
}

#subHeader {
    display:flex;
    align-items:center;
    justify-content:space-between;
    background-color:white;
    height:56px;
    top:56px;
    z-index:999;
    width:100%;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
}

#subHeader > div {
    display:flex;
    position:relative;
    height:100%;
    align-items:center;
}

#subHeader > div > div {
    padding: 0 16px;
    height:100%;
    display:flex;
    align-items:center;
}
#subHeader .itemMenu:hover > a {
    color: var(--bleuF-bellon);
}
#subHeader a {
    color: #000;
    text-decoration: none;
}

#subHeader .bloc-menu-parts {
    display:none;
    position:absolute;
    background-color:rgba(255,255,255,0.95);
    top:56px;
    /*left:0;*/
    z-index:17;
    padding:20px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.67);
}
#subHeader .bloc-menu-parts .col-menu {
    width:280px;
}
#subHeader .bloc-menu-parts ul {
    list-style:none;
}
#subHeader .bloc-menu-parts li {
    padding:2px 5px;
}
#subHeader .bloc-menu-parts li a {
    color:#000;
    line-height:unset !important;
    display:block;
    font-size:13px;
}

#middleNavDiv > * {
    margin-left: 3vw;
}

aside nav a:hover {
    color:var(--tertiary-color);
    transition-duration: 200ms;
}
header nav a:hover {
    /*color:var(--orange-bellon);*/
    opacity:0.8;
    transition-duration: 100ms;
}

#menuMobile .dropside-content {
    background-color:white !important;
    border:0 !important;
}
#menuMobile .dropside-content a {
    color: var(--primary-color) !important;
}

#menu {
    display: flex;
    flex-direction: row;
}

#boxLanguage {
     padding:0 10px;
     height:30px;
     border-radius:5px;
     margin-right:20px;
     margin-left:20px;
 }
 #boxLanguage:focus-visible, #language-select:focus-visible {
     border:none;
      outline: none;
      box-shadow: none;
 }
 .flag, #language-select {
     height:24px;
 }
 #language-select {
    border-radius:5px;
    border:none;
    background-color: transparent;
    color: white;
 }
 #language-select option {
    color: black;
 }
 #language-select:active, #language-select:focus {
     border:none;
 }
 .flag {
     max-width:50px;
     padding:0;
     width:30px;
     border-radius:5px;
 }

#divPanierCompte {    
    display: flex;
    align-items:center;
}

#divPanierCompte form {
    padding-right:1rem;
}

#divPanierCompte .dropdown .dropdown-content p:nth-child(3) {
    margin-bottom:10px;
}

.dropdown {
    position: relative;
    display: inline-block;
    min-width: 16vw;
    border-left: 1px solid var(--secondary-color);
}

.dropdown-btn{
    cursor: pointer;
}

#dropdown-client a {
    padding:8px 0;
    
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary-color);
    z-index: 1;
    width:100%;
    height:0;
    padding:16px;
}

.dropdown-content >a,.dropdown-content >p {
    display: none;
    line-height: 2vh;
    padding:0;
}

.dropdown:hover .dropdown-content {
    display: block;
    flex-direction: column;
    transition: all 200ms ease-out;
    height: max-content;
    border-radius: 0 0 5px 5px;
}

.dropdown:hover .dropdown-content >* {
    display: block;
}


.buttons_header > button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom:15px;
}

.buttons_header > button:first-child, .buttons_header > button:nth-child(2) {
    width:100%;
}

/* FOOTER */

footer {
    display: flex;
    position: fixed;
    background-color: var(--primary-color);
    width: 100%;
    padding:0.5rem;
    color: var(--text-color-light);
    justify-content: space-between;
    bottom: 0;
    z-index: 2000;
}

footer > img {
    padding-left:10px;
    max-height: 6vh;
}

footer > a > p {
    align-self: center;
    margin: 0 15px 0 0;
    font-size:smaller;
}

footer > a {
    display: flex;
    text-decoration: none;
    color:inherit;
}

#logoClient{
    max-height: 20vh;
}

.logoBurger img {
    max-height:12vh;
}

/* ASIDE */

aside {
    border-radius: 3px;
    width: auto;
    min-width: 15vw;
    max-height: max-content;
    max-height: 100%;
    overflow-y: auto;
    z-index: 1;
    margin-right:40px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position:relative;
}
aside h3 {
    background-color: rgba(31,40,109,0.15);
    padding:15px;
    font-size:16px;
}
aside a {
    font-size:14px;
    text-decoration:none;
    margin-bottom:8px;
    color:#000;
}
aside::-webkit-scrollbar {
    display: none;
}
/* Menu Catégorie Mobile */
.closedCategory{
    cursor:pointer;
    text-align: end;
    display: none;
    position:absolute;
    top: 8px;
    right:8px;
}
.blockChooseCategory{
    display: none;
    padding:8px;
    margin-bottom:1rem;
}
.chooseCategory{
    display: flex !important;
    margin-bottom: 20px;
}
.listSpan{
    padding-right: 15px;
}
.expand_moreSpan{
    padding-left: 30px;
}




aside nav{
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

aside nav a {
    padding:6px 24px;
    margin: 0 !important;
}
aside nav a:hover {
    background-color:var(--tertiary-color);
    color: white !important;
}

aside nav p{
    text-decoration: none;
    cursor:pointer;
    color:var(--text-color-dark);
    display: inline-block;
    line-height:15px;
    padding:2px;
    font-size: 0.8rem;
}

aside nav p:hover {
    color:var(--text-color-dark);
    font-weight: bold;
    transition-duration: all 500ms;
}

aside .dropdownSMenuCat {
    display:none;
    padding-left:10px;
}
aside .showDropdown {
    display:flex;
    flex-direction:column;
}

/* CONNEXION */
#main-connexion {
    display:flex;
    /*background-image: var(--img);*/
    background-repeat: no-repeat; 
    background-size: cover;
    background-position: center right;
    min-height: calc(100vh);
    margin:0 !important;
	justify-content:center;
}

#box-connexion {
    /*rgin:0 auto;*/
    border-radius:500px;
    background-color: rgba(255,255,255,1);
    width:800px;
	height:800px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.25);
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	z-index:1000;
}
#contourLogin {
	position: absolute;
    width: 840px;
    height: 840px;
    background: linear-gradient(151deg, #35D3D2 9.75%, #0B489D 87.9%);
    border-radius: 500px;
    margin-top: 30px;
}
#boxLogos {
	padding: 0 8vw;
	display:flex;
	flex-direction:column;
	align-items:center;
	height:750px;
	justify-content:space-between;
}
#logoBellon {
	display:flex;
	position:fixed;
	right:20px;
	bottom:20px;
	justify-content:center !important;
	width:250px;
	padding:15px;
	align-items:center;
	border-radius:15px;
border:0.5px solid rgba(255,255,255,0.7);
}
#logoBellon > div > img:first-child {
	width:100%;
}

#box-connexion form {
    padding:50px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content: space-between;
	width:500px;
}
#logoConnexion {
    max-width:400px;
    max-height:300px;
}
#boxLogos > * {
	/*rgin-bottom:50px;*/
}
/*oxLogos > div {
	height:400px;
}*/
#boxLogos > img:last-child {
	margin-bottom:0;
}
#box-connexion h1 {
    font-size:16px;
    font-weight:400;
    text-align:start;
    margin-bottom:18px;
}
#box-connexion input {
    width:100%;
    height:50px;
    border-radius:10px;
    background : rgba(255, 255, 255, 0.40);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    margin-bottom:26px;
    border:0;
    padding:0 23px;
}
#box-connexion #reset-mail {
    margin-bottom:0;
}
#box-connexion #btn_connexion, #btn_reset, #btn_site {
    width:100%;
    height:50px;
    text-align:center;
    color:white;
    border-radius:10px;
    background-color:var(--bleuF-bellon);
    margin-bottom:20px;
}
#btn_site {
    background-color:var(--orange-bellon);
}
#box-connexion > form > div > div {
    display:flex;
    justify-content:flex-end;
}
#box-connexion a {
    color:var(--bleuF-bellon);
}
#separateur-connexion {
    width:300px !important;
    margin:0 auto;
    border-bottom: 1px solid black;
    margin-bottom:32px;
}
#devenir-client {
    background-color:black;
    color:white;
    width:100%;
    height:50px;
    border-radius:10px;
}
#box-connexion > form > div {
    width:100%;
}
#box-connexion h2 {
    text-align:center;
    font-size:20px;
    font-weight:400;
    margin-bottom:20px;
}


/* ACCUEIL */
#mainAccueil {
    margin-top:0 !important;
}

#content-accueil {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* SLIDER */

.titreAccueil{
    margin : 0;
    margin-bottom:40px;
}

.slides-container{
    max-width:100%;
    margin: auto;
    position: relative;
    margin-top: 112px !important;
}

.slide{
    position: relative;
}

.slideHide{
    display: none;
}

.photoSlider{
    height: 60vh;
    width: 100%;
    object-fit: cover;
    /*object-position: top;*/
}

.photo1{
    object-position: var(--position-photo1);
}
.photo2{
    object-position: var(--position-photo2);
}
.photo3{
    object-position: var(--position-photo3);
}

.slide-details{
    position: absolute;
    bottom: 40px;
    color: black;
    font-size: 1.5rem !important;
    background-color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    width: 350px;
    min-height: 40%;
    height:fit-content;
    top: 50%;
    transform: translate(-50%,-50%);
    text-transform: uppercase;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
}

@media (max-width: 839px){
    .slide-details{
        left:50% !important;
        width: 250px;
        min-height: 60%;
    }
}
@media (max-width: 475px){
    .slide-details{
        width: 250px;
        min-height: 60%;
    }
}

.slide-title{
    font-weight: bold;
    font-size: 30px;
    text-align: center;
}
.slide-button a{
    border: none;
    height: 50px;
    width: 100%;
    margin: 20px 0;
    text-transform: uppercase;
    background-color: #0c121c;
    color: white;
    text-decoration:none;
    display:flex;
    justify-content:center;
    align-items:center;
}
.slide-button button:hover{
    background-color: white;
    border: 1px solid #0c121c;
    color: #0c121c;
}
.dots{
    margin: 0 auto;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%,-50%);
}
.prevBtn, .nextBtn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 28px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.nextBtn {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  .prevBtn:hover, .nextBtn:hover {
    background-color: rgba(0,0,0,0.8);
  }

  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: rgb(117, 117, 117);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .dot:hover{
      background-color: white;
  }
  .dots span.active{
      background-color: white;
      border: 0.1px solid black;
  }
@media screen and (max-width: 650px) {
    .logo img:nth-child(1){
        display: none;
    }
    .logo img:nth-child(2){
        display: block;
    }
    header  .header-left{
        width: 100%;
    }    
}

button{
    cursor: pointer;
}

.relative{
    position: relative;
}
.absolute{
    position: absolute;
}


.flux{
    margin-top: 20px;
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

.blockFlux{
    display: flex;
    flex-direction:column;
    justify-content: space-around;
    align-items: center;
    margin-left: 50px;
    margin-right: 50px;
}

.blockPhotos{
    height: 100px;
    width: 100px;
    margin-bottom: 30px;
}

.flecheFlux{
    height: 50px;
    width: 50px;
}
.flecheFluxResponsive{
    display: none;
    transform: rotate(90deg);
    height: 50px;
    width: 50px;
}

@media (max-width: 760px){
    .flux{
        flex-direction:column;
        padding-bottom: 100px;
    }
    .flecheFlux{
        display: none;
    }
    .flecheFluxResponsive{
        display: block;
    }
    .blockFlux{
        padding: 20px;
    }
}


.blockParagraphe{
    text-align: center;
    
}
/* News */
.titreNewsH1 {
    text-align:start;
    font-size:20px;
    margin-bottom:10px;
}

.news {
    display:flex;
}
.news .card-news {
    width:300px;
    height:500px;
    border-radius:10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin-left:2px;
    margin-bottom:50px;
}
.news .card-news .bloc-news {
    padding:20px;
}
.news .card-news .img-news {
    height:200px;
    background-size:cover;
    background-position:50% 50%;
    border-radius:10px 10px 0 0;
}
.news .card-news .date-news {
    color: #666;
    margin-bottom:10px;
    text-align:justify !important;
}
.news .card-news .title-news h3 {
    font-size:18px;
    font-weight:bold;
    /*height:56px;*/
    margin-bottom:10px;
    text-align:justify !important;
}
.news .card-news .corps-news p {
    text-align:justify !important;
}

/* CONTACT */

#content-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top:0;
    min-height: calc(90vh - 110px);
}

#content-contact .form {    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    line-height: 20px;
    max-width: fit-content;
    align-items: flex-start;
    padding: 10px;
    background-color: var(--secondary-color);
    border: 1px solid silver;
    border-radius: 3px;
    align-items: center;
    margin: 8px;
    min-width: 25vw;
}

#content-contact input {    
    display: flex;
    min-width: 15vw;
    margin:8px;
}

.input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


/* RESETPASSWORD */
.form-resetpwd {
    margin-top : 30px !important;
}
.form-resetpwd > div {
    flex-direction:column;
    justify-content:start;
    align-items:flex-start;
}

.btn-resetpwd{
    margin : 20px 0 20px 0 !important;
    width: 100% ;
}

/* CHANGEPWD */

.input-changepwd {
    width: 95%;
}

.btn-changepwd{
    margin-bottom: 10px !important;
    width: 100%;
    padding: 10px;
}

#securite{
    text-align: left;
    margin : 20px 0 10px 0;
}

.title-changepwd{
    line-height: 1.3em;
}

.change-color{
    color: green;
    font-weight: bold;
}

.confirm-pwd{
    margin-top: 30px;
}

#togglePassword {
    margin-top: -35px;
    margin-left: 90%;
    cursor: pointer;
}

/* IDENTIFIANT */

.retour-connexion{
    margin-top: 50px;
}


.pagination {
    display: flex;
    justify-content: center;
    gap:8px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.pagination-link {
    display: flex;
    justify-content:center;
    align-items:center;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    width:40px;
    height:40px;
}

.pagination-link:hover {
    background-color: #f5f5f5;
}

.pagination-link.active {
    background-color: var(--tertiary-color);
    color: white;
    border-color: var(--tertiary-color);
}



/* MON COMPTE */

#cardCompte{
    display: flex;
    margin:auto;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 60vh;
    min-width: 50vw;
}
#cardCompte>div {
    margin:0;
    background:transparent;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius:10px;
    padding:18px;
    font-size:13px;
    height:268px;
}
#cardCompte>div:first-child, #cardCompte .group-address {
    width:25%;
}
#cardCompte>div:first-child input {
    width:100%;
}
#cardCompte>div:nth-child(2) {
    width:73%;
}
#cardCompte>div:nth-child(2)>div {
    display:flex;
}
#cardCompte>div:nth-child(2)>p {
    margin-bottom:10px;
}
#cardCompte>div:nth-child(2)>div .group-form {
    display:flex;
    flex-direction:column;
    align-items:center;
    border:1px solid #eee;
    flex:1;
    padding:20px 0;
}
#cardCompte>div:nth-child(2)>div .group-form > * {
    margin-bottom:10px;
}
#cardCompte>div:nth-child(2)>div .group-form > *:last-child {
    margin-bottom:0;
}
#cardCompte>div:nth-child(2)>div .group-form:first-child {
    border-radius: 5px 0 0 5px;
}
#cardCompte>div:nth-child(2)>div .group-form:last-child {
    border-radius: 0 5px 5px 0;
}
#cardCompte>div:nth-child(2)>div .group-form input {
    width:25px;
    height:25px;
}
#cardCompte>div h2 {
    text-align:start;
    margin-bottom:20px;
}

.title-adresse{
    text-align: left;
}

.adresse{
    border: 1px solid silver;
    border-radius: 4px;
    padding: 5px;
    display : flex;
    align-items: center;
    height:33px;
    font-size:13px;
}

.group-form {
    width: 100%;   
}

#cardCompte input{
    max-width: 30vw;
    background-color: white;
}

#cardCompte input[type="checkbox"] {
    height:1.5em;
    width:1.5em;
    cursor:pointer;
    position:relative;
    border-radius:4em;
}


 #joursliv {
    border: 1px black;
    padding:5px;
    text-align: center;
 }

 #joursliv th{
    border: 1px black;
    padding:5px;
    text-align: center;
 }

 #info_client td{
    padding:3px;
 }

/* SAISIE COMMANDE ARTICLES */
#page-product {
    display:flex;
    justify-content:center;
    align-items:start;
}
#page-product > div {
    display:flex;
    gap:1.5rem;
}
#page-product > div .blocImg {
    border:1px solid rgba(0,0,0,0.25);
    border-radius:8px;
    position:relative;
    padding:4px;
}
#page-product > div .blocImg p {
    position:absolute;
    bottom:-4px;
    right:0;
    padding:4px 16px;
    background-color:rgba(203,56,38,1);
    color:white;
    font-size:1.3rem;
    font-weight:500;
    border-radius: 8px 0 8px 0;
}
#page-product > div .blocInfos {
    flex:1;
}
#page-product #product-ean {
    color:rgba(0,0,0,0.5);
}
#page-product h1 {
    font-size:1.7rem;
    margin-bottom:0.25rem;
}
#page-product #product-brand {
    margin-bottom:1rem;
}
#page-product #product-price b {
    color:#1f2b6b;
    font-size:1.5rem;
}
#page-product #product-pcecol {
    margin-bottom:1rem;
}
#page-product #product-qty-panier {
    justify-content:start;
    gap:1.5rem;
}
#page-product #product-qty-panier > div > button {
    height:40px;
    width:40px;
    font-size:1rem;
}
#page-product #product-qty-panier > div > input {
    height:40px;
    font-size:1rem;
}
#page-product #product-qty-panier .inpUCde {
    height:40px;
    display:flex;
    align-items:center;
    padding:0 8px;
    border:1px solid rgba(0,0,0,0.5);
    border-radius:4px;
}
#page-product #product-qty-panier .inpUCde p {
    display:block;
    font-size:1rem;
}

#page-product #product-qty-panier > button {
    height:40px;
    background-color:#1f2b6b;
    padding: 0 16px;
    font-size:1rem;
    border-radius:4px;
    min-width:180px;
}

.article-link {
    text-decoration:none;
    color:black;
}

#content-articles {
    display: flex;
    align-items:start;
    justify-content: flex-start;
    padding: 3vh 2vw 7vh 2vw !important;
}
#content-articles > div:nth-child(2) {
    flex:1;
}

.title_articles {
    width: 100%;
    text-align: start;
}

#section-articles {
    flex-grow: 1;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
}

.out-of-stock {
    height:30px;
    margin-bottom:10px;
    color:#D3412A;
}
.out-of-stock p {
    font-size:14px;
    margin-bottom:0;
    text-align:start;
    line-height:1.2;
}

.article-quantite {
    display: flex;
    justify-content: space-between;
    margin-bottom:10px;
    align-items: center;
    width: 100%;
}

.btnRemoveFromCart, .inpUpdateCart, .btnAddToCart {
    margin:0 !important;
    height:30px;
    border:0 !important;
}
.inpUpdateCart {
    width:65px !important;
    text-align:center;
}
.btnRemoveFromCart {
    border-radius: 5px 0px 0px 5px;
    width:30px;
}
.btnAddToCart {
    border-radius: 0px 5px 5px 0px;
    width:30px;
}
.inpUCde {
    margin:0 !important;
    width:99px !important;
}

.cartQuantities .d-flex {
    justify-content: flex-start;
}
.cartQuantities .inpUpdateCart {
   flex: 1;
}
.cartQuantities .btnAddToCart {
   border-radius: 5px; 
}
.cartQuantities .btnRemoveFromCart {
    border-radius: 5px;
}

#modalCartDate {
    display:none;
}
#modalCartDate > div {
	display:flex;
}
#modalCartDate > div input {
	margin-right:15px;
}
#modalCartDate button {
	background-color: transparent;
    border: 1px solid #ccc;
    color: #000;
	height: 33px;
	border-radius: 5px;
}
#modifDateCart {
	text-decoration:underline;
}
.cart-entete {
	display:block !important;
}
.cart-entete > div:first-child {
	display:flex;
}
.cart-entete h2 {
	text-align:start !important;
	margin-right:15px;
}
.cart-entete .cart-empty {
	display:block !important;
}

.article-quantite input, .article-quantite .inpUCde {
    display: flex;
    width:70px;
    margin-left:3px;
    margin-right:3px;
    background-color:white;
    border:1px solid silver;
    border-radius:3px;
    height:30px;
    align-items:center;
    padding:0 5px;
}

.article-quantite select:required:invalid {
    color: rgb(161, 161, 161);
}
.article-quantite option[value=""][disabled] {
    display: none;
}
.article-quantite option {
    color: rgb(0, 0, 0);
}

.barre-panier {
    display:flex;
    margin-bottom:30px;
}
.barre-panier button {
    margin:0;
}
.barre-panier .goto_cart {
    background-color:var(--bleuF-bellon);
    margin-right:15px;
}
.barre-panier .delete_cart {
    background-color:transparent;
    border:1px solid var(--orange-bellon);
    color:var(--orange-bellon);
}
.barre-panier .delete_cart:hover {
    background-color: var(--orange-bellon);
    color:#fff;
}

.comBtnValider {
    display: flex;
    justify-content:space-between;
    flex-direction:row-reverse;
}
.comBtnValider button {
    height:30px !important;
    margin:0 !important;
}
.comBtnValider .btnAddToCartMain {
    width:100%;
    background-color:var(--primary-color);
    font-size:13px;
}
.comBtnValider .btn-comment {
    width:99px;
    font-size:12px;
    font-weight:400;
}

.jconfirm .jconfirm-box.jconfirm-type-orange {
    border-top: solid 7px var(--orange-bellon) !important;
}

.product-list {
    display:flex;
    flex-wrap: wrap;
    justify-content:space-between;
}

.product-item {
    border-radius: 5px;
    border: 1px solid #EEE;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width:280px;
    margin-bottom:30px;
    position:relative;
}

.item-fantome {
    box-shadow:unset !important;
    height:0;
    border:0;
    display:block !important;
}

.product-item .imgBtnContainer {
    height:200px;
    position:relative;
    display:flex;
    justify-content:center;
}
.product-item .imgBtnContainer .updateImg {
    display:none;
    position:absolute;
    bottom:9px;
    left:0;
}
.product-item .imgBtnContainer .updateImg label {
    cursor: pointer;
    padding:10px 15px;
    background-color:white;
}
.product-item .imgBtnContainer .updateImg input {
    display:none;
}
.product-item .imgBtnContainer span {
    position: absolute;
    width:70px;
    height:28px;
    top:10px;
    border-radius:5px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
}
.product-item .imgBtnContainer span.tagPromo {
    background-color:var(--bleuC-bellon);
    left:10px;
    color:#fff;
}
.product-item .imgBtnContainer span.tagNouveau {
    background-color: #D3412A;
    right:10px;
    color: #fff;
}

.product-item img {
    /*width:100%;*/
    /*height: auto;*/
    max-width:100%;
    margin-bottom:0;
    max-height: 200px;
    min-height: 200px;
    border-radius: 3px;
    object-fit: cover;
}

.product-info h3 {
    font-size:14px;
    font-weight:600;
    width:100%;
    text-align:start;
    margin:0;
    margin-bottom:12px;
    height:21px;
    overflow:hidden;
    white-space: nowrap;
    text-overflow:ellipsis;
}

.product-bloc {
    padding:15px 20px;
}
.product-bloc .prixStkCdt p {
    margin:0;
    font-size:13px;
}
.product-bloc .prixStkCdt {
    height:40px;
    margin-bottom:12px;
}

.product-bloc .prixStkCdt.reduireDiv {
    height: 20px;
    margin-bottom: 0px;
}

.product-bloc .infoArt {
    display: flex;
    justify-content: space-between;
    margin: 0;
    font-size:13px;
    flex-wrap: wrap;
}

.product-bloc .infoArt .span {
    margin:0;
    font-size:13px;
    white-space: nowrap;       
    overflow: hidden;          
    text-overflow: ellipsis;   
    max-width: 100%;  
    /*flex: 1 1 auto;*/
}

.articles-error {
    padding:20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position:absolute;
    bottom:0;
}

.Comment {
    position:absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top:35vh;
    left:calc(32vw);
    width:36vw;
    height:30vh;
    color:black;
    text-align:center;
    background:white;
    opacity: 0.9!important;
    padding:40px;
    display:none;
    border: none;
    border-radius: 5px;
    z-index: 9999;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.67);
}
.Comment>div {
    justify-content:space-between;
}
.btn-add-comm, .btn-del-comm {
    width:250px !important;
    margin:0 !important;
}
.btn-add-comm {
    background-color: var(--bleuF-bellon) !important;
}
.btn-del-comm {
    background-color: var(--orange-bellon) !important;
}

.commentLignePanier{
    position:absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left:calc(40vw);
    width:20vw;
    height:20vh;
    color:black;
    text-align:center;
    background:grey;
    opacity: 0.9!important;
    padding:1.2rem;
    display:none;
    border: 1px solid silver;
    border-radius: 5px;
    z-index: 9999;
    
}

.Comment > *{
    justify-content: center;
    align-items: center;
    display: flex;
}


.commentLignePanier > *{
    justify-content: center;
    align-items: center;
    display: flex;
}


.Comment button {
    justify-content: center;
    align-items: center;
    display: flex;
    margin:0.7rem;
}

.commentLignePanier button {
    justify-content: center;
    align-items: center;
    display: flex;
    margin:0.7rem;
}

.Comment textarea {
    border: 1px solid silver;
    border-radius: 5px;
    font-family: var(--my-font);
    padding:5px;
}

.commentLignePanier textarea {
    border: 1px solid silver;
    border-radius: 5px;
    font-family: var(--my-font);
    padding:5px;
}

.commentLigneCart{
    display: flex;
    justify-content: space-between;
}

.form_livraison .form-group {
    gap: 1.5em;
    display: flex;
    flex-direction: column;
}
.form_livraison .form-group div {
    gap:2em;
}
.form_livraison input {
    height:33px;
    flex:1;
}

/*.product-item:hover .star {
    display:flex;
}*/
.star {
    display:flex;
    position: absolute;
    right:10px;
    bottom:10px;
    color: var(--orange-bellon);
    border-radius:50px;
    background-color:white;
    width:30px;
    height:30px;
    justify-content:center;
    align-items:center;
}

.star i {
    cursor: pointer;
}

#barre_date_liv > *, #date_liv {
    font-size: 0.99rem;
}
#date_liv {
    width:140px;
}

#barreCmd {
    justify-content: left;
}


/* factures */

#commandes_reset, #barreCmd>div>input {
    height:33px;
}
#commandes_reset {
    margin: 0 !important;
    background-color: transparent;
    border: 1px solid #eee;
    color: #000;
}

#commandes .colButtons button {
    background-color:var(--bleuF-bellon);
}

#commandes button.dt-button:active:not(.disabled) {
    box-shadow:unset !important;
}
#commandes .dt-buttons button, #extraits_table_wrapper div.dt-buttons>button {
    margin:0 !important;
}
#commandes_table_filter, #commandes .dt-buttons, #extraits_table_wrapper div.dt-buttons, #stats_table_wrapper div.dt-buttons {
    margin-bottom:15px !important;
}
#commandes_table_filter input, #commandes .dt-buttons button {
    height:33px;
}
#commandes_table_filter label {
    display:flex;
    align-items:center;
}
#commandes_table_filter input {
    margin-left: 8px;
}
#commandes .dt-buttons>button, #commandes div.dt-button-collection button.dt-button, #extraits_table_wrapper div.dt-buttons>button, #statistiques .dt-buttons > button {
    background:transparent !important;
    border:1px solid #eee !important;
}

#barreCmd {
    gap:8px;
}

#barreCmd #date_submit {
    height:33px;
    padding: 0 10px;
    background-color:var(--bleuF-bellon);
    border:0;
    border-radius:3px;
    color:white;
    margin-right:10px;
}
#barreCmd #date_reset {
    background-color:transparent;
    border:1px solid #eee;
    color:#000;
    height:33px;
    padding:0 5px;
}
#barreCmd #date_fin, #barreCmd #date_debut {
    padding:0 10px;
    width:150px;
}

#commandes_table {
    margin-bottom:10px;
}
#commandes_table thead, #extraits_table thead, #stats_table thead {
    background-color: #EAF1FA;
    height: 50px;
    border-radius: 5px 5px 0 0;
    border: 1px solid #eaf1fa;
}
#commandes_table tbody tr, #extraits_table tbody tr, #stats_table tbody tr {
    border-top: 1px solid #e0e0e0;
}
#commandes_table tbody td, #extraits_table tbody td, #stats_table tbody td {
    border-top: 0 !important;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 8px;
}
#commandes_table tbody tr td:first-child, #extraits_table tbody tr td:first-child, #stats_table tbody tr td:first-child {
    border-left: 1px solid #e0e0e0;
}


.dataTable tbody tr:hover, .dataTable tbody tr:hover > .sorting_1 {
    background-color: rgba(234,241,250,0.5) !important;
}
table.dataTable.no-footer {
    border:none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background:transparent !important;
    border:1px solid #eee !important;
    color:#000 !important;
}

/*PANIER*/

.div-center {
    display: flex;
    justify-content: center;
}

.card-white{
    background: var(--background-color);
    border-radius: 0;
    border: none;
}

#divInfo{
    width: 100%; 
    display: inline-flex; 
    justify-content: space-around;
    padding-top: 2vh;
}
#divInfoMobile{
    width: 85%;
}
#divInfoMobile > a {
    margin: 40px 0;
    display:flex;
    flex-direction: row;
    text-decoration: none;
}
#divInfoMobile > a > div:first-child{
    text-align: center;
    width: 90%;
}
#divInfoMobile > a > div:not(:first-child){
    font-size: xx-large;
}

#divInfo > div{
    display: inline-flex;
    align-items: center;
    flex-direction: column;
}

input:not([type='submit']), select{
    border: 1px solid silver;
    border-radius: 3px;
    padding:0 5px;
}

input[type='text']:read-only, input[type='text']:disabled{
    background-color:var(--secondary-color);
}

.panier_comment_ligne {
    font-style: italic;
    font-size: smaller;
}

.article_delete i {
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.flex-column {
    display:flex;
    justify-content:center;
    flex-direction:column;
    align-items:center;
}

.flex-column > *{
    margin:5px;
}

.cart-entete {
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
    align-items:center;
}
.cart-entete .cart-empty p {
 margin: 0 0 20px 0;
}
.cart-entete .cart-empty button {
    margin:0;
    background-color:var(--bleuF-bellon);
    height:33px;
    padding:0 15px;
}

.adresses{
    text-align: center;
}
#adresseLivraion {
    padding:5px;
    width:250px;
}
.btn-cart {
    margin-bottom:25px;
    display:flex;
}
.btn-cart button {
    height:40px;
    width:200px;
    margin:0;
    border-radius:5px;
    margin-right:15px;
    margin-bottom:10px;
}
.btn-cart > button:first-child {
    background-color:var(--bleuF-bellon);
}
.btn-cart > button:nth-child(2) {
    background-color:var(--orange-bellon);
}
.btn-cart > button:nth-child(3) {
    background-color:transparent;
    border:1px solid #ccc;
    color:#000;
}
.btn-delete-cart {
    background-color: var(--orange-bellon) !important;
}

.cart-btn-confirm {
    background-color: var(--bleuF-bellon);
}
.cart-btn-retour {
    background-color: var(--orange-bellon);
}
.cart-btn-confirm, .cart-btn-retour {
    width: 110px;
}

#panier_table_filter, #panier_table_length select {
    margin-bottom:15px;
}
#panier_table_filter input, #panier_table_length select {
    height:33px;
}

#panier_table {
    width:100%;
    border-spacing:0;
    border-radius:5px 5px 0 0;
    overflow:hidden;
}
#panier_table thead {
    background-color:#EAF1FA;
    height:50px;
    border-radius: 5px 5px 0 0;
    border:1px solid #eaf1fa;
}
#panier_table tbody > tr:last-child > td:first-child {
    border-radius: 0 0 0 5px;
}
#panier_table tbody > tr:last-child > td:last-child {
    border-radius: 0 0 5px 0;
}
#panier_table tbody td {
    border-top:0 !important;
    border-right:1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding:12px 8px;
}
#panier_table tbody tr {
    border-top:1px solid #e0e0e0;
}
#panier_table tbody tr td:first-child {
    border-left:1px solid #e0e0e0;
}
#panier_table tbody td .article_delete {
    display:flex;
    justify-content:center;
    cursor:pointer;
}
#panier_table tfoot td {
    border:none;
    padding: 15px 8px;
}
table.dataTable thead th, table.dataTable thead td, table.dataTable thead th, table.dataTable thead td {
    border-bottom:0 !important;
}

/* page Admin */
#ongletsAdmin {
    display:flex;
    margin-bottom:30px;
    justify-content:center;
    border-bottom:1px solid #eee;
}
#ongletsAdmin>div {
    border-right:1px solid #eee;
    padding:10px 20px;
    cursor:pointer;
}
#ongletsAdmin>div:last-child {
    border-right: none;
}
#blocContact, #blocCGV, #blocMentions, #blocSlide, #blocNews {
    display:none;
}
#blocOnglets h2 {
    margin-bottom:20px;
}
#blocOnglets>div>div:nth-child(2) {
    margin-bottom:20px;
}
#blocOnglets button.updateTextArea {
    height:33px;
    background-color:var(--bleuF-bellon);
    color:white;
    padding:0 10px;
    border-radius:3px;
    border:none;
}
#blocParam > div {
    display:flex;
    justify-content:space-between;
}
#blocParam > div > div {
    width:48%;
}
#blocParam .paramAdmin {
    padding:20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius:5px;
    margin-bottom:10px;
}
#blocParam .paramAdmin > p {
    margin-bottom: 10px;
}
#blocParam .paramAdmin > div {
    display:flex;
    align-items:center;
    margin-bottom:10px;
}
#blocParam .paramAdmin > div > p {
    margin-right:10px;
}
#blocParam .paramAdmin > div > div > * {
    height:33px;
}
#blocParam .paramAdmin > button {
    padding:0 5px;
    background-color: var(--bleuF-bellon);
    color:white;
    border:none;
    border-radius:3px;
    height:33px;
}

#paramCatalogue {
    display:block !important;
}
#paramCatalogue input {
    border:0;
    height:40px;
}
.file-upload {
    padding: 0;
    display: flex;
    align-items: center;
    width: 200px;
    justify-content: center;
	position: relative;
	overflow: hidden;
	border-radius: 5px !important;
	background: white;
	border:1px solid var(--bleuF-bellon);
	box-shadow: none !important;
	color: var(--bleuF-bellon);
    height:40px;
    margin-bottom:-10px;
}
.file-upload input.upload {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
}
#fileuploadurl{
	display: inline-block;
	border:none;
	vertical-align: middle;
	background: none;
	box-shadow: none;
	font-size: 11px;
	padding-left: 10px;
	padding-right: 0;
}
#importCatalogue {
    height:40px;
    background-color:var(--bleuF-bellon);
    color:white;
    border:0;
    border-radius:5px;
    padding:0 15px;
}

#blocNews > div > div:first-child, #blocSlide > div > div:first-child {
    margin-bottom:20px;
    position:relative;
}
#modal-close, #modalSlide-close {
    position:absolute;
    top:20px;
    right:20px;
    background:url('../img/icons/close.svg');
    width:20px;
    height:20px;
    border:0;
    opacity:0.3;
}
#blocNews #createNew, #blocSlide #createSlide {
    background-color: var(--bleuF-bellon);
    color:white;
    height:33px;
    border:none;
    border-radius:3px;
    padding:0 10px;
}
#blocNews .news {
    display:flex;
    flex-wrap:wrap;
}
#blocNews .news .card-news {
    margin: 0 10px 20px 10px;
    position:relative;
}
#blocNews .news .card-news .modif-actu, #blocNews .news .card-news .suppr-actu {
    position: absolute;
    color:white;
    height:33px;
    border:none;
    border-radius:3px;
    padding:0 5px;
    min-width:80px;
}
#blocNews .news .card-news .modif-actu {
    background-color:var(--bleuC-bellon);
    bottom: 20px;
    right: 20px;
}
#blocNews .news .card-news .suppr-actu {
    background-color:var(--orange-bellon);
    bottom: 20px;
    left: 20px;
}
#modal-createNews, #modal-createSlide {
    display:none;
    position:fixed;
    top:0;
    left:0;
    background-color:rgba(0,0,0,0.3);
    width:100vw;
    min-height:100vh;
    justify-content:center;
    align-items:center;
    z-index:10000;
}
#modal-createNews > .modal-create, #modal-createSlide > .modal-create {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color:white;
    width:30vw;
    border-radius:10px;
    padding:20px;
    max-height: 90vh;
    overflow-y: scroll;
    scrollbar-width: none;
}
#modal-createNews > .modal-create::-webkit-scrollbar, #modal-createSlide > .modal-create::-webkit-scrollbar {
    display:none;
}
#modal-createNews > .modal-create h3, #modal-createSlide > .modal-create h3 {
    text-align:center;
    margin-bottom:20px;
}
#modal-createNews > .modal-create .form, #modal-createSlide > .modal-create .form {
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
}
#modal-createNews > .modal-create .createNew-img, #modal-createNews > .modal-create .createSlide-titre, #modal-createSlide > .modal-create .createSlide-img, #modal-createSlide > .modal-create .createSlide-titre {
    width:48%;
}
#modal-createNews > .modal-create .createNew-titre input, #modal-createSlide .createSlide-dateExp, #modal-createSlide > .modal-create .createSlide-titre input {
    width:100%;
}
#modal-createNews > .modal-create .createNew-text, #modal-createNews > .modal-create .createNew-text textarea, #modal-createSlide > .modal-create .createSlide-text, #modal-createSlide > .modal-create .createSlide-text textarea {
    width:100%;
}
#modal-createNews > .modal-create .createNew-text #new-text, #modal-createSlide > .modal-create .createSlide-text #slide-text {
    padding:10px;
}
#modal-createNews > .modal-create .form > div, #modal-createSlide > .modal-create .form > div {
    margin-bottom:15px;
}
#modal-createNews > .modal-create .form > div:last-child, #modal-createSlide > .modal-create .form > div:last-child {
    margin-bottom:0;
}
#modal-createNews > .modal-create .form > div input, #modal-createSlide > .modal-create .form > div input {
    height:33px;
}
#modal-createNews > .modal-create h4, #modal-createSlide > .modal-create h4 {
    margin-bottom:15px;
}
#modal-createNews > .modal-create .createNew-img label, #modal-createSlide > .modal-create .createSlide-img label {
    background-color: transparent;
    padding: 0 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    height: 33px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
#modal-createNews > .modal-create #new-image, #modal-createSlide > .modal-create #slide-image {
    display:none;
}
#modal-createNews #new-submit, #modal-createSlide #slide-submit {
    padding:5px 20px;
    background-color: var(--bleuF-bellon);
    border-radius:4px;
    color:white;
    border:0;
}
#modal-createNews #imagePreviewContainer, #modal-createSlide #imageSlidePreviewContainer {
    display:none;
    width:100%;
}
#modal-createNews #imagePreviewContainer img, #modal-createSlide #imageSlidePreviewContainer img {
    width:100%;
    margin-top:15px;
}

/* bandeau promo */
.upload-section {
    margin-bottom: 30px;
    width:300px;
}

.preview-container {
    width: 100%;
    height: 300px;
    margin-bottom:8px;
    border: 3px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.preview-container.has-image {
    border: 3px solid #4CAF50;
    border-style: solid;
}

.preview-container:hover {
    border-color: #667eea;
    background: #f0f2ff;
}

.preview-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.preview-placeholder {
    color: #999;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}

.preview-placeholder span {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    color: #ccc;
}

.file-input-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    width:100%;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-button {
    background-color: white;
    color: black;
    padding: 8px 30px;
    border: 1px solid #c3c3c3;
    justify-content:center;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    width:100%;
}

.file-input-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.file-info {
    color: #666;
    font-size: 14px;
    margin-bottom:16px;
}

.file-name {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.error-message {
    color: #e74c3c;
    background: #ffeaea;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
}

.success-message {
    color: #27ae60;
    background: #eafaf1;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
}

.remove-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(231, 76, 60, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s ease;
}

.remove-button:hover {
    background: rgba(231, 76, 60, 1);
}

.preview-container.has-image .remove-button {
    display: flex;
}

.submit-button {
    background-color:var(--primary-color);
    color: white;
    padding: 9px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width:100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(31, 40, 109, 0.3);
}

.submit-button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}


/* admin slider */
#blocSlide .slides-container {
    margin-top:0;
}
#blocSlide .suppr-slide {
    position:absolute;
    bottom:20px;
    left:20px;
    background-color:var(--orange-bellon);
    height:33px;
    color:white;
    border:0;
    border-radius:4px;
    padding:5px 10px;
}

#blocSlide .modal-create div input, #blocSlide .modal-create div select {
    height:33px;
}

#modal-createSlide .createSlide-position, #modal-createSlide .createSlide-bouton, #modal-createSlide .createSlide-lien, #modal-createSlide .createSlide-dateExp {
    width:48%;
}

#modal-createSlide .createSlide-position select, #modal-createSlide .createSlide-bouton input, #modal-createSlide .createSlide-lien select, #modal-createSlide .createSlide-dateExp input {
    width:100%;
}

/* fond d'écran connexion */
#blocFond #formFond > div {
	justify-content:start;
	margin-bottom:30px;
}
#validFond {
	background-color: #0B489D;
    border-radius: 4px;
    color: white;
    border: none;
    height: 40px;
    width: 120px;
}
.boxUploadFond {
    margin:5px;
    position:relative;
    justify-content:center;
    text-align:center;
    display:flex;
    align-items:center;
    border:2px dashed #0B489D;
    color: #0B489D;
    border-radius:5px;
    font-weight:500;
    font-size:14px;
}
.boxUploadFond input {
    opacity:0;
    height:100%;
    position:absolute;
    width:100%;
    top:0;
    left:0;
    cursor:pointer;
}
.boxImgFond {
    position:relative;
}
.boxImgFond > div {
    position:absolute;
    width:100%;
    height:100%;
    display:none;
    z-index:10;
    justify-content:center;
    align-items:center;
    top:0;
}
.boxImgFond:hover > div {
    display:flex;
}
.boxImgFond button {
    border-radius:5px;
    padding:5px 10px;
    background-color:#FE5F00;
    color:white;
    border:0;
}

/* Choix lib Article */
#blocArt #formArt > div {
	justify-content:start;
	margin-bottom:30px;
}
#validArtOpt {
	background-color: #0B489D;
    border-radius: 4px;
    color: white;
    border: none;
    height: 40px;
    width: 120px;
}

/*METEO*/

#divMeteo{
    margin: 1vh auto;
    min-height: fit-content;
    min-width: fit-content;
    max-width: 30vw;
    max-height: 18vh;
    color: var(--text-color-light);
    border: 4px solid #608094;
    background: #16394c;
    border-radius: 20px;
    padding: 5px;
}
#divMeteo h4{
    margin: 2px;
    text-align: center;
    font-weight: 500;
    font-size: larger;
}
#divMeteo h5{
    margin: 0;
    font-weight: 500;
    font-size: revert;
}
#divMeteo > div{
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
}
#divMeteo > div > *{
    padding: 5px;
}

/*CAROUSEL*/

.owl-carousel {
    overflow: hidden;
    text-align: center;
    margin-top: 0.5rem;
}

.carousel-wrapper {
    width: 1000px;
    margin: auto;
    position: relative;
    text-align: center;
    font-family: sans-serif;
    height: 35vh;
}

.owl-carousel .item {
    background: var(--secondary-color);
    display: inline-block;
    border-radius: 5px;
    padding: 0.8rem;    
    width: 90%;    
    text-align: center;
    height: 35vh;
    overflow: auto;
}

.owl-carousel h2 {
   font-size:1.1rem;
}

.owl-carousel h3 {
    font-size:1rem;
    justify-content: center;
    text-align: center;
}

.owl-carousel p {
    font-size: 0.9rem;
    text-align:center;
    padding:4px;
}
.carouselImg {
    float:left; 
    max-width: 20vw;
}

.owl-carousel .owl-nav {
    overflow: hidden;
    height: 0px;
}

.owl-carousel .nav-button {
    height: 50px;
    width: 25px;
    cursor: pointer;
    position: absolute;
    top: 110px !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.25;
}

.owl-carousel .owl-prev {
    left: 0px;
}

.owl-carousel .owl-next {
    right: 0px;
}

.owl-theme .owl-nav [class*=owl-] {
    color: var(--text-color-dark);
    font-size: 39px;
    background: transparent;
    border-radius: 3px;
}

.owl-carousel{
    overflow: hidden;
    text-align: center;
    margin-top: 1rem;
}
.owl-carousel .item {
    background: var(--secondary-color);
    display: inline-block;
    border-radius: 15px;
    width: 90%;    
    text-align: left;
    max-height: 28rem;
    overflow: auto;
}

.carouselImg {
    float:left; 
    max-width: 25vw;
}

.owl-carousel .owl-stage {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/*MENU MOBILE DROPSIDE*/

.dropside{
    height: 100%;
    position: relative;
    display: inline-block;
    width: 15vw;
}

.dropside-content{
    position: fixed;
    z-index: 1;
    width:100vw;
    left:-100vw;
    transition: transform 200ms ease-out;
    height: 100vh;
    flex-direction: column;
    background-color: var(--primary-color);
    font-size: 40px;
    color:var(--background-color);
}

.dropside-content a{
    color:var(--background-color);
}

.dropside-content.active{    
    border:2px solid var(--primary-color);
    transform: translateX(100vw);
}

.dropside-content .categorie{    
    display: flex;
    flex-direction: column;
    padding: 1.2vh 4vw;
    color:var(--background-color);
}

.dropside-content .categorie-content{
    overflow: hidden;
    transition: 0.5s;
    max-height: 0px;
}

.dropside-content .categorie-content.opened{
    max-height: 1000px;
}

.dropside-content .chevron{
    transition: 0.5s;
    margin-right: 30px;
}

.dropside-content .chevron.opened{
    transform: rotateZ(90deg);
}

.dropside-content .subutton{
    color:var(--primary-color);
}

.dropside-content a{
    justify-content: start;
}

.subutton{
    padding: 5% 10% 0;
    font-size: 35px;
}

#burgerTool{
    transition:0.4s;
    font-size: x-large;
    color:var(--background-color);
}

#burgerTool.active{
    color: var(--orange-bellon);
    transform: rotateZ(180deg) scale3d(1.1, 1.1, 1.1);
}

/*LOADER*/

#loader-articles {
    position: absolute;
    left: 56vw;
    top: 56vh;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid var(--tertiary-color);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }

  #loader {
    position: absolute;
    left: 50vw;
    top: 56vh;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid var(--orange-bellon);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }

  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  

/**** MEDIA QUERIES ****/



/*MOBILE*/
@media (max-width: 1230px){
    .modal-create .form > div {
        width:100% !important;
    }
}

@media (max-width: 1012px){
    #cardCompte .form{
        text-align: left;
    }

    #modal-createNews > .modal-create, #modal-createSlide > .modal-create {
        width:50vw;
    }
}

@media (max-width: 838px){
    .hide_mobile{
        display: none !important;
    }
    
    #boxLanguage {
        margin:0;
    }
    
    #modalProspeForm > div {
        width: 100%;
        height: 100%;
        border-radius: 0;
        overflow-y:scroll;
    }
    #divIdentification {
        flex-direction:column;
    }
    
    aside nav {
        padding:0 16px;
    }
    #formIdentification {
        justify-content:start;
        gap:12px;
    }
    
    #divPanierCompte, #divPanierCompte form {
        flex-grow:1;
    }
    #divPanierCompte form input {
        width:100%;
    }
    
    #aside {
        margin-right:0;
    }
    #content-articles {
        align-items:center;
    }
    .item-fantome {
        display:none !important;
    }
    
    #page-product > div {
        width:100%;
        flex-direction:column;
    }
    #page-product .img-product {
        width:100%;
    }
    #product-qty-panier {
        flex-wrap:wrap;
    }
    

    .owl-carousel .item {
        padding: 0.8rem;    
        height: 100%;
        max-height: 50vh !important;
    }

    .owl-carousel h2 {
        font-size:0.9rem;
     }
     
     .owl-carousel h3 {
        font-size:0.8rem;
     }
     
     .owl-carousel p {
        font-size: 0.8rem;
     }
     
     .photoSlider {
         height:auto;
     }

    #divMeteo{
        width: 80%;
        margin-top: 1vh !important;
        margin-bottom: 1vh !important;
    }
    table{
        border-spacing: 20px;
    }
    #divCommande > a{
        margin: 0 3vw;
    }
    aside nav a{
        padding: 10px 0;
    }
    #content-connexion .form, #content-contact .form {
        width: 60vw;
        max-width: unset;
        line-height: 15px;
    }

    .input-group {
        flex-direction: column;
    }
    
    #divMeteo{
        max-width: unset;
        max-height: unset;
    }
    #divMeteo > div > div{
        width:33%;
    }    
    
    main {
        margin-top:0;
        padding-top:10vh;
        padding-bottom:10vh;
        min-height: calc(78vh);
        z-index:1;
    }
   
    #content {
        justify-content: center;
        min-height: calc(78vh);
        padding-top:2vh;
        padding-left:2vw;
        padding-right:2vw;
        padding-bottom:12vh;
        align-self: center;
    }

    #content-connexion, #content-contact{
        justify-content: center;
        min-height: calc(74vh);
    }

    .d-flex a, .d-flex p{
        height: 100%;
    }

    .dropdown{
        height:100%;
    }

    p {
        padding:2px;
        font-size: medium;
    }
    
    .categorie > a, .categorie p{
        font-size: 1.1rem;
        align-self:start;
    }    
    
    nav a:hover{
        color:unset;
    }

    #joursliv tr { 
        display: block; 
        float: left;  
        border: 1px;
        padding:5px;
    }

    #joursliv th, #joursliv td {
        display: block; 
        text-align: left;
        padding:5px;
        border: 1px;
    }

    aside {
        display:none;
    }

    .closedCategory{
        display:block;
    }

    .blockChooseCategory{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    #content-articles {
        justify-content: flex-start;
        min-height: calc(78vh);
        padding-top:10vh;
        padding-left:8vw;
        padding-right:8vw;
        padding-bottom:12vh;
        align-self: center;
    }

    .product-list {
        margin-top:25px;
        display: flex;
        align-items:center;
    }

    .article-quantite input, .article-quantite select{
        min-width: 80px;
    }

    select > option {
        max-height:60px;
    }

    .barre {
        justify-content: space-around;
    }
    

    .recherche > form, .barre > form {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
      /*  min-width: 80vw;*/
        justify-content: center;
    }

    .recherche > form > input[type='text'] {
        max-width:30vw;
    } 

    .recherche > form > button > i {
        margin-right: 5px;
        margin-left: 5px;
    }

    .Comment{
        position:fixed;
        display: flex;
        flex-direction: column;
        justify-content: center;
        top:50vh;
        left:15vw;
        width:60vw;
        height:30vh;
        color:black;
        text-align:center;
        background:grey;
        opacity:0.9;
        padding:1.2rem;
        display:none;
        border: 1px solid silver;
        border-radius: 5px;
    }

    .Comment textarea {
        font-size: medium;
    }

    .dataTable {
        width: 150px;
    }

    .jconfirm-box {
        text-align: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 80vw;
    }

    #form-connexion{
        padding:4vw;
    }

    .blur {
        filter: blur(5px);
        -webkit-filter: blur(5px);
        -moz-filter: blur(5px);
        -o-filter: blur(5px);
        -ms-filter: blur(5px);
    }
    
    #overlay  {
        position: fixed;
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        background: rgba(255,255,255,.8);
        z-index: 20;
    }

    .title_articles {
        width: 100%;
        text-align: center;
    }

}

@media (max-width: 576px) {
    #modal-createNews > .modal-create, #modal-createSlide > .modal-create {
        width:80vw;
    }
}


/* GARPHIQUE PAGE STATISTIQUE */

    .titreStats{
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }

    .btnStats{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
        margin-bottom: 20px !important;
    }

    .btnChoice{
        min-width: 150px;
    }

    #lineCanvas{
        max-height: 70vh !important;
    }

    .chart-container{
        display: none;
    }

    #chart-container2{
        margin-top: 100px;
        margin-bottom: 100px;
        height: 80vh;
        width: 100%;  
    }


    .graphs{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
    }


/* RESPONSIVE */
    
    @media (min-width: 1025px){
        .hide_desktop{
            display: none !important;
        }

        #cardCompte>div:nth-child(2)>div .group-form {
            width:50%;
            flex:none;
        }
        #cardCompte>div:nth-child(2)>div {
            flex-wrap:wrap;
        }
        #cardCompte>div {
            height:auto;
        }
        .blockFlux {
        	width:12%;
    	}
    }
    @media (min-width:1500px) {
        #cardCompte>div:nth-child(2)>div .group-form {
            width:auto;
            flex:1;
        }
        #cardCompte>div {
            height:268px;
        }
        
        #page-product > div {
            width:auto;
        }
    }

	@media (max-width:1500px) {
    	#box-connexion {
        	width:800px;
    	}
    	#boxLogos {
        	height:auto;
    	}
    	#logoBellon {
        	width:200px;
        	height:150px;
    	}
    	#logoBellon > div > img:first-child {
         	width:150px;
    	}
    	#boxLogos>img {
        	width:40px !important;
        	height:40px !important;
    	}
	}

	@media (max-width:1100px) {
    	/* connexion */
    	#main-connexion {
        	flex-direction:column;
        	padding-bottom:0;
        	background-image:none;
        	justify-content:start;
        	align-items:center;
    	}
    	#contourLogin {
        	width:0;
        	height:0;
    	}
    	#boxLogos {
        	height:auto;
    	}
    	#boxLogos > div > img:first-child {
        	width:200px;
    	}
    	#boxLogos > div > img:nth-child(2) {
        	width:70px;
    	}
    	#boxLogos>img {
        	width:25px !important;
        	height:25px !important;
    	}
    	#box-connexion {
        	box-shadow:none;
        	height:auto;
    	}
    	#box-connexion form {
        	padding:25px;
    	}
    	#box-connexion h1 {
        	margin-bottom:10px;
    	}
    	#box-connexion input {
        	margin-bottom:15px;
    	}
    	#logoBellon {
        	right:auto;
     		z-index:2000;
    	}
	}
	
    @media (max-width: 1024px) {
        main {
            margin-top:56px !important;
        }
        #subHeader {
            display:none;
        }
        .hide_mobile{
            display: none !important;
        }
        #burgerTool {
            height:100%;
        }
        .d-flex a, .d-flex p {
            height: 100%;
        }
        /* Accueil */
        .slides-container {
            margin-top:56px !important;
        }

        /* panier */
        .btn-cart {
            flex-wrap:wrap;
        }

        /* compte */
        #cardCompte>div:nth-child(2)>div {
            flex-direction:column;
        }
        #cardCompte>div:first-child, #cardCompte .group-address, #cardCompte>div:nth-child(2) {
            width:100%;
        }
        #cardCompte>div {
            height:auto;
        }

        /* admin */
        #blocParam > div {
            display:block;
        }
        #blocParam > div > div {
            width:100%;
        }
    }

    @media (max-width: 839px) {
        #ongletsAdmin>div {
            padding:10px 5px;
        }
    }

    @media (max-width: 650px) {
        /* CONNEXION */
        #box-connexion {
            width:auto;
        }
        
        .product-list {
            flex-direction:column;
        }
    }

    @media (max-width: 500px) {
        main {
            padding-top:4vh;
        }

        .news .card-news {
            width:280px;
        }
    
    #box-connexion form, #logoConnexion {
    	width: 90%;
    }

        /* Articles */
        #content-articles {
            flex-direction: column;
            margin-top:56px!important;
        }
        #content-articles aside {
            width:100%;
            margin-bottom:30px;
        }

        .chooseCategory {
            justify-content:space-between;
        }

        #content-articles .recherche > button {
            margin-bottom:10px;
        }
        #content-articles .barre > form {
            width:100%;
            justify-content:space-between;
        }
        #content-articles .barre .recherche {
            width:100%;
        }
        #content-articles .btn-filter {
            width:48%;
            margin: 0 0 10px 0;
        }
        #section-articles > div.barre > div.recherche {
            justify-content:space-between;
        }
        .product-bloc {
            padding:10px;
        }

        /* Histo commandes */
        #barreCmd>div>input {
            width:150px;
        }

        /* admin */
        #ongletsAdmin {
            flex-wrap:wrap;
        }
        #blocParam .paramAdmin > div {
            flex-direction:column;
        }
    
    
    	
    }