.echron-list {
  padding: 25px 0;
  text-transform: capitalize;
}
.echron-list .content table {
  width: 100%;
}
.echron-list .content table tr {
  width: 100%;
}
.echron-list .content table th,
.echron-list .content table td {
  border: 1px solid #dcdcdc;
  padding: 8px;
}
.echron-list .content table th,
.echron-list .content table th a {
  color: #1e91cf;
  text-decoration: none;
}
.echron-list .content table td.action {
  display: flex;
  gap: 10px;
  justify-content: end;
}
.echron-list .content table td.action label,
.echron-list .content table td.feature label {
  width: 100px;
  position: relative;
}
.echron-list .content table td.action label > span,
.echron-list .content table td.feature label > span {
  position: absolute;
  left: -50px;
  width: 100%;
  margin: 0;
  padding-right: 50px;
  text-align: left;
  white-space: nowrap;
  padding: 1px;
  cursor: pointer;
}
.echron-list .content table td.action label > span:before,
.echron-list .content table td.feature label > span:before {
  content: '';
  display: block;
  width: 80%;
  height: 30px;
  position: absolute;
  left: 74px;
  top: 3px;
  background-color: #e2e2e2;
  border: 1px solid #ccc;
  border-radius: 30px;
  transition: all 0.2s ease-out;
  color: #000;
}
.echron-list .content table td.action label a,
.echron-list .content table td.feature label a {
  position: absolute;
  right: 50%;
  z-index: 4;
  display: block;
  height: 25px;
  padding: 0;
  left: 25px;
  top: 5px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #CCC;
  border-radius: 100%;
  transition: all 0.2s ease-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.echron-list .content table td.action label input,
.echron-list .content table td.feature label input {
  opacity: 0;
}
.echron-list .content table td.action label > span span,
.echron-list .content table td.feature label > span span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: block;
  width: 50%;
  margin-left: 50px;
  text-align: left;
  font-size: 1.0em;
  width: 100%;
  left: 35%;
  top: 6px;
  opacity: 0;
  padding: 0;
}

.echron-list .content table td.action label input:checked ~ a,
.echron-list .content table td.feature label input:checked ~ a {
  left: 77%;
  top: 15%;
  margin-left: 0px;
}


.echron-list .content table td.action label input:checked ~ span:before {
  border-color: #14aa00;
  box-shadow: inset 0 0 0 30px #14aa00;
}

.echron-list .content table td.feature label input:checked ~ span:before {
  border-color: #1e91cf;
  box-shadow: inset 0 0 0 30px #1e91cf;
}

.echron-list .content table td.action label > span span:first-of-type,
.echron-list .content table td.feature label > span span:first-of-type {
  color: rgb(104, 104, 104);
  opacity: 1;
  left: 66%;
  top: 7px;
}

.echron-list .content table td.action label input:checked ~ span span:last-of-type,
.echron-list .content table td.feature label input:checked ~ span span:last-of-type {
  opacity: 1;
  color: #fff;
}

.echron-list .content table td.action label input:checked ~ span span:first-of-type,
.echron-list .content table td.feature label input:checked ~ span span:first-of-type {
  opacity: 0;
}