/* basic reset */
.todocontainer * , .todocontainer *:before, .todocontainer *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

/* app */
html {
    font-size: 100%;
}

/* super basic grid structure */
.todocontainer {
    max-width: 600px;
	margin: 0 auto 5px;
	background: #ffffff;
    padding: 0px 0;
    
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.2);
            box-shadow: 0 0 2px rgba(0,0,0,0.2);
    
}

.row {
    display: block;
    padding: 10px;
    text-align: center;
    width: 100%;
    clear: both;
    overflow: hidden;
	margin-bottom: 30px;
	margin-top: 30px;
}

.half {
    width: 50%;
    float: left;
}

.todocontent {
    background: #FFFFFF;
}

/* inputs */
.inputContainer {
    height: 60px;
    position: relative;
    overflow: hidden;
	margin-bottom: 10px;
}

.inputContainer.last {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
}

.inputContainer.half.last.right {
    border-left: 1px solid #efefef;
}

input[type="date"], input[type="text"], select {
    height: 100%;
    width: 100%;
    padding: 0 20px;
    position: absolute;
    top: 0;
    vertical-align: middle;
    display: inline-block;
    border: none;
    border-radius: none;
    font-size: 1.2em;
    color: #777777;
    background: #FFFFFF;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    -webkit-transition: background 0.3s;
            transition: background 0.3s;
	text-align: center;
}

input[type="date"] {
    cursor: pointer;
}

input[type="date"]:focus, input[type="text"]:focus, select:focus {
    outline: none;
    background: #ECF0F1;
}

::-webkit-input-placeholder {
    color: #777777;
    font-weight: normal;
    -webkit-transition: all 0.3s;
            transition: all 0.3s;
}
::-moz-placeholder {
    color: #777777;
    font-weight: normal;
    transition: all 0.3s;
}
::-ms-input-placeholder {
    color: #777777;
    font-weight: normal;
    transition: all 0.3s;
}
input:-moz-placeholder {
    color: #777777;
    font-weight: normal;
    transition: all 0.3s;
}

input:focus::-webkit-input-placeholder {
    color: #777777;
    font-weight: bold;
}

input:focus::-moz-input-placeholder {
    color: #777777;
    font-weight: bold;
}

label {
    padding: 5px 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #777;
    display: block;
    position: absolute;
}

.todocontainer button {
    border-radius: 2px;
    border: none;
    outline: none;
    height: 50px;
    width: 150px;
    font-size: 1em;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    -webkit-transition: all 0.3s;
            transition: all 0.3s;
    padding: 0;
	display: inline;
}

.icon {
    position: absolute;
    top: 30%;
    left: 10px;
    font-size: 20px;
}

.taskAdd {
    background: #6AA042;
    padding-left: 0px;
}

.taskAdd:hover {
    background: #303030;
}

.taskDelete {
    background: #E74C3C;
    padding-left: 0px;
}

.taskDelete:hover {
    background: #C0392B;
}

/* task styles */
.taskList {
    list-style: none;
}

.taskItem {
    border-top: 1px solid #e5e5e5;
    padding: 15px 20px;
    color: #777;
    font-weight: 600;
    font-size: 14px;
}

.taskList .taskItem:nth-child(even) {
    background: #FCFCFC;
}

.taskCheckbox {
    margin-right: 1em;
}

.complete-true {
    text-decoration:  line-through;
    color: #BEBEBE;
}


/* custom checkboxes */
.taskCheckbox {
    -webkit-appearance: none;
            appearance: none;
    -webkit-transition: all 0.3s;
            transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    width: 19px;
    height: 19px;
    vertical-align: middle;
}

.taskCheckbox:focus {
    outline: none;
}

.taskCheckbox:before, .taskCheckbox:checked:before {
    font-family: 'FontAwesome';
    color: #919396;
    font-size: 20px;
    -webkit-transition: all 0.3s;
            transition: all 0.3s;

}

.taskCheckbox:before {
    content: '\f096';
}

.taskCheckbox:checked:before {
    content: '\f14a';
    color: #16A085;
}


@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) {

.todocontainer button {
	height: 40px;
	width: 90px;
	font-size: 0.8em;
}

input[type="date"], input[type="text"], select {
	font-size: 1em;
}

}

input[type=checkbox] { 
	border: 0px;
}



#stacks_in_2609_page9 {
	margin: 30px 0px 30px 0px;
}
