@font-face {
  font-family: "Lato r";
  src: url("../css/fonts/lato/Lato-Regular.eot");
  src: url("../css/fonts/lato/Lato-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../css/fonts/lato/Lato-Regular.woff2") format("woff2"),
    url("../css/fonts/lato/Lato-Regular.woff") format("woff"),
    url("../css/fonts/lato/Lato-Regular.ttf") format("truetype"),
    url("../css/fonts/lato/Lato-Regular.svg#Lato-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato b";
  src: url("../css/fonts/lato/Lato-Bold.eot");
  src: url("../css/fonts/lato/Lato-Bold.eot?#iefix") format("embedded-opentype"),
    url("../css/fonts/lato/Lato-Bold.woff2") format("woff2"),
    url("../css/fonts/lato/Lato-Bold.woff") format("woff"),
    url("../css/fonts/lato/Lato-Bold.ttf") format("truetype"),
    url("../css/fonts/lato/Lato-Bold.svg#Lato-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato i";
  src: url("../css/fonts/lato/Lato-Italic.eot");
  src: url("../css/fonts/lato/Lato-Italic.eot?#iefix")
      format("embedded-opentype"),
    url("../css/fonts/lato/Lato-Italic.woff2") format("woff2"),
    url("../css/fonts/lato/Lato-Italic.woff") format("woff"),
    url("../css/fonts/lato/Lato-Italic.ttf") format("truetype"),
    url("../css/fonts/lato/Lato-Italic.svg#Lato-Italic") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Lato l";
  src: url("../css/fonts/lato/Lato-Light.eot");
  src: url("../css/fonts/lato/Lato-Light.eot?#iefix")
      format("embedded-opentype"),
    url("../css/fonts/lato/Lato-Light.woff2") format("woff2"),
    url("../css/fonts/lato/Lato-Light.woff") format("woff"),
    url("../css/fonts/lato/Lato-Light.ttf") format("truetype"),
    url("../css/fonts/lato/Lato-Light.svg#Lato-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

:root {
  /* --poppins: 'Poppins', sans-serif;
	--lato: 'Lato', sans-serif; */

  --light: #f9f9f9;
  --blue: #318bca;
  --light-blue: #1665c4;
  --grey: #eee;
  --dark-grey: #aaaaaa;
  --dark: #342e37;
  --red: #db504a;
  --yellow: #ffce26;
  --light-yellow: #efe6e6;
  --orange: #ff7f00;
  --light-orange: #ffe0d3;
  --black: #212529;
  --green: #008000;
  --white: #fff;
}

html {
  overflow-x: hidden;
}

body.dark {
  --light: #0c0c1e;
  --grey: #060714;
  --dark: #fbfbfb;
  --black: #fff;
  --light-yellow: #060714;
  --light-blue: #fff;
  --white: #0c0c1e;
}

body {
  background: var(--grey);
  overflow-x: hidden;
  font-family: "Lato r";
}

a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: "Lato b";
}
/* formulaire */
.form-control {
  height: calc(1.5em + 0.75rem + 5px);
}
input[type="file"] {
  width: inherit;
  outline: none;
}
.form-control:focus-visible {
  outline: none;
}
.box_source input:not(:first-child) {
  margin-left: 25px;
}
.box_source input {
  margin-right: 5px;
}

.box_chois label {
  padding: 10px 25px;
}
label {
  font-size: 0.8rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--black);
}
span {
  color: var(--black);
}

.content-autre.show {
  display: block;
}
.w100 {
  width: 100%;
}
.w80 {
  width: 80%;
}
.box-date input {
  margin: 0 10px;
}
/* input type file */
.filelabel {
  width: 120px;
  border: 2px dashed grey;
  border-radius: 5px;
  display: block;
  padding: 5px;
  transition: border 300ms ease;
  cursor: pointer;
  text-align: center;
  margin: 10px 0;
}
.filelabel i {
  display: block;
  font-size: 30px;
  padding-bottom: 5px;
}
.filelabel i,
.filelabel .title {
  color: grey;
  transition: 200ms color;
}
.filelabel:hover {
  border: 2px solid #1665c4;
}
.filelabel:hover i,
.filelabel:hover .title {
  color: #1665c4;
}
#FileInput {
  display: none;
}
/* SIDEBAR */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  height: 100%;
  background: var(--light);
  z-index: 2000;
  font-family: var(--lato);
  transition: 0.3s ease;
  scrollbar-width: none;
}
#sidebar::state(webkit-scrollbar) {
  display: none;
}
#sidebar.hide {
  width: 60px;
}
#sidebar .brand {
  font-size: 24px;
  font-weight: 700;
  height: 56px;
  display: flex;
  align-items: center;
  color: var(--blue);
  position: sticky;
  top: 0;
  left: 0;
  background: var(--light);
  z-index: 500;
  padding-bottom: 20px;
  box-sizing: content-box;
}
#sidebar .brand .bx {
  min-width: 60px;
  display: flex;
  justify-content: center;
}
#sidebar .side-menu {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
#sidebar .side-menu li {
  background: transparent;
  margin-left: 6px;
  border-radius: 48px 0 0 48px;
  padding: 4px;
}
#sidebar .side-menu > li > a.menu-title.active {
  background: var(--grey);
  position: relative;
}
#sidebar .side-menu > li > a.active::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: -40px;
  right: 0;
  box-shadow: 20px 20px 0 var(--grey);
  z-index: -1;
}
#sidebar .side-menu li a.menu-title.active::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  bottom: -40px;
  right: 0;
  box-shadow: 20px -20px 0 var(--grey);
  z-index: -1;
}
#sidebar .side-menu li a {
  width: 100%;
  height: 100%;
  background: var(--light);
  display: flex;
  align-items: center;
  border-radius: 48px;
  font-size: 14px;
  color: var(--dark);
  white-space: nowrap;
  padding: 5px 0;
}
#sidebar .side-menu li .menu-children {
  margin-left: 0;
  padding-left: 10px;
}
#sidebar .side-menu li ul a {
  font-size: 13px;
}
#sidebar .side-menu.top li a.active {
  text-decoration: none !important;
}
#sidebar .side-menu.top .menu-children li a.active span {
  color: var(--blue);
}
#sidebar.hide .side-menu li a {
  width: calc(48px - (4px * 2));
  transition: width 0.3s ease;
}
#sidebar .side-menu li button.logout {
  color: var(--red);
  text-decoration: none;
  font-size: 14px;
}

