/* ========================================================================
   Style de base de l'application
 ========================================================================== */

/* Base
   ========================================================================== */

* {
  box-sizing: border-box;
  scrollbar-color: transparent;
  scrollbar-width: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
  font-family: "Montserrat", "Charm", sans-serif;
  overflow-x: hidden;
  scrollbar-color: transparent;
  scrollbar-width: none !important;
}

.display-flex {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#import-result {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 500;
  display: none;
}

#import-result-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 60px;
  height: 100%;
  width: 100%;
}

a:hover,
a:active,
a:focus {
  text-decoration: none !important;
}

@keyframes clignote {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes battement {
  0% {
    transform: rotate(45deg) scale(0.8);
  }

  5% {
    transform: rotate(45deg) scale(0.9);
  }

  10% {
    transform: rotate(45deg) scale(0.8);
  }

  15% {
    transform: rotate(45deg) scale(1);
  }

  50% {
    transform: rotate(45deg) scale(0.8);
  }

  100% {
    transform: rotate(45deg) scale(0.8);
  }
}

.clignote.duration-1s {
  animation: clignote infinite;
  animation-duration: 1s;
}

.clignote.duration-2s {
  animation: clignote infinite;
  animation-duration: 2s;
}

.no-margin {
  margin: 0;
}

.no-margin-top {
  margin-top: 0px;
}

.no-margin-bottom {
  margin-bottom: 0px;
}

.text-red {
  color: red;
}

.text-blue {
  color: blue;
}

.text-green {
  color: green;
}

.text-bold {
  font-weight: bold;
}

.infos-pagination span {
  display: inline-block;
  color: #000;
}

.icon-30px {
  font-size: 30px;
}

.vertical-align-icon {
  display: inline-block;
  vertical-align: middle;
}

img#photo-preview {
  height: 200px;
  width: 200px;
  border-radius: 50%;
}

.uk-switcher .chosen-container,
.modal-chosen-select .chosen-container {
  width: 100% !important;
}

#header-logo,
.menu-mobile-btn-container {
  display: none;
}

#fullscreen,
#setting-link {
  color: #a5a5a5;
  margin-right: 15px;
}

#mobile-menu-top {
  display: none;
  padding: 0px 25px;
  border-bottom: solid 1px #eee;
}

#connexion-notification {
  border-radius: 10px;
  background-image: linear-gradient(to right, #de0aff, #a7aaff);
  color: #fff;
  font-weight: bold;
  padding: 20px;
}

.uk-notification-message {
  background: transparent;
  padding: 0px;
}

/* Header
   ========================================================================== */

header {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 120px);
  background-color: #fff;
  padding: 15px 25px;
  text-transform: uppercase;
  color: #9c9c9c;
  border-bottom: solid 1px #eee;
  z-index: 100;
  height: 90px;
}

#header-user-photo {
  width: 30px;
}

header .uk-search-icon {
  min-height: auto;
}

#header-search {
  width: 850px;
  border: none;
  font-size: 15px;
}

#header-search .uk-search-default {
  width: 100%;
}

#header-search input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  background-color: #fdfdfd;
  color: #444;
}

#account-link {
  color: #a5a5a5;
  font-size: 12px;
  border: none;
}

#account-link:hover {
  text-decoration: none;
}

#header-credit {
  color: #043e94;
  font-size: 12px;
  background: #d4f2ff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
}

#header-credit:hover {
  text-decoration: none;
}

.header-list>li {
  display: inline-block;
  margin-right: 20px;
}

.notification-counter {
  position: absolute;
  top: 0;
  right: 0;
  background: red;
  color: #fff;
  height: 5px;
  width: 5px;
}

#account-dropdown {
  padding: 0px 10px 20px 10px;
  top: 50px;
  /*box-shadow: 0 1px 2px rgb(0 0 0 / 17%);*/
  box-shadow: none;
  border: solid 1px #eee;
  border-top: none;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

#account-dropdown ul {
  padding-left: 10px;
}

#account-dropdown ul li {
  font-size: 12px;
  padding: 5px 0px;
}

.DB-link a {
  color: #a5a5a5;
  font-size: 12px;
}

/* Scroll bar
   ========================================================================== */

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #03a9f4;
  border-radius: 25px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: red;
}

#menu::-webkit-scrollbar {
  display: none;
}

/* Firefox */

:root {
  scrollbar-color: #03a9f4 #000 !important;
  scrollbar-width: thin !important;
}

.table-container {
  scrollbar-color: #03a9f4 #eee !important;
  scrollbar-width: thin;
}

#menu {
  scrollbar-width: none;
}

/* Preloader
   ========================================================================== */

@keyframes rotation {
  0% {
    transform: rotatey(0deg);
    opacity: 1;
  }

  50% {
    transform: rotatey(180deg);
    opacity: 0.1;
  }

  100% {
    transform: rotatey(0deg);
    opacity: 1;
  }
}

@keyframes clignote {
  0% {
    opacity: 1;
  }

  50% {
    filter: grayscale(100%);
    opacity: 0.1;
  }

  100% {
    opacity: 1;
  }
}

#loader img {
  width: 100px;
  margin: auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

#loader {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  display: none;
}

#preloader {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, .98);
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  color: #000;
  z-index: 9999999;
  display: none;
}


#preloader-advanced {
  background-color: #f8a03d;
  /*#ed1b24;*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}

#preloader-advanced img {
  width: 150px;
  margin: auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  animation: clignote 2s infinite;
}

#preloader-advanced #red-part {
  background-color: #ed1b24;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 997;
}

#preloader-advanced #green-part {
  background-color: #07924d;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 997;
}

#preloader-advanced #white-part {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 998;
}

/* Ajax loader
   ========================================================================== */

.ajax-loader {
  width: 100%;
  height: 100vh;
  margin-left: auto;
  position: fixed;
  background: #fff;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 900;
}

.progress-bar {
  height: 40px;
  background: red;
}

/* Contenu de la page dans un modal
   ========================================================================== */

#modal-page-body {
  padding: 0px 50px;
}

#modal-page-body #page-content {
  padding-top: 50px;
}

.form-modal-link {
  color: #000;
  transition: 0.7s;
}

.form-modal-link:hover {
  text-decoration: none;
}

.form-modal-link div {
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  margin-top: 15px;
}

.modal-create-item iframe {
  width: 1280px !important;
  height: 720px !important;
}

/* Contenu de la page sans le menu
   ========================================================================== */

#page-body-right {
  width: calc(100% - 250px);
  margin-left: auto;
  padding: 0px 30px;
}

/* Menu
     ========================================================================== */

/* Style du Menu */
#menu {
  position: fixed;
  z-index: 102;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0px;
  width: 250px;
  height: 100%;
  overflow-y: scroll;
  background-color: #fff;
  border-right: solid 1px #eee;
  transition: 0.7s;
}

.uk-radio, .uk-checkbox {
  border: solid 1px #444;
}


#menu.open .menu-title {
  display: inline-block !important;
}

#menu img {
  transition: 0.7s;
}

/* Style du scrollbar du Menu */
#menu::-webkit-scrollbar {
  display: none;
}

/* Style du contenu du Menu */
#menu-content {
  padding-top: 0px;
  text-align: left;
  width: 100%;
  height: 100%;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Style du conteneur interne du Menu */
#menu-content-inner {
  padding-bottom: 100px;
  padding-left: 0px;
  overflow: scroll;
}

/*
#menu-content-inner ul li {
  margin-bottom: 15px;
}*/

/* Style du scrollbar du conteneur interne Menu */
#menu-content-inner::-webkit-scrollbar {
  height: 0px;
  width: 0px;
  display: none;
}

/* Track */
#menu-content-inner::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 25px;
  width: 0px;
  display: none;
}

/* Handle */
#menu-content-inner::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 25px;
  width: 0px;
  display: none;
}

/* Handle on hover */
#menu-content-inner::-webkit-scrollbar-thumb:hover {
  display: none;
}

/* Style du conteneur de logo du Menu */
#menu-logo-container {
  height: 120px;
  width: 100%;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Style du logo du Menu */
#menu-logo-container img {
  width: 140px;
  margin: 20px auto 30px auto;
}

/* Style de l'icone et du titre d'une rubrique du Menu */
.menu-icon,
.menu-title {
  display: inline-block;
  vertical-align: middle;
}

/* Style de l'icone + de l'ACCORDION du Menu */
.uk-accordion-title::before {
  display: none;
}

/* Style d'une rubrique non ACCORDION */
.no-accordion-title {
  display: block;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Style des titres du Menu */
#menu-content .menu-title {
  color: #000;
  font-weight: bold;
  font-size: 16px;
  font-weight: 400;
  padding-left: 5px;
}

/* Style des sous titres du Menu */
#menu-content .menu-subtitle {
  color: #6362e7;
  text-transform: uppercase;
  font-size: 14px !important;
  font-weight: 600;
  padding-top: 15px !important;
  border-bottom: solid 1px;
}

