/* ================== JALONS CAVASIN Florian 06-04-2017 ====================*/

.todoLine
{
  width: 100%;
  text-align: center;
  vertical-align: top;
  font-size: 14px;
  -webkit-user-select: none; /* Chrome/Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */

  /* Rules below not implemented in browsers yet */
  -o-user-select: none;
  user-select: none;
  padding: 2vmin 0;
  position: relative;
}

.todoColumn {
  min-width: 250px;
  height: auto;
  border: solid 1px #cecece;
  box-shadow: 0px 4px 6px 1px #d5d5d5;
  margin: 25px;
  padding: 2vmin;
  font-family: verdana;
  display: table-cell;
  text-align: left;
  vertical-align: top;
  position: relative;
}

.todoTitle {
  text-align: center;
  font-weight: bold;
  margin: 0;
    text-transform: uppercase;
  font-size: 1.5vmin;
letter-spacing: 3px;
}

#percentConcepctionText {
  width: 7vmin;
  text-align: center;
  display: inline-block;
}

.progressbarContainer,.progressbarFiller {
  border-radius: 20px;
}

.progressbarContainer {
  display: inline-block;
  width: calc(100% - 9vmin);
  height: 13px;
  vertical-align: middle;
  text-align: center;
  margin: auto;
  background: #cecece;

}
.progressbarFiller {
  height: 100%;
  background: #2ecc71;
  -webkit-transition: 1s;
  transition: 1s;
}

.oneLineCheckbox {
  margin: 15px 4px;
}

.todoLine input[type="checkbox"] {
  position: absolute;
  z-index: -999;
  /*left: -9999px;*/
}

.textCheckbox:before {
  content: '';
  border: solid 1px #bababa;
  width: 15px;
  height: 15px;
}
.textCheckbox{
 word-wrap: break-word;
 display: block;
}

.todoLine [type="checkbox"]:not(:checked) + label,
.todoLine [type="checkbox"]:checked + label {
  position: relative; 
  padding-left: 25px; 
  cursor: pointer;
}

.todoLine [type="checkbox"]:not(:checked) + label:before,
.todoLine [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left:0; top: 0;
  width: 17px; height: 17px; 
  background: #f8f8f8;
  border-radius: 3px; 
  box-shadow: 0px 1px 1px 0 rgba(0,0,0,.1); 
}


.todoLine [type="checkbox"]:not(:checked) + label:after,
.todoLine [type="checkbox"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: -2px; left: 4px;
  font-size: 14px;
  color: #09ad7e;
  transition: all .1s; 
}

.todoLine [type="checkbox"]:not(:checked) + label:after {
  opacity: 0; 
  transform: scale(0);
}
.todoLine  [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1); 
}

.todoLine  [type="checkbox"]:checked + label {
  color: grey;
  text-decoration: line-through; 
}

.tachesList {
  height: 75%;
  /*! overflow-y: scroll; */
  min-height: 150px;
}

.addTache {
  cursor: copy;
  color: grey;
  margin-left: 30px;
  text-align: center;
  -webkit-transition: all .1s ease-in;
  -moz-transition: all .1s ease-in;
  -ms-transition: all .1s ease-in;
  -o-transition: all .1s ease-in;
  transition: all .3s ease-in;
  letter-spacing: 0px;
}

.addTache:hover {
  color: black;
  letter-spacing: .8px;
}

.deleteTache
{
  cursor: pointer;
  transition: all .5s; 
  font-weight: bold;
  height: 100%;
  vertical-align: top;
}

.deleteTache:hover
{
  color: red;
}


.oneLineCheckboxLeft {
  display: inline-block;
  width: 90%;
}

.oneLineCheckboxRight {
  display: inline;
  text-align: right;
  width: 10%;
  height: 100%;
  vertical-align: top;
}

.inputTacheToAdd, .inputTacheToModify {
  border: 1px solid rgb(201, 201, 201);
  border-radius: 4px;
  margin-left: 29px;
  width: 185px;
}

.inputTacheToModify
{
  width: 100%;
  margin-left: 0;
}

.formTacheModify
{
  display: inline-block;
  width: 80%;
}

.disabledTache {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 666;
  background: rgba(158, 158, 158, 0.64);
}

