/* Bonded group  */
.bonded-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.bonded-group .bonded-item > .wdk-circle {
    align-self: self-start;
    border-width: 2px;
    background-color: var(--white-01);
    z-index: 1;
}

.bonded-group .bonded-item .wdk-circle i {
    font-size: 18px;
}

.bonded-item > :first-child {
    margin-right: 6px;
}

.bonded-item:last-child {
    margin-bottom: 0;
}

/* Bonded Line */
.bonded-group .bonded-item:not(:last-child):before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 31px;
    left: 20px;
    z-index: 0;
}

/* Bonded size */
.bonded-group.bonded-sm .bonded-item:not(:last-child):before {
    left: 16px;
}

.bonded-group.bonded-sm .wdk-circle {
    height: 32px;
    width: 32px;
    min-height: 32px;
    min-width: 32px;
    font-size: 14px !important;
    line-height: 1.5;
    background-color: white;
    z-index: 2;
}

@media (max-width: 576px) {
    .bonded-group .bonded-item:not(:last-child):before {
        left: 16px;
    }
    
    .bonded-group .wdk-circle {
        height: 32px;
        width: 32px;
        min-height: 32px;
        min-width: 32px;
        font-size: 14px !important;
        line-height: 1.5;
        background-color: white;
        z-index: 2;
    }

    /* Mobile new training modal journey summary */
    .bonded-group .bonded-item .wdk-group.g0 {
        max-width: calc(100% - 32px);
    }

    .bonded-group .bonded-item .accordion {
        max-width: 100%;
    }

    .bonded-group .bonded-item .accordion-collapse {
        margin-left: 0 !important;
    }
}

/* Bonded colors */
.bonded-group .bonded-item:before {
    background-color: var(--tertiary);
}

.bonded-group.bonded-light .bonded-item:before {
    background-color: var(--grey-02);
}

.bonded-group.bonded-light .bonded-item > .wdk-circle {
    border-color: var(--grey-02);
}

/* Bonded status */
.bonded-group .bonded-item.success > .wdk-circle,
.bonded-group .bonded-item.success > .wdk-circle i  {
    border-color: var(--green-04);
    color: var(--green-04);
}

/* .bonded-group.light-blue .bonded-item.success {
    background-color: var(--green-04);
} */
