.wrapper-icon {
    background: #f6f6f6;
    padding: 30px 40px 40px;
    border-radius: 10px;
    max-width: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
   
    margin: 0 auto;
    /* animation-name: hue-rotate;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-play-state: running; */
}

@keyframes hue-rotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.wrapper-icon .section {
    height: 140px;
    width: 140px;
    overflow: hidden;
}

.wrapper-icon .section .emojis {
    height: 500%;
    display: flex;
    flex-direction: column;
}

.wrapper-icon .section li {
    height: 20%;
    width: 100%;
    list-style: none;
    transition: all 0.3s ease;
}

.section li img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.wrapper-icon .slider {
    margin-top: 40px;
    height: 12px;
    width: 100%;
    position: relative;
    background: #d9d9d9;
    border-radius: 50px;
}

.slider input {
    height: 100%;
    width: 100%;
    -webkit-appearance: none;
    position: absolute;
    background: none;
    outline: none;
    top: 0;
    z-index: 2;
}

.slider input::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background: none;
    cursor: pointer;
}

.slider .progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(45deg, #FD8D58, #DC611E);
    border-radius: 50px;
    position: relative;
}

body.angry .progress-bar {
    background: linear-gradient(45deg, #FD8D58, #DC611E);
}

body.confuse .progress-bar {
    background: linear-gradient(45deg, #FEA954, #DA7315);
}

body.like .progress-bar {
    background: linear-gradient(45deg, #FED151, #DE981F);
}

.slider .thumb {
    height: 25px;
    width: 25px;
    background: #DC611E;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 2px;
}

.slider .thumb span {
    height: 100%;
    width: 100%;
    border: 2px solid #f6f6f6;
    border-radius: 50%;
    background: linear-gradient(#FD8D58, #DC611E);
    display: block;
}
