/* Adjust this slightly if your desktop logo is taller/shorter */
/* 40px logo + 20px top/bottom padding */
/* Base Resets */
body {
  background-color: #f8fafc;
  color: #1e293b;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  margin: 0;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 1. Scroll Progress Bar */
#scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 10001;
}
#scroll-progress-container #scroll-progress-bar {
  height: 100%;
  background: #ffffff;
  width: 0%;
}

@media (max-width: 768px) {
  .container {
    padding: 0;
  }
}
/* Components */
/* ==========================================================================
   Header Structure
   ========================================================================== */
.site-header {
  background-color: #ff2b58 !important;
  position: sticky;
  top: 0;
  z-index: 10000;
  padding: 10px 0;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}
.site-header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .site-logo img,
.site-header .custom-logo-link img {
  height: auto;
  width: auto;
  display: block;
  max-height: 60px;
}
@media (max-width: 767px) {
  .site-header .site-logo img,
  .site-header .custom-logo-link img {
    max-height: 40px !important;
    width: auto;
  }
}

.header-action-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

/* ==========================================================================
   WordPress Admin Bar Fix for Sticky Header
   ========================================================================== */
/* Standard Desktop Admin Bar height is 32px */
.admin-bar .site-header {
  top: 32px !important;
}

/* On smaller screens (tablets/phones), the Admin Bar height increases to 46px */
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px !important;
  }
}
#scroll-progress-container {
  top: 0px !important;
}

/* Also ensure your Progress Bar respects the Admin Bar */
.admin-bar #scroll-progress-container {
  top: 32px !important;
}

@media screen and (max-width: 782px) {
  .admin-bar #scroll-progress-container {
    top: 46px !important;
  }
}
/* If the Admin Bar is hidden on very small mobile screens (WP default behavior), 
   reset the header to the absolute top */
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}
/* ==========================================================================
   Navigation & User Account
   ========================================================================== */
.main-navigation .menu-nws-dekho-main-nav-container {
  display: none !important;
  background: #ff2b58 !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
.main-navigation.toggled .menu-nws-dekho-main-nav-container {
  display: block !important;
}
.main-navigation .menu-toggle {
  border: none;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  background: none;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .main-navigation .menu-toggle {
    display: none !important;
  }
  .main-navigation .menu-nws-dekho-main-nav-container {
    display: block !important;
    position: static;
    background: transparent !important;
  }
  .main-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .main-navigation a {
    padding: 10px 15px;
    color: #fff !important;
  }
}

.user-account-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.user-account-wrapper .user-icon-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
}
.user-account-wrapper .user-popup {
  display: none !important;
  position: absolute;
  top: 50px;
  right: 0;
  width: 240px;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  z-index: 10005;
  border-top: 4px solid #ff2b58;
}
.user-account-wrapper .user-popup.active {
  display: block !important;
  -webkit-animation: fadeInDown 0.2s ease-out;
          animation: fadeInDown 0.2s ease-out;
}
.user-account-wrapper .user-popup .user-welcome {
  margin-bottom: 12px;
  font-size: 0.95rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
  color: #121212;
}
.user-account-wrapper .user-popup .popup-menu-links a {
  color: #1e293b !important;
  font-weight: 500;
  display: block;
  padding: 8px 0;
  text-decoration: none;
}

/* Adjust this slightly if your desktop logo is taller/shorter */
/* 40px logo + 20px top/bottom padding */
.article-hero-header {
  position: relative;
  /* Dynamically calculates height based on your desktop variable */
  height: calc(100vh - 80px);
  height: calc(100dvh - 80px);
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  color: #fff;
}
.article-hero-header .hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.article-hero-header .hero-image-overlay .hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform-origin: center;
          transform-origin: center;
  will-change: transform, filter;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  /* Applied via JS on scroll */
}
.article-hero-header .hero-image-overlay .hero-img.is-scrolled {
  -webkit-filter: blur(1px);
          filter: blur(1px);
}
.article-hero-header .hero-image-overlay .hero-img.loading {
  opacity: 0.5;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.article-hero-header .hero-image-overlay {
  /* Uniform very light transparent grey tint */
}
.article-hero-header .hero-image-overlay .hero-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.article-hero-header .hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* Spreads Top, Middle, Bottom */
  padding: calc(32px + 20px) 20px 30px; /* Accounts for WP Admin Bar */
}
.article-hero-header {
  /* TOP: Breadcrumb */
}
.article-hero-header .hero-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.article-hero-header {
  /* MIDDLE: Category, Title, Reporter */
}
.article-hero-header .hero-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: clamp(20px, 4vh, 40px); /* Equal, responsive gap */
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.article-hero-header .hero-middle .category-pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}
.article-hero-header .hero-middle .category-pill a {
  color: #fff;
  text-decoration: none;
}
.article-hero-header .hero-middle .hero-title {
  font-family: "Khand", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.5);
  display: block; /* No clipping */
}
.article-hero-header .hero-middle .author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.article-hero-header .hero-middle .author-info .author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.article-hero-header {
  /* BOTTOM: Meta Data */
}
.article-hero-header .hero-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.article-hero-header .hero-bottom .meta-sep {
  opacity: 0.5;
}
.article-hero-header .hero-bottom .epaper-dl {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-decoration: none;
  background: #ff2b58;
  padding: 6px 14px;
  border-radius: 4px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  text-shadow: none;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.article-hero-header .hero-bottom .epaper-dl:hover {
  background: rgb(247, 0, 52.429245283);
}
.article-hero-header {
  /* Mobile Overrides */
}
@media (max-width: 768px) {
  .article-hero-header {
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
  }
  .article-hero-header .hero-content-wrapper {
    padding-top: 20px;
  }
  .article-hero-header .hero-middle {
    gap: 20px;
  }
  .article-hero-header .hero-middle .hero-title {
    font-size: 2.2rem;
    padding: 0 10px;
  }
  .article-hero-header .hero-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
  }
  .article-hero-header .hero-bottom .meta-sep {
    display: inline-block;
  }
  .article-hero-header .hero-bottom .epaper-dl {
    padding: 4px 10px;
  }
  .article-hero-header .hero-bottom .epaper-dl svg {
    width: 12px;
    height: 12px;
  }
}

