@-webkit-keyframes outsidebutton {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.15, 1.15);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes outsidebutton {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.15, 1.15);
  }
  100% {
    transform: scale(1, 1);
  }
}
body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  display: block;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  margin: 0px;
}

.viewport {
  max-width: 100%;
  max-height: 100%;
  background-color: #fff;
  overflow: hidden;
}

.top-image {
  height: 215px;
  width: 100%;
  background: #0014ff;
  /* Old browsers */
  background: -moz-linear-gradient(left, #0014ff 0%, #9d00ff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #0014ff 0%, #9d00ff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #0014ff 0%, #9d00ff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0014ff', endColorstr='#9d00ff',GradientType=1 );
  /* IE6-9 */
}
.top-image:before {
  content: "";
  position: absolute;
  background: url("./img/1-instructivo.jpg") center center no-repeat;
  background-size: cover;
  height: 215px;
  width: 100%;
  opacity: 0.80;
}
.top-image:after {
  content: "";
  position: absolute;
  top: 191px;
  left: -10px;
  width: 110%;
  height: 80px;
  background-color: #fff;
  transform: rotate(2deg);
}
.top-image .menu {
  position: absolute;
  color: white;
  left: 10px;
  top: 15px;
  font-size: 18px;
}
.top-image .menu i {
  font-size: 34px;
  margin-right: 10px;
  float: left;
}
.top-image .menu p {
  margin-top: 10px;
  float: left;
  font-size: 15px;
}
.top-image .profile {
  position: absolute;
  width: 100%;
  top: 70px;
  left: 20px;
}
.top-image .profile .profile-picture {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  float: left;
  background-size: 100% !important;
}
.top-image .profile h3 {
  margin-top: 5px;
  margin-bottom: 0px;
  margin-left: 60px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.9);
}
.top-image .profile p {
  margin: 0px;
  margin-left: 60px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 200;
  font-size: 12px;
}

.showcompleted-button, .showsoon-button, .showimportant-button {
  opacity: 0;
  display: none;
}

.showcompleted-button:checked ~ .task-soon {
  opacity: 0;
  height: 0px !important;
}
.showcompleted-button:checked ~ .task-important {
  opacity: 0;
  height: 0px !important;
}
.showcompleted-button:checked ~ .task-completed {
  opacity: 1;
  height: 54px;
}

.showimportant-button:checked ~ .task-soon {
  opacity: 0;
  height: 0px !important;
}
.showimportant-button:checked ~ .task-completed {
  opacity: 0;
  height: 0px !important;
}
.showimportant-button:checked ~ .task-important {
  opacity: 1;
  height: 54px;
}

.showsoon-button:checked ~ .task-completed {
  opacity: 0;
  height: 0px !important;
}
.showsoon-button:checked ~ .task-important {
  opacity: 0;
  height: 0px !important;
}
.showsoon-button:checked ~ .task-soon {
  opacity: 1;
  height: 54px;
}

.outside-button {
  position: absolute;
  right: 50px;
  top: 200px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #00afefd9;
  z-index: 1;
  -webkit-transition: all 0.20s ease;
  -moz-transition: all 0.20s ease;
  -o-transition: all 0.20s ease;
  transition: all 0.20s ease;
}
.outside-button i {
  color: white;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.10s ease;
  -moz-transition: all 0.10s ease;
  -o-transition: all 0.10s ease;
  transition: all 0.10s ease;
}

.ion-ios-checkmark-outline {
  position: absolute;
  font-size: 24px;
  top: 53px;
  right: 67px;
  transition-delay: 0.2s;
}

.ion-ios-bolt {
  position: absolute;
  width: 19px;
  height: 19px;
  font-size: 17px;
  text-align: center;
  border: thin solid white;
  border-radius: 50%;
  top: 65px;
  right: 70px;
  transition-delay: 0.3s;
}

.ion-ios-clock-outline {
  position: absolute;
  font-size: 24px;
  bottom: 56px;
  right: 70px;
  transition-delay: 0.4s;
}

