/* =========================================================================
   assets/css/admin.css — Master Glassmorphism Admin Design System
   ========================================================================= */

:root {
  --gold: #fcb900;
  --gold-glow: rgba(252, 185, 0, 0.25);
  --brand: #6366f1;
  --brand-glow: rgba(99, 102, 241, 0.25);
  --dark: #080911;
  --dark-card: rgba(16, 18, 28, 0.85);
  --dark-glass: rgba(22, 25, 40, 0.65);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f8fafc;
  --muted: #94a3b8;
  --green: #10b981;
  --green-glow: rgba(16, 185, 129, 0.2);
  --red: #ef4444;
  --red-glow: rgba(239, 68, 68, 0.2);
  --orange: #f59e0b;
  --orange-glow: rgba(245, 158, 11, 0.2);
  --blue: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
  font-family: 'Inter', system-ui, -apple-system, sans-serif; 
  background: #080911;
  background-image: 
    radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(252, 185, 0, 0.08) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(16, 185, 129, 0.05) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text); 
  display: flex; 
  min-height: 100vh; 
  flex-direction: column;
  overflow-x: hidden;
}

/* Dashboard Container Boundary */
.dashboard-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 1.5rem 1rem;
}

/* Notice Marquee */
.notice-marquee {
  display: flex;
  align-items: center;
  background: rgba(16, 18, 28, 0.95);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--gold);
  backdrop-filter: blur(8px);
}

/* Admin Hero Box */
.admin-hero {
  background: linear-gradient(135deg, rgba(22, 25, 40, 0.9) 0%, rgba(14, 16, 26, 0.95) 100%);
  border: 1px solid rgba(252, 185, 0, 0.2);
  border-radius: 18px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.admin-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-hero-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Tabs Navigation Bar */
.tabs-nav {
  display: flex;
  gap: 10px;
  margin-top: 1.2rem;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 0.65rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(252, 185, 0, 0.3);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
  color: #000000;
  border-color: var(--gold);
  box-shadow: 0 4px 20px var(--gold-glow);
  transform: translateY(-2px);
}

/* Tab Content Switcher */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: tabSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tabSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animated Stats Grid System */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 1.8rem;
}

.stat-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* Overview Cards & Grid */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 1.2rem;
}

.overview-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.overview-card h3 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

/* Premium Block Links */
.premium-block-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  transition: all 0.25s ease;
}

.premium-block-link:hover {
  background: rgba(252, 185, 0, 0.08);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(252, 185, 0, 0.12);
}

/* Controls & Form Inputs */
.controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  background: var(--dark-card);
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.controls input[type="text"],
.controls select {
  background: rgba(8, 9, 17, 0.8);
  border: 1px solid var(--border);
  color: #ffffff;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}

.controls input[type="text"] {
  flex: 1;
  min-width: 220px;
}

.controls input[type="text"]:focus,
.controls select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.btn-sm {
  background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
  color: #000;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s;
}
.btn-sm:hover { transform: scale(1.03); }

/* Table Styling */
.desktop-table-wrap {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow-x: auto;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

td {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  vertical-align: middle;
}

tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Badges */
.id-badge {
  background: rgba(99, 102, 241, 0.12);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 700;
}

.fee-badge {
  color: var(--gold);
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
}

.status-capsule {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile Overrides & Cards View */
.mobile-cards-wrap { display: none; }

@media (max-width: 900px) {
  .desktop-table-wrap { display: none !important; }
  .mobile-cards-wrap { display: block !important; }

  .stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  
  .stat-card {
    padding: 1rem 0.8rem !important;
  }

  .stat-num {
    font-size: 1.6rem !important;
  }

  .controls {
    flex-direction: column;
  }

  .controls input[type="text"],
  .controls select {
    width: 100%;
  }

  .mobile-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .mobile-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
}

/* =========================================================================
   GLOBAL LOADING & UPLOAD PROGRESS UI
   ========================================================================= */
#global-top-loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #fcb900, #ff9100, #00e676);
  width: 0%;
  z-index: 999999;
  transition: width 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(252, 185, 0, 0.8);
}

#upload-progress-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#upload-progress-overlay .progress-modal {
  background: rgba(20, 20, 31, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(252, 185, 0, 0.2);
}

#upload-progress-overlay h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

#upload-progress-overlay .progress-track {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

#upload-progress-overlay .progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #fcb900, #ff9100);
  border-radius: 20px;
  transition: width 0.15s linear, background-color 0.3s;
  box-shadow: 0 0 15px rgba(252, 185, 0, 0.6);
}

#upload-progress-overlay .progress-text {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fcb900;
  font-family: 'Oswald', sans-serif;
  transition: color 0.3s;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: #fcb900;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.2rem auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Include Mobile Responsive Layer */
@import url('mobile_responsive.css');

/* =========================================================================
   SETTINGS PAGE ULTIMATE GLASSMORPHISM & ANIMATED GLOW TAB SYSTEM
   ========================================================================= */
.wrap, .dashboard-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 1.5rem 1rem;
}

