/*--------------------------------------------------------------
# PosluTaksi - High-End Premium Styles
--------------------------------------------------------------*/

:root {
  --primary-color: #065f46; /* Deep Emerald */
  --primary-light: #ecfdf5; /* Soft Mint */
  --accent-color: #F4D03F; /* Corrected Brand Yellow */
  --secondary-color: #0f172a; /* Deep Slate */
  --white: #ffffff;
  --text-main: #1e293b;
  --text-medium: #475569;
  --text-light: #64748b;
  
  --gradient-primary: linear-gradient(135deg, #065f46 0%, #10b981 100%);
  --gradient-gold: linear-gradient(135deg, #F4D03F 0%, #ffb84d 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-tech: radial-gradient(circle at top right, rgba(6, 95, 70, 0.05) 0%, transparent 400px);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(6, 95, 70, 0.08); /* Emerald tinted shadow */
  --shadow-lg: 0 15px 45px rgba(6, 95, 70, 0.12);
  --shadow-xl: 0 25px 60px rgba(6, 95, 70, 0.15);
  
  --bg-soft-gray: #f8fafc;
  --bg-soft-emerald: #f1f8f6; /* Global background tint */
  --bg-soft-gold: #fefce8;
  
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.4s ease;
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background-color: #f1f8f6 !important; /* The requested soft emerald background */
  color: var(--text-main);
  font-family: 'Open Sans', sans-serif;
}

section {
  background: transparent !important;
}

a, a:hover, a:focus {
  text-decoration: none !important;
}

/* Glassmorphism Header */
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  max-height: 100px;
}

#header.header-scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

/* --- Professional Navbar Fix --- */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  padding: 0 15px;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
  white-space: nowrap;
  transition: var(--transition-normal);
  text-decoration: none;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
  color: var(--accent-color) !important;
}

.mobile-nav-toggle {
  color: var(--secondary-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

/* --- Dropdown Styling --- */
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: var(--secondary-color);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>a {
  color: var(--accent-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

/* --- End Navbar Fix --- */

/* Premium Logo Container */
.logo-container {
  padding: 5px 15px;
  background: white;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  transition: var(--transition-normal);
}

.logo-container:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Premium Feature Cards Section */
.premium-card {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  background: var(--white) !important;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
  border-radius: 24px;
  border: 1px solid rgba(6, 95, 70, 0.05); /* Match emerald theme */
  height: 100%;
  text-align: center;
  z-index: 1;
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: -1;
}

.premium-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.premium-card:hover h4, .premium-card:hover p, .premium-card:hover .icon i {
  color: var(--white);
}

.premium-card:hover::before {
  opacity: 1;
}

.premium-card .icon {
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  transition: var(--transition-normal);
}

.premium-card .icon i {
  font-size: 32px;
  color: var(--primary-color);
}

.premium-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  transition: var(--transition-normal);
}

.premium-card p {
  line-height: normal;
  font-size: 15px;
  color: var(--text-medium);
  transition: var(--transition-normal);
}

/* Flowing Ticker Animation Placeholder (if needed later) */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating-effect {
  animation: float 4s ease-in-out infinite;
}

/* --- Global Background sections --- */
section:not(.section-video-bg):not(#hero) {
  background-color: transparent !important;
  position: relative;
  z-index: 1;
}

/* --- Section Backgrounds (Emerald Theme) --- */
.section-soft-gray { background-color: transparent !important; }
.section-soft-emerald { background-color: transparent !important; }
.section-soft-gold { background-color: transparent !important; }
.section-bg { background-color: transparent !important; }

.section-divider-gold {
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 15px auto 30px;
  border-radius: 2px;
}

/* --- Features Section Restore --- */
#ozellikler {
  background: var(--bg-soft-gray);
  padding: 80px 0;
}

/* --- Testimonials Styling (Single Focused Quote - Darker Background) --- */
.testimonials .testimonial-item {
  padding: 60px 40px;
  margin: 40px auto;
  max-width: 800px; /* Focused width */
  box-shadow: var(--shadow-lg);
  position: relative;
  background: #eaeff5; /* More distinct light gray-blue for contrast */
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.testimonials .testimonial-item h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 25px;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

.testimonials .single-quote {
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  color: #2d3748;
  line-height: 1.6;
}

.testimonials .quote-icon {
  color: var(--primary-color);
  font-size: 28px;
  opacity: 0.9;
  margin: 0 12px;
}

/* --- Contact Form Messages --- */
.loading, .sent-message, .error-message {
  display: none;
  background: var(--white) !important;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.php-email-form {
  background: var(--white) !important;
  padding: 40px !important;
  border-radius: 20px !important;
  box-shadow: var(--shadow-lg) !important;
  border: 1px solid rgba(6, 95, 70, 0.05) !important;
}

.loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #10b981;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sent-message {
  color: #fff;
  background: #10b981;
  font-weight: 600;
}

.error-message {
  color: #fff;
  background: #df1529;
  font-weight: 600;
}


/* --- Premium Contact Cards --- */
.contact-card {
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow-md);
  border-radius: 16px;
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.contact-card i {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px rgba(6, 95, 70, 0.2);
}

.contact-card.card-phone i {
  background: var(--primary-light);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(6, 95, 70, 0.1);
}

.contact-card.card-office i {
  background: #fdf5d7; /* Very light yellow tint */
  color: var(--accent-color); /* Brand Yellow */
  box-shadow: 0 4px 15px rgba(244, 208, 63, 0.2);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.contact-card:hover i {
  background: var(--primary-color);
  color: white;
}

.contact-card h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.contact-card p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 0;
}

.section-premium-bg {
  background-color: #fcfcfc;
  background-image: var(--gradient-tech);
}

/* Center Heading Polish */
.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--accent-color) !important; /* Force Brand Yellow */
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: calc(50% - 25px);
}



/*--------------------------------------------------------------
# Video Background Hero - Light Version
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.8;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 249, 250, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Gradient Text - Softer */
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Hero Typography */
.hero-title {
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(244, 208, 63, 0.2);
}

.hero-subtitle {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-shadow: none;
}

.hero-tagline {
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 2px 8px rgba(244, 208, 63, 0.15);
}

/*--------------------------------------------------------------
# Premium Buttons - Light Version
--------------------------------------------------------------*/
.btn-premium {
  display: inline-block;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: var(--transition-normal);
  z-index: -1;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-primary-gradient {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244, 208, 63, 0.3);
}

.btn-primary-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.4);
}

