1/*! responsive-nav.js 1.0.39 by @viljamis */
2
3@media screen and (max-width: 963px) {
4
5 .nav-collapse ul {
6 margin: 0;
7 padding: 0;
8 width: 100%;
9 display: block;
10 list-style: none;
11 }
12
13 .nav-collapse li {
14 width: 100%;
15 display: block;
16 }
17
18 .js .nav-collapse {
19 clip: rect(0 0 0 0);
20 max-height: 0;
21 position: absolute;
22 display: block;
23 overflow: hidden;
24
zoom: 1;
25 }
26
27 .nav-collapse.opened {
28 max-height: 9999px;
29 }
30
31 .nav-toggle {
32
-webkit-tap-highlight-color: rgba(0,0,0,0);
33
-webkit-touch-callout: none;
34
-webkit-user-select: none;
35
-moz-user-select: none;
36
-ms-user-select: none;
37
-o-user-select: none;
38 user-select: none;
39 }
40
41}
42
43/* @media screen and (min-width: 40em) { */
44@media screen and (min-width: 963px) {
45 .js .nav-collapse {
46 position: relative;
47 }
48 .js .nav-collapse.closed {
49 max-height: none;
50 }
51 .nav-toggle {
52 display: none;
53 }
54}