/* body {
    background-color: #eceff0;
} */
/* body, html {
    height: 100%;
} */
body,
input {
    /* font: 1em "Open Sans", sans-serif; */
    color: #363639;
}
/* body {
  margin: 0 auto;
  background-attachment: fixed;
} */
.items a {
    text-decoration: none;
    border-bottom: 1px dashed #363639;
}

/* List */
.list {
    background-color: #f5f5f5;
    margin: auto;
    margin-bottom: 2rem;
    width: 98%;
    max-width: 800px;
    padding: 0px 20px 20px 20px;
    box-sizing: border-box;
    border-radius: 4px;
    box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, .5);
    /*10px 10px 5px #888888;*/
}
.list .header {
    font-family: "Shadows Into Light Two", cursive;
    margin: 20px 0 10px 0;
}
.list h2 {
    display: inline-block;
    color: black;
    padding: 10px 20px 10px 20px;
    font-size: 36px;
}
.list a {
    text-decoration: none;
    color: blue;
}
.list a:hover {
    text-decoration: underline;
}
.list p {
    clear: both;
}
/* END List */
h2 img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 20px;
}

/* Items */
.items {
    margin: 0;
    padding: 0;
    list-style-type: none;
    clear: both;
}
.items li:hover .done-button {
    opacity: 1;
}

.items li {
    border: 0;
    border-bottom: 1px dashed #ccc;
    padding: 8px;
}
.input {
    margin: 15px 0 0 0;
    padding: 10px 0 0 0;
    border: 1px double;
    width: 100%;
}
.items :nth-child(even) {
    /* background-color: #fffff4; */
    background-color: #fff;
}
.items .item.done {
    text-decoration: line-through;
    display: inline-block;
}
.done {
    background-color: #e5f6df !important;
}
/* END Items */


.input:focus {
    outline: none;
}


/* Done button */
.items .done-button{
    display: inline-block;
    font-size: .8em;
    background-color: #d9dfe1;
    color: #363639;
    padding: 3px 6px;
    border: 0;
    opacity: 0.4;
}
/* Narejena vrstica */


/* Submit button */
.submit {
    background-color: #fff;
    padding: 5px 10px;
    border: 1px solid #ddd;
    width: 100%;
    margin-top: 10px;
    box-shadow: 3px 3px 0 #ddd;
}
