.custom-mood-slider {
    --mood-value: 12;
    position: relative;
    background: #FFF;
    border-radius: 16px;
    min-height: 236px;
    padding: 30px 34px 28px;
    color: #191919;
    user-select: none;
}

.custom-mood-slider__sparkle {
    position: absolute;
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
    user-select: none;
}

.custom-mood-slider__sparkle:nth-of-type(1) {
    left: 31.5%;
    top: -32px;
    color: #191919;
}

.custom-mood-slider__sparkle:nth-of-type(2) {
    left: 27.4%;
    top: 11px;
    color: #ff4187;
}

.custom-mood-slider__title {
    margin: 0 0 52px;
    text-align: center;
    font-size: clamp(26px, 2.2vw, 48px);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.custom-mood-slider__control-wrap {
    position: relative;
    margin: 0 auto;
    width: min(908px, 100%);
}

.custom-mood-slider__input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 100px;
    background: #d9d9d9;
    cursor: ew-resize;
    outline: none;
}

.custom-mood-slider__input::-webkit-slider-runnable-track {
    height: 12px;
    border-radius: 100px;
    background: #d9d9d9;
}

.custom-mood-slider__input::-moz-range-track {
    height: 12px;
    border-radius: 100px;
    background: #d9d9d9;
}

.custom-mood-slider__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid #36eaf6;
    margin-top: -26px;
    background: #36eaf6;
    box-shadow: 0 8px 22px rgba(25, 25, 25, 0.2);
}

.custom-mood-slider__input::-moz-range-thumb {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid #36eaf6;
    background: #36eaf6;
    box-shadow: 0 8px 22px rgba(25, 25, 25, 0.2);
}

.custom-mood-slider__thumb-icon {
    position: absolute;
    top: 50%;
    left: calc((32px + (var(--mood-value) * 1%)) - (64px * (var(--mood-value) / 100)));
    transform: translate(-50%, -50%);
    pointer-events: none;
    font-size: 34px;
    line-height: 1;
    /*transition: left 140ms ease-out, transform 140ms ease-out;*/
    filter: saturate(1.2);
}

.custom-mood-slider__thumb-icon img{
   display: block!important;
	margin:0!important;
}


.custom-mood-slider__hint {
    margin-top: 24px;
    text-align: center;
    font-size: clamp(16px, 1.25vw, 21px);
    font-weight: 700;
    color: #191919;
}

.custom-mood-slider__labels {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    opacity: 0.75;
}

.custom-mood-slider-fly {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    user-select: none;
    will-change: transform, opacity;
    animation-name: custom-mood-fly;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.04, 0.42, 0.36, 0.99);
    text-shadow: 0 8px 18px rgba(25, 25, 25, 0.22);
}

@keyframes custom-mood-fly {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(0.6) rotate(0deg);
    }
    10% {
        opacity: 1;
        transform: translate3d(calc(var(--drift-x) * 0.08), calc(var(--drift-y) * 0.08), 0) scale(0.95) rotate(calc(var(--spin) * 0.25));
    }
    100% {
        opacity: 0;
        transform: translate3d(var(--drift-x), var(--drift-y), 0) scale(1.24) rotate(var(--spin));
    }
}

@media (max-width: 991px) {
    .custom-mood-slider {
        padding: 28px 24px 26px;
    }

    .custom-mood-slider__title {
        margin-bottom: 46px;
        font-size: clamp(22px, 5vw, 34px);
    }

    .custom-mood-slider__thumb-icon {
        left: calc((32px + (var(--mood-value) * 1%)) - (64px * (var(--mood-value) / 100)));
    }

    .custom-mood-slider__sparkle:nth-of-type(1) {
        left: 12%;
        top: -29px;
    }

    .custom-mood-slider__sparkle:nth-of-type(2) {
        left: -1%;
        top: -17px;
    }
}