#scroll-progress-container {
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.1);
}
#scroll-progress-container #scroll-progress-bar {
  height: 100%;
  background: #fff;
  width: 0%;
  -webkit-transition: width 0.1s ease-out;
  transition: width 0.1s ease-out;
}
@media (max-width: 768px) {
  #scroll-progress-container {
    top: 46px;
  }
}

.nd-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.nd-breadcrumb a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.nd-breadcrumb a:hover {
  color: #ff2b58;
}
.nd-breadcrumb .bc-sep {
  opacity: 0.6;
  font-size: 10px;
}
.nd-breadcrumb .bc-current {
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

/* ==========================================================================
   Article Footer Components (Author, Tags, Nav, Related)
   ========================================================================== */
/* Author Box */
.author-box-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 30px;
  background: #f8f9fa; /* Light grey, adjust to match your theme */
  border-radius: 12px;
  margin: 50px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.author-box-end .author-box-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.author-box-end .author-box-details h4 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-family: "Khand", sans-serif;
}
.author-box-end .author-box-details h4 a {
  color: inherit;
  text-decoration: none;
}
.author-box-end .author-box-details h4 a:hover {
  color: #ff2b58;
}
.author-box-end .author-box-details p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}
@media (max-width: 768px) {
  .author-box-end {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

/* Tight Tag Pills */
.tags-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
}
.tags-container .tag-pill {
  background: #eee;
  color: #333;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.tags-container .tag-pill:hover {
  background: #ff2b58;
  color: #fff;
}

/* Visual Cards Base (Shared between Nav & Related) */
.visual-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: block;
  text-decoration: none;
  background: #000;
}
.visual-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  opacity: 0.7;
}
.visual-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.9)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}
.visual-card .card-cat-pill {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff2b58;
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.visual-card .card-content-bottom {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  z-index: 2;
  color: #fff;
}
.visual-card .card-content-bottom .card-label {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
  letter-spacing: 1px;
}
.visual-card .card-content-bottom .card-title {
  font-family: "Khand", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.visual-card:hover .card-bg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.9;
}

/* Post Navigation (Next/Prev) */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .post-navigation {
    grid-template-columns: 1fr;
    margin: 40px 10px;
  }
}

/* 1/2 Layout Recommendations */
.related-section {
  margin-top: 60px;
}
.related-section .section-title {
  font-family: "Khand", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #ff2b58;
  padding-bottom: 10px;
  display: inline-block;
}
.related-section .related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .related-section .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   _social-share.scss
   ========================================================================== */
.custom-social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Base Button Styles (Shared everywhere) */
}
.custom-social-share .share-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6px;
  color: #fff;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  text-decoration: none;
}
.custom-social-share .share-btn:hover {
  opacity: 0.9;
}
.custom-social-share .share-btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.custom-social-share .share-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.custom-social-share .share-btn {
  /* Brand Colors */
}
.custom-social-share .share-btn.whatsapp {
  background: #25D366;
}
.custom-social-share .share-btn.facebook {
  background: #1877F2;
}
.custom-social-share .share-btn.twitter {
  background: #000;
}
.custom-social-share {
  /* -----------------------------------------
     MODIFIER 1: Sticky (For single.php)
     ----------------------------------------- */
}
.custom-social-share.is-sticky {
  display: none; /* Hidden by default on Desktop */
}
@media (max-width: 768px) {
  .custom-social-share.is-sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px; /* Strictly capped at 40px */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    z-index: 10000;
    /* Start completely hidden off the bottom edge */
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* This class is added via JS on scroll */
  }
  .custom-social-share.is-sticky.is-visible {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .custom-social-share.is-sticky .share-btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; /* Stretch evenly */
    height: 100%; /* Fill the 40px height completely */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0; /* Edge-to-edge looks better for thin strips */
  }
  .custom-social-share.is-sticky .share-btn svg {
    width: 20px;
    height: 20px;
  }
}
.custom-social-share {
  /* -----------------------------------------
     MODIFIER 2: Inline (For loops/category pages)
     ----------------------------------------- */
}
.custom-social-share.is-inline {
  margin-top: 15px; /* Spacing below excerpt/meta */
}
.custom-social-share.is-inline .share-btn {
  padding: 6px 10px; /* Tighter padding for list items */
}

@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}/*# sourceMappingURL=main.css.map */