/* -------------------------------------------
   PRELOADER + INLINE BAR (2× ширина лого)
   ------------------------------------------- */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
#preloader img {
  max-width: 200px;   /* ширина лого */
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
/* полоса под логотипом: анимируется от 0 до 400px */
#progressbar-inline {
  width: 0;
  height: 4px;
  background: #0E1E4A;
  /* конечная ширина 400px (=2×200px) */
  animation: loadanim 5s linear forwards;
}
/* анимация роста полосы */
@keyframes loadanim {
  from { width: 0; }
  to   { width: 400px; }
}
