/* --------------- CLIENT ET SIDE MENU CLIENT --------------- */
.client {
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding: 0 10px;
}
.clientMenu,
.clientMain {
  position: relative;
}
#btn-menu-client {
  display: none;
  position: absolute;
  right: 10px;
  top: 15px;
  background: none;
  border: none;
  color: #2aaab4;
}
#btn-menu-client i {
  position: relative;
  font-size: 3rem;
}
#formVerificationClient, #formConnexion {
  margin-top: 5%;
}

@media screen and (min-width: 993px) {
  .client {
    display: flex;
    align-items: flex-start;
    padding: 0 20px;
  }
  .clientMenu {
    width: 33%;
    position: sticky;
    top: 10px;
    margin-right: 20px;
  }
  .clientMain {
    width: 77%;
  }
}
@media screen and (max-width: 993px) {
  .client {
    width: 100%;
  }
  .overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(32, 32, 32, 0.72);
    z-index: 59;
  }
  #btn-menu-client {
    display: inline-block;
  }
  #menuClient {
    margin: 0;
    z-index: 60;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    overflow-y: auto;
    width: 70%;
    background-color: #fff;
    transition: left ease 0.3s;
    border-radius: 0 10px 10px 0;
  }
  #logo-client-menu.expanded ~ #menuClient {
    left: 0;
  }
  #logo-client-menu.expanded ~ .overlay {
    display: block;
  }
}
/* --------------- FIN CLIENT ET SIDE MENU CLIENT --------------- */

/* --------------- BIG MENU ACCUEIL CLIENT --------------- */
#clientMenuBig {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 5px -5px;
}
#clientMenuBig li {
  width: 25%;
  padding: 5px;
}
#clientMenuBig li a {
  display: block;
  text-align: center;
  padding: 10px 5px;
  height: 100%;
  width: 100%;
  border: solid 2px rgba(105, 188, 215, 1);
  border-radius: 10px;
  transition: all ease 0.2s;
  color: rgba(105, 188, 215, 1);
}
#clientMenuBig li i {
  display: block;
  font-size: 2.5rem;
  padding-bottom: 10px;
}
#clientMenuBig li a:hover {
  color: rgba(0, 121, 178, 0.9);
  border-color: rgba(0, 121, 178, 0.9);
  background-color: rgba(74, 171, 194, 0.06);
}
@media screen and (max-width: 993px) {
  #clientMenuBig li a {
    font-size: 0.9rem;
  }
  #clientMenuBig li {
    width: 33.33%;
  }
}
/* --------------- FIN BIG MENU ACCUEIL CLIENT --------------- */

/* --------------- ACCUEIL CLIENT --------------- */
#urgentCallContainer {
  border: solid 2px rgba(105, 188, 215, 1);
  background-color: rgba(40, 160, 167, 0.05);
}
#btn-rappel-urgent {
  background-color: #dc143c;
}
#btn-rappel-urgent i {
  color: #fff;
}
#urgentCallContainer:hover .pulse:not(.disabled)::before {
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
.pulse.disabled::before {
  animation-iteration-count: 0;
  -moz-animation-iteration-count: 0;
  -o-animation-iteration-count: 0;
  -webkit-animation-iteration-count: 0;
}
.pulse:not(.disabled)::before {
  animation-iteration-count: 4;
  -moz-animation-iteration-count: 4;
  -o-animation-iteration-count: 4;
  -webkit-animation-iteration-count: 4;
}
/* --------------- FIN ACCUEIL CLIENT --------------- */

/* --------------- LOGO CLIENT DANS MENU CLIENT --------------- */
#logo-client-menu {
  text-align: center;
  padding: 0 10px 10px 10px;
}
#logo-client-menu span {
  display: block;
}
#logo-client-menu img {
  height: 40px;
  width: auto;
}

.input-field.logo-field {
  height: 50px;
}
/* --------------- FIN LOGO CLIENT DANS MENU CLIENT --------------- */

/* --------------- BARRE DE PROGRESSION ET LEGENDE --------------- */
.progress-legend {
  position: relative;
  box-sizing: border-box;
  display: table;
  width: 100%;
  padding: 0 !important;
}
.progress-legend > li {
  position: relative;
  display: table-cell;
  text-align: center;
  width: 20%;
  cursor: help;
  color: #69bcd7;
}
.progress-legend > li.active {
  color: rgba(0, 121, 178, 0.9);
}
.progress-legend i.material-icons {
  font-size: 1.1rem;
}
.clientAccueil .progress {
  margin: 0 0 5px 0;
}
.progress {
  background-color: #69bcd7;
}
.progress .determinate {
  background-color: rgba(0, 121, 178, 0.9);
}
/* --------------- FIN BARRE DE PROGRESSION ET LEGENDE --------------- */

