#hpsalespopup {
    visibility: hidden;
    margin-left: -125px;
    position: fixed;
    z-index: 100000001 !important;
    left: 5%;
    bottom: 30px;
}

#hpsalespopup.show {
    visibility: visible;
    -webkit-animation: fadein 1s, fadeout 2.5s 5.5s;
    animation: fadein 1s, fadeout 2.5s 5.5s;
}
.pop-link:hover{
    text-decoration: underline !important;
}
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}