.btn-outline-white {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-outline-white:hover {
  background: var(--primary-light);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 208, 63, 0.2);
}

/*--------------------------------------------------------------
# Scroll Indicator
--------------------------------------------------------------*/
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 32px;
  color: var(--primary-color);
  opacity: 0.8;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/*--------------------------------------------------------------
# Trust Badges - Light Version
--------------------------------------------------------------*/
.trust-badges {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--white);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 2px solid var(--primary-light);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.trust-badge:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.trust-badge i {
  font-size: 24px;
  color: var(--primary-color);
}

.trust-badge span {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}

/*--------------------------------------------------------------
# FAQ Section - Light Version
--------------------------------------------------------------*/
.faq-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.faq-item {
  background: var(--white) !important;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(6, 95, 70, 0.05); /* Match emerald theme */
}

.faq-question {
  color: var(--text-main);
}

.faq-question i {
  color: var(--accent-color); /* Yellow Icon */
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-dark);
  transition: var(--transition-fast);
  background: var(--white);
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-question i {
  font-size: 24px;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--white);
}

.faq-answer.active {
  padding: 25px 30px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0;
}

/*--------------------------------------------------------------
# Glassmorphism Cards - Light Version
--------------------------------------------------------------*/
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(244, 208, 63, 0.2);
  padding: 40px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.glass-card:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Sticky Header - Light Version
--------------------------------------------------------------*/
#header.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

#header.header-scrolled .logo img {
  max-height: 45px !important;
  transition: var(--transition-normal);
}

/*--------------------------------------------------------------
# Section Backgrounds
--------------------------------------------------------------*/
.section-bg {
  background: var(--bg-light);
}

.about {
  background: var(--white);
  padding: 80px 0;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-tagline {
    font-size: 24px;
  }

  .btn-premium {
    padding: 14px 30px;
    font-size: 14px;
  }

  .trust-badges {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Hover Effects & Micro-interactions
--------------------------------------------------------------*/
.hover-lift {
  transition: var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.hover-glow {
  transition: var(--transition-normal);
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(244, 208, 63, 0.3);
}

.hover-scale {
  transition: var(--transition-normal);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Animated Video Placeholder
--------------------------------------------------------------*/
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F4D03F 0%, #FFB84D 25%, #FF6B35 50%, #F4D03F 75%, #FFB84D 100%);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  opacity: 0.1;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Commission Calculator Styles */
.calculator-card {
  border-radius: 20px !important;
  transition: var(--transition-normal);
}

.calculator-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl) !important;
}

.calculator-results {
  background: white;
  border: 1px solid rgba(6, 95, 70, 0.1);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.calculator-results hr {
  margin: 15px 0;
  opacity: 0.1;
}

#fare-input {
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  padding: 1rem 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

#fare-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(6, 95, 70, 0.1) !important;
  outline: none;
}

.form-floating > label {
  padding-left: 1rem;
}
/* --- POSLU-TOAST ELITE NOTIFICATION SYSTEM --- */
.poslu-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    min-width: 350px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(0,0,0,0.05);
    animation: slideInDown 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden; /* Progress bar için */
}

.poslu-toast i { font-size: 1.5rem; }

.poslu-toast.success { border-bottom: 4px solid #10b981; }
.poslu-toast.success i { color: #10b981; }

.poslu-toast.error { border-bottom: 4px solid #ef4444; }
.poslu-toast.error i { color: #ef4444; }

/* Dinamik İlerleme Çubuğu */
.poslu-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: rgba(16, 185, 129, 0.3);
    animation: progressDrain 5s linear forwards;
}

.poslu-toast.error .poslu-toast-progress {
    background: rgba(239, 68, 68, 0.3);
}

@keyframes progressDrain {
    from { width: 100%; }
    to { width: 0%; }
}

@keyframes slideInDown {
    0% { top: -100px; opacity: 0; transform: translateX(-50%) scale(0.9); }
    100% { top: 30px; opacity: 1; transform: translateX(-50%) scale(1); }
}

@keyframes fadeOut {
    0% { opacity: 1; transform: translateX(-50%) scale(1); }
    100% { opacity: 0; transform: translateX(-50%) scale(0.95); }
}

/* Eski sistemleri tamamen devre dışı bırak */
.sent-message, .error-message { display: none !important; }
.loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;
}
.loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}
@keyframes animate-loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}