.heriType{
    color: white;
    font-weight: bold;
    width: 182px;
    background: #c43527;
    text-wrap: nowrap;
    padding: 0px 20px;
    border-radius: 50px;
}

.button-group {
    display: flex;
    gap: 10px;
}

.btn-option {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ccc;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    min-width: 171px;
    background: white;
    color: #333;
    font-weight: bold;
    
}

.btn-option img {
    width: 40px;
    height: 25px;
}

.btn-option.active {
    background-color: #c43527;
    color: white;
    border: none;
}

.btn-option.active img {
    filter: brightness(0) invert(1); /* icon màu trắng */
}

.steps-container {
    display: flex;
    background: #F8F9F9;
    justify-content: space-around;
    align-items: center;
    /* background-color: #fff; */
    border-radius: 4px;
    /* padding: 30px; */
    max-width: 100%;
    margin: 30px auto;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
}

.step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    flex: 1;
}

.step-number {
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;
    color: #444;

    margin-bottom: 10px;
    position: absolute;
    top: 10px;
    left: 24px;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
}

.step img {
    width: 150px;
    /* margin-bottom: 10px; */
}

.step-desc {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.arrow {
    font-size: 30px;
    color: #c43527;
    margin: 0 10px;
}
.hp_icon {
    width: 30px;
    /* height: 30px; */
}
.hp_icon   {
    background-color: #c43527;
}

.active > .hp_icon  {
    background-color: white;
}