#sidebar .side-menu li a .bx {
  min-width: calc(60px - ((4px + 6px) * 2));
  display: flex;
  justify-content: center;
}
li.groupeItem > a > span.text,
#sidebar .side-menu > li > a {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
body a {
  text-decoration: none;
}
/* SIDEBAR */
/* menu */
.side-menu li {
  position: relative;
}

/* CONTENT */
#content {
  position: relative;
  width: calc(100% - 230px);
  left: 230px;
  transition: 0.3s ease;
}
#sidebar.hide ~ #content {
  width: calc(100% - 60px);
  left: 60px;
}

/* NAVBAR */
#content nav {
  height: 56px;
  background: var(--light);
  padding: 0 24px;
  display: flex;
  align-items: center;
  grid-gap: 24px;
  font-family: var(--lato);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
#content nav::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: -40px;
  left: 0;
  border-radius: 50%;
  box-shadow: -20px -20px 0 var(--light);
}
#content nav a {
  color: var(--dark);
}
#content nav .bx.bx-menu {
  cursor: pointer;
  color: var(--dark);
}
#content nav .nav-link {
  font-size: 16px;
  transition: 0.3s ease;
}
#content nav .nav-link:hover {
  color: var(--blue);
}
#content nav form {
  max-width: 400px;
  width: 100%;
  margin-right: auto;
}
#content nav form .form-input {
  display: flex;
  align-items: center;
  height: 36px;
}
#content nav form .form-input input {
  flex-grow: 1;
  padding: 0 16px;
  height: 100%;
  border: none;
  background: var(--grey);
  border-radius: 36px 0 0 36px;
  outline: none;
  width: 100%;
  color: var(--dark);
}
#content nav form .form-input button {
  width: 36px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  color: var(--light);
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 0 36px 36px 0;
  cursor: pointer;
}
#content nav .notification {
  font-size: 20px;
  position: relative;
}
#content nav .notification .num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--light);
  background: var(--red);
  color: var(--light);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#content nav .profile img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}
