/*********************************************************************/
/********************INTERFACE ADMINISTRATION*************************/
/*********************************************************************/
/**************************GENERALITES********************************/
/*********************************************************************/
body {
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif !important;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-size: 26px;
  padding: 20px 0px;
}

.clear {
  clear: both;
}

hr {
  margin: 0px;
}

.alert {
  display: block;
}

/******************************LIENS**********************************/
a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  color: #2439ff;
  text-decoration: none !important;
}

/******************************BOUTON*********************************/
.bouton {
  background: #3498db;
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  border-radius: 4px;
  color: #ffffff;
  display: inline-flex;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
}

.bouton:hover {
  background: #3498db;
  color: #efc72f;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
}

.bouton_validation {
  /*bouton de validation des formulaires*/
  border: none;
  cursor: pointer;
  position: fixed;
  bottom: 10px;
  left: 50%;
  z-index: 1000;
}

.icon-help-circled {
  /*Infobulle d'aide*/
  cursor: help;
}

.bloc_image {
  display: inline-block;
  padding: 15px;
}

.btn-primary {
  background-color: #0c8bcd !important;
  border-color: #ffffff !important;
}

.btn-primary:hover {
  background-color: #675199 !important;
}

.btn-info {
  background-color: #0c8bcd !important;
  border-color: #ffffff !important;
}

.btn-retour {
  border-radius: 15px;
  display: block;
  padding: 10px 20px;
  margin: 15px 0;
  width: fit-content;
}

.message_ok {
  color: #00983d;
  font-weight: bold;
}

/******************************CHECKBOX*********************************/
.toggle_checkbox {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
  top: 6px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
}

.toggle_checkbox:before {
  content: '';
  position: relative;
  top: 3px;
  left: 3px;
  width: 34px;
  height: 14px;
  display: block;
  background: #9a9999;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.toggle_checkbox span {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: block;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(154, 153, 153, 0.5);
  transition: all 0.2s ease;
}

.toggle_checkbox span:before {
  content: '';
  position: absolute;
  display: block;
  margin: -18px;
  width: 56px;
  height: 56px;
  background: rgba(79, 46, 220, 0.5);
  border-radius: 50%;
  transform: scale(0);
  opacity: 1;
  pointer-events: none;
}

.cbx:checked + .toggle_checkbox:before {
  background: #007bff;
}

.cbx:checked + .toggle_checkbox span {
  background: #ffffff;
  transform: translateX(20px);
  transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  box-shadow: 0 3px 8px rgba(79, 46, 220, 0.2);
}

.cbx:checked + .toggle_checkbox span:before {
  transform: scale(1);
  opacity: 0;
  transition: all 0.4s ease;
}

.center {
  display: inline-block;
  position: relative;
  top: 5px;
}

/*********************************************************************/
/******************************BLOC***********************************/
/*********************************************************************/
html {
  color: #4c4c4c;
  font-family: sans-serif;
}

body {
  background: #f3f3f3;
  margin: 0px;
}

.row {
  margin-top: 5px;
}

.card {
  margin-bottom: 15px;
  padding-bottom: 15px;
}

#admin_header {
  background: #ffffff;
  display: block;
  height: 100px;
  width: 100%;
}

#admin_navigation {
  background: #f9f9f9;
  display: inline-block;
  height: calc(100% - 100px);
  position: relative;
  top: 0px;
  vertical-align: top;
  width: 250px;
}

#admin_contenu {
  background: #ffffff;
  display: inline-block;
  height: auto;
  padding: 0 0 50px 50px;

  position: relative;
  width: calc(100% - 300px);
}

#barre_de_titre {
}

#contenu {
  padding-bottom: 50px;
}

/*********************************************************************/
/*****************************HEADER**********************************/
/*********************************************************************/

/*LOGO */
#admin_header #header_titre {
  display: inline-block;
  text-align: left;
  width: 100%;
}

#admin_header #header_titre img {
  margin: 10px;
  max-height: 60px;
  height: 60px;
}

/*titre de la page */
#admin_header #header_titre #titre_page {
  display: inline-block;
  margin-left: 70px;
  font-weight: bold;
  color: #000;
  font-size: 22px;
}

#admin_header #header_titre #titre_page:before {
  color: #0087cd;
}

/*Boutons en haut de page*/
#admin_header .btn {
  color: #ffffff;
  display: inline-block;
  height: 40px;
  border-radius: 20px;
  margin: 20px 5px;
  text-align: center;
}

#admin_header .btn:before {
  /*icone*/
  margin: 0px;
  line-height: 27px;
}

#admin_header #header_deconnexion {
  display: inline-block;
  vertical-align: top;
  width: auto;
}

#admin_header #header_compte {
  display: inline-block;
  vertical-align: top;
  width: auto;
}

#admin_header #header_compte .btn:before {
  margin-right: 0.5em;
}

#admin_header #header_rappel {
  display: inline-block;
  vertical-align: top;
  width: auto;
}

