.card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#activities-wrapper {
  margin: 10px 0 0;
  padding: 0 0 15px 0;
  float: left;
  clear: both;
  top: 65px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(147, 155, 158, 0.24);
  border-top: 4px #4097bd solid;
  background-color: #ffffff;
}
#activities-wrapper ul#list-wrapper {
  margin-bottom: 0;
}
#activities-wrapper ul li {
  border: 0 none;
}
#activities-wrapper .card-header ul {
  margin-bottom: 2px;
}
#activities-wrapper .card-header ul li {
  border-bottom: 1px solid #e5e7e7;
}
#activities-wrapper ul li label {
  font-weight: 400;
  margin-bottom: 0;
  width: 100%;
}
#activities-wrapper .card-header ul li label {
  font-weight: 700;
}
#activities-wrapper input[type="checkbox"] {
  position: absolute;
  margin: 9px 0 0;
  z-index: 1;
}
#activities-wrapper label {
  font-size: 14px;
  color: #5d686d;
  line-height: 20px;
  margin-left: 20px;
  position: relative;
  text-align: left;
}
#activities-wrapper [type="checkbox"]:not(:checked) + label:before,
#activities-wrapper [type="checkbox"]:checked + label:before {
  content: '';
  font-weight: 400;
  position: absolute;
  left: -20px;
  top: 4px;
  width: 13px;
  height: 13px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(147, 155, 158, 0.24);
  background: #fff;
  border-radius: 0;
}
#activities-wrapper [type="checkbox"]:not(:checked) + label:after,
#activities-wrapper [type="checkbox"]:checked + label:after {
  content: '\2713';
  font-weight: 400;
  position: absolute;
  top: 4px;
  left: -20px;
  font-size: 12px;
  color: #fff;
  transition: all .2s;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  background-color: #4097bd;
  width: 14px;
  height: 14px;
  line-height: 15px;
  text-align: center;
}
#activities-wrapper [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
#activities-wrapper [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
#activity-container {
  display: none;
}
