.cheky {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}

.cheky input {
  z-index: -1;
}

.cheky label::before {
  content: '';
  line-height: .75;
  font-weight: 800;
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--pen);
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 0;
}

.cheky input:checked + label::before {
  content: '✓';
}

.cheky input.error + label::before {
  border-color: var(--primary);
}

.cheky > label.option {
  padding-left: 10px;
  margin-bottom: 0;
  width: calc(100% - 35px);
  font-weight: 400;
}

.cheky__extra {
  width: 100%;
  padding-left: 30px;
}

.cheky__extra p {
  margin: 0;
}

.cheky__link {
  font-weight: 600;
}