/* Style des titres des rubriques du Menu */
#menu-content-inner ul li .uk-accordion-title,
#menu-content-inner ul li .no-accordion-title,
#dashboard-accordion .no-accordion-title {
  padding: 10px 5px 10px 30px;
  cursor: pointer;
  margin-bottom: 15px;
  border: solid 2px transparent;
  border-radius: 10px;
}

/* Style au survol des titres des rubriques du Menu */
#menu-content-inner>ul>li .uk-accordion-title:hover,
#menu-content-inner>ul>li .no-accordion-title:hover,
#dashboard-accordion .no-accordion-title:hover {
  background-color: #6362e7;
  border-radius: 10px;
}

/* Style de l'icone et titre des rubriques du Menu à leur survol */
#menu-content-inner>ul>li .uk-accordion-title:hover i,
#menu-content-inner>ul>li .uk-accordion-title:hover .menu-title,
#menu-content-inner>ul>li .no-accordion-title:hover i,
#menu-content-inner>ul>li .no-accordion-title:hover .menu-title,
#dashboard-accordion .no-accordion-title:hover,
#dashboard-accordion .no-accordion-title:hover .menu-title {
  color: #fff !important;
}

/* Style du titre d'un ACCORDION actif */
#menu li.uk-open .uk-accordion-title {
  border: solid 2px #6362e7;
  border-radius: 10px;
}

/* Style de l'icone et du titre de menu à l'ouverture de l'accordion*/
#menu li.uk-open .uk-accordion-title i,
#menu li.uk-open .uk-accordion-title span {
  /*color: #6362e7;*/
}

/* Style du titre de la rubrique active  du Menu */
#menu-content .uk-accordion>li.uk-active .uk-accordion-title,
#menu-content .uk-accordion>li.uk-active .no-accordion-title {
  background-color: #6362e7;
  font-weight: bold;
}

/* Style du texte du titre de la rubrique active  du Menu */
#menu-content .uk-accordion>li.uk-active .uk-accordion-title span,
#menu-content .uk-accordion>li.uk-active .no-accordion-title span {
  color: #fff;
}

/* Style du l'icone de la rubrique active  du Menu */
#menu-content .uk-accordion>li.uk-active .uk-accordion-title i,
#menu-content .uk-accordion>li.uk-active .no-accordion-title i {
  color: #fff;
  font-weight: bold;
}

/* Style du contenu des ACCORDION du Menu */
#menu .uk-accordion-content {
  padding: 0px 0px 0px 20px;
  margin: 0px;
}

/* Style des liens du contenu des ACCORDION du Menu */
#menu .uk-accordion-content li a {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

/* Style au survol des liens du contenu des ACCORDION du Menu */
#menu .uk-accordion-content li a:hover {
  text-decoration: none;
  border-bottom: solid 1px #000;
}

/* Titres
   ========================================================================== */

.title-container {
  padding: 20px 0px 40px 0px;
}

.title {
  color: #9a9a9a;
  font-size: 30px;
  font-weight: bold;
}

/* Contenu de la page
   ========================================================================== */

#page-content {
  min-height: 100vh;
  padding-top: 120px;
  /*padding-left: 50px;
  padding-right: 50px;*/
  box-sizing: border-box;
}

/* Page details d'une commande
   ========================================================================== */

#facture-preview-container {
  width: 100%;
}

#logo-recu {
  width: 200px;
  margin: 50px auto 50px auto;
}

#facture-preview-container table {
  border: none !important;
}

#facture-preview-container table tr td {
  border: none !important;
}

#facture-client-infos {
  border: solid 1px #eee;
}

#facture-commande-infos {
  border: solid 1px #eee;
}

#facture-client-infos table {
  margin-bottom: 0px;
}

#facture-commande-infos table {
  margin-bottom: 0px;
}

#facture-client-infos .title {
  background-color: #000 !important;
  color: #fff !important;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 12px;
  text-align: center;
  width: 100%;
}

#facture-commande-infos .title {
  background-color: #000 !important;
  color: #fff !important;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 12px;
  text-align: center;
  width: 100%;
}

#facture-preview-container thead {
  background-color: #000 !important;
}

#facture-preview-container thead th {
  color: #fff !important;
}

#facture-preview-container .table-no-striped-tr {
  background-color: #fff !important;
  font-weight: bold;
  text-transform: uppercase;
}

#infos-tracking-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

#infos-tracking {
  text-align: left;
  font-size: 10px;
}

#facture-client-infos table,
#facture-commande-infos table {
  margin-top: 0px;
}

#facture-client-infos td {
  padding: 5px 12px;
  font-size: 10px;
}

#facture-commande-infos td {
  padding: 5px 12px;
  font-size: 10px;
}

#facture-preview-container #produits-table {
  margin-top: 20px;
}

#produits-table {
  font-size: 7px !important;
}

#produits-table th {
  padding: 10px 12px;
}

#facture-qrcode {
  margin: 50px auto 50px auto;
  width: 100px;
}

#facture-preview-container .table-container {
  overflow: hidden;
}

#facture-preview-container .details-page-content .uk-table-striped>tr:nth-of-type(odd),
#facture-preview-container .uk-table-striped tbody tr:nth-of-type(odd) {
  background: #f8f8f8 !important;
  border: none;
}

#facture-preview-container .uk-table-striped tbody tr.table-no-striped-tr {
  border-bottom: solid 1px transparent !important;
  background: transparent !important;
}

#facture-preview-container .total-td {
  background-color: #000 !important;
  color: #fff !important;
}

#produits-table tr td {
  vertical-align: middle;
  font-size: 10px;
  min-width: 150px;
  padding: 10px 20px 10px 10px;
}

#facture-infos-top {
  text-align: center;
  margin-bottom: 50px;
}

#facture-infos-bottom {
  text-align: center;
  margin-top: 50px;
}

#facture-preview-container td {
  border-radius: 0px !important;
}

/* Tableaux
   ========================================================================== */

table a button.uk-button-default,
a.uk-button-default {
  padding: 5px 10px;
  font-size: 10px !important;
  min-width: 200px;
}

.table-search {
  margin-bottom: 50px;
}

.table-btn-link {
  text-transform: initial;
}

.table-btn-modal {
  text-transform: initial;
}

.table-btn-see {
  padding: 9px 20px;
  background: #7233a9;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 12px;
  transition: 0.7s;
}

.table-btn-see:hover {
  background: #471275;
  text-decoration: none;
  color: #fff;
}

.table-btn-download {
  padding: 9px 20px;
  background: #6a5b77;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 12px;
  transition: 0.7s;
}

.table-btn-download:hover {
  background: #3f2f4d;
  text-decoration: none;
  color: #fff;
}

#form-search {
  border: solid 1px #eee;
  padding: 40px 50px;
  background-color: #fff;
  border-radius: 15px;
}

.table-search-input {
  width: 400px;
  border: none;
  font-size: 15px;
}

.table-search-input .uk-search-default {
  width: 100%;
}

.table-search-input input {
  width: 100%;
  height: 50px !important;
  border-radius: 5px;
  background-color: #fff !important;
  color: #444;
}

.search-item {
  width: 100%;
  height: 50px !important;
  border-radius: 5px;
  background-color: #fff !important;
  color: #444;
}

.search-item::placeholder {
  font-size: 18px;
}

.table-container {
  overflow-x: scroll;
}

.details-elements-container {
  border-radius: 10px;
  padding: 20px 20px 10px 20px;
  box-shadow: 0px 1px 4px 0px #f1f1f1;
  background-color: #fff;
}

.metas-table-container {
  border-radius: 10px;
  padding: 20px 20px 10px 20px;
  box-shadow: 0px 1px 4px 0px #f1f1f1;
  background-color: #fff;
}

.list-disponibilite,
.list-indisponibilite {
  text-align: center;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 10px;
  width: 120px;
}

.table-state-icon {
  padding: 10px;
  border-radius: 10px;
  font-weight: bold;
  width: 70px;
  text-align: center;
}

.table-state-icon.yes {
  background: #15ffa826;
  color: #00603c;
}

.table-state-icon.pending {
  background: #9be0ff;
  color: #000768;
}

.table-state-icon.warning {
  background: #ffe99b;
  color: #683a00;
}

.table-state-icon.no {
  background: #ff9b9b1a;
  color: #ff5f95;
}

.state-icon-th {
  text-align: center !important;
}

.state-icon-td {
  text-align: center;
}

.historique-etat-th {
  width: 200px;
}

.details-state-change-inputs {
  margin-top: 20px;
  display: none;
}

.details-state-change-inputs .submit-btn-container {
  margin-top: 20px;
}

.historique-etat-td {
  text-align: center;
  padding-left: 0px !important;
  padding-right: 30px !important;
}

.table-colored-div {
  text-align: center;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 12px;
}

.table-colored-div.blue {
  background-color: #86cdff;
  color: #00121e;
}

