.bordeaux {
    background-color: #ba325c;
    color: white;
}

.pointeur {
    cursor: pointer;
}
/* unvisited link */
a.menu_lien:link {
    color: white;
    text-decoration: none;
    cursor:pointer;
}

/* visited link */
a.menu_lien:visited {
    color: white;
    text-decoration: none;
}

/* mouse over link */
a.menu_lien:hover {
    color: Gainsboro;
    text-decoration: none;
}

/* selected link */
a.menu_lien:active {
    color: white;
    text-decoration: none;
}

.jour_ferme {
    background-color: #e14163;
    color: white;
}

.jour_ouvert {
    background-color: #8ca2e9;
    color: white;
}

.bouton_info {
    position: fixed;
    top: 100px;
    width: 100px;
    left: 40px;
    cursor: pointer;
}
/* ----- Toggle --- */
.cmn-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

    .cmn-toggle + label {
        display: block;
        position: relative;
        cursor: pointer;
        outline: none;
        user-select: none;
    }

input.cmn-toggle-round + label {
    padding: 2px;
    width: 60px;
    height: 30px;
    background-color: #dddddd;
    border-radius: 30px;
}

    input.cmn-toggle-round + label:before,
    input.cmn-toggle-round + label:after {
        display: block;
        position: absolute;
        top: 1px;
        left: 1px;
        bottom: 1px;
        content: "";
    }

    input.cmn-toggle-round + label:before {
        right: 1px;
        background-color: #f1f1f1;
        border-radius: 30px;
        transition: background 0.4s;
    }

    input.cmn-toggle-round + label:after {
        width: 29px;
        background-color: #fff;
        border-radius: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        transition: margin 0.4s;
    }

input.cmn-toggle-round:checked + label:before {
    background-color: #8ce196;
}

input.cmn-toggle-round:checked + label:after {
    margin-left: 30px;
}

.toggle_droite {
    opacity: 0.2;
}

.toggle_gauche {
    opacity: 1;
}