#content nav .switch-mode {
  display: block;
  min-width: 50px;
  height: 25px;
  border-radius: 25px;
  background: var(--grey);
  cursor: pointer;
  position: relative;
}
#content nav .switch-mode::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: calc(25px - 4px);
  background: var(--blue);
  border-radius: 50%;
  transition: all 0.3s ease;
}
#content nav #switch-mode:checked + .switch-mode::before {
  left: calc(100% - (25px - 4px) - 2px);
}
/* NAVBAR */

/* MAIN */
#content main {
  width: 100%;
  padding: 36px 24px;
  font-family: "Lato r";
  /* max-height: calc(100vh - 56px); */
  overflow-y: auto;
}
/* #content main .head-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 16px;
	flex-wrap: wrap;
} */
#content main .head-title .left h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 30px;
}
#content main .head-title .left .breadcrumb {
  display: flex;
  align-items: center;
  grid-gap: 16px;
}
#content main .head-title .left .breadcrumb li {
  color: var(--dark);
}
#content main .head-title .left .breadcrumb li a {
  color: var(--dark-grey);
  pointer-events: none;
}
#content main .head-title .left .breadcrumb li a.active {
  color: var(--blue);
  pointer-events: unset;
}
#content main .head-title .btn-download {
  height: 36px;
  padding: 0 16px;
  border-radius: 36px;
  background: var(--blue);
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
  font-weight: 500;
}

#content main .box-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  margin-top: 36px;
}
#content main .box-info li {
  padding: 24px;
  background: var(--light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  grid-gap: 24px;
}
#content main .box-info li .bx {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#content main .box-info li:nth-child(1) .bx {
  background: #1665c44f;
  color: var(--blue);
}
#content main .box-info li:nth-child(2) .bx {
  background: var(--light-yellow);
  color: var(--yellow);
}
#content main .box-info li:nth-child(3) .bx {
  background: var(--light-orange);
  color: var(--orange);
}
#content main .box-info li:nth-child(4) .bx {
  background: var(--light-yellow);
  color: var(--yellow);
}
#content main .box-info li:nth-child(5) .bx {
  background: #1665c44f;
  color: var(--blue);
}
#content main .box-info li .text h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
}
#content main .box-info li .text p {
  color: var(--dark);
}

#content main .table-data {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 24px;
  margin-top: 24px;
  width: 100%;
  color: var(--dark);
}
#content main .table-data > div,
.box-table {
  border-radius: 20px;
  background: var(--light);
  padding: 24px;
}
#content main .table-data .head {
  display: flex;
  align-items: center;
  grid-gap: 16px;
  margin-bottom: 24px;
}
#content main .table-data .head h3 {
  margin-right: auto;
  font-size: 1.2rem;
  font-weight: 600;
}
#content main .table-data .head .bx {
  cursor: pointer;
}

#content main .table-data .order {
  flex-grow: 1;
  flex-basis: 500px;
}
#content main .table-data .order table {
  width: 100%;
  border-collapse: collapse;
}
#content main .table-data .order table th {
  padding-bottom: 12px;
  font-size: 13px;
  text-align: left;
  border-bottom: 1px solid var(--grey);
}
#content main .table-data .order table td {
  padding: 10px 2px;
}