.table-colored-div.turquoise {
  background-color: #59f5de;
  color: #00380c;
}

.table-colored-div.red {
  background-color: #ff9595;
  color: #00121e;
}

.table-colored-div.yellow {
  background-color: #ffea8c;
  color: #00121e;
}

.table-colored-div.green {
  background-color: #86ffc8;
  color: #00380c;
}

.table-colored-div.grey {
  background-color: #e1e1e1;
  color: #00380c;
}

.commande-etat-td {
  width: 200px;
  text-align: center;
}

.commande-etat {
  width: 100%;
  font-weight: 500;
  padding: 10px 15px;
}

.details-page .commande-etat {
  font-size: 12px;
  margin-left: 20px;
}

.commande-etat.attente {
  background-color: #dbf4ff;
  color: #005da7;
}

.commande-etat.traitement {
  background-color: #81fff9;
  color: #005a56;
}

.commande-etat.livraison {
  background-color: #fff8d9;
  color: #665000;
}

.commande-etat.livre {
  background-color: #cfffe9;
  color: #009d20;
}

.commande-etat.livre-retour {
  background-color: #ddffb1;
  color: #376200;
}

.commande-etat.retour {
  background-color: #eeeaff;
  color: #08002a;
}

.commande-etat.annule {
  background-color: #ffcccc;
  color: #640000;
}

.commande-etat.rejete {
  background-color: #ffcccc;
  color: #640000;
}

.table-modal-form-title {
  font-size: 15px;
  text-transform: uppercase;
  text-align: left;
  font-weight: bold;
}

.table-modal-form .uk-modal-header {
  padding-left: 0px;
  margin-bottom: 50px;
}

.table-width-120 {
  width: 120px;
}

.table-ancien-prix {
  text-decoration: line-through;
  font-style: italic;
  color: red;
}

.table-nouveau-prix {
  font-weight: 500;
  color: #000;
}


.autorisation-ajout,
.autorisation-modif,
.autorisation-supp {
  padding: 10px;
  border-radius: 10px;
  font-weight: bold;
}

.autorisation-ajout {
  background: #00b1ff59;
  color: #002130;
  font-weight: bold;
}

.autorisation-modif {
  background: #ffde003b;
  color: #2e1e00;
  font-weight: bold;
}

.autorisation-supp {
  background: #ff000047;
  color: #440000;
  font-weight: bold;
}

.table-container::-webkit-scrollbar {
  height: 5px;
}

/* Track */
.table-container::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 25px;
}

/* Handle */
.table-container::-webkit-scrollbar-thumb {
  background: #03a9f4;
  border-radius: 25px;
}

/* Handle on hover */
.table-container::-webkit-scrollbar-thumb:hover {
  background: ;
}

.table-container table {
  border-collapse: separate;
  border-spacing: 0 10px;
}

.table-container table tbody tr {
  background-color: #fff;
  transition: 0.7s;
}

.table-container table tbody tr:hover {
  background-color: #f9f9f9;
}

.table-container table tbody tr td:first-child {
  border-left: solid 1px #eee;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.table-container table tbody tr td:last-child {
  border-right: solid 1px #eee;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.table-container table tr td {
  transition: 0.7s;
  vertical-align: middle;
  padding: 20px 10px;
  font-size: 13.5px;
  min-width: 100px;
  border-bottom: solid 1px #eee;
  border-top: solid 1px #eee;
}

.photo-th,
.photo-td {
  width: 150px;
  text-align: center;
}

.photo-th div,
.photo-td div {
  margin: auto;
}

.photo-td img {
  border-radius: 50%;
  width: 75px;
}

#table-calendrier-disponibilite {
  border-collapse: collapse;
}

#table-calendrier-disponibilite .indisponible {
  background: #ffa5a5;
}

#table-calendrier-disponibilite .jour-inexistant {
  background: #000;
  color: #fff;
}

.table-container.table-calendrier-disponibilite-container table tr td {
  transition: 0.7s;
  vertical-align: middle;
  padding: 5px 10px;
  font-size: 14px;
  min-width: auto !important;
  width: auto !important;
  border: solid 1px #eee;
}

#table-calendrier-disponibilite .mois-td {
  text-align: left;
}

/*
.table-container table tr td:first-child{
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.table-container table tr td:last-child{
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}*/

.check-item-all {
  border-radius: 25px;
}

#modele-save {
  border-radius: 25px;
  border: solid 1px #000;
}

.check-item-all-th,
.table-line-number {
  width: 50px;
  text-align: center !important;
}

.table-delete-button {
  color: red;
  text-align: center;
  margin: auto;
}

.table-alert {
  padding: 5px 10px;
  text-align: center;
  border-radius: 25px;
}

.uk-alert-violet {
  background: #ffdeff;
  color: #b500b5;
}

.check-item-td {
  width: 50px;
  text-align: center;
}

.actions-td a {
  margin-left: 15px;
}

.list-table th {
  font-weight: bold;
  color: #000;
  font-size: 13px;
}

.total-table-container,
.total-table-container .list-table {
  background: #fbfbfb;
}

.table-container.total-table-container table tbody tr,
.table-container.total-table-container table tbody tr:hover {
  background-color: #fff;
}

.table-pagination {
  text-transform: uppercase;
  font-size: 12px;
  margin: 30px 0px 100px 0px;
  color: #000;
  font-weight: bold;
}

.search-by-keyword {
  width: 600px;
  border: none;
  border-bottom: solid 1px #eee;
}

.forms-container {
  padding: 50px 0px 100px 0px;
}

.page-actions {
  padding: 0px 0px 0px 0px;
  margin-bottom: 50px;
}

.page-actions a {
  margin-right: 10px;
}

.page-actions a:hover {
  text-decoration: none;
  color: #000;
}

.action-delete-link {
  background: #ff9b9b1a;
  color: #ff5f95;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
}

.action-help-link {
  background: #4d66ef21;
  color: #000f62;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
  display: none;
}

/* Calendrier
   ========================================================================== */
.calendrier-table {
  width: 100%;
}

.calendrier-table th {
  padding: 0px;
  text-align: center;
}

.calendrier-table td {
  transition: 0.7s;
  vertical-align: middle;
  padding: 5px;
  font-size: 14px;
  border: solid 1px #000;
  border-top: solid 1px #eee;
  text-align: center;
}

.calendrier-table td.active {
  background-color: #6362e7;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.calendrier-colorized-td {
  background-color: #26265e;
  color: #fff;
  font-weight: bold;
}

/* Tchat
   ========================================================================== */

#new-message-btn {
  border-radius: 10px;
  border: none;
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  background-color: #6362e7;
  font-weight: 600;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 220px;
}

#new-message-btn.active {
  background-color: #ed1b24;
}

.unread-indicator {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: red;
  position: absolute;
  right: 2px;
  top: -2px;
  display: none;
}

.not-found {
  display: none;
  font-style: italic;
}

#conversation-details-container .uk-list {
  max-height: 65vh;
  overflow-y: scroll;
}

#conversation-details-container .card {
  position: relative;
}

.conversation-details {
  margin-top: 20px !important;
  cursor: pointer;
  padding: 10px;
  border-radius: 15px;
  transition: 0.7s;
  border: solid 1px transparent;
  position: relative;
}

.conversation-details.unread .unread-indicator {
  display: block;
}

.conversation-details.unread {
  background: #ebf8ff;
}

.conversation-details.active {
  background: #f3f3f3;
  border: solid 1px #eee;
}

#conversation-photo img {
  width: 50px;
  border-radius: 50%;
}

#conversation-nom {
  text-align: left;
  font-size: 12px;
  font-weight: bold;
  padding-bottom: 10px;
  text-transform: capitalize;
}

#conversation-intro {
  text-align: left;
  font-size: 12px;
  color: #444;
  font-weight: 500;
}

.no-message {
  margin: auto;
  text-align: center;
}

.no-message img {
  width: 200px;
}

#conversation-client-infos-photo {
  border-radius: 50%;
  margin: auto;
  width: 120px;
}

#conversation-client-infos-nom {
  color: #000;
  padding: 25px 20px;
  font-weight: bold;
  text-transform: capitalize;
}

#conversation-client-infos-email,
#conversation-client-infos-numero {
  text-align: left;
  font-weight: 500;
  padding: 10px;
  font-size: 13px;
}

.message-entrant-icone {
  color: #00cd10;
}

.message-sortant-icone {
  color: #ff4141;
}

.conversation-search-input {
  width: 100%;
  border: none;
  font-size: 12px;
}

.conversation-search-input .uk-search-default {
  width: 100%;
}

.conversation-search-input input {
  width: 100%;
  height: 50px !important;
  border-radius: 5px;
  background-color: #f8f8f8 !important;
  border: solid 1px #444;
  color: #444;
}

#messages-btn {
  position: fixed;
  bottom: 15px;
  right: 50px;
  background-color: #fd7221 !important;
  border: none !important;
  color: #fff !important;
  border-radius: 25px;
  padding: 0px 20px;
  z-index: 2;
}

