
table#basicApplication .personalNumberInputs input {
    width: 16px;
    height: 20px;
    font-family: HelveticaNeue47LtCn;
    font-size: 18px;
    padding: 2px 0 0 2px;
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

table#basicApplication .personalNumberInputs {
    font-size: 0;
}

table#basicApplication .personalNumberInputs div {
    display: inline;
}

table#basicApplication .personalNumberInputs div.personalNumberSeparator {
    font-size: 18px;
    line-height: 20px;
    width: 20px;
    display: inline-block;
    text-align: center;
}

table#basicApplication .personalNumberInputs input + input {
    margin-left: 2px;
}

/*personal number placeholders are not italic*/
table#basicApplication .personalNumberInputs .placeholder {
    /* jquery-placeholder added style, if @placeholder is not supported by browser */
    font-style: normal;
}
table#basicApplication .personalNumberInputs ::-webkit-input-placeholder {
    /* WebKit */
    font-style: normal;
}
table#basicApplication .personalNumberInputs :-moz-placeholder {
    /* FF 4 to 18 */
    font-style: normal;
}
table#basicApplication .personalNumberInputs ::-moz-placeholder {
    /* FF 19+ */
    font-style: normal;
}
table#basicApplication .personalNumberInputs :-ms-input-placeholder {
    /* IE 10+ */
    font-style: normal;
}
/* end placeholder styles */

.personalNumberLabel {
    cursor: pointer;
}

.personalNumberControl {
    position: relative;
}

.personalNumberPopup {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 62px;
    padding: 6px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    -moz-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);

    behavior: url("js/lib/PIE-2.0.beta1.htc");

    background-color: #f0faff;
}

.personalNumberPopup > *:last-child {
    position: absolute;
    bottom: 0;
    margin-bottom: 4px;
}

.personalNumberControl input[type="checkbox"] {
    cursor: pointer;
    margin-right: 8px;
}
