@-ms-viewport{
  width: device-width;
}
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700');
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
    background-image: url(../images/bg2.jpg);
    background-repeat-y: repeat;
    background-size: contain;
    background-repeat-x: repeat;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
}
:focus {
	outline: none;
}
.content-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.header-section {
	max-width: 500px;
	margin: auto;
	padding: 30px 0px 10px;
}
.img-fluid {
	max-width: 100%;
	height: auto;	
}
.header-logo {
	margin-bottom: 30px;
}
.task-form {
	text-align: center;
}
.insert-task_box {
    display: flex;
    flex-direction: column;
    background-image: url(../images/paper.png);
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px 15px;
    margin-bottom: 20px;
}
.task-textarea,
.task-control {
	background-color: transparent;
	border: none;
	text-align: left;
	padding: 5px 22px;
    color: #000;
    font-size: 14px;
    margin-bottom: 5px
}
.task-textarea {
    height: 50px;
    margin-bottom: 0px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #000;
}
::-moz-placeholder { /* Firefox 19+ */
	color: #000;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #000;
}
:-moz-placeholder { /* Firefox 18- */
	color: #000;
}
.task-submit-btn {
	border: none;
	background-color: #fff;
	color: #000;
	padding: 7px 15px;
	font-size: 14px;
	cursor: pointer;
}
.todo-list_section {
    padding: 50px;
    background-color: rgba(0,0,0,0.2);
    border-top: solid 4px #000;
    min-height: calc(100vh - 438px);
}
.todo-list ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.todo-list ul li {
	width: 20%;
    margin-bottom: 30px;
}
.todo-list ul .todo-list_child {
    background-image: url(../images/note.png);
    width: 190px;
    padding: 45px 25px 0px;
    background-repeat: no-repeat;
    background-size: contain;
    box-sizing: border-box;
    height: 250px;
    position: relative;
    margin-bottom: 30px;
    margin: auto;
}
.list-remove {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    text-decoration: none;
    font-size: 10px;
    color: #fff;
    background-color: #000;
    padding: 5px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    text-align: center;
    line-height: 12px;
}
.todo-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
.todo-date {
	font-size: 12px;
	margin-bottom: 10px;	
	font-weight: 700;
	display: block;
}
.todo-disc {
	font-size: 14px;
}
li.list-item {
    opacity: 0;
    -webkit-animation: new-item-animation .6s cubic-bezier(0,.8,.32,1.07) forwards;
    -o-animation: new-item-animation .6s cubic-bezier(0,.8,.32,1.07) forwards;
    animation: new-item-animation .6s cubic-bezier(0,.8,.32,1.07) forwards;
    
}

@keyframes new-item-animation {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0)
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
  }
}
li.removed-item {
  -webkit-animation: removed-item-animation .6s cubic-bezier(.55,-0.04,.91,.94) forwards;
  -o-animation: removed-item-animation .6s cubic-bezier(.55,-0.04,.91,.94) forwards;
  animation: removed-item-animation .6s cubic-bezier(.55,-0.04,.91,.94) forwards
}

@keyframes removed-item-animation {
  from {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
  }

  to {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0
  }
}
@media (min-width: 1200px) {
}
@media (max-width: 1366.98px) {

}
@media (max-width: 1199.98px) {
	.todo-list ul li {
		width: 25%;
	}
}
@media (max-width: 991.98px) {
	.todo-list ul li {
		width: 33.33%;
	}

}	
@media (max-width: 767.98px) {
	.todo-list_section {
	    padding: 40px 30px;
	}
	.todo-list ul li {
		width: 50%;
	}
}
@media (max-width: 575.98px) {
	.todo-list ul li {
		width: 100%;
	}
	.header-section {
	    max-width: 100%;
	    padding-left: 25px;
	    padding-right: 25px;
	    padding-top: 35px;
	    padding-bottom: 35px;
	}
	.todo-list ul {
		flex-direction: column;
	}
}
@media (max-width: 320.98px) {

}
/*responsive-end*/