td p {
  margin-bottom: 0;
}
#toolbar select,
#toolbar button {
  font-size: 12px !important;
}
/* #content main .table-data .order table tr td:first-child {
	display: flex;
	align-items: center;
	grid-gap: 12px;
	padding-left: 6px;
} */
/* #content main .table-data .order table td img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
} */
.notification p {
  margin-bottom: 0;
}
#content main tr:hover {
  background: var(--grey);
}
#content main tr td .status {
  font-size: 10px;
  padding: 6px 16px;
  color: var(--light);
  border-radius: 20px;
  font-weight: 700;
}
#content main tr td .status.completed {
  background: var(--blue) !important;
}
#content main .table-data .order table tr td .status.process {
  background: var(--yellow);
}
#content main .table-data .order table tr td .status.pending {
  background: var(--orange);
}

#content main .table-data .todo {
  flex-grow: 1;
  flex-basis: 300px;
}
#content main .table-data .todo .todo-list {
  width: 100%;
}
#content main .table-data .todo .todo-list li {
  width: 100%;
  margin-bottom: 16px;
  background: var(--grey);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#content main .table-data .todo .todo-list li .bx {
  cursor: pointer;
}
#content main .table-data .todo .todo-list li.completed {
  border-left: 10px solid var(--blue);
}
#content main .table-data .todo .todo-list li.not-completed {
  border-left: 10px solid var(--orange);
}
#content main .table-data .todo .todo-list li:last-child {
  margin-bottom: 0;
}
table .btn {
  background: var(--blue);
  color: #fff;
  padding: 10px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  margin-top: 0;
}
.btn.btn-suppr {
  background: var(--red);
}
.btn.btn-voir {
  background: var(--green);
}
table .btn:hover {
  background: var(--orange);
  color: var(--white);
}
.th-inner,
button label {
  font-weight: 500;
}
#toolbar {
  display: inline-flex;
}
.table-bordered {
  border: 1px solid #eee;
}
tbody.tbody-users tr td:last-child {
  margin-top: 12px;
}
thead tr th:last-child {
  width: 15%;
  text-align: center;
}
table {
  width: 100%;
  margin-top: 30px;
  border: 1px solid #eee;
  padding: 5px;
}
td {
  padding: 8px 5px 8px 8px;
  font-size: 14px;
  color: var(--dark);
}
table button {
  border: none;
  padding: 5px 8px;
  line-height: 14px;
  outline: none;
}
table .description {
  font-weight: 600;
}
table button:focus {
  outline: none;
}
thead {
  background: var(--light-blue);
}
thead th {
  padding: 10px 5px 10px 10px;
  color: var(--light);
  font-size: 15px;
}
tbody tr:nth-child(odd) {
  background: var(--light-yellow);
}
tbody tr td:last-child span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transform: translateY(10px); */
}
/* MAIN */
/* CONTENT */

/* formulaire */
.contact-form {
  box-shadow: 0 3px 10px #00000029;
  padding: 25px 20px 35px;
  border-radius: 20px;
  background: var(--white);
}
.col-form-label,
form span {
  font-size: 0.7rem;
}
select {
  font-size: 14px !important;
}

/* categorie */
.title-category,
#voir-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}
.categorie-body {
  font-weight: 600;
  font-size: 12px;
}
.picture-category {
  margin: 10px 0;
  width: 200px;
}

@media screen and (max-width: 768px) {
  #sidebar {
    width: 200px;
  }

  #content {
    width: calc(100% - 60px);
    left: 200px;
  }

  #content nav .nav-link {
    display: none;
  }
}

/* modal */
.modal-body p {
  margin-bottom: 3px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .modal-dialog-coupon {
    max-width: 960px;
  }
}

@media screen and (max-width: 576px) {
  #content nav form .form-input input {
    display: none;
  }

  #content nav form .form-input button {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: none;
    color: var(--dark);
  }

  #content nav form.show .form-input input {
    display: block;
    width: 100%;
  }
  #content nav form.show .form-input button {
    width: 36px;
    height: 100%;
    border-radius: 0 36px 36px 0;
    color: var(--light);
    background: var(--red);
  }

  #content nav form.show ~ .notification,
  #content nav form.show ~ .profile {
    display: none;
  }

  #content main .box-info {
    grid-template-columns: 1fr;
  }

  #content main .table-data .head {
    min-width: 420px;
  }
  #content main .table-data .order table {
    min-width: 420px;
  }
  #content main .table-data .todo .todo-list {
    min-width: 420px;
  }
}

