#planning-editor {
    display: flex;
    height: calc(100% - 35px);
    border: solid 1px rgb(119, 119, 119);
    border-left :none;
}
#planning-editor>div {
    flex: 1;
    min-width: 0; /* avoid min-width:auto */
    height: 100%;
    border-left: solid 1px rgb(119, 119, 119);
    position: relative;
}

#planning-editor>div:first {
    border: none;
}

#planning-editor>div>button {
    width:100%;
    height:24px;
}

#planning-editor>div>div {
    height: calc(100% - 50px);
    overflow: hidden;
}

#planning-editor>div>p {
    background-color: #c6cfef;
    padding-left: 20px;
    margin: 0;
    height:24px;
}
    

.pth-workspace {
    border: solid 3px transparent;
}

.pth-workspace>p {
    margin :0;
    padding: 0 5px;
}

.pth-label.pth-week-cycle {
    border-radius: 6px;
    border : solid 2px #e7e7e7;
    color: black;
    margin: 2px;
    width: 100px;
    text-align: center;
    cursor: pointer;
}

.pth-label.pth-week-cycle.pth-selected {
    border : solid 2px #000;
}
.pth-color-cycle1 {  background-color: rgb(255, 255, 255); }
.pth-color-cycle2 {  background-color: rgb(215, 215, 215); }
.pth-color-cycle3 {  background-color: rgb(180, 180, 180); }

.constraintWeekDay  .pth-label {
    flex-grow:1;
    padding : 8px;
}


#planningConstraintDays>button, #planningPersonConstraintDays>button {
    flex-grow:1;
}
#planningConstraintWeek1>div, 
#planningConstraintWeek2>div, 
#planningConstraintWeek3>div, 
#planningPersonConstraintWeek>div,
.constraintWeekDay>div[data-day] {
    flex-grow : 1; 
    position : relative; 
    border : solid 1px rgb(203, 237, 250);
    display: flex;
    flex-direction: column;

}

div[data-day]:nth-child(even) {background: rgba(243, 252, 255,0.3)}

.dayDisplay  {
    display:flex; 
    flex-direction: column; 
    width:635px; 
    margin-left: -185px;
    background-color : #FFF;
    background-image: url(img/24light.png);
    background-size: 100%;
}

.workRange {
    position: absolute;
    border: solid 1px #AAA;
    border-left : solid 3px;
    background-color:#ccc; 
    height: 18px;
    color: #222256;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    line-height: 18px;    
    box-sizing:  border-box;

}


.isHoliday  .workRange {
    opacity: 0.3;
}

.day-container {
    flex:1; 
    overflow: hidden; 
    border-right: solid 1px #115;
}
.day-hourdisplay {
    background-image: url(img/24.png); 
    background-size: 100%; 
    flex: 0 30px; 
    padding:0;
}

.workRange.over  {
    border: solid 1px red;

}


.missing {
     background-color: red;
     color: rgb(255, 255, 255);
}

.workConstraint {
    height:0px;
    margin-top:22px;
  /*  z-index:1; */
    border-bottom : solid 2px red; 
}

.blockService {
    position:relative; 
    display : flex; 
    background-color : rgba(255,255,255,0.5); 
    flex-direction: column;
}

.blockService:last-child {
    min-height: 100PX;
}

.blockConstraint {
    position:absolute; 
    padding-left:33.5%; 
    font-size: 14px; 
    line-height: 16px;
    width:100%;
    margin:0;
    border-top: solid 1px #AAA;


}
.label-day {
    flex: 0 20px; 
    text-align: center;
    font-size: 18px;
    background-color: lightsteelblue;
    color: black;
}

.reportPlanningDay>.pth-label {
    text-align:center; 
    border-left: solid 1px blue; 
    flex-grow: 1; 
    width:100px;
}
.reportPlanningDay>.pth-label:last-child {
    border-right: solid 1px blue; 
}

.reportPlanningDay {
    min-height:36px; 
    display:flex; 
    margin:0; 
    border-top: solid 1px blue;
}
.reportPlanningDay:last-child {
    border-bottom: solid 1px blue;
}


.freeRange {
    font-weight: bold;
    padding: 4px;
    margin: 4px;
    height: 60px;
    border: solid 6px #ddd;
    border-radius: 8px;
    background-color: #ddd;
    
} 

.freeRange.pth-selected {
    background-color: #86bad5;
    border-color: #86bad5;
}
