/*
*************************
Onborading numbered steps
*************************
*/

.onboarding__steps-container {
    width: 100%;
    max-width: 410px;
    margin: -20px auto 30px auto;
}

.onboarding__step-number {
    font-size: 1.167rem;
    display: table;
    width: 30px;
    height: 30px;
    background-color: var(--color-white);
    border-radius: 5px;
    border: 1px solid var(--color-border-common);
    color: var(--color-text-theme);
    font-weight: 700;
    margin: auto auto 10px auto;
}

.onboarding__step-number span {
    display: table-cell;
    vertical-align: middle;
}

.onboarding__step {
    text-align: center;
    opacity: 0.4;
}

.onboarding__step--active,
.onboarding__step--verified {
    opacity: 1;
}

.onboarding__step--verified .onboarding__step-number {
    background-color: var(--color-success);
    border-color: var(--color-success);
    color: var(--color-white);
}

.onboarding-title {
    font-size: 2.0833333333333335rem;
    font-weight: 700;
    color: var(--color-text-theme);
}

.onboarding__step-line {
    position: absolute;
    height: 1px;
    background: #d8d8d8;
    top: 15px;
    right: -24px;
}

/*
*****************
Verify email page
*****************
*/

#resend-email {
    color: var(--color-text-theme);
}

.verify-email__link--active {
    cursor: pointer;
}

/*
*****************
Verify phone page
*****************
*/

#verifyPhoneNumberModal .modal-dialog {
    max-width: 410px;
}

#phoneCodeInput {
    font-size: 1.5rem;
    letter-spacing: 5px;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

#js_resend-sms {
    color: var(--color-text-theme);
}

#selected-country-phone {
    min-width: 65px;
}

.verify-phone__link--active {
    cursor: pointer;
}

#phone-verify .bootstrap-select .dropdown-menu li a span.text {
    font-size: 1.167rem;
    width: 100%;
}

.country-prefix__code {
    width: 20%;
}

/*
*********************
Docuemnts upload page
*********************
*/

#jumio-api {
    min-height: 37em;
    display: flex;
}

#jumio-api__iframe {
    width: 100%;
    border: none;
}

/*
********
KYC page
********
*/

.kyc__other-answer {
    margin-top: 1em;
}

/*
**************
Reset password
**************
*/

#js_phone-code {
    letter-spacing: 5px;
    font-weight: bold;
}

/*
***************
Document upload
***************
*/

.onboarding-docs__formgroup-container {
    display: table;
    width: 100%;
}

.onboarding-docs__fileinput-container {
    display: table-cell;
    vertical-align: middle;
    padding-right: 10px;
}

/* disable auto-zoom on iphone input field focus */
@media screen and (-webkit-min-device-pixel-ratio:0) {

    select:focus,
    textarea:focus,
    input:focus {
        font-size: 16px;
    }
}