@import url(https://fonts.googleapis.com/css?family=Roboto:500,700);

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 10px;
  color: #435757;
  background: ;
  font: 500 1.2em/1.2 'Roboto', sans-serif;
}

.container {
  max-width: 718px;
  margin: 0 auto;
  padding-bottom: 20px;
  
  background-color: #eee;
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

h1 {
  margin: 0;
  padding: 20px;
  background-color: rgba(255, 255, 255, .4);
  font-size: 1.8em;
  text-align: center;
}

.items {
  display: flex;
  flex-direction: column;
  padding: 15px;
  font-size: 0.9em;
  
}

h2 {
  position: relative;
  margin: 0;
  padding: 10px 0;
  font-size: 1.2em;
  color: #08236d;
}

h2::before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -20px;
  width: 5px;
  background-color: #08236d;
}

h2::after {
  display: block;
  float: right;
  font-weight: normal;
}

.done {
  order: 3;
}



.undone {
  order: 1;
}




input {
  display: block;
  height: 53px;
  margin: 0 0 -53px -9999px;
  order: 2;
  outline: none;
  counter-increment: undone-items;
}

input:checked {
  order: 4;
  counter-increment: done-items;  
}

label {
  display: block;
  position: relative;
  padding: 15px 0 15px 45px;
  border-top: 1px dashed #08236d;
  order: 2;
  cursor: pointer;
  -webkit-animation: undone .5s;
          animation: undone .5s;
		  background: #fff;
}

label::before {
  content: '\f10c'; 
  display: block;
  position: absolute;
  top: 11px;
  left: 10px;
  font: 1.5em 'FontAwesome';
  color: #08236d;
}



input:checked + label {
  order: 4;
  -webkit-animation: done .5s;
          animation: done .5s;
		  background: #fff;
}

input:checked + label::before {
  content: '\f058'; 
}

@-webkit-keyframes done {
  0% {
    opacity: 0;
    background-color: rgba(255, 255, 255, .4);
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    opacity: 1;
    background-color: rgba(255, 255, 255, .4);
  }
}

@keyframes done {
  0% {
    opacity: 0;
    background-color: rgba(255, 255, 255, .4);
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    opacity: 1;
    background-color: rgba(255, 255, 255, .4);
  }
}

@-webkit-keyframes undone {
  0% {
    opacity: 0;
    background-color: rgba(255, 255, 255, .4);
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  50% {
    opacity: 1;
    background-color: rgba(255, 255, 255, .4);
  }
}

@keyframes undone {
  0% {
    opacity: 0;
    background-color: rgba(255, 255, 255, .4);
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  50% {
    opacity: 1;
    background-color: rgba(255, 255, 255, .4);
  }
}

.logo { 
float: left;

text-align: left;
  font-size: 1.5em;
  color: white;
  padding-bottom: 15px;
padding-top: 30px;
padding-left: 20px;
padding-right: 20px;
border-radius:10px 10px 0px 0px;
}
  
  

.logo:first-child {
	background: #08236d;
	
}

.header {
	width: 100%;
	color: #08236d;
	background: white;
	text-align: left;
	font-size: 1.4em;
	padding-bottom: 15px;
	padding-top: 20px;
	padding-left: 20px;
	float: left;
}
button {
	 background-color: #02707c;
  display: block;
  width: 110px;
  margin: 0px auto;
  padding: 10px;
  border: solid 1px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  box-shadow: inset 0 4px 4px -4px #fff, inset 0 -4px 4px -4px #000;
  color: rgba(255, 255, 255, 0.8);
  font: 22px 'Acme', sans-serif;
  letter-spacing: 0.05em;
  text-shadow: 0px -1px rgba(0, 0, 0, 0.4);
  background-image: linear-gradient(transparent, #12abbc);
  background-size: auto 200%;
  background-position: 0 80%;
  transition: color 0.2s, background-position 0.2s;
  cursor: pointer;
}
button:hover {
  color: #fff;
  background-position: 0 20%;
}
button:active {
  background-image: linear-gradient(#ff4a00, transparent);
}

button a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.8);
}
.links a {
	text-decoration: none;
	display: inline-block;
	padding: 5px;
	border: 1px solid #08236d;
	color: #08236d;
	margin-left: 10px;
	margin-bottom: 20px;
	
}
.links .active {
	background: #08236d;
	color: #fff;
}
.links {
	width: 738px;
	margin: 0 auto;
}

span {
	color: #075560;
	font-size: 1.3em;
	margin: 10px;
	
}