.wide {
    width: 20%;
}
.accueil_vide{
    height: 16px;
    border-style: solid;
    border-width: 1px;
    border-color: #CAD4DF
}
.toggle_accueil.accueil_vide {
    border: none;
}
.accueil_partiel{
    background-color: #6993EA;
}
.accueil_complet{
    background-color: #6993EA;
}
.toggle_accueil{
    width: 100%;
    height: 100%;
}
.table_planning.ui-selectable .toggle_accueil{
    cursor: pointer;
}

.jour{
    line-height: 2em;
    text-align: center;
}
.tooltip{
    font-size:11px;
}
.cell-h-80 { /*table_planning.synthese.th-small tr:not(:first-child) th {*/
    /*permet d'avoir des cellules de semaine à min-height 80px*/
    height: 80px;
}
.cell-h-65 {
    height: 65px;
}

#planning dd {
    display: inline-block;
}
.table_planning {
    table-layout: fixed;
    /* Ne pas sélectionner le texte  */
    -webkit-touch-callout: none;   /* iOS Safari */
    -webkit-user-select: none;   /* Safari */
    -khtml-user-select: none;  /* Konqueror HTML */
    -moz-user-select: none;  /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;   /* Non-prefixed version, currently
                         supported by Chrome and Opera */
}
.table_planning td{
    height: 3em;
}
.table_planning td, .table_planning th {
    border-width: 2px ;
}
.table_planning.synthese th{
    font-weight: 400;
}
.table_planning.synthese.th-small th{
    font-size: 12px;
}
.table_planning.synthese td{
    vertical-align: top;
    padding-left: 0;
}
.cell-planning {
    padding-left: 4px;
    font-variant: small-caps;
}
.cell-planning .w-100 {
    padding-left:2px;
}
.cell-planning .cell-title{
    border-radius: 0;
    width: 100%;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}
/* permet de tronquer les prénoms si trop même en responssive*/
.text-ellipsis{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    word-wrap: break-word;
}
.table_planning th{
    text-align: center;
    overflow: hidden; /* to hide anything that doesn't fit in the containing element. */
}

.table_planning thead th{
    text-align: center;
    overflow: hidden; /* to hide anything that doesn't fit in the containing element. */
    white-space: nowrap; /* to make sure the line doesn't break when it is longer than the containing div. */
    text-overflow: ellipsis; /* to do ... when too long */
}

@media (max-width: 768px) {
    .table_planning th{
        padding: 0.3em;
    }
    .table_planning tr.thead-light{
        line-height: 2em;
        font-size: 0.9em;
    }
}
@media (min-width: 576px)
{
    .d-sm-table-column {
        display: table-column!important;
    }
}
.form-group.row {
    margin-left: 0;
    margin-right: 0;
}
/* temporaire */
/* remplacer par : couleur cible (styler sur selecting et unselecting) */
.ui-selecting {
    background: #FECA40;
}
.ui-unselecting {
    background: #FECA40;
}

/* surcharge jquery-ui */
.ui-selectable-helper{
    /* pas de lasso de sélection */
    display:none;
}

/* quand la saisie du planing et désactivée car enfant absent */
.ui-selectable-disabled, .accueil_absent {
    opacity: 0.6;
}

.animationRond {
    /* Taille max */
    width: 100px;
    height: 100px;
    /* Cercle */
    border-radius: 50%;
    /* Aligner la couleur avec le calendrier */
    background: #FECA40;
    /* Pour positionnement sur souris/doigt */
    position: absolute;
    /* nomAnimation - durée - courbe */
    animation: animationRond 0.6s linear;
    animation-iteration-count: 1;
    /* Affichage au dessus du calendrier */
    z-index: 1000;
    /* Possibilités de tuning */
    opacity: 1;
    transform: scale(0);
}

@keyframes animationRond {
  from {
    /* Commencer avec la taille max */
    transform: scale(1);
    opacity: 1;
  }
  to {
    /* Réduire le cercle jusqu'à disparition */
    transform: scale(0);
    opacity: 0;
  }
}
