/* Hide right sidebar on all pages */
.r-sidebar, .sidebar-button, #blog-sidebar, div.r-sidebar {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Adjust content area to remove right margin */
.content-area {
  margin-right: 0 !important;
  padding-right: 30px !important;
}

/* Mobile adjustments & Essential Structural Fixes */
@media only screen and (max-width: 992px) {
  .content-wrapper { padding: 40px 30px !important; border-radius: 20px !important; }
  .home-page-third-style.vcentered { width: 100% !important; margin: 0 !important; }
  .home-page-third-style .home-content { margin: 0 !important; }
}

@media only screen and (max-width: 767px) {
  .page-wrapper { padding: 15px 10px !important; }
  .content-wrapper { 
    padding: 30px 20px !important; 
    border-radius: 20px !important; 
    overflow: hidden !important;
  }
  .header-content { border-radius: 15px !important; }
  .site-menu { border-radius: 15px !important; }

  /* Fix extreme negative margins dragging content outside the card */
  .home-page-third-style.vcentered { width: 100% !important; margin: 0 !important; }
  .home-page-third-style .home-content { margin: 0 !important; }
  .row { margin-left: 0 !important; margin-right: 0 !important; }
  .col-sm-12 { padding-left: 0 !important; padding-right: 0 !important; }
  
  .home-text { padding: 0 10px !important; }
  
  /* Typography Scaling for Mobile */
  .home-text h1 { font-size: 34px !important; line-height: 1.25 !important; margin-bottom: 20px !important; }
  .home-text p { font-size: 15px !important; line-height: 1.6 !important; margin-bottom: 30px !important; text-align: left; }
  
  .home-page-third-style .home-photo {
    min-height: 350px !important; max-height: 400px !important; height: 350px !important;
    margin-bottom: 30px !important; width: 100% !important; border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: none !important; /* Remove box shadow if using contain */
    background-color: transparent !important;
  }
  /* Universal Profile Photo Mobile Optimization */
  .home-photo {
    background-size: contain !important; /* Forces the image to not be cropped out of frame */
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    mix-blend-mode: multiply; /* Natively deletes the white background from the JPG/PNG */
    filter: contrast(1.05) brightness(1.02); /* Slight pop to offset any muddying from multiply blending */
  }
  .home-page-third-style .home-photo .hp-inner {
    background-position: center bottom !important; background-size: contain !important;
    background-repeat: no-repeat !important; top: 0 !important; bottom: 0 !important; left: 0 !important; right: 0 !important;
  }
  .home-page-third-style .flex-v-align { display: flex !important; flex-direction: column !important; }
  
  /* Buttons */
  .home-buttons { display: flex; flex-direction: column; gap: 10px; }
  .home-buttons .btn { 
    width: 100% !important; 
    text-align: center; 
    margin: 0 !important; 
    padding: 12px 20px !important; 
    font-size: 14px !important; 
  }
}

@media only screen and (max-width: 500px) {
  .home-text h1 { font-size: 28px !important; }
  .content-area { padding-right: 0px !important; } 
}

/* Global Footer Rounding Fix to Match Theme */
.site-footer {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
}

/* Portfolio image alignment fix */
.portfolio-grid .portfolio-item-img { height: 280px !important; overflow: hidden; }
.portfolio-grid .portfolio-item-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* =======================================================================
   FUTURISTIC TRANSLUCENT CORAL REDESIGN (V4)
   ======================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@500;600;700;800&display=swap');

body, html {
  font-family: 'Inter', sans-serif !important;
  color: #334155 !important;
}

/* Animated light mesh background */
.lm-animated-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 40%, rgba(255, 107, 107, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 40% 80%, rgba(0, 191, 255, 0.14) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(255, 142, 83, 0.12) 0%, transparent 40%),
    #f0f4ff !important;
  animation: meshDrift 20s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(30deg); }
}

/* Kill completely synchronous render-blocking preloaders so the site instantly paints */
.preloader { display: none !important; opacity: 0 !important; visibility: hidden !important; }

.page-wrapper { background: transparent !important; }

.page-content, .single-page-content, .content-area, .section-content, .animated-section, .pt-page { background: transparent !important; box-shadow: none !important; border: none !important; }

/* Main Glassmorphic floating card */
.content-wrapper {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), inset 0 0 30px rgba(255,255,255,0.6) !important;
  contain: layout style;
}

/* Protect the profile photo from backdrop blur / orb bleed */
.home-photo, .home-photo .hp-inner {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background-color: transparent !important;
}

