@charset "utf-8";

body {
    min-width: 230px;
    max-width: 800px;
}

.todo-area {
    margin: 0;
    padding: 0;
}

.todo-area button {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    font-size: 100%;
    vertical-align: baseline;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    -webkit-appearance: none;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.todo-area {
    font: 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.4em;
    /* background: #f5f5f5; */
    color: #111111;
    min-width: 230px;
    max-width: 550px;
    margin: 0 10%;
    /* margin: 0; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

.todo-area .hidden {
    display: none;
}

.todo-area .todoapp {
    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-area .todoapp input::-webkit-input-placeholder {
    font-style: italic;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
}

.todo-area .todoapp input::-moz-placeholder {
    font-style: italic;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
}

.todo-area .todoapp input::input-placeholder {
    font-style: italic;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
}

.todo-area .todoapp h1 {
    position: absolute;
    top: -140px;
    width: 100%;
    font-size: 80px;
    font-weight: 200;
    text-align: center;
    color: #b83f45;
    -webkit-text-rendering: optimizeLegibility;
    -moz-text-rendering: optimizeLegibility;
    text-rendering: optimizeLegibility;
}

.todo-area .new-todo,
.todo-area .edit {
    position: relative;
    margin: 0;
    width: 100%;
    font-size: 24px;
    font-family: inherit;
    font-weight: inherit;
    line-height: 1.4em;
    color: inherit;
    padding: 6px;
    border: 1px solid #999;
    box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.todo-area .new-todo {
    padding: 16px 16px 16px 60px;
    height: 65px;
    border: none;
    background: rgba(0, 0, 0, 0.003);
    box-shadow: inset 0 -2px 1px rgba(0, 0, 0, 0.03);
}

.todo-area .main {
    position: relative;
    z-index: 2;
    border-top: 1px solid #e6e6e6;
}

.todo-area .toggle-all {
    width: 1px;
    height: 1px;
    border: none; /* Mobile Safari */
    opacity: 0;
    position: absolute;
    right: 100%;
    bottom: 100%;
}

.todo-area .toggle-all + label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 65px;
    font-size: 0;
    position: absolute;
    top: -65px;
    left: -0;
}

.todo-area .toggle-all + label:before {
    content: "❯";
    display: inline-block;
    font-size: 22px;
    color: #949494;
    padding: 10px 27px 10px 27px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.todo-area .toggle-all:checked + label:before {
    color: #484848;
}

.todo-area .todo-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.todo-area .todo-list li {
    position: relative;
    font-size: 24px;
    border-bottom: 1px solid #ededed;
}

/* 
This correction addresses an issue in the Angular Complex TodoMVC where not all list items were displaying botom borders as expected.
*/
.todo-area .todo-list > li:last-child,
.todo-area .todo-list > :last-child > li {
    border-bottom: none;
}

.todo-area .todo-list li.editing {
    border-bottom: none;
    padding: 0;
}

.todo-area .todo-list li.editing .edit {
    display: block;
    width: calc(100% - 43px);
    padding: 12px 16px;
    margin: 0 0 0 43px;
}

.todo-area .todo-list li.editing .view {
    display: none;
}

.todo-area .todo-list li .toggle {
    text-align: center;
    width: 40px;
    /* auto, since non-WebKit browsers doesn't support input styling */
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    border: none; /* Mobile Safari */
    -webkit-appearance: none;
    appearance: none;
}

.todo-area .todo-list li .toggle {
    opacity: 0;
}

.todo-area .todo-list li .toggle + label {
    /*
		Firefox requires `#` to be escaped - https://bugzilla.mozilla.org/show_bug.cgi?id=922433
		IE and Edge requires *everything* to be escaped to render, so we do that instead of just the `#` - https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7157459/
	*/
    background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%23949494%22%20stroke-width%3D%223%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center left;
}

.todo-area .todo-list li .toggle:checked + label {
    background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%2359A193%22%20stroke-width%3D%223%22%2F%3E%3Cpath%20fill%3D%22%233EA390%22%20d%3D%22M72%2025L42%2071%2027%2056l-4%204%2020%2020%2034-52z%22%2F%3E%3C%2Fsvg%3E");
}

.todo-area .todo-list li label {
    word-break: break-all;
    padding: 15px 15px 15px 60px;
    display: block;
    line-height: 1.2;
    transition: color 0.4s;
    font-weight: 400;
    color: #484848;
}

.todo-area .todo-list li.completed label {
    color: #949494;
    text-decoration: line-through;
}

.todo-area .todo-list li .destroy {
    display: none;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 40px;
    height: 40px;
    margin: auto 0;
    font-size: 30px;
    color: #949494;
    transition: color 0.2s ease-out;
}

.todo-area .todo-list li .destroy:hover,
.todo-area .todo-list li .destroy:focus {
    color: #c18585;
}

.todo-area .todo-list li .destroy:after {
    content: "×";
    display: block;
    height: 100%;
    line-height: 1.1;
}

.todo-area .todo-list li:hover .destroy {
    display: block;
}

.todo-area .todo-list li .edit {
    display: none;
}

.todo-area .todo-list li.editing:last-child {
    margin-bottom: -1px;
}

.todo-area .footer {
    padding: 10px 15px;
    height: 20px;
    text-align: center;
    font-size: 15px;
    border-top: 1px solid #e6e6e6;
}

.todo-area .footer:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 50px;
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 8px 0 -3px #f6f6f6, 0 9px 1px -3px rgba(0, 0, 0, 0.2), 0 16px 0 -6px #f6f6f6, 0 17px 2px -6px rgba(0, 0, 0, 0.2);
}

