html,
body,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}
ul,
ol,
li {
  list-style: none;
}
body {
  font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #4d4d4d;
  min-width: 230px;
  max-width: 550px;
  margin: 0 auto;
  background: #eaeaea url(../img/bg.png);
}
.header {
  height: 100px;
  line-height: 100px;
  font-size: 0;
  text-align: center;
}
.header h1 {
  color: #b3b3b3;
  font-size: 70px;
  font-weight: 700;
}
.app {
  background: #fff;
  margin: 130px 0 40px 0;
  position: relative;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
}
.todo-inp {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 16px 16px 60px;
  font-size: 24px;
  line-height: 1.4;
  outline: none;
  border: 0;
  box-shadow: inset 0 -2px 1px rgba(0, 0, 0, 0.03);
}
.app-bd {
  border-top: 1px solid #e6e6e6;
}
.todo-item {
  padding-left: 60px;
  font-size: 24px;
  border-bottom: 1px solid #ededed;
}
.title-wrap {
  position: relative;
}
.title-wrap .inp-check {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.title-wrap .title {
  display: block;
  padding: 15px 60px 15px 0;
}
.title-wrap .delete {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 5px;
  margin-top: -10px;
}
.todo-edit-inp {
  display: block;
  width: 100%;
  padding: 15px 15px 15px 0;
  font-size: inherit;
  box-sizing: border-box;
}
.app-ft {
  position: relative;
  margin-top: 10px;
  padding: 0 30px;
  color: #777;
  padding: 10px 15px;
  height: 20px;
  text-align: center;
}
.app-ft .todo-count {
  float: left;
}
.app-ft .todo-clear {
  position: relative;
  z-index: 10;
  float: right;
  color: inherit;
  text-decoration: none;
}
.app-ft .filter {
  position: absolute;
  left: 0;
  right: 0;
}
.app-ft .filter li {
  display: inline;
}
.app-ft .filter a {
  color: inherit;
  margin: 3px;
  padding: 3px 7px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 3px;
}
.app-ft .filter a.selected {
  border-color: rgba(175, 47, 47, 0.2);
}
