Rýchla expedícia – tovar skladom odosielame ihneď a doručenie býva 1–2 pracovné dni.
Skladom = doručenie 1–2 pracovné dni.
/* default – obě schovat */ .info-desktop, .info-mobile { display: none !important; } /* jen DESKTOP */ @media (min-width: 769px) { .info-desktop { display: inline-flex !important; } .info-mobile { display: none !important; } } /* jen MOBIL */ @media (max-width: 768px) { .info-desktop { display: none !important; } .info-mobile { display: inline-flex !important; } } /* blikající tečka */ .blink-dot { width: 10px; height: 10px; border-radius: 50%; background: #14ae5c; display: inline-block; margin-right: 6px; animation: pulse 1.4s infinite ease-in-out; } @keyframes pulse { 0% { opacity: .2; transform: scale(.8); } 50% { opacity: 1; transform: scale(1); } 100% { opacity: .2; transform: scale(.8); } }