.profile-form-legend > app-widget-host {
    display: flex;
    align-items: center;
    flex-direction:row;
    gap: 16px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 24px;
}
.profile-form-legend .profile-form-legend-item > app-widget-host {
    display: flex;
    align-items: center;
    flex-direction:row;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    line-height:1;
}
.profile-form-legend .profile-form-legend-item > app-widget-host::before {
    content:"";
    width: 8px;
    height: 8px;
    border-radius: 50%
50%
;
    flex-shrink: 0;
}
.profile-form-legend .profile-form-legend-item.locked-verified > app-widget-host::before {
    background: var(--text-muted);
    opacity: 0.4;
}
.profile-form-legend .profile-form-legend-item.editable > app-widget-host::before {
   background: var(--yellow);
}
form .field-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
#root .account-tab .custom-profile-form form label:not(.field-checkbox-label){
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px!important;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#root .account-tab .custom-profile-form .field-wrap {
    display:flex;
    flex-direction:row;
    position:relative;
}
#root .account-tab .custom-profile-form .field-wrap .form-select-wrap {
    width:100%;
}
#root .account-tab .custom-profile-form input:not([type="checkbox"]) {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--border-input);
    background: var(--bg-input);
    color: var(--text-primary);
    font-family: 'Myriad Pro', sans-serif;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: all 0.2s ease;
}
#root .account-tab .custom-profile-form .form-section > div:not(.field-label) {
        margin-bottom: 20px;
    position: relative;
}
#root .account-tab .custom-profile-form .field-locked input {
    background: var(--bg-locked);
    border: 1.5px dashed var(--border);
    color: var(--text-locked);
    cursor: not-allowed;
}
#root .account-tab .custom-profile-form select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--border-input);
    background: var(--bg-input);
    color: var(--text-primary);
    font-family: 'Myriad Pro', sans-serif;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.2s;
}
#root .account-tab .custom-profile-form .field-caption {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 5px;
    padding-left: 2px;
}
#root .account-tab .custom-profile-form .field-caption a {
    color:var(--yellow);
    text-decoration:underline;
}
#root .account-tab .field-dateOfBirth .field-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
#root .account-tab span.required {
    color:var(--yellow)
}
#root .account-tab  .form-select-wrap {
    position: relative;
}
#root .account-tab .form-section >  div:not(.field-locked) .form-select-wrap::after {
    content:"";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    background-image:url(/v1.037/r/images/accessbet/icons/arrowdown.svg);
    background-size:16px;
    background-repeat:no-repeat;
    background-position:center;

}
#root .account-tab span.locked {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index:1
}
#root .account-tab span.locked::before {
    content:"";
    width:11px;
    height:11px;
    background-image:url(/v1.037/r/images/accessbet/icons/lockgrey.svg);
    background-size:11px;
    background-repeat:no-repeat;
}
#root .account-tab .custom-profile-form .field-telephone select {
    width:unset;
    padding: 14px 12px;
    border-radius: 10px 0 0 10px;
    border: 1.5px dashed var(--border);
    border-right: none;
    background: var(--bg-locked);
    color: var(--text-locked);
    font-family: 'Myriad Pro', sans-serif;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content:flex-end;
    text-align:right;
    gap: 8px;
}
#root .account-tab .custom-profile-form .field-telephone input {
  
    border-radius: 0 10px 10px 0;

}
#root .account-tab .custom-profile-form input[type="checkbox"] {
    appearance:none;
    width: 22px;
    height: 22px;
    border-radius: 6px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
#root .account-tab .custom-profile-form input[type="checkbox"]:checked {
    background-image:url(/v1.037/r/images/accessbet/icons/tickwhite.svg);
    background-size:14px;
    background-repeat:no-repeat;
    background-position:center;
    background-color: var(--green);
}
#root .account-tab .custom-profile-form .field-checkbox .field-wrap{
    display: flex;
    align-items: center;
    gap: 12px;
    
}
#root .account-tab .custom-profile-form .field-checkbox .field-wrap label {
        font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}
#root .account-tab .custom-profile-form  hr {
    
}