#messages-btn button {
  color: #fff !important;
}

#messages-btn span i {
  color: #fff !important;
}

#chosen-conversation-container {}

#chosen-conversation-container .card,
#chosen-conversation-container .card-body {}

#conversation-container {
  position: relative;
  height: calc(100% - 150px);
  overflow-y: scroll;
  box-sizing: border-box;
}

#conversation-container::-webkit-scrollbar {
  height: 0px;
  width: 0px;
  display: none;
}

#messages-container {
  height: calc(90vh - 150px);
  width: 100%;
  backdrop-filter: blur(30px);
  overflow: hidden;
  position: relative;
}

.message-container {
  margin-top: 15px;
  margin-bottom: 15px;
}

.date-conversation {
  font-size: 12px;
  font-weight: 500;
  color: #000000;
}

.heure-conversation {
  font-size: 10px;
  font-weight: 600;
  color: #222222;
  margin-left: 20px;
  margin-right: 5px;
}

.message {
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 10px 30px 10px 20px;
  position: relative;
}

.message i {
  position: absolute;
  bottom: 9px;
  right: 10px;
  color: #000;
  font-size: 20px;
}

.sent-message {
  background-color: #b9d2eb;
  color: #000;
  margin-right: 15px;
  float: right;
  max-width: 75%;
}

.received-message {
  background-color: #fff;
  color: #000;
  margin-left: 15px;
  float: left;
  max-width: 75%;
}

#message-field-container {
  width: 90%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

#message-field {
  background-color: #ffffffb3;
  color: #000;
  height: 100px;
  border-radius: 15px;
  resize: none;
  padding: 15px 70px 15px 15px;
  max-height: 100px;
}

#message-field::-webkit-scrollbar {
  height: 0px;
  width: 0px;
  display: none;
}

#send-message-btn {
  background-color: #787878;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: navajowhite;
  color: #fff;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 20px;
  cursor: pointer;
  transition: 0.7s;
}

#send-message-btn:hover {
  background-color: #00965e;
  /*#2763bd;*/
}

#send-message-btn i {
  margin: auto;
}

#newmessage-audio,
#sentmessage-audio {
  display: none;
}

/*********** Les Boutons d'action ***************/

.action-btn {
  text-decoration: none !important;
}

/*** Boiton d'action vert ***/

.action-btn-vert {
  background: tranparent;
  color: #1fc24f;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
  border: solid 2px #1fc24f;
  transition: 0.7s;
}

.action-btn-vert:hover {
  background: #1fc24f;
  color: #fff !important;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
}

/*** Bouton d'action bleu ***/
.action-btn-bleu {
  background: tranparent;
  color: #6362e7;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
  border: solid 2px #6362e7;
  transition: 0.7s;
}

.action-btn-bleu:hover {
  background: #6362e7;
  color: #fff !important;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
}

/*** Bouton d'action violet ***/
.action-btn-violet {
  background: #fff;
  color: #9500c2;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
  border: solid 2px #9500c2;
  transition: 0.7s;
}

.action-btn-violet:hover {
  background: #9500c2;
  color: #fff !important;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
}

/*** Bouton d'action rouge ***/
.action-btn-rouge {
  background: #fff;
  color: #fe4a4a;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
  border: solid 2px #fe4a4a;
  transition: 0.7s;
}

.action-btn-rouge:hover {
  background: #fe4a4a;
  color: #ffffff !important;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
}

/*** Bouton d'action jaune ***/
.action-btn-jaune {
  background: #fff;
  color: #febc00;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
  border: solid 2px #febc00;
  transition: 0.7s;
}

.action-btn-jaune:hover {
  background: #febc00;
  color: #ffffff !important;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
}

.action-list-link {
  background: #edfff6;
  color: #007037;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
}

.action-modify-link {
  background: #ffeb3b1f;
  color: #a19000;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
}

.action-details-link {
  background: #9b9b9b1f;
  color: #000000;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
}

.action-cancel-link {
  background: #ff9c9c;
  color: #fff;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
}

.action-deliver-link {
  background: #31b773;
  color: #fff;
  border-radius: 5px;
  padding: 15px 30px;
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.08);
  font-weight: bold;
}

.action-return-link {
  background: #b147c3;
  color: #fff;
  border-radius: 5px;
  padding: 15px 30px;
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.08);
  font-weight: bold;
}

.action-back-link {
  background: #ffe0fa;
  color: #a70091;
  border-radius: 5px;
  padding: 15px 30px;
  font-weight: bold;
  display: none;
}

/* Evite l'effet d'index superieur par rapport au champs chosen */

[class*="uk-animation-"] {
  animation-fill-mode: none;
}

#file-action-buttons {
  text-align: center;
  padding: 0px 0px 50px 0px;
}

#file-action-buttons>div {
  width: 600px;
  margin: auto;
}

#add-file-action-buttons {
  text-align: center;
  padding: 0px 0px 50px 0px;
}

.file-upload-input {
  /*background-color: #d3e7fb;*/
  color: #000;
  padding: 10px 15px;
  width: 300px;
  border: solid 1px #444;
  height: 50px;
  margin: auto;
}

.file-upload-input-text {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
}

.file-delete-input {
  /*background-color: #ffdcdc;*/
  color: #000;
  padding: 10px 15px;
  width: 300px;
  border: solid 1px #444;
  height: 50px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  padding-top: 14px;
}

.file-delete-input input {
  border: solid 1px #000 !important;
}

.photo-td .no-image {
  border-radius: 25px;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #04a9f4, #36e3f9);
  text-align: center;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.table-preview-photo {
  border-radius: 25px;
  width: 50px;
  height: 50px;
}

.delete-confirm {
  font-size: 20px;
}

#form-supprimer,
#form-annuler {
  padding-top: 30px;
}

.list-info {
  width: 50%;
  border-radius: 10px;
  text-align: center;
  margin: 50px auto;
  padding: 30px 40px;
  font-weight: 400;
}

.list-green-state {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00ff00;
  display: inline-block;
  margin-right: 20px;
}

.list-red-state {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff0000;
  display: inline-block;
  margin-right: 20px;
}

#rapport-livraisons-table-container {
  display: none;
}

#retour-articles-table-container {
  display: none;
  margin-top: 70px;
}

#retour-articles-table-container input,
#retour-articles-table-container select {
  margin: 5px;
}

.table-duplicate {
  color: blue;
  float: right;
  cursor: pointer;
}

.table-delete-duplicated {
  text-align: center;
  color: red;
  cursor: pointer;
}

.uk-notification {
  width: 550px !important;
  text-align: center;
}

/***** Contexte menu *******/

.context-menu {
  position: absolute;
  display: none;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgb(0 0 0 / 4%);
  border: solid 1px #f9f9f9;
  padding: 15px 25px;
  cursor: pointer;
  width: 250px;
  max-width: 250px;
  border: solid 1px #e5e5e5;
}

.context-menu .uk-dropdown-nav>li>a {
  color: #000;
  padding: 10px 0px;
  cursor: pointer;
}

/* Page de details
   ========================================================================== */

.details-etat-paiement {
  width: 120px;
  border-radius: 10px;
  padding: 5px;
  font-weight: bold;
  text-align: center;
}

.details-etat-paiement.paye {
  background: #cffde6;
  color: #31b773;
}

.details-etat-paiement.nonpaye {
  background: #ff9b9b52;
  color: #ff5f95;
}

/* Page de paiement
   ========================================================================== */

#mois-container {
  margin-top: -50px;
  text-align: center;
}

#mois-container .added-month {
  width: 180px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  margin: 0px 5px 5px 0px;
}

#mois-container .added-month:nth-child(even) {
  background: #d8eafc;
  color: #1e87f0;
}

#mois-container .added-month:nth-child(odd) {
  background: #edfbf6;
  color: #32d296;
}

/* Recu de paiement
   ========================================================================== */

#recu-a5 {
  width: 21cm;
  height: 14.85cm;
  margin: 75px auto 0px auto;
}

#recu-logo {
  text-align: center;
  margin: auto;
  width: 100px;
  padding: 0px 0px 10px 0px;
}

.recu-number {
  color: #000;
  font-size: 10px;
  text-align: center;
  font-weight: bold;
  background-color: #f1f1f1;
  padding: 10px 10px 10px 15px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  text-transform: uppercase;
  border: solid 1px #444;
}

.contrat-id {
  padding: 10px 0px 10px 0px;
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
  font-weight: bold;
}

.printed-by {
  padding: 10px 0px 0px 0px;
  font-size: 10px;
  display: none;
}

.recu-solde {
  border: solid 2px #000;
  width: 150px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin: auto;
  margin-top: -25px;
  padding: 5px 20px;
  float: left;
}

.signature {
  padding: 10px 50px 15px 0px;
  font-size: 10px;
  text-decoration: underline;
  text-transform: uppercase;
  text-align: right;
  font-weight: bold;
}