.todoInContinueBox{
  width: 150px;
  text-align: center;
  margin: 2vmin auto;
}

.unslashed {
  text-decoration: none !important;
}

.italic {
  font-style: italic;
}

.add-jalon-container {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.add-jalon {
  padding: 1vmin;
  border: 3px solid #c6c6c6;
  border-radius: 0.9vmin;
  height: 150px;
  color: #c6c6c6;
  cursor: pointer;
  transition: 0.5s;
  font-weight: initial;
  font-size: 38px;
}

.add-jalon:hover {
  color: #2ECC71;
  border-color: #2ECC71;
  font-weight: bold;

}

.input-add-jalon-container {
  position: absolute;
  left: 50px;
  vertical-align: middle;
  top: calc(50% - 25px);
  background: white;
  border: 1px solid #2ECC71;
  border-radius: 5px;
  padding: 15px;
  z-index: 999;
}

.delete_jalon_tools > img {
 height: 15px;
 -webkit-filter: invert(100%);
 filter: invert(100%);
 margin-right: 5px;
}

.delete_jalon_tools {
  position: absolute;
  left: 25px;
  top: 28px;
  z-index: 999;
}

.formJalonModify {
  text-align: center;
}

#jalonToModify {
  margin-top: 4px;
  margin-bottom: -4px;
}

/*=================================================================================*/  


/* ================== Mise en forme CAVASIN Florian 10-04-2017 ====================*/
.table
{
  display: table;
}

.table-row{
  display: table-row;
}

.table-cell{
  display: table-cell;
  padding-right: 10px;
} 

/*=================================================================================*/  


/* ================== Drag and Drop CAVASIN Florian 10-04-2017 ====================*/


.contentCAD {
  /*! width: 500px; */
  height: auto;
  position: relative;
  /*! display: table; */
  border-collapse: separate;
  border-spacing: 15px;
  overflow-x: scroll;
}


.boxCAD {
  width: 250px;
  height: 300px;
  background: red;
  display: inline-block;
  margin: 25px;
}

.draggableCAD, .CADSlot {
  display: block;
  width: 230px;
  height: auto;
  margin: 0 auto;
}


.dragged
{
  position: fixed;
  box-shadow: 0 2px 2px 0 rgb(177, 177, 177);
  border-radius: 2px;
  padding: 5px 0 5px 5px;
  background: rgb(242, 242, 242);
  z-index: 665;
  cursor: pointer !important;
}

.CADSlot {
  height: 15px;
}

.slotPreSelected
{
  background: url("../Images/hr.png") no-repeat center;
  background-size: 100% auto;
}


.CAD_tools {
  text-align: right;
  position: absolute;/*
  right: 10px;
  top: 28px;*/
  right: 40px;
  top: -30px;
}

.CAD_tools > img {
  height: 15px;
  -webkit-filter: invert(100%);
  filter: invert(100%);
  margin-right: 5px;
}

.CADHamburger
{
  height: 15px;
  vertical-align: top;
  margin-top: 3px;
  user-drag: none; 
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.textCheckboxModify 
{
  display: inline-block;
  width: 80%;
}

.tacheOnChanging
{
  border: solid 1px #cecece;
  box-shadow: 0px 1px 2px 0px #d5d5d5;
  padding: 5px;
  border-radius: 2px;
}

.colorInverted
{
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.CAD_tools_validate {
  padding: 5px 25px;
  background: #27ae60;
  color: white;
  font-weight: bold;
  border-radius: 5px;
}

.CAD_tools_cancel {
  padding: 5px 25px;
  background: #c0392b;
  color: white;
  font-weight: bold;
  border-radius: 5px;
}

.CAD_tools_order_plus,.CAD_tools_order_minus {
 height: 20px;
 position: absolute;
 -webkit-filter : invert(50%);
 filter: invert(50%);
 top: 25px;
 transition: 0.3s;
}


.CAD_tools_order_plus {
  right: 0px;
}

.CAD_tools_order_plus:hover {
  right: -2px;
}

.CAD_tools_order_minus {
  left: 0px;
  transform: rotateZ(180deg);
}

.CAD_tools_order_minus:hover {
  left: -2px;
}

.blue
{
  background: blue;
}

.green
{
  background: green;
}
/*=================================================================================*/ 