.steper .nav {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    margin: 0;
}

.steper code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
        monospace;
}


/* .steper .box {
    width: 800px;
    border: 1px solid #ddd;
} */

.steper .box .steps {
    border-bottom: 1px solid #ddd;
}

.steper .box .steps ul {
    overflow: hidden;
}

.steper .box .steps ul li div {
    color: #999;
    padding: 10px 0 15px 45px;
    position: relative;
    background: #f5f5f5;
    width: 165px;
}

.steper .box .steps ul li div span {
    font-size: 13px;
}

.steper .box .steps ul li:first-child div {
    width: 135px;
    padding-left: 15px;
}

.steper .box .steps ul li div::before {
    content: " ";
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #ddd;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 1;
    margin-left: 1px;
}

.steper .box .steps ul li div::after {
    content: " ";
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #f5f5f5;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 2;
}

.steper .box .steps ul li.done div {
    border-color: #6617cd !important;
    color: #fff !important;
    background: #6617cd !important;
}

.steper .box .steps ul li.done div::after {
    border-left: 30px solid #6617cd;
}

.steper .box .steps ul li.active div {
    border-color: #325ef0 !important;
    color: #fff !important;
    background: #325ef0 !important;
}

.steper .box .steps ul li.active div::after {
    border-left: 30px solid #325ef0;
}

.steper .box .step-component {
    padding: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steper .box .btn-component {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}





/* Simily */

.smileys-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 10px;
}

.smiley {
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.smiley-text{
    font-size: 10px;
}

.smiley-selected {
    transform: scale(1.2);
}