#recu-content {}

.recu-content-left {
  border: solid 2px #444;
  height: 100%;
  padding: 0px 15px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  height: 100%;
}

.recu-content-right {
  border: solid 2px #444;
  padding: 0px 15px;
  padding-bottom: 30px;
  border-left: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  height: 100%;
}

.recu-title {
  text-transform: uppercase;
  font-size: 10px;
  text-align: center;
  border: solid 2px #000;
  width: 80%;
  margin: 10px auto 20px auto;
  font-weight: bold;
}

.recu-nom,
.recu-prenom,
.recu-numero,
.recu-email {
  font-size: 10px;
  padding-bottom: 10px;
}

.recu-propriete,
.recu-type,
.recu-entree,
.recu-sortie,
.recu-nombre-jours,
.recu-prix-jour,
.recu-prix-total,
.recu-reduction,
.recu-date-contrat,
.recu-date-paiement {
  font-size: 10px;
  padding-bottom: 10px;
}

.recu-montant-reste,
.recu-montant-du,
.recu-montant-paye {
  font-weight: bold;
  border: solid 1px #000;
  font-size: 12px;
  padding: 2px;
  text-align: center;
  margin-bottom: 10px !important;
}

.no-margin-grid {
  margin-top: 0px !important;
}

#recu-prestations {
  text-align: center;
  font-size: 9.5px;
  font-weight: bold;
  text-transform: uppercase;
}

#recu-contact {
  text-align: left;
  font-size: 10px;
  font-weight: bold;
}

.no-padding {
  padding: 0px !important;
}

.padding-40 {
  padding: 40px;
}




.no-padding-left {
  padding-left: 0px;
}

#recu-qrcode {
  width: 75px;
  margin: auto;
  margin-top: -30px;
}

/* Formulaires
   ========================================================================== */
.pulse {
  display: block;
  position: absolute;
  top: 0.3rem;
  right: 0.7rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c03c;
  cursor: pointer;
  box-shadow: 0 0 0 rgb(34 192 60 / 90%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(34, 192, 60, 0.9);
    box-shadow: 0 0 0 0 rgba(34, 192, 60, 0.7);
  }

  70% {
    -moz-box-shadow: 0 0 0 10px rgba(34, 192, 60, 0);
    box-shadow: 0 0 0 10px rgba(34, 192, 60, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(34, 192, 60, 0);
    box-shadow: 0 0 0 0 rgba(34, 192, 60, 0);
  }
}

.form-container {
  margin: 70px auto 0px auto;
}

.form-title-container {
  width: 100%;
}

.form-title {
  text-align: left;
  font-weight: 500;
  border-bottom: solid 1px #eee;
  width: 100%;
  font-size: 20px;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.form-card {
  border-radius: 15px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgb(0 0 0 / 8%);
  /*0 5px 15px rgb(0 0 0 / 8%);*/
  padding: 50px;
  margin-bottom: 40px;
}

.form-switcher {
  margin-bottom: 100px;
}

.page-recap-container {
  margin-top: 50px;
  padding: 20px 40px 50px 40px;
  background-color: #fff;
  /*box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.08);*/
}

.page-recap-container .title {
  color: #9a9a9a;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: solid 1px #eee;
  padding-bottom: 30px;
}

.page-recap-container .uk-grid-small {
  font-size: 15px;
}

.form-container input:hover,
.form-container select:hover,
.form-container textarea:hover,
.chosen-container:hover {
  background-color: #f4fcfd;
}

.form-container input,
.form-container select,
.chosen-container {
  border-radius: 7px;
  border: solid 1px #f1f1f1;
  background-color: #f5f5f524;
  min-height: 50px !important;
}

.form-container textarea {
  border-radius: 7px;
  border: solid 1px #f1f1f1;
  background-color: #f5f5f524;
  height: 75px !important;
}

.form-container .uk-checkbox {
  height: 16px !important;
}

.form-margin-top {
  margin-top: 75px;
}

#form-search {
  width: 100%;
  margin: auto;
}

#form-search .champs-container {
  text-align: left;
}

#form-search .champs-container input,
#form-search .champs-container select {
  border-radius: 7px;
  border: solid 1px #f1f1f1;
  background-color: #f5f5f524;
}

/*
input[type="date"]{
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
*/

#form-search .champs-container .submit-btn {
  margin-top: 10px;
  font-weight: bold;
}

.search-submit-btn {
  text-align: center;
  background: #6362e7;
  border: none;
  color: #fff;
  font-weight: bold;
  height: 50px;
  font-size: 15px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.search-submit-btn.rounded {
  border-radius: 7px !important;
}

.search-cancel-btn {
  text-align: center;
  border: none;
  background: #ff7575;
  color: #ffffff;
  font-weight: bold;
  height: 50px;
  font-size: 15px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

.search-cancel-btn.rounded {
  border-radius: 7px !important;
}

.search-submit-btn span svg,
.search-cancel-btn span svg {
  width: 20px;
}

input[type="file"] {
  border: solid 1px transparent;
  background-color: transparent;
  padding: 10px 0px;
}

.uk-input {
  height: 50px;
}

/* Chosen
   ========================================================================== */

.chosen-container {
  border-radius: 7px;
  border: solid 1px #f1f1f1;
  background-color: #f5f5f524;
  min-height: 50px !important;
}

.chosen-container-single .chosen-single span {
  padding-top: 15px;
  font-size: 15px;
}

.chosen-container-single .chosen-single div b {
  margin-top: 15px;
}

.uk-select.chosen-select {
  min-height: 50px !important;
}

.chosen-container-multi .chosen-choices {
  min-height: 50px !important;
  border-radius: 7px;
  border: solid 1px #f1f1f1;
  background-color: #f5f5f500;
  background-image: none !important;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  height: 25px;
}

.chosen-container .chosen-drop {
  z-index: 100;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  height: 25px !important;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  height: auto !important;
  font-size: 15px;
  font-family: "Montserrat";
  padding-left: 5px;
  color: #333;
}

.form-info {
  width: 50%;
  text-align: center;
  font-weight: bold;
  margin: 0px auto;
}

.form-info.large {
  width: 70%;
}

.champs-label {
  font-size: 16px;
  font-weight: 500;
  padding-left: 0px;
  margin-bottom: 5px;
  color: #444;
}

.champs-ex {
  display: non;
  font-style: italic;
  font-size: 15px;
}

.champs-info {
  font-style: italic;
  color: #444;
  font-weight: 400;
  text-transform: none;
  font-size: 13px;
}

.champs-label-bottom-container {
  text-align: center;
}

.champs-label.bottom {
  color: #444;
  font-style: italic;
  font-size: 13px;
  text-transform: none;
  font-weight: 300;
  padding-top: 10px;
}

.champs-obligatoire {
  color: red;
  font-size: 16px;
  font-weight: bold;
}

.submit-btn-container {
  text-align: center;
  margin: 50px auto 50px auto;
}

/*
.submit-btn {
  text-align: center;
  text-transform: uppercase;
  background: #3694bf;
  width: 250px;
  padding: 15px 30px;
  border: none;
  border-radius: 0px;
  color: #fff;
  font-weight: bold;
}
*/
.submit-btn {
  background: #6362e7;
  color: #ffffff;
  border-radius: 5px;
  padding: 14px 30px;
  font-weight: bold;
  border: none;
  width: 250px;
  font-size: 18px;
}

.submit-btn-auto-width {
  background: #6362e7;
  color: #ffffff;
  border-radius: 5px;
  padding: 14px 30px;
  font-weight: bold;
  border: none;
  font-size: 18px;
}

.modal-create-link button {
  background: #6362e7;
  color: #ffffff;
  border-radius: 5px;
  padding: 14px 30px;
  font-weight: bold;
  border: none;
  width: 100%;
}

#modal-attestation {
  background-color: #fff;
}

input.submit-btn,
input.submit-btn:hover {
  text-align: center;
  text-transform: uppercase;
  background: #2c46d2;
  width: 300px;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  color: #fff;
}

.image-check-itembox-container {
  text-align: center;
  margin: 50px auto;
}

.image-check-itembox {
  margin: auto;
  padding: 10px 20px;
  color: #787878;
  text-transform: uppercase;
  font-size: 12px;
  border: solid 1px #666;
}

.file-input-container {
  width: 100%;
}

.file-input-champs {
  width: calc(100% - 170px);
}

.file-input-btn {
  width: 150px;
  color: #fff;
  background-color: #3694bf;
  height: 50px;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
}

.file-input-champs,
.file-input-btn {
  display: inline-block;
}

#page-components {
  margin-top: 50px;
}

.page-component {
  border-radius: 0px;
  padding: 50px;
  background: #fbfbfb;
  color: #000;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.08);
}

.liste-page-acces-name {
  padding: 10px 20px;
  text-align: center;
  background: #fbfbfb;
  color: #000;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.08);
}

.page-component-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 50px;
}

/* Swal alert 2
   ========================================================================== */

