/* Component radios. */
.component-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Component radio. */
.component-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.component-checkbox__element {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #D4D4D4;
}

.component-checkbox__control {
  display: none;
}

.component-checkbox__control:checked + .component-checkbox__element {
  border: 1px solid #2060A5;
  background: #2060A5 url(check.svg) 50% 50%;
}

.component-checkbox__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  user-select: none;
}