.todo-area .todo-count {
    float: left;
    text-align: left;
}

.todo-area .todo-count strong {
    font-weight: 300;
}

.todo-area .filters {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    right: 0;
    left: 0;
}

.todo-area .filters li {
    display: inline;
}

.todo-area .filters li a {
    color: inherit;
    margin: 3px;
    padding: 3px 7px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 3px;
}

.todo-area .filters li a:hover {
    border-color: #db7676;
}

.todo-area .filters li a.selected {
    border-color: #ce4646;
}

.todo-area .clear-completed,
.todo-area .clear-completed:active {
    float: right;
    position: relative;
    line-height: 19px;
    text-decoration: none;
    cursor: pointer;
}

.todo-area .clear-completed:hover {
    text-decoration: underline;
}

.todo-area .info {
    margin: 65px auto 0;
    color: #4d4d4d;
    font-size: 11px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    text-align: center;
}

.todo-area .info p {
    line-height: 1;
}

.todo-area .info a {
    color: inherit;
    text-decoration: none;
    font-weight: 400;
}

.todo-area .info a:hover {
    text-decoration: underline;
}

/*
	Hack to remove background from Mobile Safari.
	Can't use it globally since it destroys checkboxes in Firefox
*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .todo-area .toggle-all,
    .todo-area .todo-list li .toggle {
        background: none;
    }

    .todo-area .todo-list li .toggle {
        height: 40px;
    }
}

@media (max-width: 430px) {
    .todo-area .footer {
        height: 50px;
    }

    .todo-area filters {
        bottom: 10px;
    }
}

.todo-area :focus,
.todo-area .toggle:focus + label,
.todo-area .toggle-all:focus + label {
    box-shadow: 0 0 2px 2px #cf7d7d;
    outline: 0;
}

.todo-area .visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
}

.todo-area .toggle-all {
    width: 40px !important;
    height: 60px !important;
    right: auto !important;
}

.todo-area .toggle-all-label {
    pointer-events: none;
}

/* priority styling */

.todo-area .show-priority li[data-priority="3"]:not(.completed) {
    background-color: #faf0f0;
}

.todo-area .show-priority li[data-priority="2"]:not(.completed) {
    background-color: #fbeaea;
}

.todo-area .show-priority li[data-priority="1"]:not(.completed) {
    background-color: #f8dddd;
}

.todo-area .show-priority li[data-priority="0"]:not(.completed) {
    background-color: #fdcccc;
}

.todo-area .show-priority li[data-priority="3"].completed {
    background-color: #f1faf0;
}

.todo-area .show-priority li[data-priority="2"].completed {
    background-color: #eafbea;
}

.todo-area .show-priority li[data-priority="1"].completed {
    background-color: #ddf8dd;
}

.todo-area .show-priority li[data-priority="0"].completed {
    background-color: #ccfdcc;
}

.todo-area .show-priority li:not(.completed):not([data-priority="4"]) {
    border-bottom-color: #ffd7d7;
}

.todo-area .show-priority li.completed:not([data-priority="4"]) {
    border-bottom-color: #d7ffd7;
}

.todo-area .show-priority li:not(.completed):not([data-priority="4"]) > div > label {
    color: #250000;
}

.todo-area .show-priority li.completed:not([data-priority="4"]) > div > label {
    color: #87a790;
}

.todo-area .show-priority li.completed > div > :focus,
.todo-area .show-priority li.completed > div > .toggle:focus + label {
    box-shadow: 0 0 2px 2px #7dcf89;
}