/* Sidebar Vibrant Coral Gradient */
.header-content {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53) !important;
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3) !important;
}

.header { background: transparent !important; box-shadow: none !important; }

/* The Requested Fix: Reduced Opacity White Background for Navigation Menu */
.site-menu {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-radius: 20px !important;
  box-shadow: 10px 0 30px rgba(0,0,0,0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-left: none !important;
}

.header-titles h2, .header-titles a { background: transparent !important; background-color: transparent !important; }
.profile-card { background: transparent !important; }

.profile-img img {
  border: 4px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  border-radius: 50% !important;
}

h3.site-title {
  color: #1e293b !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}
h5.site-subtitle { color: #64748b !important; font-family: 'Inter', sans-serif !important; font-weight: 500 !important; }

.social-links a {
  background: rgba(255, 255, 255, 0.6) !important;
  color: #64748b !important;
  transition: all 0.3s ease !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,0.8) !important;
}
.social-links a:hover {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3) !important;
  border-color: transparent !important;
}

/* Navigation Links */
ul.main-menu a {
  color: #475569 !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}
ul.main-menu a:hover, ul.main-menu li.active a, ul.main-menu li.current-menu-item a { color: #FF6B6B !important; }
ul.main-menu a:hover::before, ul.main-menu li.active a::before, ul.main-menu li.current-menu-item a::before {
  background-color: #FF6B6B !important;
  box-shadow: 0 0 12px rgba(255, 107, 107, 0.5) !important;
}

/* Typography Overrides */
.home-text h1 { color: #1e293b !important; font-family: 'Poppins', sans-serif !important; font-weight: 800 !important; }
.home-text h1 span { color: #FF6B6B !important; }
.home-text h4 { color: #475569 !important; font-family: 'Poppins', sans-serif !important; font-weight: 600 !important; letter-spacing: 2px !important;}
.home-text p { color: #64748b !important; font-size: 16px !important; line-height: 1.8 !important; }
h1, h2, h3, h4, h5, h6 { color: #1e293b !important; font-family: 'Poppins', sans-serif !important; }
p { color: #475569 !important; }

/* Block Titles */
.block-title h2 { color: #1e293b !important; font-family: 'Poppins', sans-serif !important; font-weight: 700 !important; }
.block-title h2::after { background: linear-gradient(135deg, #FF6B6B, #FF8E53) !important; height: 3px !important; border-radius: 3px !important; }

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 20px !important;
  padding: 12px 30px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3) !important;
}
.btn-primary:hover { transform: translateY(-3px) !important; box-shadow: 0 15px 25px rgba(255, 107, 107, 0.45) !important; color: #fff !important;}
.btn-secondary {
  background: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,0.8) !important;
  color: #334155 !important;
  border-radius: 20px !important;
  padding: 11px 29px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.9) !important; transform: translateY(-3px) !important; box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important; color: #1e293b !important; }

/* Component Styling */
.timeline-item { border-left: 2px solid rgba(255, 107, 107, 0.2) !important; }
.timeline-item::before { background: #FF6B6B !important; box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15) !important; }
.timeline-item h5.item-period {
  color: #fff !important; background: linear-gradient(135deg, #FF6B6B, #FF8E53) !important;
  border-radius: 8px !important; padding: 5px 12px !important; display: inline-block !important;
  font-family: 'Poppins', sans-serif !important; font-weight: 600 !important; border: none !important;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3) !important;
}
.skill-percentage { background-color: rgba(0,0,0,0.05) !important; border-radius: 6px !important; height: 8px !important; }
.skill-percentage .skill-percentage-value { background: linear-gradient(90deg, #FF8E53, #FF6B6B) !important; border-radius: 6px !important; box-shadow: 0 0 10px rgba(255, 107, 107, 0.5); }
.info-block-w-icon, .portfolio-grid figure {
  background: rgba(255, 255, 255, 0.5) !important; backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important; border-radius: 20px !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
}
.info-block-w-icon:hover, .portfolio-grid figure:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important; border-color: #fff !important; }
.ci-icon i { color: #FF6B6B !important; }

/* Controls */
form input, form textarea, .form-control {
  background: rgba(255,255,255,0.6) !important; border: 1px solid rgba(0,0,0,0.05) !important;
  border-radius: 12px !important; color: #1e293b !important;
}
form input:focus, form textarea:focus, .form-control:focus {
  border-color: #FF6B6B !important; box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15) !important; outline: none; background: #fff !important;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #FF6B6B; }

/* Footer */
.site-footer, .site-footer a { color: #64748b !important; }
.site-footer a:hover { color: #FF6B6B !important; }
.owl-carousel.text-rotation .item h4 { color: #FF6B6B !important; }

/* Resume Timeline Overrides */
.timeline-item p {
  text-align: left;
}

/* Kill justify and hyphens everywhere — improves readability on all screen sizes */
p, li, td, th, blockquote, .description, .page-title p, .post-content p {
  text-align: left !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -moz-hyphens: none !important;
  -ms-hyphens: none !important;
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 767px) {
  p, li, td, th, blockquote {
    text-align: left !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
  }
}

/* Hide scrollbars across all browsers */
* {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
}

/* ============================================================
   MOBILE REDESIGN — max-width: 768px
   Desktop is completely untouched.
   ============================================================ */
@media only screen and (max-width: 768px) {

  /* --- Kill ALL hyphens & word-breaking --- */
  *, *::before, *::after {
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: anywhere;
  }

  /* --- Page wrapper & card --- */
  .page-wrapper { padding: 10px 8px !important; }
  .content-wrapper {
    padding: 24px 18px !important;
    border-radius: 22px !important;
    margin: 0 !important;
  }

  /* --- Fix horizontal overflow --- */
  body, html { overflow-x: hidden !important; max-width: 100vw !important; }
  .row { margin-left: 0 !important; margin-right: 0 !important; }
  [class*="col-"] { padding-left: 8px !important; padding-right: 8px !important; }

  /* ── INDEX PAGE ─────────────────────────────────── */
  .home-page-third-style.vcentered {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin: 0 !important;
  }

  /* Photo first, text below */
  .home-page-third-style .col-md-6:first-child { order: 1; }
  .home-page-third-style .col-md-6:last-child  { order: 2; }

  .home-photo, .home-page-third-style .home-photo {
    min-height: 280px !important;
    max-height: 320px !important;
    height: 300px !important;
    width: 100% !important;
    margin-bottom: 20px !important;
    background-size: contain !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
  }

  .home-text { padding: 0 4px !important; text-align: left !important; }
  .home-text h1 {
    font-size: 30px !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
    word-break: keep-all !important;
  }
  .home-text p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    margin-bottom: 22px !important;
  }
  .home-text .owl-carousel { margin-bottom: 6px !important; }

  /* Buttons row */
  .home-text .btn-group,
  .home-text > a,
  .home-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .home-text .btn,
  .home-text a.btn {
    flex: 1 1 auto !important;
    min-width: 130px !important;
    text-align: center !important;
    padding: 11px 18px !important;
    font-size: 13px !important;
    margin: 0 !important;
  }

  /* Page title (About, Resume etc.) */
  .page-title h1,
  .page-title h2 {
    font-size: 28px !important;
    line-height: 1.25 !important;
    margin-bottom: 16px !important;
  }
  .page-title p { font-size: 14px !important; }

  /* ── NAVIGATION — full redesign ─────────────────── */
  .header { width: 100% !important; max-width: 100% !important; }

  /* Profile card wrapper — truly centered */
  .profile-card {
    padding: 24px 20px 16px !important;
    width: 100% !important;
  }
  .profile-card-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  /* Profile picture — large, centered, prominent */
  .profile-img {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto 10px !important;
    width: 100% !important;
  }
  .profile-img a {
    display: block !important;
    width: 130px !important;
    height: 130px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid rgba(255,107,107,0.4) !important;
    box-shadow: 0 6px 24px rgba(255,107,107,0.25) !important;
    margin: 0 auto !important;
  }
  .profile-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
  }

  /* Name & subtitle — centered */
  .site-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 auto 3px !important;
    color: #222 !important;
    text-align: center !important;
    display: block !important;
  }
  .site-subtitle {
    font-size: 12px !important;
    color: #999 !important;
    margin: 0 auto 10px !important;
    text-align: center !important;
    display: block !important;
  }

  /* Social icons — centered row */
  .social-links { width: 100% !important; }
  .social-links ul {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 !important;
    margin: 0 auto 4px !important;
    list-style: none !important;
  }
  .social-links ul li a {
    width: 38px !important; height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,107,107,0.08) !important;
    border: 1.5px solid rgba(255,107,107,0.25) !important;
    font-size: 15px !important;
    color: #FF6B6B !important;
  }

  /* Menu items — centered text */
  .main-menu {
    margin-top: 12px !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .main-menu > li {
    list-style: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
  }
  .main-menu > li:last-child { border-bottom: none !important; }
  .main-menu > li > a {
    display: block !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #444 !important;
    text-align: center !important;
    letter-spacing: 0.3px !important;
  }
  .main-menu > li.current-menu-item > a {
    color: #FF6B6B !important;
    font-weight: 700 !important;
  }

  /* ── INDEX — hero text centered on mobile ──────── */
  .home-text {
    padding: 0 4px !important;
    text-align: center !important;
  }
  .text-rotation,
  .owl-carousel.text-rotation {
    text-align: center !important;
    margin-bottom: 8px !important;
  }
  .text-rotation h4 {
    font-size: 13px !important;
    text-align: center !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
  }

  /* "Hi, I'm Kavindu Dhananjaya" — bold, modern, centered */
  .home-text h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
    text-align: center !important;
    word-break: keep-all !important;
  }
  .home-text h1 span {
    display: block !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #FF6B6B !important;
    margin-bottom: 4px !important;
    letter-spacing: 0.5px !important;
  }

  .home-text p {
    font-size: 13.5px !important;
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
    text-align: center !important;
    color: #555 !important;
  }

  /* Buttons — centered */
  .home-buttons {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .home-buttons .btn {
    min-width: 130px !important;
    text-align: center !important;
    padding: 11px 22px !important;
    font-size: 13.5px !important;
    margin: 0 !important;
  }

  /* ── PHOTO — fade bottom edge on mobile ─────────── */
  .home-page-third-style .home-photo { position: relative !important; }
  .home-page-third-style .home-photo::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important; left: 0 !important; right: 0 !important;
    height: 90px !important;
    background: linear-gradient(to bottom, transparent, rgba(248,249,255,0.95)) !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }

  /* ── FOOTER — centered on mobile ────────────────── */
  .site-footer {
    text-align: center !important;
    padding: 20px 16px !important;
  }
  .footer-social { margin-bottom: 12px !important; }
  .footer-social-links {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }
  .footer-social-links li a {
    font-size: 13px !important;
    color: #666 !important;
  }
  .footer-copyrights {
    text-align: center !important;
    width: 100% !important;
  }
  .footer-copyrights p {
    font-size: 12px !important;
    text-align: center !important;
    color: #999 !important;
  }

  /* ── RESUME PAGE ─────────────────────────────────── */
  .timeline-item {
    padding-left: 20px !important;
    margin-bottom: 28px !important;
  }
  .timeline-item h4 { font-size: 15px !important; margin-bottom: 4px !important; }
  .timeline-item h5 { font-size: 13px !important; }
  .timeline-item p  { font-size: 13px !important; line-height: 1.6 !important; }

  .skills-info .skill-container { margin-bottom: 14px !important; }
  .skills-info h4 { font-size: 13px !important; margin-bottom: 4px !important; }

  /* ── PORTFOLIO PAGE ──────────────────────────────── */
  .portfolio-grid .portfolio-item { width: 50% !important; }
  @media only screen and (max-width: 480px) {
    .portfolio-grid .portfolio-item { width: 100% !important; }
  }

  /* ── CONTACT PAGE ────────────────────────────────── */
  .lm-info-block {
    padding: 20px 14px !important;
    margin-bottom: 12px !important;
    min-height: 120px !important;
  }
  .lm-info-block i  { font-size: 28px !important; margin-bottom: 8px !important; }
  .lm-info-block h4 { font-size: 14px !important; }
  .lm-info-block-text { font-size: 12px !important; }

  .form-control {
    padding: 12px 14px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
  }
  textarea.form-control { min-height: 120px !important; }
  .btn-send {
    width: 100% !important;
    justify-content: center !important;
    padding: 13px 20px !important;
    font-size: 15px !important;
  }

  /* ── BLOG PAGE ───────────────────────────────────── */
  .post-thumbnail { height: 180px !important; overflow: hidden !important; }
  .post-thumbnail img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
  .blog-post-title { font-size: 16px !important; line-height: 1.35 !important; }
  .post-info { font-size: 11px !important; }

  /* ── FOOTER ──────────────────────────────────────── */
  .site-footer { padding: 20px 16px !important; text-align: center !important; }
  .footer-copyrights p { font-size: 12px !important; }

  /* ── AI CANVAS — prevent horizontal overflow ─────── */
  #lines-canvas, #ai-orb {
    width: 100vw !important;
    max-width: 100vw !important;
  }
  #ai-orb {
    width: 300px !important;
    height: 300px !important;
    opacity: 0.35 !important;
  }
}