/*  */
[class*="btn-"] {
  margin: 5px 5px 0 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 110%;
  height: auto;
  text-align: center;
  padding: 10px 25px;
  text-transform: uppercase;
  font-weight: var(--bold);
  font-size: 0.8rem;
}
.btn-primary,
.btn-primary:link,
.btn-primary:visited {
  background: var(--blue);
  color: #fff;
  transition: all 0.3s;
  position: relative;
}

.btn-primary:hover,
.btn-primary:focus {
  color: var(--white);
  z-index: 1;
  transition: all 0.3s;
}

.btn-primary::before {
  content: "";
  background: var(--orange);
  width: 0;
  position: absolute;
  left: -1px;
  z-index: -1;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-primary:hover::before,
.btn-primary:focus::before {
  width: 100%;
  border: 1px solid var(--orange);
  box-sizing: content-box;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*  */

/* Fixez le bouton sur le côté gauche de la page the button on the left side of the page */
.open-btn {
  display: flex;
  justify-content: flex-start;
}
/* Stylez et fixez le bouton sur la page */
.open-button {
  background-color: #1c87c9;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
}
/* Positionnez la forme Popup */
.login-popup.show {
  position: fixed;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000030;
}
/* Masquez la forme Popup */
.form-popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 9;
  padding: 20px;
}
/* Styles pour le conteneur de la forme */
.form-container {
  max-width: 300px;
  padding: 20px;
  background-color: #fff;
}
/* Largeur complète pour les champs de saisie */
.form-container input[type="text"],
.form-container input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 5px 0 22px 0;
  border: none;
  background: #eee;
  outline: none;
  outline-color: var(--white);
}
/* Quand les entrées sont concentrées, faites quelque chose */
.form-container input[type="text"]:focus,
.form-container input[type="password"]:focus {
  background-color: #ddd;
  outline: none;
}
/* Stylez le bouton de connexion */
.form-container .btn {
  background-color: #8ebf42;
  color: #fff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
}
/* Stylez le bouton pour annuler */
.form-container .cancel {
  background-color: #cc0000;
}
/* Planez les effets pour les boutons */
.form-container .btn:hover,
.open-button:hover {
  opacity: 1;
}
.loading-wrap {
  display: none;
}

/* coupon */
.box-sens span {
  display: block;
  color: var(--white);
  padding: 0 0 0 5px;
  margin-bottom: 3px;
  font-size: 12px;
}
.box-sens span.priorite4 {
  background: #008000;
}
.box-sens span.priorite1 {
  background: red;
}
.box-sens span.priorite2 {
  background: var(--black);
}
.box-sens span.priorite3 {
  background: var(--yellow);
}

