@media (max-width:767px) {
    .animate-pulse {
        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    @keyframes pulse {
        0%, 100% {
            opacity: 1;
        }

        50% {
            opacity: 0.5;
        }
    }
    .w_fomo_wrapper{
        bottom: inherit;
        top: 12px;
        left: inherit;
        right: 20px;
        -webkit-transform: translateY(-120%);
        transform: translateY(-120%);
    }
    .notify {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}