/* --------------- FORMULATIONS --------------- */
.frm_backbutton {
  position: absolute;
  left: 10px;
  top: 20px;
  line-height: 24px;
}
.frm_backbutton i.left {
  margin-right: 5px;
}
.frm_collapsible-header {
  border-radius: 10px;
  position: relative;
  padding: 10px 20px;
  margin: 10px 23px;
}
@media screen and (max-width: 992px) {
  .frm_sous_categorie {
    font-size: 1rem;
    line-height: 24px;
  }
}

.categories {
  position: relative;
}
.categories * {
  overflow: hidden;
}
.categories .categorie {
  position: relative;
  text-align: center;
  margin-top: 10px;
}
.categories .categorie a {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  border: solid 4px #dfdfdf;
  transition: all ease 0.3s;
  color: #494949;
}
.categories .categorie a:hover {
  border: solid 4px #4db6ac;
  color: #494949 !important;
  font-weight: 500;
}
.categories .categorie a img {
  height: auto;
  width: 100%;
}
.categories .categorie a .img-divider {
  position: relative;
  height: 2px;
  width: 40%;
  margin: 15px auto 0 auto;
  background-color: #dfdfdf;
  transition: all ease 0.3s;
}
.categories .categorie a:hover .img-divider {
  width: 50%;
  background-color: #4db6ac;
}

.input-field.search-field .suffix {
  position: absolute;
  right: 5%;
  width: 3rem;
  font-size: 2rem;
  z-index: 100;
  background-color: transparent;
  border: none;
  transition: all ease 0.3s;
}
.input-field.search-field {
  text-align: center;
}
.input-field.search-field input {
  position: relative;
  box-sizing: border-box;
  transition: all ease 0.3s;
  border: none;
  box-shadow: 0 2px 5px #b8b8b8;
  background-color: #fff;
  padding: 0 3.5rem 0 10px;
  width: 90%;
  text-align: left;
}
.input-field.search-field input:focus {
  border: none !important;
  box-shadow: 0 4px 7px #969696 !important;
  width: 94%;
}
.input-field.search-field input:focus ~ .suffix {
  right: 3%;
}
/* --------------- FIN FORMULATIONS --------------- */

/* ------------------ ETIQUETTES ------------------ */
.etiquette {
  width: 350px;
  margin: 0 auto;
}
.etiquette .logo-france {
  height: 100px;
  width: auto;
  max-width: 150px;
}
.etiquette .logo-client {
  height: auto;
  max-width: 150px;
  max-height: 80px;
}

.etiquette .code-barre {
  height: auto;
  max-width: 150px;
  max-height: 80px;
}
/* --------------- FIN ETIQUETTES --------------- */

/* --------------- MESSAGES IMPORTANTS --------------- */
.modal-messages-importants {
  /*min-height: 50vh;*/
}
.modal-messages-importants .messages-importants::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../img/logo.png") center center no-repeat;
  opacity: 0.15;
}
.modal-messages-importants .btn-prev-message,
.btn-next-message {
  position: absolute;
  top: 45%;
}
.modal-messages-importants .btn-prev-message {
  left: 2%;
}
.modal-messages-importants .btn-next-message {
  right: 2%;
}
.modal-messages-importants .messages-importants {
  position: relative;
  width: 80%;
  margin: 0 auto;
  overflow-y: auto;
  /*max-height: 50vh;
  min-height: 50vh;*/
  padding: 5px;
}
.modal-messages-importants .messages-importants > .message-important {
  width: 100%;
  display: none;
}
.modal-messages-importants .messages-importants > .message-important.active {
  display: block;
}
.modal-messages-importants .messages-importants > .message-important > .unread {
  font-size: 3rem;
  color: #e53439;
}
/* --------------- FIN MESSAGES IMPORTANTS --------------- */

/* --------------- SATISFACTION --------------- */
.questionEnqVisualisation {
  margin-bottom: 40px;
}
.input-autre-label {
  margin-top: -20px !important;
}
.mydivider {
  height: 2px;
  overflow: hidden;
}

.custom-tab {
  border: solid 2px #673ab7;
  padding: 0 !important;
  border-radius: 2px;
}
.custom-tab div {
  padding: 0 !important;
}
.custom-tab div button {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: solid 2px transparent;
  color: #673ab7;
  padding: 8px 0;
  transition: all ease 0.3s;
}
.custom-tab div button.active {
  /*border-bottom: solid 2px #673ab7;*/
  background-color: #673ab7;
  color: #fff;
  font-weight: 500;
}
.table-chart {
  max-height: 250px;
  overflow-y: scroll;
}
/* --------------- FIN SATISFACTION --------------- */

/* --------------- PRESENTATION EN LIGNE D UNE INFORMATION --------------- */
.item-label {
  display: inline-block;
  width: 30%;
  padding-right: 5px;
}
.item-content {
  display: inline-block;
  width: 65%;
  padding-left: 5px;
}
/* --------------- FIN PRESENTATION EN LIGNE D UNE INFORMATION --------------- */