/* radio */
.conent-box .btn-check[type="radio"]:checked,
.conent-box .btn-check[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.conent-box .btn-check[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: var(--black);
  background: var(--grey);
  border: 1px solid var(--grey);
}
.conent-box .btn-check[type="radio"]:checked + label {
  background: var(--white);
  color: var(--black);
  border: none;
  border-top: 1px solid var(--white);
  border-bottom: none;
}
.conent-box .btn-check[type="radio"]:checked + label:before,
.conent-box .btn-check[type="radio"]:not(:checked) + label:before {
  opacity: 0;
}
.conent-box .btn-check[type="radio"]:checked + label:after,
.conent-box .btn-check[type="radio"]:not(:checked) + label:after {
  opacity: 0;
}
.conent-box .btn-check[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.conent-box {
  border: 1px solid #c7c4c4;
  background: var(--white);
}
.conent-box label {
  margin: 0;
}
.conent-box .conent-box label.btn-secondary {
  margin-bottom: 25px;
}
.conent-box [class*="btn-"] {
  padding: 10px 38px;
}
.box-min {
  width: 45px;
  height: 25px;
  font-size: 12px;
  padding: 2px;
}
.ReactModalPortal {
  position: relative;
  z-index: 9999;
}
.decrip p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.box-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.btnClose {
  position: absolute;
  top: 0;
  right: 5px;
  border: none;
  padding: 5px;
  font-size: 21px;
  border-radius: 60px;
  width: 20px;
  height: 20px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.btnClose:focus {
  border: none;
  outline: none;
}
.btnClose span {
  color: var(--white);
  font-size: 13px;
}
.modal-title {
  font-size: 15px;
  text-transform: uppercase;
}

.modal-header {
  padding: 5px 10px;
}

/* page error */
.page-error {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  color: var(--orange);
}
.pageError {
  height: 100vh;
}
.page-error h1 {
  color: var(--blue);
  font-weight: bold;
  font-size: 110px;
  letter-spacing: 15px;
}
a.btnError {
  background: var(--orange);
  border-radius: 20px;
  padding: 5px 20px;
  color: var(--black);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}
a.btnError:hover {
  color: var(--blue);
}

.label-check {
  font-size: 12px;
  font-weight: 400;
}

.box-type {
  padding: 15px;
  border: 1px solid var(--dark);
  margin: 10px 0 25px 0;
  position: relative;
}
.box-type span.title {
  position: absolute;
  top: -11px;
  font-size: 12px;
  font-weight: 600;
  background: white;
  color: #1c87c9;
  padding: 0 10px;
  border-radius: 8px;
}
.box-type span span {
  position: relative;
  top: 0;
  color: red;
}
input {
  outline: none;
  box-shadow: none;
}
.box-type input[type="text"] {
  width: 100px;
  margin: 0 10px;
}
.box-type .description input[type="text"] {
  width: 100%;
}
.content-add-coupon thead th {
  white-space: nowrap;
}
.box-type p {
  margin-bottom: 5px;
  font-size: 13px;
}
.box-type p span {
  position: relative;
  top: 0;
  color: red;
  margin-left: 8px;
  display: inline-block;
}
span.relative {
  position: relative;
  top: inherit;
  color: red;
}
.content-add-coupon {
  background: var(--white);
}
.box-sens span {
  position: relative;
  top: 0;
}
.box-stat {
  padding-bottom: 50px;
}
.box-sens {
  position: absolute;
  background: var(--grey);
  padding: 5px 10px;
  z-index: 9;
}

/* statistique' */
.statistique {
  background: var(--white);
  padding: 10px 15px;
}
.statistique .box-type span.title {
  top: -14px;
  font-size: 16px;
  color: #000;
  padding: 0 10px;
  border-radius: 8px;
}
.box-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
body.dark .box-type p,
body.dark .box-type p span {
  color: #fff;
}
.statistique .box-type {
  border: 1px solid var(--dark);
}
body.dark table tr {
  border-bottom: 1px solid #fff;
}
.statistique .form-inline .form-group {
  flex-flow: nowrap;
}
@media (max-width: 991px) {
  .box-types {
    display: block;
  }
}
.box-type .d-flex {
  justify-content: space-between;
}
.red {
  color: red;
}
.statistique p span {
  font-weight: bold;
  color: #000;
}
.statistique .box-type input[type="text"] {
  width: 135px;
  font-size: 14px;
}

textarea {
  font-size: 0.7rem;
  padding: 10px;
  outline: none;
  box-shadow: none;
}
.form-check-inputs {
  font-size: 12px;
  padding: 4px 5px 2px;
}
.pagination {
  justify-content: center;
  margin-top: 25px;
  list-style: none;
  cursor: pointer;
}

.pagination a {
  padding: 5px 8px;
  border-radius: 5px;
  margin: 0 4px 0 4px;
  font-size: 13px;
}

.pagination__link {
  font-weight: bold;
}

.pagination__link--active a {
  color: #fff;
  background: var(--blue);
}

.pagination__link--disabled a {
  color: rgb(198, 197, 202);
  border: 1px solid rgb(198, 197, 202);
}
.col-form-label {
  padding-left: 10px;
}
.title_coupon {
  text-align: center;
}
tbody tr.desc td {
  display: inline-block;
}
body.dark .ReactModal__Content.ReactModal__Content--after-open {
  background: #060714 !important;
  border: 1px solid #060714 !important;
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
}
.modal-title,
.modal-body p,
.page-error p,
.page-error h6 {
  color: var(--dark);
}
table td.description input {
  color: var(--dark);
}
table td.description input:hover {
  background: transparent;
}
tbody .desc {
  text-align: center;
  padding: 15px;
  width: 100%;
  margin-bottom: 0;
}
.oups {
  display: block;
  margin: 0 auto;
  width: 200px;
}
.pagination a {
  color: var(--dark);
}
li.pagination__link--disabled a {
  color: rgb(198, 197, 202);
}
li.pagination__link--active a {
  color: #fff;
}
.afficher-coupon {
  font-size: 12px;
  padding: 3px 10px;
  box-shadow: none;
  outline: none;
  border: 1px solid;
  border-radius: 5px;
}
.box-type .head-title,
.box-type .box-table div.d-flex.justify-content-between.align-items-center {
  display: none !important;
}
.box-type .container.box-table {
  padding: 0 5px;
}
/* super Admin */
.super-admin {
  padding-top: 20px;
  background: linear-gradient(120deg, #2980b9, #8e44ad);
}
.super-admin .signup {
  width: 600px;
  margin: 0 auto;
  background: #fff;
}
.super-admin h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.tbody-users-image {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tbody-users-image img {
  width: 45px;
  border-radius: 50%;
  height: 45px;
  object-fit: contain;
  background: white;
  padding: 2px;
}
.modalpicture {
  position: relative;
}
.modalpicture:before {
  display: block;
  width: 100%;
  padding-top: 66%;
  content: "";
}
.modalpicture a {
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
}
.modalpicture img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.box-type.mt-4 .form-group {
  margin-bottom: 0;
}
i.bx.bxs-moon {
  position: absolute;
  right: -19px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

/* toggle-checkbox  */
.toggle {
  cursor: pointer;
  display: inline-block;
}

.toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 58px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before,
.toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
  background: #56c080;
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
}
/* toggle-checkbox  */
.ql-editor {
  min-height: 150px;
}
.conent-box .react-datepicker-wrapper {
  width: 100%;
}
.react-datepicker__input-container .react-datepicker__calendar-icon {
  left: 7px;
  font-size: 16px;
  filter: invert(100%) sepia(3%) saturate(711%) hue-rotate(218deg)
    brightness(111%) contrast(87%);
}

/* categorie */
body .css-178cqt3-MuiButtonBase-root-MuiListItemButton-root {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
}
body .css-8duc5q-MuiListItemText-root,
body .css-8duc5q-MuiListItemText-root,
.css-168pop2-MuiList-root,
.MuiList-padding,
.MuiListItem-root {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
body .css-zkqepn-MuiButtonBase-root-MuiCheckbox-root {
  padding: 5px !important;
}
body .MuiTypography-root {
  font-size: 12px;
  padding: 4px 15px !important;
  line-height: 1;
}
body .MuiListItemText-root {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
body .MuiSvgIcon-root {
  font-size: 1.1rem !important;
}
body div[data-testid="virtuoso-scroller"] {
  overflow-x: hidden;
}
div[data-testid="virtuoso-scroller"]::-webkit-scrollbar-track,
.MuiDialogContent-root::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

div[data-testid="virtuoso-scroller"]::-webkit-scrollbar,
.MuiDialogContent-root::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

div[data-testid="virtuoso-scroller"]::-webkit-scrollbar-thumb,
.MuiDialogContent-root::-webkit-scrollbar-thumb {
  background-color: #000000;
  border: 2px solid #555555;
}
.table-bordered td,
.table-bordered th {
  border: 1px solid #dee2e6;
  vertical-align: middle;
}

#content main thead tr:hover {
  background: var(--light-blue);
}