.wishlist-success {
    position: fixed;
    bottom: -75px;
    opacity: 0;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.16rem;
    font-weight: bold;
    text-align: center;
    color: #008245;
    z-index: 2000;
    background: #ffffff;
    padding: 16px 32px;
}

@media screen and (max-width: 639px) {
    .wishlist-success {
        width: 95%;
        font-size: 1rem;
        padding: 16px;
    }
}

.wishlist-success .glyphicon-ok {
    margin-right: 0.75rem;
}

.wishlist-success .glyphicon-ok:before {
    display: inline-block;
    width: 24px;
    height: 24px;
    font-size: 1rem;
    border-radius: 50%;
    background: #008245;
    color: #ffffff;
    font-size: 1rem;
    line-height: 24px;
    position: relative;
    margin-top: -4px;
}

.wishlist-success span {
    display: inline-block;
    vertical-align: middle;
}

.wishlist-success.slidein {
    animation: slideIn .25s ease-in forwards;
}

.wishlist-success.slideout {
    animation: slideOut .25s ease-in forwards;
}

@keyframes slideIn {
    0% {
        bottom: -75px;
        opacity: 0;
    }

    100% {
        bottom: 100px;
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        bottom: 100px;
        opacity: 1;
    }

    100% {
        bottom: -75px;
        opacity: 0;
    }
}