.swal2-modal {
  border-radius: 25px !important;
  border: solid 1px #eee !important;
  padding: 70px !important;
}

.swal2-confirm {
  /*border-radius: 25px !important;*/
}

.swal-submit-btn {
  text-align: center;
  text-transform: uppercase;
  background: #3694bf;
  width: 220px;
  padding: 15px 30px;
  border: none;
  border-radius: 0px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  margin-top: 20px;
}

/* Footer
   ========================================================================== */

footer {
  border: solid 1px #dedede;
  padding: 25px;
  text-transform: uppercase;
  color: #9c9c9c;
  font-size: 12px;
  margin-top: 50px;
  background-color: #fff;
}

.footer-heart {
  color: red;
  transform: rotate(45deg);
  animation: clignote 1s infinite;
}

/* Impression
   ========================================================================== */

@media print {
  @page {
    size: landscape;
  }

  html,
  body {
    height: 99%;
    background-color: #fff !important;
  }

  .uk-tab {
    display: none;
  }

  #logo-recu {
    width: 100px;
  }

  .print-hide {
    display: none !important;
  }

  .print-show {
    display: block !important;
  }

  #mobile-menu-icon {
    display: none;
  }

  .infos-pagination span {
    display: none;
  }

  #page-content.map {
    margin: 0 !important;
    padding: 0 !important;
  }

  #page-body-right {
    width: 100%;
    padding-right: 0px;
  }

  .title-container .title {
    border-bottom: solid 1px #000;
    padding-bottom: 15px;
  }

  .card {
    border-radius: none !important;
    background-color: #fff;
    border: none !important;
    box-shadow: none !important;
  }

  .table-container table {
    border-collapse: collapse;
  }

  .table-container table tr th {
    border: solid 1px #000;
    background-color: #f2f2f2;
  }

  .table-container table tr td {
    border: solid 1px #000;
    padding: 5px 10px;
    min-width: auto;
  }

  .list-info {
    margin: 0px auto 10px auto;
  }

  /*** Recu ***/

  #recu-a5 {
    width: 21cm;
    height: 14.85cm;
    margin: 0px auto;
  }

  #recu {
    margin-left: -30px;
  }

  .printed-by {
    display: block;
  }

  /******** Page de details *********/

  * {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
  }

  .details-page-title {
    margin: 0px auto;
    padding: 0px !important;
  }

  .details-page #photo-preview {
    width: 120px;
    height: 120px;
  }

  .details-page tr {
    border-bottom: solid 1px #eee !important;
  }

  .details-page .uk-tab-left {
    display: none;
  }

  .details-page .uk-width-5-6 {
    width: 100%;
    padding: 0px;
  }

  /******** Tableaux **********/

  .clignote {
    opacity: 1 !important;
    color: #000 !important;
  }
}

/* Page ajout articles
   ========================================================================== */

#achats-infos,
#oldachats,
#reception-infos,
#oldreceptions {
  width: 90%;
  margin: auto;
  border-radius: 25px;
  padding: 0px 70px 30px 0px;
}

#articles-infos-container,
#colis-infos-container {
  border: solid 1px #eee;
  width: 100%;
  margin: 50px auto;
  border-radius: 25px;
  padding: 30px 70px 30px 0px;
}

#colis-infos-container .submit-btn-container {
  margin-bottom: 15px;
}

/* Page des détails
   ========================================================================== */

.details-page .uk-tab-left {
  height: 100%;
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 1px 4px 0px #f1f1f1;
}

.uk-tab-left::before {
  border-left: none;
}

.details-page .uk-tab-left li {
  border-bottom: solid 1px #eee;
  padding: 10px 0px;
}

.details-page .uk-tab-left li.uk-active {
  border-right: solid 1px #eee;
  background-color: #effaff;
}

.details-page .uk-tab-left>*>a {
  text-align: left;
  border: none !important;
  text-transform: none;
}

.details-page-content {
  width: 95%;
  margin: 100px auto 50px auto;
}

.details-page-title {
  border-bottom: solid 1px #eee;
  width: 95%;
  margin: 50px auto;
  padding-bottom: 30px;
  font-size: 20px;
}

.details-page-table-item-title {
  font-weight: bold;
}

.details-page-content .uk-table-striped>tr:nth-of-type(odd),
.uk-table-striped tbody tr:nth-of-type(odd) {
  background: #f8f8f8;
  border: none;
}

.subform-title {
  border-bottom: solid 1px #eee;
  width: 100%;
  margin: 0px auto 70px auto;
  padding-bottom: 30px;
  font-size: 20px;
}

/* ========================================================================
   Style de la page connexion
 ========================================================================== */

#login-form-container {
  width: 100%;
  height: 100vh;
  background-image: url("../images/theme/login-background.svg");
  background-color: #03a9f4;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#login-form-container .form-container {
  margin: auto;
  padding: 100px 60px;
  background-color: #03a9f4;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.login-form-grid {
  width: 50%;
  margin: auto;
  padding: 0px 0px;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.08);
}

.login-form-image {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: solid 1px #eee;
  padding: 0px;
}

.login-form-create {
  color: #444;
  transition: 0.7s;
  text-transform: uppercase;
  font-size: 12px;
}

.login-form-create:hover {
  color: #444;
}

.login-form-img {
  width: 300px;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../images/theme/login-img.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.login-form-image p {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 20px;
}

#login-form-container .title {
  font-size: 60px;
  text-align: center;
  color: #fff;
}

#login-form-container .champs-label {
  color: #fff;
  font-weight: bold;
}

.mdp-oublie {
  color: #fff;
  transition: 0.7s;
  text-transform: uppercase;
  font-size: 12px;
}

.mdp-oublie:hover {
  color: #fff;
}

#login-form-container input {
  background: transparent;
  color: #fff;
  border: none;
  border-bottom: solid 1px #fff;
}

#login-form-container .champs-obligatoire {
  color: #ffff;
  font-weight: bold;
}

#login-form-container .submit-btn {
  text-align: center;
  text-transform: uppercase;
  background: #0067b9;
  width: 300px;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  color: #fff;
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.2);
}

/* Plan de masse
   ========================================================================== */

#carte {
  width: 100vw;
  height: 100vh;
}

#page-body-map {
  overflow: hidden;
}

/* Croppie
   ========================================================================== */

#modal-photo-crop-preview-container,
.croppie-container {
  width: 300px !important;
  height: 300px !important;
  margin: auto;
}

#modal-photo-crop .uk-modal-header {
  display: none;
}

#modal-photo-crop .uk-modal-title {
  font-size: 20px;
  text-transform: uppercase;
}

#modal-photo-crop .uk-modal-body {
  /*height: 500px;*/
  padding: 50px 0px;
}

#modal-photo-crop .uk-modal-header {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

#modal-photo-crop .uk-modal-dialog {
  border-radius: 25px;
  padding: 0px 30px;
  overflow: hidden;
}

img#photo-preview,
.cr-boundary {
  /*border: solid 2px #e0e0e0;*/
}

#modal-photo-crop .uk-modal-footer {
  border: none;
}

#modal-photo-crop button {
  border-radius: 25px;
  margin: 10px;
  padding: 5px 50px;
  font-weight: 500;
}

/* File input Bootstrap
   ========================================================================== */

.modal {
  background: rgba(0, 0, 0, 0.6);
}

.modal-dialog {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-radius: 25px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.firstimage {
  background-color: #effaff !important;
}

.file-upload-indicator,
.kv-file-upload,
.fileinput-upload-button,
.file-drag-handle,
.kv-file-rotate,
.kv-file-zoom,
.fileinput-remove-button {
  display: none;
}

.file-preview-frame.file-preview-initial.kv-preview-thumb .kv-file-zoom {
  display: none;
}

.file-zoom-dialog .kv-zoom-body {
  padding: 50px;
}

.file-zoom-dialog .kv-zoom-header {
  padding: 25px;
}

.file-zoom-dialog .btn-navigate {
  border: none;
}

.input-group-btn .file-input {
  display: none;
}

.krajee-default.file-preview-frame {
  margin: 8px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0px;
  background-color: #fff;
  box-shadow: none;
}

.file-thumbnail-footer {
  padding: 5px 10px;
}

.file-thumb-progress {
  padding: 5px;
}

.file-upload-indicator {
  margin: 5px 0px 5px 10px;
}

.file-footer-buttons {
  margin: 5px 10px 5px 0px;
}

.file-preview {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border: 1px solid #eee;
  padding: 40px;
}

.file-drop-zone {
  border: 1px dashed #b7b7b7;
  min-height: 260px;
  border-radius: 25px;
  text-align: center;
  vertical-align: middle;
  margin: 12px 15px 12px 12px;
  padding: 5px;
  background-color: #fdfdfd;
}

.form-control {
  box-shadow: none !important;
}

.file-preview .fileinput-remove {
  top: 20px;
  right: 30px;
  line-height: 10px;
  border: solid 1px #000;
  padding: 5px;
  border-radius: 25px;
}

#bulk-add-photos-input-container .input-group-btn {
  background-color: #337ab7;
  overflow: hidden;
}

