/* Accordion */
.bullet-steps > li > a > .nm {
    display: block;
}

.bullet-steps > li > a > .icon-check-mark-outline {
    display: none;
}

.bullet-steps > li > a.done > .nm {
    display: none;
}

.bullet-steps > li > a.done > .icon-check-mark-outline {
    display: block;
}

.bullet-steps > li > .title-step {
    display: none;
}

.bullet-steps > li > a.current ~ .title-step {
    display: block;
    font-size: var(--font-size-body);
    font-weight: 500;
    font-family: "HelveticaNeue LT Pro 500";
}

li.link-redirect-cust {
    background-color: transparent;
    border-radius: 20px;
    color: var(--color-text-heading);
    font-weight: 500;
    font-family: "HelveticaNeue LT Pro 500";
}

.bullet-steps li a.current,
.bullet-steps li a.done,
.number-steps {
    background: var(--color-background-primary) !important;
    font-weight: 500;
    font-family: "HelveticaNeue LT Pro 500";
}

.bullet-steps li a {
    font-family: "HelveticaNeue LT Pro 500";
    font-weight: 500;
    background: var(--color-text-light-grey);
    font-size: 20px;
    padding-top: 18px;
    height: 40px;
    width: 40px;
}

.number-steps {
    border-radius: 50%;
    height: 36px;
    width: 36px;
    color: #fff;
    font-size: var(--font-size-body);
    display: flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    font-weight: 500;
    font-family: "HelveticaNeue LT Pro 500";
    line-height: 24px;
    text-align: center;
}

.title-steps {
    margin-left: 16px;
    padding-top: 5px;
    font-size: 20px !important;
    font-weight: 500;
    color: var(--color-text-heading);
    font-family: "HelveticaNeue LT Pro 500";
}

.box-wrapper .box-content:not(:first-child) {
    margin-top: -28px !important;
}

.box-content .panel-body.fade:not(.show) {
    display: none !important;
}

.box-wrapper .box-content {
    border-radius: 8px 8px 0 0;
    box-shadow: none !important;
    border: 1px solid #d1d1d1;
}
/* end of Accordion */
/* accordion with icons */
.accordion-header {
    cursor: pointer;
}
.accordion-header.collapsed:after {
    content: "\e9a4" !important;
    font-family: "appkit4-font";
    font-weight: 500;
    float: right;
}
.accordion-header:after {
    content: "\ea67" !important;
    font-family: "appkit4-font";
    font-weight: 500;
    float: right;
}
/* end of accordion with icons */
/* start of bullet navigation */
.bullet-steps {
    list-style: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.bullet-steps li {
    display: inline-flex;
    margin-right: 10px;
    align-items: center;
}

.bullet-steps li a {
    padding: 15px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    color: #FFF;
    background: #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.bullet-steps li a.current {
    background: #E45C2B !important
}

.bullet-steps > li > a .nm,
.bullet-steps > li > a.done .nm {
    font-style: normal;
}

.accordion-item {
    color: var(--color-text-heading);
    background-color: #fff;
    border: 1px solid var(--color-background-border);
}
/* end of bullet navigation */