:root {
  --uncheckedColor: #717171;
  --checkedColor: #27c28c;
}

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

table tr {
  cursor: pointer;
}


.checklist_in_post-practice>form.checklist-list-practice>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-practice li a {
  text-decoration: none;
}

.checklist_in_post-practice form.checklist-list-practice {
  padding: 20px;
  position: relative;
  /*box-shadow*/

}

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

}

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

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

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

.checklist_in_post-practice .checklist-label-practice {
  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-practice .checklist-label-practice .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-practice.checklist-label-checked-practice tr {
  color:#717171;
  width: 100%;
  /*background: linear-gradient(to bottom, rgba(89, 203, 232, .8) 80%, rgb(37, 34, 34) 0%);*/
  /*transition*/
  background-color: var(--checkedColor);
  -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-practice .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-practice.checklist-label-checked-practice .fa-check {
  font-size: 20px;
  line-height: 20px;
  color: var(--checkedColor);

  padding-top: 6px;
}

.checklist-label-practice.checklist-label-checked-practice .fa-check:hover {
  -webkit-box-shadow:  0 0 0 2px var(--checkedColor);
  -moz-box-shadow:  0 0 0 2px var(--checkedColor);
  box-shadow:  0 0 0 2px var(--checkedColor);
  cursor: pointer;
}