.documents-documents-box {
  opacity: 1;
  position: relative;
  width: 100%;
  height: auto;
  visibility: visible;
  pointer-events: auto;
  user-select: auto;
  overflow: visible;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.documents-documents-title {
  font-size: 20px;
  font-weight: 600;
}

.documents-documents-subtitle {
  font-size: 18px;
  color: #00283cae;
  line-height: 140%;
  margin-bottom: 32px;
  display: block;
}

.documents-documents-subtitle ul {
  margin-left: 20px;
}

.documents-document-checkbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.documents-error-message {
  color: #f44336;
}

.documents-document-checkbox:last-of-type {
  margin-bottom: 40px;
}

.documents-yellow-checkbox {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.documents-yellow-checkbox input[type="checkbox"] {
  appearance: none;
  background: white;
  border: 1px solid #00283c32;
  border-radius: 4px;
  cursor: pointer;
  flex: 0 0 22px;
  height: 22px;
  margin: 0;
  position: relative;
  width: 22px;
}

.documents-yellow-checkbox input[type="checkbox"] + span {
  cursor: pointer;
  font-size: 18px;
  color: #00283cb5;
  font-weight: 600;
}

.documents-yellow-checkbox input[type="checkbox"]:checked {
  background-color: #ffd91a;
  border-color: #ffd91a;
}

.documents-yellow-checkbox input[type="checkbox"]:checked::after {
  border: solid #00283c;
  border-width: 0 2px 2px 0;
  content: "";
  position: absolute;
  height: 11px;
  left: 7px;
  top: 3px;
  transform: rotate(45deg);
  width: 6px;
}

.documents-yellow-checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid #52b8cd;
  outline-offset: 2px;
}

.documents-yellow-checkbox input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.documents-yellow-checkbox span > span {
  font-weight: 400;
}

.documents-next-btn {
  max-width: 600px;
  width: 100%;
  margin: 20px auto 0;
  height: 45px;
  border-radius: 12px;
}

@media screen and (max-width: 768px) {
  .documents-documents-subtitle {
    font-size: 16px;
  }

  .documents-documents-title {
    font-size: 18px;
  }

  .documents-next-btn {
    height: 45px;
    border-radius: 12px;
  }
}
