@charset "UTF-8";
/* CSS Document */
   .burger-button {
      background: none;
      border: none;
      font-size: 24px;
      padding: 0 8px;
      cursor: pointer;
    }

    .bd-mobile-nav {
      display: none;
      position: absolute;
      top: 50px;
      left: 0;
      width: 50vw;
      max-width: 280px;
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 6px;
      z-index: 9999;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      font-family: 'Muli', sans-serif;
    }

    .bd-mobile-nav.show {
      display: block;
    }

    .burger-close {
      text-align: right;
      padding: 8px 12px;
      font-size: 20px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
    }

    .burger-links {
      max-height: 640px;
      overflow-y: auto;
    }

    .burger-link {
      display: block;
      padding: 6px 14px;
      font-size: 14px;
      color: #333;
      text-decoration: none;
      line-height: 1.0;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .burger-link:hover,
    .burger-link:focus {
      background-color: #f2f2f2;
      color: #0073e6;
      border-left: 3px solid #0073e6;
    }
