body {
    font-family: 'Karla', sans-serif;
    background-color: #f2f3f8;
}

/* Wizard */
.wizard a:hover {
    text-decoration: none;
}

.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 > ul {
    list-style: none;
    padding-left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
}

    .wizard .steps > ul li {
        width: 270px;
        max-width: calc(25% - 6px);
    }

        .wizard .steps > ul li a {
            display: inline-block;
            width: 100%;
            height: 100%;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            background-color: rgba(153, 155, 163, 0.1);
            padding: 28px 30px 24px;
        }

@media (max-width: 767px) {
    .wizard .steps > ul li a {
        padding: 15px 10px;
    }
}

@media (max-width: 767px) {
    .wizard .steps > ul li a .media {
        display: block;
    }
}

.wizard .steps > ul li .bd-wizard-step-icon {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background-color: #e1e1e1;
    font-size: 14px;
    line-height: 34px;
    text-align: center;
    color: #4a2950;
    margin-right: 11px;
}

@media (max-width: 767px) {
    .wizard .steps > ul li .bd-wizard-step-icon {
        margin: 0 auto;
    }
}

.wizard .steps > ul li .bd-wizard-step-title {
    line-height: 1;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
}

@media (max-width: 767px) {
    .wizard .steps > ul li .bd-wizard-step-title {
        display: none;
    }
}

.wizard .steps > ul li .bd-wizard-step-subtitle {
    line-height: 1;
    font-size: 14px;
    color: #c8c8c8;
}

@media (max-width: 767px) {
    .wizard .steps > ul li .bd-wizard-step-subtitle {
        display: none;
    }
}

.wizard .steps > ul li.current .bd-wizard-step-icon, .wizard .steps > ul li.done .bd-wizard-step-icon {
    background-color: #4a2950;
    color: #fff;
}

.wizard .steps > ul li.current a {
    background-color: #fff;
}

.wizard .content {
    padding: 100px 35px 20px 35px;
    background-color: #fff;
    height: 450px;
}

@media (max-width: 767px) {
    .wizard .content {
        padding-left: 20px;
        padding-right: 20px;
        min-height: auto;
    }
}

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

.wizard .content .content-wrapper {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wizard .content .section-heading {
    font-weight: bold;
    color: #030303;
    margin-bottom: 22px;
}

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

.wizard .content .form-control {
    padding: 26px 25px;
    min-height: 50px;
    max-width: 550px;
    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 {
    padding: 0 35px 35px;
    background-color: #fff;
}

@media (max-width: 767px) {
    .wizard .actions {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.wizard .actions > ul {
    list-style: none;
    padding-left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f4;
}

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

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

.wizard .actions li:not(.disabled) + li, .wizard .actions li:not(:first-child):last-child {
    margin-left: 15px;
}


div#wizard li[role=tab].disabled a,
input[type=text]:read-only {
    cursor: not-allowed;
}

input[type=radio],
input[type=checkbox],
label[for],
.cursor-pointer {
    margin-right: 7px;
    cursor: pointer;
}

input:read-only:focus {
    box-shadow: none !important;
}

span.validation-error {
    color: red;
    padding-left: 5px;
    font-size: 13px;
    display: none;
}

.wizard-mleft-20 {
    margin-left: -20px;
}

li a[href='#previous'] {
    background-color: #919191 !important;
}

    li a[href='#next'].disabled,
    li a[href='#previous'].disabled {
        background-color: #dee2e6 !important;
        color: #838383!important;
        cursor: not-allowed;
    }

    li a[href='#previous']:not(.disabled):active {
        background-color: #5e5e5e !important;
    }

li a[href='#next']:not(.disabled):active,
li a[href='#finish']:not(.disabled):active {
    background-color: #0d8f6e !important;
}

.loader-overlay {
    position: absolute;
    width: 316px;
    height: 75px;
    top: 460px;
    left: 40%;
    background-color: #cdcdcd;
    z-index: 2;
    border-radius: 8px;
    color: #464141;
    padding: 23px 82px;
}

.loading-title {
    position: relative;
    top: -9px;
    left: 8px;
    font-size: 20px;
}