/* ----- Calendrier --- */
@media (min-width: 768px) {
    .modal-xl {
        width: 100%;
        max-width: 1180px;
    }
}
.titre_calendrier {
    background-color: antiquewhite;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
#dCalendrier, #dCalendrier1 {
    background-color: antiquewhite;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.mois {
    display: flex;
    align-items: flex-start; /* Alignement vertical en haut */
    flex-wrap: wrap;
    width: 23%;
    height: 242px;
    border: solid 1px #000000;
    margin-top: 6px;
    margin-bottom: 6px;
}
.joursemaine {
    background-color: #696969;
    width:calc(100%/7);
    cursor: pointer;
    height: 30px;
    color: white;
    text-align: center;
}

.jourvide {
    background-color: #696969;
    width: calc(100%/7);
    height: 30px;
}

.nomjour {
    background-color: #2f4f4f;
    color: white;
    text-align: center;
    width: calc(100%/7);
    height: 30px;
}

.nommois {
    background-color: #556b2f;
    color: white;
    text-align: center;
    width: 100%;
    height: 30px;
}

.samedi {
    background-color: #808080;
    width: calc(100%/7);
    cursor: pointer;
    height: 30px;
    color: white;
    text-align: center;
}

.dimanche {
    background-color: #A1A1A1;
    width: calc(100%/7);
    cursor: pointer;
    height: 30px;
    color: white;
    text-align: center;
}
.jouractuel {
    background-color: orange;
    color: white;
    font-weight: bold;
    width: calc(100%/7);
    height: 30px;
    text-align: center;
}

.datecourante {
    background-color: red;
    width: calc(100%/7);
    cursor: pointer;
    height: 30px;
    color: white;
    text-align: center;
}

.jourferie {
    background-color: red;
    width: calc(100%/7);
    cursor: pointer;
    height: 30px;
    color: white;
    text-align: center;
}
/* ----- Boutons --- */
.btn-enregistrer {
    background-color:chocolate;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/record.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
}
    .btn-enregistrer:hover {
        background-color: #2e5c2e;
    }
.btn-fermer {
    background-color: crimson;
    color: white;
    width: 60px;
    height: 40px;
    background-image: url('/backoffice/images/close_blanc.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius:6px;
    cursor:pointer;
}
    .btn-fermer:hover {
        background-color: darkred;
    }
.btn-plus {
    background-color: dodgerblue;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/plus_blanc.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}
    .btn-plus:hover {
        background-color: darkblue;
    }
.btn-moins {
    background-color: dodgerblue;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/moins_blanc.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}

    .btn-moins:hover {
        background-color: darkblue;
    }
.btn-remise {
    background-color: dodgerblue;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/pourcent.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}

    .btn-remise:hover {
        background-color: darkblue;
    }
.btn-poubelle {
    background-color: #3849aa;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/trash_blanc.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}
    

    .btn-poubelle:hover {
        background-color: #a72c37;
    }
.btn-client-nouveau {
    background-color: deepskyblue;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/client_nouveau.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}


.btn-client-nouveau:hover {
    background-color: darkblue;
}
.btn-article-nouveau {
    background-color: #007BFF;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/article_nouveau.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}


    .btn-article-nouveau:hover {
        background-color: #00244C;
    }
.btn-tache-nouveau {
    background-color: #007BFF;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/tache_nouveau.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}


    .btn-tache-nouveau:hover {
        background-color: #00244C;
    }
.btn-couleur {
    background-color: #8ce196;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/palette.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}


    .btn-couleur:hover {
        background-color: brown;
    }
.btn-taches-ouvrir {
    background-color: orangered;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/taches_ouvrir.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}


    .btn-btn-taches-ouvrir:hover {
        background-color: brown;
    }
.btn-imprimer {
    background-color: darkgreen;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/print_blanc.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}
    

    .btn-imprimer:hover {
        background-color: green;
    }
.btn-sms {
    background-color: darksalmon;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/sms.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}


    .btn-sms:hover {
        background-color: green;
    }
.btn-qr {
    background-color: darkslategrey;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/qr-url.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}


    .btn-qr:hover {
        background-color: darksalmon;
    }
.btn-facturer {
    background-color: dodgerblue;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/facture_blanc.svg');
    background-repeat: no-repeat;
    background-position-x: 10%;
    background-position-y: center;
    background-size: 60% 80%;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}


    .btn-facturer:hover {
        background-color: red;
    }

.btn-suite {
    background-color: darkgreen;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/caret_bas_blanc.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}
    .btn-suite:hover {
        background-color: #138caa;
    }
.btn-voir {
    background-color: antiquewhite;
    
    width: 60px;
    height: 40px;
    background-image: url('/backoffice/images/oeil.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;    
}


    .btn-voir:hover {
        background-color: Gainsboro;
    }

.btn-envoirplus {
    background-color: chocolate;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/envoirplus.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
}


    .btn-envoirplus:hover {
        background-color: #2e5c2e;
    }
    
.btn-debut {
    background-color: darkgreen;
    color: white;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/maison_blanc.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}


    .btn-debut:hover {
        background-color: green;
    }
.btn-parametres {
    background-color: #de296d;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/parametres_blanc.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}

   
    .btn-parametres:hover {
        background-color: #941b48;
    }
.btn-copie {
    background-color: #b0b000;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/copie_blanc.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}

    
    .btn-copie:hover {
        background-color: #7d7d02;
    }
.btn-mode-emploi {
    background-color: orangered;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/mode_emploi.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}


    .btn-mode-emploi:hover {
        background-color: #7d7d02;
    }
.btn-image {
    background-color: #189bda;
    color: white;
    width: 60px;
}

   
    .btn-image:hover {
        background-color: #0e648d;
    }
.btn-mail {
    background-color: #108313;
    color: white;
    width: 60px;
}
    .btn-mail:hover {
    background-color: #0a570c;
}

.btn-onglets {
    background-color: #de296d;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/onglets.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}


    .btn-onglet:hover {
        background-color: #941b48;
    }

.btn-start {
    background-color: #de296d;
    width: 120px;
    height: 40px;
    background-image: url('/backoffice/images/start.svg');
    background-size: 60% 80%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    border: 0px;
    border-radius: 6px;
    cursor: pointer;
}


.btn-start:hover {
    background-color: #941b48;
}



.titre-page {
    font-size: 18pt;
    font-weight: 600;
    color: #4963ae;
    text-transform: uppercase;
    height:36px;
    padding-left: 50px;
    background: url(images/titre_de_page.png) no-repeat;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}
.sous-titre-page {
	font-size:14pt; 
	color:#17a2b8;
	text-transform: uppercase;
	font-weight:600;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.icone_menu {
    cursor: pointer;
    font-size: 36pt;
}
.menu_inclus {
    position: fixed;
    top: 10px;
    width: 400px;
    right: 20px;
    display: flex;
    justify-content: space-around;
}
#diode {
     height: 14px;
     width: 14px;
     border-radius: 50%;
     background-color: #5bd374;
     box-shadow:  0px 0px 1px 1px #165518;
    
}
html.wait, html.wait * {
    cursor: wait !important;
}
/* Notification */
.dNotification {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.dDisparition {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    animation: disparition 3s forwards;
}

@keyframes disparition {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

#dTitreNotif {
    font-size: 14pt;
    font-weight: bold;
    color: white;
    margin-bottom: 0px;
}

#dContenuNotif {
    color: white;
    font-size: 11pt;
    text-align: justify;
    margin-top: 0px;
}

hr {
    border-top: solid 1px white;
    margin: 0px;
}
/* //// Notification */

/* Modal Nouveau Client Mnc*/
.messageMnc {
    font-size: 14pt;
    font-weight: bold;
    color: crimson;
    text-align: center;
}
.input-group-text-Mnc {
    width: 80px;
    height: 40px;
}
