/* =========================
   MENU INITIAL STATES
========================= */

[data-id="nav-overlay"] {
    display: none;
    opacity: 0;
  }
  
  [data-id="projekte-links"] {
    display: none;
    opacity: 0;
  }
  
  [data-blur="true"] {
    will-change: filter;
  }
  
  /* =========================
     GLOBAL OVERRIDES
  ========================= */
  
  .w-webflow-badge {
    display: none !important;
  }
  
  .svg-embed,
  a,
  a:focus,
  button:focus,
  input:focus,
  textarea:focus {
    outline: 0 !important;
    outline-style: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
  }
  
  /* better text rendering */
  * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  /* =========================
     SCROLLBAR
  ========================= */
  
  /* WebKit browsers */
  ::-webkit-scrollbar {
    width: 12px;
    height: 12px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
  
  /* Firefox */
  html {
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
  }
  
  /* IE / legacy */
  body {
    -ms-overflow-style: none;
  }