﻿/* Container */
.breadcrumb {
    width: 100%;
    height: 100%;
    padding: 5px 20px;
    margin-bottom: 0 !important;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-family: Inter, sans-serif;
}

/* Step circle */
.step-circle {
    width: 33px;
    height: 33px;
    padding: 0 9px;
    border-radius: 16.5px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #E5E5E5;
}

    .step-circle.active {
        background: #FFDE00;
    }

.step-number {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: rgba(0, 0, 0, 0.40);
}

.step-circle.active .step-number {
    color: black;
}

/* Step label */
.step-label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #999;
}

    .step-label.active {
        color: #333;
    }

/* Arrows */
.arrow {
    --arrowSize: 24px;
    width: var(--arrowSize);
    height: var(--arrowSize);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}


.arrow-chevron {
    position: absolute;

}

/* Dash line */
.arrow-line {
    width: 16px;
    height: 2px;
    background: #898989;
    top: 9px;
}

/* Chevron */
.arrow-chevron {
    position: absolute;
    inset: 0; /* fill parent */
    background: url('../../images/shared/simple-arrow-right.svg') center / contain no-repeat;
}

@media (max-width: 991px) 
{
    .breadcrumb {
        gap: 6px;
        padding: 5px 12px;
    }
    .step-label{
        display:none;
    }

    .arrow {
        --arrowSize: 18px;
    }

    .arrow-line {
        width: 12px;
    }
}