@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
body
{
    font-family: 'Karla', sans-serif;
    background-color: #f2f5f8;
}

.registration-card
{
    /* width: 535px; */
    max-width: 100%;
    min-height: 640px;
    margin-left: auto;
    margin-right: auto;
    border: 0;
    border-radius: 10px;
    background-color: #fff;
}

.registration-card .card-title
{
    font-size: 30px;
    color: #030303;
    text-align: center;
}

.registration-card .card-body
{
    padding: 42px 78px 72px;
}

@media (max-width: 767px)
{
    .registration-card .card-body
    {
        padding: 24px;
    }
}

/* Wizard */
.wizard .audible
{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wizard .steps
{
    padding-top: 30px;
    padding-bottom: 37.5px;
}

.wizard .steps > ul
{
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    background-image: linear-gradient(#f5f6fa, #f5f6fa);
    background-size: calc(100% - 75px) 2px;
    background-repeat: no-repeat;
    background-position: center 20px;
    margin-bottom: 0;
}

.wizard .steps > ul li a
{
    display: inline-block;
    text-align: center;
}

.wizard .steps > ul li .bd-wizard-step-indicator
{
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-top: 8.5px;
    margin-bottom: 8.5px;
    border-radius: 50%;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    transition: all 0.4s ease-in-out, box-shadow 0s;
}

.wizard .steps > ul li .bd-wizard-step-indicator::before
{
    /* content: "\F764"; */
    /* font-family: "Material Symbols Outlined"; */
    font-family: "Material Design Icons";
    font-size: 8px;
    width: 8px;
    height: 8px;
    opacity: 0.42;
    color: #6f787d;
    transition: all 0.4s ease-in-out;
}

.wizard .steps > ul li .bd-wizard-step-title
{
    font-size: 14px;
    font-weight: bold;
    color: #6f787d;
    margin-top: 5.5px;
}

.wizard .steps > ul li.current .bd-wizard-step-indicator, .wizard .steps > ul li.done .bd-wizard-step-indicator
{
    background-color: #FFBA0A;
    box-shadow: 0 0 0 7.5px rgba(0, 178, 52, 0.11);
}

.wizard .steps > ul li.current .bd-wizard-step-indicator::before, .wizard .steps > ul li.done .bd-wizard-step-indicator::before
{
    /* content: counter(step); */
    color: #fff;
    opacity: 1;
    font-size: 11px;
}

.wizard .steps > ul li.current .bd-wizard-step-title, .wizard .steps > ul li.done .bd-wizard-step-title
{
    font-size: 14px;
    color: #000000;
}

.wizard .content
{
    margin-bottom: 45px;
}

.wizard .content .title
{
    display: none;
}

.wizard .content .bd-wizard-step-title
{
    font-size: 20px;
    font-weight: bold;
    color: #7b7f89;
    margin-bottom: 45px;
}

.wizard .content p
{
    font-size: 16px;
    color: #030303;
}

.wizard .content .form-control
{
    padding: 16px 29px;
    min-height: 50px;
    border-radius: 4px;
    border: solid 1px #ececec;
}

.wizard .content .form-control::-webkit-input-placeholder
{
    color: #919aa3;
}

.wizard .content .form-control::-moz-placeholder
{
    color: #919aa3;
}

.wizard .content .form-control:-ms-input-placeholder
{
    color: #919aa3;
}

.wizard .content .form-control::-ms-input-placeholder
{
    color: #919aa3;
}

.wizard .content .form-control::placeholder
{
    color: #919aa3;
}

.wizard .actions > ul
{
    list-style: none;
    padding-left: 0;
    justify-content: space-between;
    display: flex;
}

.wizard .actions li a
{
    display: inline-block;
    border-radius: 6px;
    background-color: #FFBA0A;
    padding: 16px 30px;
    color: #fff;
    font-style: 15px;
    font-weight: bold;
}

.wizard .actions li a:hover
{
    text-decoration: none;
}

.wizard .actions li.disabled
{
    display: none;
}
