.container-fluid{
    height: 100vh;
    background-image: url('../img/todo-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.my-container{
    height: 95vh;
}
.addContainer{
    height: 100px;
}
.firstRow{
    height: 50px;
    font-weight: 700;
    font-size: 1.6em;
    color: #ffffff;
}
.secRow{
    height: 40px;
}
input{
    border-style: none;
    outline-style: none;
    -webkit-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.39);
	-moz-box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.39);
	box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.39);
}
.secRow div{
    line-height: 1em;
    font-size: 2em;
}
.addButton{
    color: rgb(255, 255, 255);
    background-color: rgba(250, 133, 37, 0.7);
    transition: all 0.3s;
    cursor: pointer;
    transition: all 0.3s;
}
.addButton:hover{
    background-color: rgb(250, 104, 37);
}
.ulContainer{
    padding: 0;
}
.ulContainer li{
    text-decoration: none;
    list-style: none;
    height: 35px;
    line-height: 35px;
    transition: all 0.2s;
    background-color: rgba(203, 196, 167,0.8);
    cursor: pointer;
    -moz-user-select: none;
  	-webkit-user-select: none;
  	-ms-user-select: none;
  	user-select: none;
}
.ulContainer li:hover{
    background-color: rgba(250, 182, 37, 0.7);
    color: rgb(255, 255, 255);
    margin: 0 0 0 5px;
    -webkit-box-shadow: -5px 0px 4px 0px rgba(0,0,0,0.09);
	-moz-box-shadow: -5px 0px 4px 0px rgba(0,0,0,0.09);
	box-shadow: -5px 0px 4px 0px rgba(0,0,0,0.09);
}
.ulContainer .checked{
    background-color: rgb(80, 110, 118,0.8);
    color: rgb(255, 255, 255);
    margin: 0 0 0 5px;
    -webkit-box-shadow: -5px 0px 4px 0px rgba(0,0,0,0.09);
	-moz-box-shadow: -5px 0px 4px 0px rgba(0,0,0,0.09);
	box-shadow: -5px 0px 4px 0px rgba(0,0,0,0.09);
}
.close {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 35px;
    text-align: center;
    line-height: 33px;
    transition: all 0.3s;
}
.close:hover {
    transform: scale(1.4) rotate(90deg);
}
