#thresholdSlider {
    width: 100%;
    height: 1.8em;
    padding: 0em 1em;
    -webkit-appearance: none;
}

#thresholdSlider::-webkit-slider-runnable-track {
    width: 300px;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}

#thresholdSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: rgb(83,133,67);
    margin-top: -4px;
}

#thresholdSlider:focus {
    outline: none;
}

#thresholdSlider:focus::-webkit-slider-runnable-track {
    background: #ccc;
}

#thresholdSlider:before, #thresholdSlider:after {
    font-family: newsprint;
    padding: 0 1em;
}

#thresholdSlider:before {
    content: "lighter";
}

#thresholdSlider:after {
    content: "darker";
}

.stampifying {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: absolute;
    z-index: 99;
    width: 100%;
    background: white;
}

.stampifying-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.fpd-product-stage .stampifying .fa-stamp {
    font-size: 2em;
    margin: 10px;
    animation: spinPause 1.5s infinite;
}

@keyframes spinPause {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
        transform: rotate(1800deg);
    }
} 