/* Only the Jinju Yudeung booking progress component. */
.jinjuyudeung-theme .jinju-progress-wrap {
    position: sticky;
    top: 76px;
    z-index: 9;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(239, 200, 105, .3);
    background:
        radial-gradient(ellipse at 50% 0, rgba(222, 173, 87, .12), transparent 65%),
        linear-gradient(100deg, #10132d, #241a3c 65%, #321d3c);
    box-shadow: 0 8px 20px rgba(16, 12, 35, .12);
}

.jinjuyudeung-theme .jinju-progress {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: min(900px, 100%);
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.jinjuyudeung-theme .jinju-progress li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #c4bdd3;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.jinjuyudeung-theme .jinju-progress li:not(:last-child)::after {
    position: absolute;
    top: 16px;
    left: calc(50% + 25px);
    width: calc(100% - 50px);
    height: 1px;
    content: '';
    background: rgba(199, 189, 216, .28);
}

.jinjuyudeung-theme .jinju-step-number {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid #6e6384;
    border-radius: 50%;
    color: #d9d2e5;
    background: #29223f;
    font-size: 13px;
    font-weight: 700;
}

.jinjuyudeung-theme .jinju-progress .jinju-step-label {
    margin: 0;
    color: inherit;
    font: inherit;
    letter-spacing: normal;
    white-space: nowrap;
}

.jinjuyudeung-theme .jinju-progress .is-active {
    color: #ffe5a0;
    font-weight: 800;
}

.jinjuyudeung-theme .jinju-progress .is-active .jinju-step-number {
    color: #302014;
    border-color: #ffe5a0;
    background: linear-gradient(135deg, #ffe8a3, #edc45b 60%, #dca346);
    box-shadow: 0 0 0 4px rgba(239, 196, 91, .12), 0 0 18px rgba(239, 196, 91, .23);
}

.jinjuyudeung-theme .jinju-progress .is-complete {
    color: #e3cea1;
}

.jinjuyudeung-theme .jinju-progress .is-complete .jinju-step-number {
    color: #f4d992;
    border-color: #b59455;
    background: #443442;
    font-size: 0;
}

.jinjuyudeung-theme .jinju-progress .is-complete .jinju-step-number::before {
    content: '\2713';
    font-size: 15px;
}

.jinjuyudeung-theme .jinju-progress .is-complete::after {
    background: linear-gradient(90deg, #b59455, rgba(181, 148, 85, .45));
}

@media (max-width: 575.98px) {
    .jinjuyudeung-theme .jinju-progress-wrap {
        padding: 12px 8px;
    }

    .jinjuyudeung-theme .jinju-progress li {
        gap: 6px;
        font-size: 10px;
    }

    .jinjuyudeung-theme .jinju-step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .jinjuyudeung-theme .jinju-progress li:not(:last-child)::after {
        top: 14px;
        left: calc(50% + 19px);
        width: calc(100% - 38px);
    }
}
