1/*
2 * DO NOT EDIT THIS FILE.
3 * See the following change record for more information,
4 * https://www.drupal.org/node/3084859
5 * @preserve
6 */
7
8/**
9 * @file
10 * Header Mobile Buttons.
11 */
12
13[dir="ltr"] .mobile-buttons {
14  margin-left: auto
15}
16
17[dir="rtl"] .mobile-buttons {
18  margin-right: auto
19}
20
21.mobile-buttons {
22  margin-top: 0.5625rem
23}
24
25@media (min-width: 31.25rem) {
26
27.mobile-buttons {
28    margin-top: 2.25rem
29}
30  }
31
32@media (min-width: 43.75rem) {
33
34.mobile-buttons {
35    margin-top: 4.5rem
36}
37  }
38
39@media (min-width: 75rem) {
40
41.mobile-buttons {
42    margin-top: 6.75rem
43}
44  }
45
46@media (min-width: 75rem) {
47  body:not(.is-always-mobile-nav) .mobile-buttons {
48    display: none;
49  }
50}
51