#bulk-add-photos-input-container .input-group-btn .btn-file {
  border: none;
}

/*** Carte dans les détails ***/

.afficher-carte-btn {
  color: #000;
  text-transform: initial;
  font-size: 10px;
}

#modal-carte iframe {
  width: 90vw;
  height: 90vh;
  margin: auto;
}

#autorisations_selection {
  margin-top: 0px !important;
}

#autorisations_selection>div {
  display: none;
  margin-top: 15px;
}

#autorisations_selection>div .chosen-container {
  width: 100% !important;
}

/**** Liste des dossiers du filemanager ***/

.liste-dossiers .dossier {
  padding: 15px 30px;
  background-color: #fff;
  box-shadow: 0px 1px 1px #eee;
  color: #000;
  border: solid 1px #eee;
  border-radius: 15px;
  transition: 0.7s;
  cursor: pointer;
}

.liste-dossiers .dossier:hover {
  background-color: #f3f3f3;
}

.liste-dossiers .dossier i {
  font-size: 30px;
}

.liste-dossiers .dossier span {
  vertical-align: middle;
}

.dossier-infos {
  padding: 0px 0px 0px 0px;
  font-weight: 500;
}

/*
#file-uploader-modal .uk-modal-dialog {
  width: 70%;
  padding: 50px;
  border-radius: 25px;
}

#file-uploader-modal .uk-button-close {
  border-radius: 25px;
  background-color: #03a9f4;
  color: #fff;
  font-weight: bold;
  float: right;
}

*/

#filemanager-loader {
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  text-align: center;
}

#filemanager-loader.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#filemanager-loader img {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}

#filemanager-loader p {
  font-size: 18px;
  padding-top: 50px;
  text-align: center;
}

#form-add-folder-container {
  background-color: #fff;
}

#form-add-folder-container .checkbox-container input {
  height: 20px !important;
  min-height: 20px !important;
  width: 20px;
}

.filemanager-navigation-container ul {
  text-align: center;
}

.filemanager-navigation-container li {
  width: 200px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
}

.filemanager-navigation-btn:hover {
  text-decoration: none;
}

.filemanager-navigation-btn div {
  background-color: rgba(99, 98, 231, 0.05);
  border: none !important;
  padding: 10px;
  color: #fff;
  font-weight: 600;
  transition: 0.7s;
}

#filemanager-root-btn {
  background-color: #0099b9;
}

#filemanager-previous-btn {
  background: #ffae00;
}

.filemanager-navigation-btn.uk-active div {
  background-color: #6362e7 !important;
  color: #fff;
}

.filemanager-navigation-btn:hover div {
  background-color: #eee !important;
  color: #000;
}

.filemanager-action-nouveau-dossier-btn {
  background: #6362e7 !important;
  color: #fff;
  border-radius: 5px;
  padding: 14px 30px;
  font-weight: bold;
  border: none;
}

.filemanager-action-nouveau-fichier-btn {
  background: #9500c2 !important;
  color: #fff;
  border-radius: 5px;
  padding: 14px 30px;
  font-weight: bold;
  border: none;
}

.filemanager-action-nouveau-lien-btn {
  background: #009177 !important;
  color: #fff;
  border-radius: 5px;
  padding: 14px 30px;
  font-weight: bold;
  border: none;
}

.filemanager-action-nouveau-menu {
  border-radius: 10px;
  box-shadow: 0 5px 12px rgb(0 0 0 / 4%);
  border: solid 1px #f9f9f9;
  padding: 15px 25px;
  cursor: pointer;
  z-index: 10;
}

.filemanager-action-nouveau-btn .uk-dropdown-nav>li>a {
  color: #000;
  padding: 10px 0px;
  cursor: pointer;
}

#filemanager-navigation-btn-container {
  text-align: center;
  margin: 50px auto 20px auto;
}

.filemanager-action-home-btn {
  border-radius: 5px;
  box-shadow: 0 5px 12px rgb(0 0 0 / 4%);
  border: solid 1px #f9f9f9;
  padding: 10px 25px;
  cursor: pointer;
  background: #ffae00;
  color: #fff;
  font-weight: bolder;
}

.filemanager-action-reload-btn {
  border-radius: 5px;
  box-shadow: 0 5px 12px rgb(0 0 0 / 4%);
  border: solid 1px #f9f9f9;
  padding: 10px 25px;
  cursor: pointer;
  background: #7b7b7b;
  color: #fff;
  font-weight: bolder;
}

.filemanager-action-previous-btn {
  border-radius: 5px;
  box-shadow: 0 5px 12px rgb(0 0 0 / 4%);
  border: solid 1px #f9f9f9;
  padding: 10px 25px;
  cursor: pointer;
  background: #4c78b1;
  color: #fff;
  font-weight: bolder;
}

/*
#create-folder-modal .uk-modal-dialog {
  width: 70%;
  padding: 50px;
  border-radius: 25px;
}
*/

.uk-notification-message-success {
  background-color: #edfbf6;
  color: #32d296;
  padding: 15px;
  font-weight: 500;
}

.filemanager-table-folder-icon {
  font-size: 25px;
}

.filepond--credits {
  display: none !important;
}

.filepond--panel-root {
  background-color: #f1f1f1 !important;
  border: dashed 2px #c0c0c0;
}

/**** Modal ****/

#create-folder-modal .uk-modal-close,
#file-uploader-modal .uk-modal-close,
#create-link-modal .uk-modal-close,
#modal-details .uk-modal-close,
#modal-renommer .uk-modal-close,
#modal-send-email .uk-modal-close,
#modal-send-whatsapp .uk-modal-close,
#modal-modifier-folder .uk-modal-close {
  position: absolute;
  border: solid 1px #eee;
  padding: 10px;
  border-radius: 25px;
  background: #ffd2d2;
  color: #be0000;
  box-shadow: 0px 1px 1px 1px #eee;
  right: 30px;
  top: 25px;
}

#create-folder-modal .uk-modal-body,
#file-uploader-modal .uk-modal-body,
#create-link-modal .uk-modal-body {
  padding: 50px 70px 0px 70px;
  border-radius: 25px;
}

#modal-details .uk-modal-body {
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 70px;
  padding-right: 70px;
  border-radius: 25px;
}

#modal-modifier-folder .uk-modal-body {
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 70px;
  padding-right: 70px;
  border-radius: 25px;
}

#modal-renommer .uk-modal-body {
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 70px;
  padding-right: 70px;
  border-radius: 25px;
}

#modal-send-whatsapp .uk-modal-body {
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 70px;
  padding-right: 70px;
  border-radius: 25px;
}

.modal-card .uk-modal-body {
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 70px;
  padding-right: 70px;
  border-radius: 25px;
}

.modal-card .titre {
  font-size: 20px;
  padding-bottom: 25px;
  border-bottom: solid 1px #dedede;
  margin-bottom: 50px;
}



/**** Champs ****/

.color-input {
  border: none !important;
  background: transparent;
  padding: 0px;
}

.checkbox-container {
  text-align: center;
  font-weight: 400 !important;
}

.checkbox-container input {
  height: 25px !important;
  min-height: 25px !important;
  border-radius: 0px;
  width: 25px;
  vertical-align: middle;
}

.checkbox-container input,
.checkbox-container label {
  vertical-align: middle;
  font-weight: 400 !important;
}

/***** Context menu CLOUD *******/

.filemanager-context-menu {
  display: none !important;
}

.filemanager-context-menu.active {
  display: block !important;
}

.filemanager-context-menu.active a[hidden] {
  display: block !important;
}

.filemanager-context-menu {
  position: absolute;
  display: none;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 12px rgb(0 0 0 / 4%);
  border: solid 1px #f9f9f9;
  padding: 15px 25px;
  cursor: pointer;
  width: 250px;
  max-width: 250px;
  z-index: 2;
}

.filemanager-context-menu .uk-dropdown-nav>li>a {
  color: #000;
  padding: 10px 0px;
  cursor: pointer;
}

.filemanager-context-menu i {
  font-size: 18px;
}

#filemanager-context-menu-supprimer {
  color: #f00;
}

/* ========================================================================
   Style de base du templates HUMOS
 ========================================================================== */

/* Base
   ========================================================================== */

.card {
  border-radius: 25px;
  background-color: #fff;
  border: solid 1px #eee;
  box-shadow: 0 2px 5px rgb(0 0 0 / 8%);
}

.card-body {
  padding: 20px;
}

.padding-50 {
  padding: 50px !important;
}

/*** Sous menu des pages ***/

.page-submenu-link:hover {
  text-decoration: none;
}

.page-submenu-link div {
  background-color: rgba(99, 98, 231, 0.05);
  border: none !important;
  padding: 10px 0px 10px 20px;
  color: #1e2f65;
  font-weight: 600;
  transition: 0.7s;
}

