/* ==========================================================================
   Proje: HIZIRBEY Portal
   Paket: Navigation Runtime
   Bileşen: Placement Device Visibility
   Dosya: themes/default/assets/css/navigation-runtime/device-visibility.css
   Açıklama: Runtime placement'ları yayınlandıkları cihaz sözleşmesine göre
             filtreler. HDS Navigation component sunumunun parçası değildir.
   Yazar: Mehmet Kalli
   Oluşturuldu: 12.08.2026
   Sürüm: 1.0.0
========================================================================== */

/* ========================================================================== [ START ] RUNTIME DEVICE VISIBILITY */
@media (min-width: 1024px) {
  .navigation-runtime-placement[data-navigation-show-desktop="0"] { display: none; }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .navigation-runtime-placement[data-navigation-show-tablet="0"] { display: none; }
}

@media (max-width: 767.98px) {
  .navigation-runtime-placement[data-navigation-show-mobile="0"] { display: none; }
}
/* [ END ] RUNTIME DEVICE VISIBILITY */
