


@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

#anchor-ad-mobile {
    position: fixed;
    width: 100%;
    height: 100px;
    /*background-color: #bd262b;*/
    margin: 0% auto;
    bottom: -1%;
    left: 0%;
    z-index: 999;
    transition: transform 0.5s ease-in-out;
    animation: slideUp 0.5s forwards;
}



@media(min-width:768px) {
    #anchor-ad-mobile {
        display: none;
    }
}