.ion-alert {
  position: absolute;
  width: 19px;
  height: 16px;
  font-size: 12px;
  padding-top: 3px;
  border: thin solid white;
  border-radius: 50%;
  text-align: center;
  bottom: 65px;
  right: 67px;
  transition-delay: 0.5s;
}

.filter-button:checked ~ label {
  background-color: #5e70b7;
  box-shadow: none;
}
.filter-button:checked ~ label .bar-icon:first-of-type {
  width: 20px;
  top: 24px;
  transform: rotate(-45deg);
  transition-delay: 0.2s;
}
.filter-button:checked ~ label .bar-icon {
  width: 0px;
}
.filter-button:checked ~ label .bar-icon:last-of-type {
  width: 20px;
  top: 24px;
  left: 16px;
  transform: rotate(45deg);
  transition-delay: 0.2s;
}
.filter-button:checked ~ .outside-button {
  width: 150px;
  height: 150px;
  right: -30px;
  top: 130px;
  -webkit-animation-name: outsidebutton;
  -webkit-animation-duration: 0.25s;
  animation-name: outsidebutton;
  animation-duration: 0.25s;
  animation-delay: 0.1s;
  -webkit-box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.75);
}
.filter-button:checked ~ .outside-button i {
  opacity: 1;
}
.filter-button:checked ~ .outside-button .ion-ios-checkmark-outline {
  top: 13px;
  right: 67px;
  transition-delay: 0.2s;
}
.filter-button:checked ~ .outside-button .ion-ios-bolt {
  top: 45px;
  right: 110px;
  transition-delay: 0.3s;
}
.filter-button:checked ~ .outside-button .ion-ios-clock-outline {
  bottom: 36px;
  right: 110px;
  transition-delay: 0.4s;
}
.filter-button:checked ~ .outside-button .ion-alert {
  bottom: 15px;
  right: 67px;
  transition-delay: 0.5s;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: -28px;
  margin-left: 13px;
  padding-left: 15px;
}
.content:before {
  position: absolute;
  content: "";
  width: 0px;
  height: 100%;
  top: -47px;
  left: 0px;
  background-color: #f7f7f7;
}
.content h2 {
  font-weight: 400;
  margin-bottom: 2px;
  color: #4f4e51;
}
.content .under-title {
  font-size: 13px;
  color: #b0b0b0;
  margin-bottom: 25px;
}
.content .under-title2 {
  font-size: 14px;
  color: #959595;
  margin-bottom: 25px;
}
.content .task:before {
  content: "";
  position: absolute;
  left: -4px;
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
}
.content .task.task-completed {
  height: 75px;
  -webkit-transition: all 0.30s ease;
  -moz-transition: all 0.30s ease;
  -o-transition: all 0.30s ease;
  transition: all 0.30s ease;
}
.content .task.task-completed:before {
  background-color: #ffe300;
}
.content .task.task-important {
  height: 54px;
  -webkit-transition: all 0.30s ease;
  -moz-transition: all 0.30s ease;
  -o-transition: all 0.30s ease;
  transition: all 0.30s ease;
}
.content .task.task-important:before {
  background-color: #f00;
}
.content .task.task-soon {
  height: 75px;
  -webkit-transition: all 0.30s ease;
  -moz-transition: all 0.30s ease;
  -o-transition: all 0.30s ease;
  transition: all 0.30s ease;
}
.content .task.task-green {
  height: 75px;
  -webkit-transition: all 0.30s ease;
  -moz-transition: all 0.30s ease;
  -o-transition: all 0.30s ease;
  transition: all 0.30s ease;
}
.content .task.task-soon:before {
  background-color: #00afef;
}
.content .task.task-green:before {
  background-color: #5ce100;
}
.content .task:last-of-type .under-title {
  margin-bottom: 10px;
}
.content .task .task-title {
  width: 73%;
  margin-bottom: 0px;
}
.content .task .task-title .task-time {
  position: absolute;
  right: 38px;
  font-size:9px;
  color: #939393;
}
.content .task .under-title {
  margin-bottom: 24px;
}
.content .task .icon-container .face-icon {
  width: 30px;
  height: 30px;
  float: left;
  margin-right: 8px;
  border-radius: 50%;
  background-size: 160% !important;
}