.custom-scrollbar::-webkit-scrollbar { width: 6px; height: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 20px; }
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

@keyframes native-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.native-spin { animation: native-spin 1s linear infinite; transform-origin: center; }
@keyframes native-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.native-pulse { animation: native-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }