#special-prices-month{
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 250px;
    height: 70px;
    color: white;
    background: linear-gradient(90deg,rgba(1, 104, 71, 1) 30%, rgba(255, 255, 255, 1) 50%, rgba(206, 17, 38, 1) 70%);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 5px 5px white;
    -webkit-box-shadow: 1px 1px 5px 3px white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 18px;
    font-weight: bold;
    transition: all .3s ease;
    z-index: 1000;
}

#special-prices-month:hover{
    background: linear-gradient(to right, #ecc440 0%, #fffa8a 25%, #ddac17 50%, #ffff95 75%);
    box-shadow: 0px 0px 5px 5px #121212;
    -webkit-box-shadow: 1px 1px 5px 3px #121212;
    /*transform: scale(1.1);*/
    /*color: #121212;*/
}

#special-prices-month a{
    color: inherit;
	text-decoration: none;
}

#special-prices-month-button{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

#special-prices-month-button > label{
    margin: 0 auto;
    cursor: pointer;
    color: black;
    text-shadow:
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px  1px 0 white,
        1px  1px 0 white;
}

.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    opacity: 0.9;
    pointer-events: none; /* Para no bloquear el hover */
}


/* Animación de caída */
@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(150px) rotate(360deg);
        opacity: 0;
    }
}

@media only screen and (max-width: 599px){
    #special-prices-month{
        left: 10px;
        bottom: 10px;
        width: 190px;
        height: 50px;
        font-size: 14px;
    }
}