@charset "UTF-8";

body, input, button{
  font-family:'Roboto', sans-serif;
}

body{
  background:#edf0f1;
  padding: 90px 0 0 0;
  position:relative;
}
.noFill {
  fill: none;
}

header{
  width:100%;
  height:80px;
  position: fixed;
  padding:15px 0 0 0;
  top:0;
  left:0;
  z-index:5;
  background:#7BCCFC;
  border-bottom-right-radius:10px;
  border-bottom-left-radius:10px;
  box-shadow:0px 2px 4px rgba(44,62,80,0.15);

}
header input {
  width:95%;
  height:50px;
  float:left;
  background:rgba(255, 255, 255, 0.15);
  border-radius:5px;
  border:0px;
  margin-left:2%;

  padding: 0 1.5% 0 2%;
  padding-right:50px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-top-left-radius:5px;
  border-bottom-left-radius:5px;
  color:#ffffff;
  font-size:15px;
  font-weight:400;
  box-shadow:none;
  outline:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
}
header input::-webkit-input-placeholder{
  color:rgba(255, 255, 255, 0.75);
}
header input:-moz-placeholder{
  color:rgba(255, 255, 255, 0.75);
}
header input::-ms-input-placeholder{
  color:rgba(255, 255, 255, 0.75);
}
header input:-moz-placeholder{
  color:rgba(255, 255, 255, 0.75);
}
header button{
  width:50px;
  height:50px;
  position:absolute;
  z-index:2;
  right:2%;
  border-radius:25px;
  background:#ffffff;
  border:0px;
  cursor:pointer;
  box-shadow:none;
  outline:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
}
header button svg{
  width:16px;
  height:16px;
  position:absolute;
  top:50%;
  left:50%;
  margin: -8px 0 0 -8px;
}
header button svg .fill{
  fill:#7BCCFC;
}

ul.todo li{
  list-style-type:none;
  width:100%;
  height:70px;
  float:left;
  font-size:14px;
  font-weight:500;
  color:#444;
  line-height:22px;
  position:relative;
  background:#ffffff;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 10px 0;
  padding: 20px 14px 0 14px;
  border-radius:5px;
  box-shadow: 0px 1px 2px rgba(44, 62, 80, 0.10);
}
.todo{
  width:100%;
  float:left;
  padding-left: 0px;
}
ul.todo li:last-of-type {
  margin:0;
}
ul.todo li .buttons{
  width:140px;
  height:70px;
  position:absolute;
  top:0;
  right:0;
}
ul.todo li .buttons button{
  width:70px;
  height:70px;
  float:left;
  position: relative;
  cursor:pointer;
  background:none;
  border:0px;
  box-shadow:none;
  outline:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
}
ul.todo li .buttons button:last-of-type:before {
  content:"";
  width:1px;
  height:50px;
  background: #edf0f1;
  position: absolute;
  top: 10px;
  left: 0;
}
.container{
  width:100%;
  float:left;
  padding:0;
}
ul.todo li .buttons button svg {
  width:22px;
  height:22px;
  position:absolute;
  top:50%;
  left:50%;
  margin:-11px 0 0 -11px;
}
ul.todo li .buttons button.complete svg {
  border-radius:13px;
  border: 2px solid #7BCCFC;
}
ul.todo#completed li .buttons button.complete svg {
  background: #7BCCFC;
  border:0px;
}
ul.todo#completed li .buttons button.complete svg .fill{
  fill:#ffffff;
}
ul.todo:not(#completed) li .buttons button.complete:hover svg {
  background: #7BCCFC;
}
ul.todo:not(#completed) li .buttons button.complete:hover svg .fill {
fill: #ffffff;
}
ul.todo li .buttons button svg .fill{
  -webkit-transition:fill 0.2s ease;
  -moz-transition:fill 0.2s ease;
  -ms-transition:fill 0.2s ease;
  -o-transition:fill 0.2s ease;
  transition:fill 0.2s ease;
}
ul.todo li .buttons button.remove svg .fill {
  fill:#c0cecb;
}
ul.todo li .buttons button.remove:hover svg .fill{
  fill:#e05656;
}
ul.todo li .buttons button.complete .fill {
  fill:#7BCCFC;
}
ul.todo li .buttons button.complete:hover svg .fill{
  fill:#7BCCFC;
}

ul.todo#todo:empty:after {
  content: 'You have nothing to do!';
  margin: 25px 0 0 0;
}
ul.todo#completed:empty:after {
  content: 'You have yet to complete any tasks.';
}

ul.todo#completed {
  position:relative;
  padding:80px 0 0 0;
  margin:0;
}

ul.todo#completed:before {
  content:'';
  width:150px;
  height:1px;
  background:#dBe5e0;
  position:absolute;
  top:30px;
  left:50%;
  margin:0 0 0 -75px;
}

ul.todo#todo:after,
ul.todo#completed:after {
  width:100%;
  display:block;
  text-align:center;
  font-size: 12px;
  color:#aaa;
}
