/* PWA Top Bar Styles */
#pwa-top-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 56px;
    background: #000;
    color: #fff;
    z-index: 9999;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    font-family: inherit;
}
#pwa-top-bar .hamburger {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    margin-left: 16px;
}
#pwa-top-bar .hamburger-icon {
    display: inline-block;
    width: 28px;
    height: 22px;
    position: relative;
}
#pwa-top-bar .hamburger-icon span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
#pwa-top-bar .pwa-title {
    margin-left: 16px;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 0.03em;
    color: #fff;
}
body.pwa-mode {
    padding-top: 56px;
}
/* --- PWA Drawer Menu (all new classes) --- */
/* --- Drilldown Material Menu Styles --- */
.pwa-drilldown-menu { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 99999; pointer-events: none; }
.pwa-drilldown-menu.open { pointer-events: all; }
.drilldown-menu-overlay {
  position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(33,33,33,0.3); opacity: 0; transition: opacity .32s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.pwa-drilldown-menu.open .drilldown-menu-overlay { opacity: 1; pointer-events: all; }
.drilldown-menu-drawer {
  position: absolute; top: 0; left: -85vw; width: 85vw; max-width: 350px; height: 100vh;
  background: #fff; color: #222; box-shadow: 2px 0 32px rgba(0,0,0,0.18);
  transition: left .32s cubic-bezier(.4,0,.2,1);
  overflow-y: hidden;
  display: flex; flex-direction: column;
}
.pwa-drilldown-menu.open .drilldown-menu-drawer { left: 0; }
.drilldown-menu-panels {
  width: 100%; height: 100%; position: relative; overflow: hidden;
}
.drilldown-menu-panel {
  width: 100%; height: 100%; position: absolute; top: 0; left: 100%; background: #fff;
  transition: left .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.pwa-drilldown-menu.open .drilldown-menu-panel.active { left: 0; z-index: 1; }
.pwa-drilldown-menu.open .drilldown-menu-panel.prev { left: -100%; z-index: 0; }
.pwa-drilldown-menu.open .drilldown-menu-panel.next { left: 100%; z-index: 0; }
.drilldown-menu-header {
  display: flex; align-items: center; padding: 20px 20px 8px 20px;
  border-bottom: 1px solid #f2f2f2; background: #222; color: #fff;
}
.drilldown-menu-title { font-size: 1.16em; font-weight: bold; letter-spacing: 0.02em; }
.drilldown-menu-close {
  background: none; border: none; color: #fff; font-size: 2em; padding: 0; cursor: pointer; margin-left: auto;
}
.drilldown-menu-back {
  background: none; border: none; color: #fff; font-size: 1.6em; padding: 0 14px 0 0; cursor: pointer;
  margin-right: 10px;
}
.drilldown-menu-list {
  list-style: none; padding: 0; margin: 0; flex: 1 1 auto; overflow-y: auto;
  background: #fff;
  display: flex;
flex-direction: column;
}
.drilldown-menu-list > li > a,
.drilldown-menu-list > li > .drilldown-menu-link {
  display: block; color: #222; text-decoration: none; font-size: 1.08em;
  padding: 15px 24px; border-bottom: 1.5px solid #f2f2f2; background: none; text-align: left;
  transition: background 0.17s;
  width: 100%; text-align: left; cursor: pointer; outline: none;
}
.drilldown-menu-list > li > a.active { color: #1976d2; font-weight: bold; }
.drilldown-menu-list > li > .drilldown-menu-link:after {
  content: '›'; float: right; font-size: 1.3em; color: #888;
}
.drilldown-menu-list > li > .drilldown-menu-link { background: none; border: none; }
.pwa-drilldown-hamburger {
  width: 44px; height: 44px; display: flex; flex-direction: column;
  justify-content: center; align-items: center; cursor: pointer;
}
.pwa-drilldown-hamburger span {
  display: block; width: 28px; height: 3.5px; background: #fff; margin: 4px 0; border-radius: 2px;
  transition: 0.2s;
}


/* Sticky PWA Bottom Bar */
#pwa-bottom-bar {
  display: none; /* Only shown in PWA mode by JS */
  position: fixed;
  left: 0; bottom: 0; width: 100vw; height: 80px;
  background: #000;
  z-index: 99999;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.14);
  font-family: inherit;
  user-select: none;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}
#pwa-bottom-bar a {
  flex: 1 1 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  border: none;
  background: none;
  outline: none;
  transition: background 0.17s, color 0.16s;
  height: 100%;
}
#pwa-bottom-bar a:active,
#pwa-bottom-bar a:focus {
  color: #ffd600;
  background: rgba(255,255,255,0.10);
}
#pwa-bottom-bar .material-icons {
  font-size: 2.04em; /* 20% bigger than 1.7em */
  display: block;
  pointer-events: none;
  line-height: 1;
}
#pwa-bottom-bar .pwa-footer__link-txt{
    font-size:11px;
}
/***loader pwa****/
/* Loader Overlay styles */
#pwa-loader {
  position: fixed;
  z-index: 100000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s;
}
#pwa-loader.active {
  display: flex;
  opacity: 1;
}

/* Cube Grid Loader (from CodePen) */
.sk-cube-grid {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}
.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #ffd600;
  float: left;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.sk-cube-grid .sk-cube1 { animation-delay: 0.2s; }
.sk-cube-grid .sk-cube2 { animation-delay: 0.3s; }
.sk-cube-grid .sk-cube3 { animation-delay: 0.4s; }
.sk-cube-grid .sk-cube4 { animation-delay: 0.1s; }
.sk-cube-grid .sk-cube5 { animation-delay: 0.2s; }
.sk-cube-grid .sk-cube6 { animation-delay: 0.3s; }
.sk-cube-grid .sk-cube7 { animation-delay: 0.0s; }
.sk-cube-grid .sk-cube8 { animation-delay: 0.1s; }
.sk-cube-grid .sk-cube9 { animation-delay: 0.2s; }

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% { transform: scale3D(1, 1, 1); }
  35% { transform: scale3D(0, 0, 1); }
}

/* Responsive: Hide bar on desktop */
@media (min-width: 900px) {
  #pwa-bottom-bar { display: none !important; }
  .pwa-drilldown-menu, .pwa-drilldown-hamburger { display: none !important; }
}

/* For body padding to avoid content being hidden */
body.pwa-mode #main {
  padding-bottom: 85px;
}