article#newsletter-signup-popup {
    position: fixed;
    right: 0;
    z-index: 100;
    bottom: 100px;
    display: none!important;
}

article#newsletter-signup-popup.hide {
    -webkit-animation: slide 0.5s both;
    -o-animation: slide 0.5s both;
    animation: slide 0.5s both;
}

article#newsletter-signup-popup.slideOut:not(.hide) {
    -webkit-animation: slideOut 250ms both;
    -o-animation: slideOut 250ms both;
    animation: slideOut 250ms both;
}

article#newsletter-signup-popup.slideIn:not(.hide) {
    -webkit-animation: slideIn 250ms both;
    -o-animation: slideIn 250ms both;
    animation: slideIn 250ms both;
}

article#newsletter-signup-popup .LV_invalid {
    margin-top: 12px;
    display: block;
    bottom: 50px;
    background: white;
    padding: 12px;
    border-radius: 4px;
    color: red;
    z-index: 100;
}

/* --------------------------  ELOQUA form validation styles  ----------------------------- */

article#newsletter-signup-popup .LV_valid {
    display: none;
}

article#newsletter-signup-popup .LV_invalid:before {
    content: "* ";
}

article#newsletter-signup-popup .close-signup {
    width: 30px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 0px;
    z-index: 110;
}

/* --------------------------  Close Button  ----------------------------- */

article#newsletter-signup-popup .close-signup p {
    color: white;
    cursor: pointer;
    font-family: Ionicons;
    font-size: 18px;
    font-weight: bolder;
}

/* --------------------------  Slide Animation  ----------------------------- */
@-webkit-keyframes slide {
    100% { right: -340px; }
}
@keyframes slide {
    100% { right: -340px; }
}

@-webkit-keyframes slideOut {
    100% { right: -400px; }
}
@keyframes slideOut {
    100% { right: -400px; }
}

@-webkit-keyframes slideIn {
    0% { right: -400px; }
    100% { right: 0; }
}
@keyframes slideIn {
    0% { right: -400px; }
    100% { right: 0; }
}

/*!* --------------------------  Slide Out Animation  ----------------------------- *!*/
/*@keyframes hide {*/
/*    100% { right: -340px; }*/
/*}*/

@media (min-width: 480px) {
    article#newsletter-signup-popup {
        position: fixed;
        right: 0;
        z-index: 100;
        bottom: 100px;
        margin-right: 20px;
    }
}