#special-prices-month{
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 250px;
    height: 70px;
    color: white;
    background: linear-gradient(90deg, rgba(0,31,63,1) 0%, rgba(0,105,213,1) 33%, rgba(0,31,63,1) 66%, rgba(0,105,213,1) 100%);
    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;
}

#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;
}

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