.cf-field {
  display: grid;
  grid-template: auto / 45% 55%;
  margin-bottom: 1rem;
}
.cf-section-toggles {
  display: none;
}
.cf-sections-label {
  display: none;
}
.cf-field--description {
  display: none;
}
.cf-field--description.active {
  content: '';
  display: block;
  position: fixed;
  z-index: 99;
  background: rgba(0,0,0,0.5);
  top: 0; left: 0; right: 0; bottom: 0;
}
.cf-field--description--modal {
  display: block;
  z-index: 100;
  position: fixed;
  height: 50vh;
  width: 50vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem 1rem 1rem 1rem;
}
@keyframes popUp {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.cf-field--description.active .cf-field--description--modal {
  animation: popUp 0.2s ease-out forwards;
}
.cf-field--description--content {
  color: black;
}
.cf-field--description--close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

.cf-field textarea {
  height: 5em;
}

.cf-checkbox-option {
  display: flex;
  flex: 1;
  align-items: flex-start;
}
.cf-checkbox-option>input {
  margin: 0.4em 0.75em 0 0;
  width: 20px;
}
@media (max-width: 600px) {
  .cf-field {
    grid-template: auto / 100%;
  }
}
