.ring-steps {
    background: #f5f5f5;
    border: 1px solid #ddd;
    overflow: hidden;
    font-size: 14px;
}

.step-title {
    font-weight: 600;
    white-space: nowrap;
    position: relative;
}

.step {
    position: relative;
    padding: 6px 0px 6px 40px;
    background: #f5f5f5;
    border-left: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
    flex:1;
    min-height: 92px;
}

.step-title::after{
    content: "";
    position: absolute;
    right: -20px;
    top: -36px;
    width: 0;
    height: 0;
    border-top: 46px solid transparent;
    border-bottom: 46px solid transparent;
    border-left: 20px solid #f5f5f5;
    z-index: 2;
}

.step-title::before{
    content: "";
    position: absolute;
    right: -20px;
    top: -36px;
    width: 0;
    height: 0;
    border-top: 46px solid transparent;
    border-bottom: 46px solid transparent;
    border-left: 20px solid #f52a2a;
    z-index: 2;
}

.step::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0px;
    width: 0;
    height: 0;
    border-top: 46px solid transparent;
    border-bottom: 46px solid transparent;
    border-left: 20px solid #f5f5f5;
    z-index: 2;
}


.step::before {
    content: "";
    position: absolute;
    right: -20px;
    top: 0px;
    width: 0;
    height: 0;
    border-top: 46px solid transparent;
    border-bottom: 46px solid transparent;
    border-left: 20px solid #f52a2a;
    z-index: 2;
}

.step:last-child::after,
.step:last-child::before {
    display: none;
}

/* Active Step */
.step.active {
    background: #f7dce3;
}

.step.active::after {
    border-left-color: #f7dce3;
}

/* Step Number */
.step-number {
    font-size: 28px;
    font-weight: 600;
}

.step-text {
    white-space: nowrap;
    font-weight: 600;
}

.step .step-product-title,
.step .step-product-title .setting-title,
.step .step-product-title .gemstone-title{
    font-size: 12px;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
}