.page-submenu-link.uk-active div {
  background-color: #6362e7 !important;
  color: #fff;
}

.page-submenu-link:hover div {
  background-color: #eee !important;
  color: #000;
}

/*** Filemanager ***/

.filemanager-action-nouveau-btn {
  background: #6362e7;
  color: #ffffff;
  border-radius: 5px;
  padding: 14px 30px;
  font-weight: bold;
  border: none;
}

.fil-ariane {
  padding: 30px 0px 70px 0px;
  text-align: center;
}

.fil-ariane-dossier {
  list-style: none;
  color: #000;
  font-weight: 500;
  padding: 10px 20px;
  cursor: pointer;
  float: left;
}

.fil-ariane-dossier.actif {
  color: #6362e7;
  font-weight: bold;
}

.page-filemanager .dossiers .folder-box {
  margin: 5px;
  transition: 0.7s;
  cursor: pointer;
}

.filemanager-dossier-country-flag {
  position: absolute;
  width: 22px;
  overflow: hidden;
  height: 22px;
  right: -1px;
  bottom: -1px;
  border-radius: 50%;
}

#filemanager-open-file-iframe {
  width: 100%;
  min-height: 100vh;
  margin: auto;
}

.filemanager-dossier-country-flag img {
  width: 22px;
  height: 22px;
}

.page-filemanager .dossiers .folder-box {
  border: 1px solid #ecf3fa;
  border-radius: 5px;
  padding: 15px;
  background-color: rgba(99, 98, 231, 0.05);
  width: calc(25% - 15px);
  display: inline-block;
  transition: 0.7s;
}

.folder-box.dossier {
  position: relative;
}

.page-filemanager .folder-locked {
  font-weight: bold;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.page-filemanager .dossiers .folder-box:hover {
  background: rgb(99 98 231 / 15%);
}

.page-filemanager .dossiers {
  margin-bottom: 50px;
}

.dossiers .icone-dossier {
  font-size: 35px;
}

.dossiers p {
  font-size: 12px;
  color: #999;
  margin: 0px;
}

.dossier-nom {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
}

#file-manager-breadcrumb {
  margin: 50px;
}

#file-manager-breadcrumb a {
  font-size: 18px;
}


#file-manager-taille {
  float: right;
  font-size: 15px;
  color: #020085;
  margin: 25px 50px 0px 0px;
  font-weight: bold;
  background-color: #86c7ff;
  border-radius: 5px;
  padding: 5px 30px;
}

#contenu-filemanager .file-box {
  border: 1px solid #ecf3fa;
  border-radius: 5px;
  padding: 15px;
  background-color: rgba(99, 98, 231, 0.05);
  width: calc(20% - 15px);
  display: inline-block;
  position: relative;
  margin: 5px;
  transition: 0.7s;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}

#contenu-filemanager .file-box .file-top {
  height: 100px;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 5px;
  font-size: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.page-filemanager .form-title {
  font-size: 18px;
}

.fichier-nom {
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0px 0px 0px;
}

.dossier-option-container {
  position: relative;
  margin-bottom: 20px;
}

.dossier-option {
  position: absolute;
  top: -5px;
  right: 0px;
  font-size: 20px;
  padding: 0px 5px;
  background: #ffffff;
  border-radius: 5px;
  border: solid 1px #a9a9ff;
  color: #6362e7;
}

.apercu-img {
  width: 100%;
}

.fichier-option {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 20px;
  font-weight: bolder;
}

.taille-fichier {
  font-size: 12px;
  color: #444;
  margin: 0px;
}

.consultation-fichier {
  font-size: 13px;
  color: #333;
  margin: 5px 0px;
  display: none;
}

#filemanager-preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  display: none;
}

#filemanager-preloader>div {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: bold;
}

#filemanager-preloader img {
  width: 120px;
  margin: 20px auto;
}

#filemanager-dossiers-title,
#filemanager-fichiers-title {
  display: none;
}

#contenu-filemanager li {
  list-style: none;
}

#filemanager-no-file-img-container {
  margin: auto;
  text-align: center;
}

#filemanager-no-file-img-container img {
  width: 300px;
}

#filemanager-no-file-text {
  margin: auto;
  text-align: center;
  max-width: 400px;
  background: #dbf8fe;
  color: #00577d;
  padding: 20px;
  border: solid 1px #47aed9;
  font-weight: 500;
  border-radius: 10px;
  font-size: 16px;
}

#filemanager-loading-content {
  margin: 50px auto;
  text-align: center;
}

#filemanager-loading-content img {
  width: 100px;
}

.download-fichier-container {
  margin: 0px;
  float: right;
}

.download-fichier-container a {
  border: solid 1px #888;
  background: #ffffff;
  border-radius: 50%;
  padding: 5px 7px;
  color: #000;
  font-weight: bold;
  transition: 0.7s;
}

.download-fichier-container a:hover {
  border: solid 1px #6362e7;
  background: #6362e7;
  color: #fff;
}

#previewer-content iframe img {
  margin: auto !important;
  text-align: auto;
}

/********************************* Fiche de visite *********************************/

.fiche-visite {
  position: relative;
  width: 21cm;
  height: 29.7cm;
  margin: 50px auto;
}

.fiche-visite-titre {
  margin: 0px auto 50px auto;
  padding: 20px 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 25px;
  border: solid 2px #000;
  color: #000 !important;
  text-align: center;
  width: 350px;
}

.fiche-visite-texte-element {
  font-size: 15px;
  margin-top: 30px;
}

#logo-haut-gauche {
  position: absolute;
  left: 0px;
  width: 90px;
  top: -50px;
}

#logo-filigrane {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  opacity: 0.2;
  width: 500px;
}

.fiche-piece-recto-container,
.fiche-piece-verso-container {
  width: 300px;
  text-align: center;
  margin: 0px;
  display: inline-block;
}

.fiche-piece-recto,
.fiche-piece-recto {
  width: 80%;
}

.fiche-visite-titre-piece {
  margin: 50px auto;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  border: solid 1px #000;
  width: 350px;
}

.fiche-visite-qrcode {
  width: 100px;
  position: absolute;
  right: 90px;
  bottom: 100px;
}

.fiche-visite-signature {
  font-size: 10px;
  text-align: center;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0px !important;
}

.fiche-visite-signature p {
  margin: 0px;
}

.fiche-visite-signature .signature-grey {
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}


/* Les attributs du produit
    ========================================================================== */

#attributs-valeurs-container {
  width: 100%;
}

#attributs-valeurs-container table thead {
  display: none;
}

#attributs-valeurs-container table tr th {
  background-color: #d7d7d7;
  color: #2a2a2a;
  padding: 10px;
  font-weight: bold;
  text-align: center;
}

#attributs-valeurs-container table tr td {
  padding: 10px;
  text-align: center;
}

.add-attribut-btn {
  color: #fff;
  font-weight: bold;
  padding: 15px 30px;
  cursor: pointer;
  border: none;
  background-color: #7108d1;
  border-radius: 10px;
}

.supprimer-attribut-btn {
  font-weight: bold;
  cursor: pointer;
  padding: 10px 15px;
  background: #ff0000;
  border: none;
  color: #fff;
}

#attributs-valeurs-container table select, #attributs-valeurs-container .chosen-container {
  width: 100%;
}

#icon-preview-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#icon-preview {
  font-size: 30px;
  text-align: center;
}

.input-link-container {
  text-align: center;
  padding: 10px;
}

.input-link-container a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}



/* ========================================================================
   Style du formaulaire de recherche
 ========================================================================== */

#search-results {
  position: fixed;
  width: 850px;
  left: 0;
  right: 0;
  top: 90px;
  margin: auto;
  z-index: 102;
  background: #ffffff;
  padding: 50px;
  border: solid 1px #eee;
  display: none;
  max-height: 500px;
}

#search-results-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  background-color: #ff0000;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  font-size: 25px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 6;
}

.results-container {
  overflow: scroll;
  max-height: 450px;
}

.results-container a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

.results-container li {
  padding: 20px 0px !important;
}


#search-results-link-container {
  text-align: center;
  margin-top: 30px;
}

#search-results-link {
  margin: auto;
  text-align: center;
  background-color: #000;
  color: #ffffff;
  transition: .7s;
  border: solid 1px #eee;
  width: 450px;
  font-size: 13px;
  padding: 15px 30px;
  font-weight: bolder;
  border-radius: 5px;
}

#search-results-link:hover {
  background-color: var(--or);
  color: #000;
}




/* Impression
   ========================================================================== */


@media print {
  .fiche-visite {
    padding: 0px !important;
    margin: 0px !important;
  }

  html,
  body {
    padding: 0px !important;
    margin: 0px !important;
    box-sizing: border-box !important;
  }

  #page-content {
    padding: 0;
    margin: 0;
  }

  .card-body {
    padding: 0px !important;
    margin: 0px !important;
  }
}