@charset "UTF-8";
.hidden {
  display: none; }

.invisible {
  visibility: hidden; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

.highlight {
  border-color: darkblue !important; }

body {
  align-content: center;
  background: #f5f5f5;
  display: flex;
  font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
  height: 100%;
  justify-content: center;
  width: 100%; }

.todoapp {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex: 0 1 550px;
  flex-direction: column;
  margin-bottom: 130px;
  margin-top: 200px;
  position: relative; }

.todos {
  background: url(src/images/todos.png) no-repeat 50% 50%;
  background-size: cover;
  border: 1px solid black;
  height: 198px;
  left: 22%;
  position: absolute;
  top: -200px;
  width: 306px; }
  .todos__h1 {
    font-size: 30px;
    padding-left: 8px;
    padding-top: 81px; }

.header {
  box-shadow: inset 0 -2px 1px rgba(0, 0, 0, 0.03);
  display: flex;
  flex: 0 1 65px; }
  .header__toggle-all {
    border: 0;
    bottom: 100%;
    height: 1px;
    opacity: 0;
    position: absolute;
    right: 100%;
    width: 1px; }
    .header__toggle-all:checked ~ .header__label::before {
      color: #4d4d4d; }
  .header__label {
    width: 45px; }
    .header__label::before {
      color: #e6e6e6;
      content: '\276F';
      display: inline-block;
      font-size: 22px;
      padding: 10px 25px;
      transform: rotate(90deg) translate(10px, 10px); }
  .header__new-todo {
    background: rgba(0, 0, 0, 0.003);
    border: 0;
    flex: 1 1;
    font-size: 24px;
    margin-left: 5px;
    outline: 0;
    padding: 16px 16px 16px 0;
    width: 0; }

.le {
  list-style: none;
  position: relative; }
  .le__edit {
    border: 1px solid black;
    font-size: 25px;
    height: 100%;
    left: 50px;
    padding: 15px;
    position: absolute;
    top: 0;
    width: 91%; }

.view {
  align-items: center;
  border-bottom: 1px solid lightgray;
  display: flex;
  justify-content: space-between;
  min-height: 86px;
  width: 100%; }
  .view:hover .view__destroy {
    visibility: visible; }
  .view__toggle {
    -webkit-appearance: none;
    align-self: flex-start;
    color: green;
    height: 40px;
    margin-left: 10px;
    margin-top: 22px;
    opacity: 0;
    width: 40px; }
    .view__toggle:checked ~ .view__lable {
      opacity: .3;
      text-decoration: line-through; }
    .view__toggle:checked ~ .view__checkbox {
      background: url(src/images/checked.png) no-repeat 50% 50%;
      background-size: 45px; }
  .view__checkbox {
    border: 1px solid gray;
    border-radius: 50%;
    height: 40px;
    left: 9.5px;
    position: absolute;
    top: 22px;
    width: 40px;
    z-index: -1; }
    .view__checkbox:checked {
      background: url(src/images/checked.png) no-repeat 50% 50%; }
  .view__lable {
    color: #4d4d4d;
    flex: 1 1;
    font-size: 24px;
    padding: 5px 15px;
    word-break: break-all; }
  .view__destroy {
    align-self: flex-end;
    background-color: transparent;
    border: 0;
    height: 40px;
    margin-bottom: 22px;
    margin-right: 20px;
    opacity: .5;
    position: relative;
    visibility: hidden;
    width: 40px; }
    .view__destroy:hover {
      opacity: 1; }
    .view__destroy:focus {
      outline: none; }
    .view__destroy::before {
      background: url(src/images/cross.png) no-repeat 50% 50%;
      background-size: 40px;
      content: '';
      font-weight: 100;
      height: 40px;
      left: 0;
      position: absolute;
      top: 0;
      width: 40px; }

.footer {
  border-top: 1px solid #e6e6e6;
  color: #777777;
  flex: 0 1;
  min-width: 200px;
  padding: 10px 15px;
  position: relative;
  text-align: center; }
  .footer__todo-count {
    float: left;
    height: 20px;
    text-align: left;
    width: auto; }
  .footer__clear-completed {
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    float: right;
    line-height: 20px;
    position: relative;
    text-decoration: none; }
    .footer__clear-completed:focus {
      outline: none; }
    .footer__clear-completed:hover {
      text-decoration: underline; }

.filters {
  left: 0;
  list-style: none;
  position: absolute;
  right: 0; }

.li {
  display: inline; }
  .li a {
    border: 1px solid lightgray;
    border-radius: 3px;
    color: inherit;
    margin: 3px;
    padding: 3px 7px;
    text-decoration: none; }
    .li a:hover {
      border-color: green; }

@media only screen and (max-width: 430px) {
  .todos {
    left: 10%; }
  .footer {
    flex: 0 1 71px; }
  .filters {
    bottom: 10px;
    position: absolute; } }


/*# sourceMappingURL=bundle.css.map*/