/* 
.capsule ul::after {
    content: '';
    display: block;
    width: calc(100% / 3);
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: rgba(0, 0, 0, 0, 0);
    transition: all 0.15s;
} */

.capsule ul li {
    width: calc(100% / 3) !important;
    text-align: center;
    flex: none;
    user-select: none;
    cursor: pointer;
    position: relative;
    padding-bottom: 10px;
    font-size: 18px;
}


.capsule ul li.current::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #EF3B24;
    transition: all 0.15s;
}

.capsule ul::after {
    width: calc(100% / 3) !important;
    background-color: rgba(0, 0, 0, 0) !important;
}