/* --------------- CHAMP DE TYPE RADIO AVEC LOGOS --------------- */
.logo-field.input-field.col label {
  left: 0;
  padding-left: 0;
  text-align: center;
  width: 50px;
  height: 50px;
  margin-bottom: 25px;
}
.input-field.logo-field img {
  width: 50px;
  height: 50px;
}
.input-field.logo-field [type="radio"] + label:before,
.input-field.logo-field [type="radio"] + label:after {
  left: 13px;
  top: 50px;
}
/* --------------- FIN CHAMP DE TYPE RADIO AVEC LOGOS --------------- */
/* --------------- CHAMP DE TYPE RADIO --------------- */
.radio-field {
  margin-top: 5px;
  margin-bottom: 5px;
}
.radio-field label {
  top: 0;
  margin-right: 7px;
}
.radio-field [type="radio"]:not(:checked) + label,
.radio-field [type="radio"]:checked + label {
  padding-left: 25px;
}
/* --------------- CHAMP DE TYPE CHECKBOX --------------- */
.checkbox-field {
  margin-top: 5px;
  margin-bottom: 5px;
}
/* --------------- FIN CHAMP DE TYPE RADIO --------------- */

/* --------------- PHYTO --------------- */
.phyto {
  position: relative;
}
.phyto .lettres {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 20;
  padding: 5px;
}
.phyto .lettres > ul {
  width: 100%;
  text-align: center;
  margin: 0;
}
.phyto .lettres > ul > li {
  padding: 0 10px;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  transition: color ease 0.2s;
}
.phyto .lettres > ul > li:hover {
  color: #4aabc2;
}
.phyto .lettres > ul > li:not(:first-child) {
  border-left: solid 1px #4aabc2;
}
.phyto .cards {
  display: flex;
  flex-wrap: wrap;
}
.phyto .cards > .card {
  width: calc(50% - 10px);
  margin: 5px;
}
.phyto .cards > .card > .card-content {
  padding: 0;
}
.phyto .cards > .card > .card-image {
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}
.phyto .cards > .card > .card-image > img {
  object-fit: cover;
  height: 250px;
  border-radius: 10px;
  transition: all ease 0.5s;
}
.phyto .cards > .card > .card-image > .card-title {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
  border-radius: 0 0 10px 10px;
  font-size: 22px;
  padding: 15px;
  transition: all ease 0.3s;
}
.phyto .cards > .card > .card-image:hover > img {
  transform: scale(1.2);
}
.phyto .cards > .card > .card-image:hover > .card-title {
  padding: 20px 15px;
}

.modal-phyto {
  background-color: transparent;
  top: 5% !important;
  width: 70%;
  max-height: 90%;
}
.modal-phyto .modal-content {
  padding: 0;
}
.modal-phyto > .modal-content > .card {
  margin: 0;
}
.modal-phyto > .modal-content > .card > .card-image > img {
  height: 300px;
  object-fit: cover;
}
.modal-phyto > .modal-content > .card > .card-image > .card-title {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
}
.modal-phyto > .modal-content > .card > .card-content > table th {
  width: 200px;
}
@media screen and (max-width: 993px) {
  .phyto .cards > .card > .card-image > .card-title {
    font-size: 18px;
    padding: 8px;
  }
  .phyto .cards > .card > .card-image:hover > img {
    transform: none;
  }
  .phyto .cards > .card > .card-image:hover > .card-title {
    padding: 8px;
  }
  .modal-phyto {
    top: 0 !important;
    width: 95%;
    max-height: 95%;
  }
  .modal-phyto > .modal-content > .card > .card-image > img {
    height: 200px;
  }
}

/* --------------- FIN PHYTO --------------- */

#listePreparations th {
  font-weight: 500;
}
#listePreparations .detailsPrepa {
  display: none;
}
.photos-pharmaciens img {
  max-height: 400px;
  width: auto;
}
.input-field.inline.searchPrep {
  width: 42%;
}
/* ----------------- COMMANDE ----------------- */
.livraisonSpecialeFields {
  display: none;
}
/* --------------- FIN COMMANDE --------------- */

/* ----------------- CLIENT FICHE PATHOLOGIE ------------ */

/* icone trombone*/
.collection.iconred > .collection-item > i.right {
  color: rgba(240, 18, 53, 0.95);
}

/* ----------------- CLIENT enquete new ------------ */
.new-enquete {
  color: #e53439;
  width: 10%;
}



.ruptures-btn{
  /* color: #fff; */
  font-size: 0.83em;
  color: #c44141;
  border-radius: 10px;
  border: 3px solid #c44141;
  background: #c44141;
  /* box-shadow:0px 0px 5px #c44141; */


/* -webkit-animation-name: clignote; 
-webkit-animation-duration: 1s; 
-webkit-animation-iteration-count:infinite;  */
}

#btn-rupture{
  text-align: center;
}

/* .ruptureInvisible{
  visibility: hidden;}

 */

 .toto{
   padding-top: 5%;
 }


 i.left {
   margin-right: 10px !important;
 }

 /*---- Login/Signin Cards ----*/

 .section.password-login-card {
   display: none;
 }

 .section.signin-card {
  display: none;
}