.document-request-wrapper .form-check-label:focus-visible::before {
    outline: 1px solid var(--primary-1);
    outline-offset: 0;
}

.document-request-wrapper .form-check-label:focus-visible {
    outline: none;
}  
.document-request-wrapper .form-check-input {
    height: 0px;
    width: 0px;
    position: absolute;
    border: 0;
    left:-9999px
}
.document-request-wrapper .form-check-input:focus + label:before , .form-field.privacy-policy input.form-field__checkbox:focus + .form-field__ghost{
    outline: 1px solid var(--primary-1);
    outline-offset: 0;
}
.form-switch .form-check-input:focus{
outline: 1px solid var(--primary-1);
}
.document-request-wrapper .form-check-label {
	position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-bottom: 5px;
    cursor: pointer;
}
.document-request-wrapper .form-check-label:before{
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: none;
    background: var(--base-3);
    margin-right: 8px;
    line-height: 1;
    position: absolute;
    left: 0;
    bottom: 4px;
}
.document-request-wrapper input[type=checkbox]:checked + label:before{
    background-color: var(--base-1);
    font-size: 1.4rem;
    line-height: 1.4rem;
    position: absolute;
    content: "\e91d";
    font-family: icomoon !important;
    color: white;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
  .document-request-wrapper .form-check-label:before{
    bottom: 2px;
  }
}