#admin_header h1 {
  color: #efc72f;
  display: inline-block;
  padding: 10px 20px;
  margin: 0px;
}

#header_boutons {
  display: inline-block;
  position: absolute;
  right: 0px;
}

#lien_compte {
  /* bouton mon compte */
  line-height: 35px;
  padding: 0 20px;
  background: rgb(7, 143, 209);
  background: -moz-linear-gradient(left, rgba(7, 143, 209, 1) 0%, rgba(103, 79, 156, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(7, 143, 209, 1) 0%, rgba(103, 79, 156, 1) 100%);
  background: linear-gradient(to right, rgba(7, 143, 209, 1) 0%, rgba(103, 79, 156, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#078fd1', endColorstr='#674f9c', GradientType=1);
}

#lien_rappel {
  /* bouton de rappel */
  background: #675199;
  border-color: #3667bf;
}

#lien_deconnexion {
  /* bouton de déconnexion */
  background: #675199;
  border-color: #3667bf;
}

/*Boutons On*/
#lien_compte:hover {
  /* bouton mon compte */
  background: rgb(98, 82, 158);
  background: -moz-linear-gradient(90deg, rgba(98, 82, 158, 1) 0%, rgba(14, 139, 205, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(98, 82, 158, 1) 0%, rgba(14, 139, 205, 1) 100%);
  background: linear-gradient(90deg, rgba(98, 82, 158, 1) 0%, rgba(14, 139, 205, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#62529e", endColorstr="#0e8bcd", GradientType=1);
}

#lien_rappel:hover {
  /* bouton de rappel */
  background: #0c8cce;
  border-color: #257ac0;
}

#lien_deconnexion:hover {
  /* bouton de déconnexion */
  background: #0c8cce;
  border-color: #257ac0;
}

/*********************************************************************/
/**************************NAVIGATION*********************************/
/*********************************************************************/
/*container*/
ul#navigation {
  list-style: none;
  padding: 0px;
}

/*icône */
#admin_navigation .lien_navigation:before {
  vertical-align: middle;
}

/*icône ON*/
#admin_navigation .navigation_active:before,
#admin_navigation .lien_navigation:hover:before {
  color: #3483e8;
}

/*Différentes icônes de navigation */
.icone:before {
  color: #cacaca;
  display: block;
  height: 20px;
  margin-left: 5px !important;
  width: 50px !important;
}

/*séparation*/
#admin_navigation hr {
  color: #e9e9e9;
  margin: 0px;
}

/*Menu OFF*/
#admin_navigation .lien_navigation {
  background-color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  height: 74px;
  text-align: left;
  display: inline-flex;
  align-items: center;
  width: 100%;
  position: relative;
}

#admin_navigation .lien_navigation a {
  padding: 25px 0;
  display: inline-block;
  width: 100%;
}

#admin_navigation .lien_navigation span {
  color: #4a4a4a;
}

/*Menu ON*/
#admin_navigation .lien_navigation:hover,
#admin_navigation .navigation_active {
  background-color: #e0edfe;
  border-left: 5px solid #029fe1;
}

#admin_navigation .lien_navigation.planning {
  cursor: pointer;
}

/* Navigation planning */
#admin_navigation .lien_navigation.planning:hover div {
  display: block;
  opacity: 1;
  transition: all 350ms;
}

#admin_navigation .lien_navigation.planning div {
  position: absolute;
  left: 100%;
  z-index: 10;
  background-color: white;
  top: 0;
  border: 1px solid #e9e9e9;
  width: 150px;
  display: none;
  opacity: 0;
}

#admin_navigation .lien_navigation.planning div a {
  display: inline-block;
  padding: 15px;
}

/********************NAVIGATION REDUITE*******************************/
/*navigation*/
#admin_navigation.navigation_reduite {
  width: 65px;
}

#admin_navigation.navigation_reduite .navigation_titre {
  display: none;
}

/*flèche de réduction de la nav */
#navigation_reduire {
  margin: 0 !important;
  outline: none;
  border: none;
  padding: 25px 0;
  width: 100%;
}

#navigation_reduire.icone {
  color: #b6b6b6 !important;
  display: block;
  margin: 15px 0;
}

#navigation_reduire.icone:hover {
  color: #029fe1 !important;
}

#navigation_reduire.icone:before {
  font-size: 18px;
}

/*contenu*/
#admin_contenu.navigation_reduite {
  width: calc(100% - 115px);
}

.dt-button.page-length-btn {
  position: initial;
  margin: initial;
  padding: .375rem .75rem;
  border: initial;
  border-radius: .25rem;
  font-size: initial;
  line-height: 1.5;
  color: white;
  background-image: initial;
}

.dt-button.page-length-btn:hover {
  background-image: initial !important;
  border: initial !important;
}

/***********************************************************************/
/************************** PIED DE PAGE *******************************/
/***********************************************************************/
#admin_footer {
  text-align: right;
}

#admin_footer p {
  margin: 0px;
}