/* Premium Glowing Section Cards */
.section-card {
  background: rgba(16, 18, 28, 0.95) !important;
  border: 1px solid rgba(252, 185, 0, 0.3) !important;
  border-radius: 18px !important;
  margin-bottom: 1.8rem !important;
  overflow: hidden !important;
  backdrop-filter: blur(16px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(252, 185, 0, 0.08) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.section-card.active-tab {
  display: block !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 35px rgba(252, 185, 0, 0.25) !important;
  animation: fadeInScale 0.35s ease-out forwards !important;
}

.section-card.collapsed {
  display: none !important;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.section-head {
  background: linear-gradient(135deg, rgba(252, 185, 0, 0.08) 0%, rgba(16, 18, 28, 0.8) 100%) !important;
  padding: 1.2rem 1.8rem !important;
  border-bottom: 1px solid rgba(252, 185, 0, 0.2) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: pointer !important;
}

.section-head h2 {
  font-size: 1.15rem !important;
  color: var(--gold) !important;
  font-family: 'Oswald', sans-serif !important;
  letter-spacing: 0.06em !important;
  margin: 0 !important;
  text-transform: uppercase !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.section-body {
  padding: 2rem !important;
}

/* Animated Glow Tab Buttons */
.tabs-nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 1.2rem !important;
  width: 100% !important;
  max-width: 100% !important;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #cbd5e1 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  padding: 0.6rem 1.1rem !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  flex: 0 0 auto !important;
}

.tab-btn:hover {
  background: rgba(252, 185, 0, 0.15) !important;
  color: #ffffff !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(252, 185, 0, 0.25) !important;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%) !important;
  color: #000000 !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 25px rgba(252, 185, 0, 0.5), 0 4px 15px rgba(245, 158, 11, 0.4) !important;
  transform: translateY(-2px) !important;
}

/* Premium Form Inputs & Labels */
.grid2 {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 1.4rem !important;
}

.field, .input-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.4rem !important;
  margin-bottom: 1.2rem !important;
}

.field label, .input-group label {
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  color: var(--gold) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field input[type="number"],
.field select,
.field textarea,
.input-group input,
.input-group select,
.input-group textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"] {
  background: #080911 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  padding: 0.8rem 1rem !important;
  border-radius: 12px !important;
  font-size: 0.88rem !important;
  font-family: inherit !important;
  outline: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.25s ease !important;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.input-group input:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 16px rgba(252, 185, 0, 0.35) !important;
  background: #0c0e1a !important;
}

.field small, .input-group small {
  font-size: 0.75rem !important;
  color: var(--muted) !important;
  line-height: 1.4 !important;
}

.btn, button[type="submit"].btn-sm {
  background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%) !important;
  color: #000000 !important;
  border: none !important;
  padding: 0.8rem 1.8rem !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 20px var(--gold-glow) !important;
}

.btn:hover, button[type="submit"].btn-sm:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 25px rgba(252, 185, 0, 0.4) !important;
}



 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       G L O B A L   L O A D I N G   &   U P L O A D   P R O G R E S S   U I 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 # g l o b a l - t o p - l o a d e r   { 
         p o s i t i o n :   f i x e d ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         h e i g h t :   3 p x ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   # f c b 9 0 0 ,   # f f 9 1 0 0 ,   # 0 0 e 6 7 6 ) ; 
         w i d t h :   0 % ; 
         z - i n d e x :   9 9 9 9 9 9 ; 
         t r a n s i t i o n :   w i d t h   0 . 3 s   e a s e - o u t ,   o p a c i t y   0 . 3 s   e a s e - o u t ; 
         o p a c i t y :   0 ; 
         p o i n t e r - e v e n t s :   n o n e ; 
         b o x - s h a d o w :   0   0   1 0 p x   r g b a ( 2 5 2 ,   1 8 5 ,   0 ,   0 . 8 ) ; 
 } 
 
 # u p l o a d - p r o g r e s s - o v e r l a y   { 
         p o s i t i o n :   f i x e d ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 v w ; 
         h e i g h t :   1 0 0 v h ; 
         b a c k g r o u n d :   r g b a ( 1 0 ,   1 0 ,   1 5 ,   0 . 8 5 ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 8 p x ) ; 
         z - i n d e x :   9 9 9 9 9 9 9 ; 
         d i s p l a y :   n o n e ;   / *   h i d d e n   b y   d e f a u l t   * / 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 } 
 
 # u p l o a d - p r o g r e s s - o v e r l a y   . p r o g r e s s - m o d a l   { 
         b a c k g r o u n d :   r g b a ( 2 0 ,   2 0 ,   3 1 ,   0 . 9 5 ) ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
         p a d d i n g :   2 . 5 r e m ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         w i d t h :   9 0 % ; 
         m a x - w i d t h :   4 5 0 p x ; 
         t e x t - a l i g n :   c e n t e r ; 
         b o x - s h a d o w :   0   2 0 p x   5 0 p x   r g b a ( 0 , 0 , 0 , 0 . 5 ) ,   i n s e t   0   0   0   1 p x   r g b a ( 2 5 2 , 1 8 5 , 0 , 0 . 2 ) ; 
 } 
 
 # u p l o a d - p r o g r e s s - o v e r l a y   h 3   { 
         c o l o r :   # f f f ; 
         f o n t - s i z e :   1 . 2 r e m ; 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
 } 
 
 # u p l o a d - p r o g r e s s - o v e r l a y   . p r o g r e s s - t r a c k   { 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 2 p x ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         o v e r f l o w :   h i d d e n ; 
         m a r g i n - b o t t o m :   1 r e m ; 
         b o x - s h a d o w :   i n s e t   0   2 p x   5 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
 } 
 
 # u p l o a d - p r o g r e s s - o v e r l a y   . p r o g r e s s - f i l l   { 
         h e i g h t :   1 0 0 % ; 
         w i d t h :   0 % ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   # f c b 9 0 0 ,   # f f 9 1 0 0 ) ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         t r a n s i t i o n :   w i d t h   0 . 1 5 s   l i n e a r ,   b a c k g r o u n d - c o l o r   0 . 3 s ; 
         b o x - s h a d o w :   0   0   1 5 p x   r g b a ( 2 5 2 ,   1 8 5 ,   0 ,   0 . 6 ) ; 
 } 
 
 # u p l o a d - p r o g r e s s - o v e r l a y   . p r o g r e s s - t e x t   { 
         f o n t - s i z e :   2 . 5 r e m ; 
         f o n t - w e i g h t :   9 0 0 ; 
         c o l o r :   # f c b 9 0 0 ; 
         f o n t - f a m i l y :   ' O s w a l d ' ,   s a n s - s e r i f ; 
         t r a n s i t i o n :   c o l o r   0 . 3 s ; 
 } 
 
 . s p i n n e r   { 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
         b o r d e r :   4 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
         b o r d e r - l e f t - c o l o r :   # f c b 9 0 0 ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         a n i m a t i o n :   s p i n   1 s   l i n e a r   i n f i n i t e ; 
         m a r g i n :   0   a u t o   1 . 2 r e m   a u t o ; 
 } 
 
 @ k e y f r a m e s   s p i n   { 
         0 %   {   t r a n s f o r m :   r o t a t e ( 0 d e g ) ;   } 
         1 0 0 %   {   t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ;   } 
 } 
  
 