.wdk-wizard {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    border: none !important;
    min-height: 48px;
    margin-bottom: 1rem;
}

.wdk-wizard>* {
    flex: initial !important;
}

.wdk-wizard a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border: none !important;
}

.wdk-wizard .nav-item:not(:last-child) a:after {
    content: '';
    flex: 1;
    display: block;
    margin-left: 12px;
    width: 120px;
    border-top: 1px dashed var(--wizard-line-color);
}

.wdk-wizard h4 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 41px;
    height: 41px;
    font-size: 20px;
    margin: 0 10px 0 0;
    color: var(--wizard-counter-text-color) !important;
    background-color: var(--wizard-counter-background-color);
    border-radius: 100%;
    border: 1px solid var(--wizard-border-color);
    /* Border and box shadow must to have same color */
    box-shadow: 0px 0px 1px var(--wizard-border-color);
    /* Border and box shadow must to have same color */
}

.wdk-wizard h4:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transform: translate(-50%, -50%);
}

.wdk-wizard .nav-link.active h4:after {
    border: 6px solid var(--wizard-border-color);
}

.wdk-wizard .nav-link small {
    font-size: 16px;
    font-weight: 500;
    color: var(--wizard-label-text-color) !important;
}

.wdk-wizard .nav-link small.text-muted:first-letter {
    text-transform: lowercase;
}

.wdk-wizard .nav-link small.text-muted.capitalized:first-letter {
    text-transform: capitalize !important;
}

.wdk-wizard .nav-link.active h4 {
    width: 46px;
    height: 46px;
    border: none;
}

.wdk-wizard-fixed-buttons {
    position: fixed;
    bottom: 12px;
    right: 24px;
    z-index: 4003;
}

body.alert-show.alert-bottom .wdk-wizard-fixed-buttons {
    bottom: calc(12px + 62px);
}

@media (max-width: 992px) {
    .wdk-wizard-fixed-buttons {
        display: flex;
        justify-content: space-between;
        width: 56vw;
    }
}

.wdk-wizard.nav.nav-pills .nav-item.nav-link,
.wdk-wizard.nav.nav-pills .nav-item .nav-link {
    background-color: transparent !important;
}

@media (max-width: 992px) {
    .nav.wdk-wizard {
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
    }

    .nav.wdk-wizard .nav-item {
        scroll-snap-align: start;
        width: 100%;
        min-width: 100%;
    }

    .wdk-wizard .nav-item:not(:last-child) a:after {
        display: none;
    }

    .wdk-wizard .nav-item .nav-link h4 {
        border: none;
        box-shadow: none;
        background-color: initial !important;
        font-size: 18px;
        margin: 0;
        width: 24px;
    }

    .wdk-wizard .nav-link.active h4:after {
        border: none;
    }
}

.wdk-wizard.nav-slim {
    flex-flow: nowrap;
    margin: 0;
    min-height: 0;
}

.wdk-wizard.nav-slim .nav-item:not(:last-child) a:after {
    display: none;
}

.wdk-wizard.nav-slim .nav-item {
    width: 100%;
    margin: 2px;
}

.wdk-wizard.nav-slim .nav-item a {
    border-radius: 4px;
    height: 8px;
    background-color: var(--grey-01);
    transition: .3s;
}

.wdk-wizard.nav-slim .nav-item a:hover {
    height: 8px;
    background-color: var(--tertiary);
    transition: .3s;
}

.wdk-wizard.nav-slim .nav-item a.active {
    background-color: var(--tertiary);
    transition: .3s;
}

.wdk-wizard.nav-slim .nav-item a.active:hover {
    background-color: var(--tertiary-dark);
    transition: .3s;
}

.wdk-wizard.nav-slim ~ .tab-content {
    box-shadow: none;
    padding: 0;
    margin-top: 16px;
}

.wdk-wizard.nav-slim.nav-modal ~ .tab-content .tab-pane,
.wdk-wizard.nav-slim.nav-modal ~ .tab-content .tab-rare {
    height: 100%;
    max-height: calc(100vh - 300px);
    padding-right: 24px;
    margin-right: -24px;
    overflow: auto;
}

.wdk-wizard.nav-slim.nav-modal ~ .tab-content .tab-rare.inner {
    max-height: calc(100vh - 468px);
}

.tab-rare {
	scrollbar-width: thin !important;
}

.tab-rare::-webkit-scrollbar-track {
	background-color: var(--white-02) !important;
	-webkit-box-shadow: inset 0 0 6px var(--white-02) !important;
    box-shadow: inset 0 0 6px var(--white-02) !important;
}
.tab-rare::-webkit-scrollbar {
	background-color: var(--white-02) !important;
	width: 5px !important;
	height: 5px;
}
.tab-rare::-webkit-scrollbar-thumb {
	background-color: var(--scroll-thumb-base-custom-color) !important;
	border-radius: 10px;
}
