/* Wizard */

.wizard {
    overflow: hidden;
}

.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: 100%; */
    flex: auto;
    /* box-shadow: 0 0 2rem 0 rgba(136,152,170,.15); */
}

.wizard .steps>ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    margin-bottom: 0;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(0,0,0,.05);
}

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

/* .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: #096afc;
    margin-right: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@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: 16px;
    /* font-weight: bold; */
    color: #000000;
    width: 100%;
}

@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 {
    color: #fff;
    background-color: #096afc;
} */

/* .wizard .steps>ul li.done .bd-wizard-step-icon {
    color: #fff;
    background-color: #8896ee;
} */

.wizard .steps>ul li.current {
    /* border-top-left-radius: 10px;
    border-top-right-radius: 10px; */
    overflow: hidden;
    background: #d9d9d9;
}

.wizard .steps>ul li.current a {
    background-color: #fff;
    font-weight: 900;
    box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
    /* border-top-left-radius: 10px;
    border-top-right-radius: 10px; */
    overflow: hidden;
}

.wizard .content {
    flex: 1 1 auto;
    /* padding: 1.5rem; */
    background-color: #fff;
    min-height: 420px;
}

@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 .actions {
    display: none;
    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;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

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

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

.wizard .actions li a {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    display: inline-block;
    padding: 0.625rem 1.25rem;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    text-align: center;
    vertical-align: middle;
    color: #525f7f;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    background-color: transparent;
}

.wizard .actions li a:hover {
    text-decoration: none;
    color: #525f7f;
}

.wizard .actions li a:focus {
    outline: 0;
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.wizard .actions li a:disabled {
    opacity: 0.65;
    box-shadow: none;
}

.wizard .actions li a {
    color: #fff;
    border-color: #006cff;
    background-color: #006cff;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.wizard .actions li a:hover {
    color: #fff;
    border-color: #006cff;
    background-color: #006cff;
}

.wizard .actions li a:focus {
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(94, 114, 228, 0.5);
}

.wizard .actions li a:disabled {
    color: #fff;
    border-color: #006cff;
    background-color: #006cff;
}