:root {
  --uncheckedColor: #717171;

  --checkedTCColor: rgba(89, 203, 232, .8);
  --checkedNTIColor: rgba(246, 190, 0, .8);
  --sparkColor: green;
}


.checklist_in_post-learn>form.checklist-list-learn>ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

table tr {
  cursor: pointer;
}



.checklist_in_post-learn>form.checklist-list-learn>ul>li {
  text-decoration: none;
  padding: 0px !important;
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
  margin: 0;
  list-style: none;
}

.checklist_in_post-learn li a {
  text-decoration: none;
}

.checklist_in_post-learn form.checklist-list-learn {
  padding: 20px;
  position: relative;
  /*box-shadow*/
  /* -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); */
}

/* .checklist_in_post-learn form.checklist-list-learn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0%;
  bottom: 0;
  left: 10px;
  right: 10px;

} */

.checklist_in_post-learn .checklist-wrap {
  display: block;
  position: relative;
  padding-left: 35px;
}

.checklist_in_post-learn .checklist-wrap-learn:last-of-type {
  /*box-shadow*/
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.checklist_in_post-learn input[type="checkbox"] {
  position: relative;
  height: 0;
  width: 0;
  opacity: 0;
  top: 0px;
  position: absolute;
}

.checklist_in_post-learn .checklist-label-learn {
  display: block;
  font-weight: 200;
  padding: 5px 5px;
  position: relative;
  /*box-shadow
    -webkit-box-shadow:0 2px 0 -1px #ebebeb;
    -moz-box-shadow:0 2px 0 -1px #ebebeb;
            box-shadow:0 2px 0 -1px #ebebeb;*/
}



.checklist_in_post-learn .checklist-label-learn .fa-check {
  position: absolute;
  z-index: 1;
  left: -40px;
  top: 15px;
  font-size: 1px;
  line-height: 36px;
  width: 36px;
  height: 36px;
  text-align: center;
  text-shadow: none;
  border-style: solid;
  border-radius: 10px;
  cursor: pointer;
}

.checklist-label-learn.checklist-label-checked-learn-TC tr {
  color:#717171;
  width: 100%;
  /*transition*/
  background: var(--checkedTCColor);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.checklist-label-learn .fa-check:hover {
  /*box-shadow*/
  -webkit-box-shadow:  0 0 0 2px var(--uncheckedColor);
  -moz-box-shadow:  0 0 0 2px var(--uncheckedColor);
  box-shadow:  0 0 0 2px var(--uncheckedColor);
  cursor: pointer;
}

/* the check mark */
.checklist-label-learn.checklist-label-checked-learn-TC .fa-check {
  font-size: 20px;
  line-height: 20px;
  color: var(--checkedTCColor);
  padding-top: 6px;
  cursor: pointer;

}


.checklist-label-learn.checklist-label-checked-learn-TC .fa-check:hover {
  /*box-shadow*/
  -webkit-box-shadow:  0 0 0 2px var(--checkedTCColor);
  -moz-box-shadow:  0 0 0 2px var(--checkedTCColor);
  box-shadow:  0 0 0 2px var(--checkedTCColor);
  cursor: pointer;
}
.checklist-label-learn.checklist-label-checked-learn-NTI tr {
  /*     color:#717171; */
  width: 100%;
  /*transition*/
  background: var(--checkedNTIColor);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
/* 
.checklist-label-learn.checklist-label-checked-learn-NTI:before tr {
  width: 100%;
} */

.checklist-label-learn.checklist-label-checked-learn-NTI .fa-check {
  font-size: 20px;
  line-height: 20px;
  color: var(--checkedNTIColor);
  padding-top: 6px;
  cursor: pointer;


}

.checklist-label-learn.checklist-label-checked-learn-NTI .fa-check:hover {
  /*box-shadow*/
  -webkit-box-shadow:  0 0 0 2px var(--checkedNTIColor);
  -moz-box-shadow:  0 0 0 2px var(--checkedNTIColor);
  box-shadow:  0 0 0 2px var(--checkedNTIColor);
  cursor: pointer;
}

/* these are descriptors for each spark
couldn't figure out a cleaner way to do this :(
  
Organization goes 

6  7  8  9  10  11  12

5                   13
  
4  3  2   1 16  15  14*/
/* bottom left side */
.sparkElem1.sparks {
  position: absolute;
  top: 75%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: green;
  animation: spark1 1s linear forwards;
}

@keyframes spark1 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(0px, 10px);
  }
}

.sparkElem2.sparks {
  position: absolute;
  top: 75%;
  left: 35%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: yellow;
  animation: spark2 1s linear forwards;
}

@keyframes spark2 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(-3px, 10px);
  }
}

.sparkElem3.sparks {
  position: absolute;
  top: 75%;
  left: 20%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: blue;
  animation: spark3 1s linear forwards;
}

@keyframes spark3 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(-6px, 10px);
  }
}

.sparkElem4.sparks {
  position: absolute;
  top: 75%;
  left: 5%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  animation: spark4 1s linear forwards;
}

@keyframes spark4 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(-10px, 10px);
  }
}

/* very left */
.sparkElem5.sparks {
  position: absolute;
  top: 40%;
  left: 0%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: purple;
  animation: spark5 1s linear forwards;
}

@keyframes spark5 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(-10px, 0px);
  }
}

/* top side left to right*/
.sparkElem6.sparks {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  animation: spark6 1s linear forwards;
}

@keyframes spark6 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(-10px, -10px);
  }
}

.sparkElem7.sparks {
  position: absolute;
  top: 5%;
  left: 20%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  animation: spark7 1s linear forwards;
}

@keyframes spark7 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(-6px, -10px);
  }
}

.sparkElem8.sparks {
  position: absolute;
  top: 5%;
  left: 35%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  animation: spark8 1s linear forwards;
}

@keyframes spark8 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(-3px, -10px);
  }
}

.sparkElem9.sparks {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  animation: spark9 1s linear forwards;
}

@keyframes spark9 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(0px, -10px);
  }
}

.sparkElem10.sparks {
  position: absolute;
  top: 5%;
  left: 65%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  animation: spark10 1s linear forwards;
}

@keyframes spark10 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(3px, -10px);
  }
}

.sparkElem11.sparks {
  position: absolute;
  top: 5%;
  left: 80%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  animation: spark11 1s linear forwards;
}

@keyframes spark11 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(6px, -10px);
  }
}

.sparkElem12.sparks {
  position: absolute;
  top: 5%;
  left: 95%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  animation: spark12 1s linear forwards;
}

@keyframes spark12 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(10px, -10px);
  }
}

/* very right */
.sparkElem13.sparks {
  position: absolute;
  top: 40%;
  left: 98.5%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: purple;
  animation: spark13 1s linear forwards;
}

@keyframes spark13 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(10px, 0px);
  }
}

/* bottom right */
.sparkElem14.sparks {
  position: absolute;
  top: 75%;
  left: 95%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  animation: spark14 1s linear forwards;
}

@keyframes spark14 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(10px, 10px);
  }
}


.sparkElem15.sparks {
  position: absolute;
  top: 75%;
  left: 80%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  animation: spark15 1s linear forwards;
}

@keyframes spark15 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(6px, 10px);
  }
}

.sparkElem16.sparks {
  position: absolute;
  top: 75%;
  left: 65%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: blue;
  animation: spark16 1s linear forwards;
}

@keyframes spark16 {
  from {

    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  to {

    opacity: 0;
    transform: scale(1) translate(3px, 10px);
  }
}