@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
body {
  font: 400 15px/1.3 "Montserrat", "Open Sans", sans-serif;
  color: #777;
  margin: 0;
  background: #e4e8ec;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  margin: 0;
}

h2 {
  font-size: 1.15rem;
  font-weight: 500;
  color: black;
}

h3 {
  font-size: 1rem;
  font-weight: 500;
  color: black;
}

.montserrat {
  font-family: "Montserrat";
}

.primary-color {
  color: #ce0000;
}

.secondary-color {
  color: #006659;
}

.tertiary-color {
  color: #fa663d;
}

.yellow {
  color: #ffc800;
}

.white {
  color: white;
}

.black {
  color: black;
}

.gray {
  color: #777;
}

.pad-0-5 {
  padding: 0 5px;
}

.pad-0-10 {
  padding: 0 10px;
}

.nowrap {
  white-space: nowrap;
}

.center-text {
  text-align: center;
}

.fullwidth {
  width: 100%;
}

.page-header {
  width: 100%;
  display: block;
}

.flex {
  display: flex;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.justify-center {
  justify-content: center;
}
.flex.center {
  align-items: center;
}
.flex .flex-1 {
  flex: 1;
}
.flex.align-top {
  align-items: flex-start;
}
.flex.wrap {
  flex-wrap: wrap;
}

.nowrap {
  white-space: nowrap;
}

.col-2 {
  column-count: 2;
  column-gap: 10px;
}

.beers .col-2 {
  column-count: 3;
  column-gap: 10px;
}

.pad-30 {
  padding: 30px;
}

.margin-0 {
  margin: 0;
}

.right-30 {
  margin-right: 30px;
}

.bottom-0 {
  margin-bottom: 0;
}

.bottom-30 {
  margin-bottom: 30px;
}

.padding-30 {
  padding: 30px;
}

.inline-block {
  display: inline-block;
}

.biz-info {
  background: linear-gradient(90deg, #33383d, black);
  padding: 20px;
}
.biz-info > div > div {
  padding: 10px 15px;
}
.biz-info p {
  color: white;
}
.biz-info hr {
  border: none;
  border-bottom: 1px solid #777;
}
.biz-info .main-site {
  margin: 0 0 14px;
}
.biz-info .main-site a {
  background: #da4644;
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
}

header {
  background: #ce0000;
  padding: 15px;
  letter-spacing: 0.5px;
}
header h1 {
  color: white;
  font-weight: 400;
}
header img.menu-head-logo {
  display: block;
  width: 100px;
}

input.accord-input,
input.nav-input {
  display: none;
}

.accord-wrap,
.tabbed-pg-wrap {
  background: #e4e8ec;
}
.accord-wrap .menu-category label,
.tabbed-pg-wrap .menu-category label {
  display: block;
  padding: 10px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  font-size: 24px;
  position: sticky;
  top: 0;
  z-index: 9;
  transition: 0.2s ease-in-out;
}
.accord-wrap .menu-category label:hover,
.tabbed-pg-wrap .menu-category label:hover {
  background: #e4e8ec;
  cursor: pointer;
}
.accord-wrap .menu-category label:after,
.tabbed-pg-wrap .menu-category label:after {
  content: "+";
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 200;
  line-height: 28px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.accord-wrap .menu-category .accord-content,
.tabbed-pg-wrap .menu-category .accord-content {
  max-height: 0px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
  column-count: 2;
}
.accord-wrap .menu-category .item-img,
.tabbed-pg-wrap .menu-category .item-img {
  position: relative;
  min-width: 100px;
  width: 100px;
  height: 100px;
  margin-right: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.accord-wrap .menu-category .item-img img,
.tabbed-pg-wrap .menu-category .item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accord-wrap .menu-category .item-img label.img-popup,
.tabbed-pg-wrap .menu-category .item-img label.img-popup {
  position: fixed;
  padding: 0 !important;
  border: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: -9;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in-out;
}
.accord-wrap .menu-category .item-img label.img-popup:after,
.tabbed-pg-wrap .menu-category .item-img label.img-popup:after {
  content: "";
}
.accord-wrap .menu-category .item-img label.img-popup img,
.tabbed-pg-wrap .menu-category .item-img label.img-popup img {
  width: unset;
  height: unset;
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.accord-wrap .menu-category .item-img input,
.tabbed-pg-wrap .menu-category .item-img input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
}
.accord-wrap .menu-category .item-img input:hover,
.tabbed-pg-wrap .menu-category .item-img input:hover {
  cursor: zoom-in;
}
.accord-wrap .menu-category .item-img input:checked ~ label.img-popup,
.tabbed-pg-wrap .menu-category .item-img input:checked ~ label.img-popup {
  display: block;
  padding: 0;
  z-index: 9;
  visibility: visible;
  opacity: 1;
}
.accord-wrap .menu-category .item-img input:checked ~ label.img-popup:hover,
.tabbed-pg-wrap .menu-category .item-img input:checked ~ label.img-popup:hover {
  cursor: zoom-out;
}
.accord-wrap .menu-category .menu-item,
.tabbed-pg-wrap .menu-category .menu-item {
  padding: 15px;
  -webkit-column-break-inside: avoid !important;
}
.accord-wrap .menu-category .menu-item:nth-child(odd),
.tabbed-pg-wrap .menu-category .menu-item:nth-child(odd) {
  background: #e4e8ec;
}
.accord-wrap .menu-category .menu-item .item-name,
.tabbed-pg-wrap .menu-category .menu-item .item-name {
  font-weight: bold;
  color: black;
}
.accord-wrap .menu-category .menu-item .item-price,
.tabbed-pg-wrap .menu-category .menu-item .item-price {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ce0000;
  text-align: right;
}

.beer-header {
  font-size: 24px;
  margin: 15px 0;
  color: #ce0000;
}
.cat-header,
.cat-footer {
  column-span: all;
}

.cat-header {
  background: linear-gradient(90deg, #33383d, black);
  padding: 20px;
  border-radius: 10px;
  margin: 0 0 15px;
}
.cat-header h3 {
  color: #ffc800;
}
.cat-header p {
  color: white;
  margin-bottom: 5px;
}

.cat-footer {
  color: black;
  text-align: center;
}

input.accord-input:nth-of-type(1):checked ~ div.accord-wrap .menu-category:nth-of-type(1) .accord-content,
input.accord-input:nth-of-type(2):checked ~ div.accord-wrap .menu-category:nth-of-type(2) .accord-content,
input.accord-input:nth-of-type(3):checked ~ div.accord-wrap .menu-category:nth-of-type(3) .accord-content,
input.accord-input:nth-of-type(4):checked ~ div.accord-wrap .menu-category:nth-of-type(4) .accord-content,
input.accord-input:nth-of-type(5):checked ~ div.accord-wrap .menu-category:nth-of-type(5) .accord-content,
input.accord-input:nth-of-type(6):checked ~ div.accord-wrap .menu-category:nth-of-type(6) .accord-content,
input.accord-input:nth-of-type(7):checked ~ div.accord-wrap .menu-category:nth-of-type(7) .accord-content,
input.accord-input:nth-of-type(8):checked ~ div.accord-wrap .menu-category:nth-of-type(8) .accord-content,
input.accord-input:nth-of-type(9):checked ~ div.accord-wrap .menu-category:nth-of-type(9) .accord-content,
input.accord-input:nth-of-type(10):checked ~ div.accord-wrap .menu-category:nth-of-type(10) .accord-content,
input.accord-input:nth-of-type(11):checked ~ div.accord-wrap .menu-category:nth-of-type(11) .accord-content,
input.accord-input:nth-of-type(12):checked ~ div.accord-wrap .menu-category:nth-of-type(12) .accord-content,
input.accord-input:nth-of-type(13):checked ~ div.accord-wrap .menu-category:nth-of-type(13) .accord-content,
input.accord-input:nth-of-type(14):checked ~ div.accord-wrap .menu-category:nth-of-type(14) .accord-content,
input.accord-input:nth-of-type(15):checked ~ div.accord-wrap .menu-category:nth-of-type(15) .accord-content,
input.accord-input:nth-of-type(16):checked ~ div.accord-wrap .menu-category:nth-of-type(16) .accord-content,
input.accord-input:nth-of-type(17):checked ~ div.accord-wrap .menu-category:nth-of-type(17) .accord-content,
input.accord-input:nth-of-type(18):checked ~ div.accord-wrap .menu-category:nth-of-type(18) .accord-content,
input.accord-input:nth-of-type(19):checked ~ div.accord-wrap .menu-category:nth-of-type(19) .accord-content {
  max-height: 1500px;
  padding: 10px 0;
  transition: 0.2s ease-in-out;
}
input.accord-input:nth-of-type(1):checked ~ div.accord-wrap .menu-category:nth-of-type(1) label:after,
input.accord-input:nth-of-type(2):checked ~ div.accord-wrap .menu-category:nth-of-type(2) label:after,
input.accord-input:nth-of-type(3):checked ~ div.accord-wrap .menu-category:nth-of-type(3) label:after,
input.accord-input:nth-of-type(4):checked ~ div.accord-wrap .menu-category:nth-of-type(4) label:after,
input.accord-input:nth-of-type(5):checked ~ div.accord-wrap .menu-category:nth-of-type(5) label:after,
input.accord-input:nth-of-type(6):checked ~ div.accord-wrap .menu-category:nth-of-type(6) label:after,
input.accord-input:nth-of-type(7):checked ~ div.accord-wrap .menu-category:nth-of-type(7) label:after,
input.accord-input:nth-of-type(8):checked ~ div.accord-wrap .menu-category:nth-of-type(8) label:after,
input.accord-input:nth-of-type(9):checked ~ div.accord-wrap .menu-category:nth-of-type(9) label:after,
input.accord-input:nth-of-type(10):checked ~ div.accord-wrap .menu-category:nth-of-type(10) label:after,
input.accord-input:nth-of-type(11):checked ~ div.accord-wrap .menu-category:nth-of-type(11) label:after,
input.accord-input:nth-of-type(12):checked ~ div.accord-wrap .menu-category:nth-of-type(12) label:after,
input.accord-input:nth-of-type(13):checked ~ div.accord-wrap .menu-category:nth-of-type(13) label:after,
input.accord-input:nth-of-type(14):checked ~ div.accord-wrap .menu-category:nth-of-type(14) label:after,
input.accord-input:nth-of-type(15):checked ~ div.accord-wrap .menu-category:nth-of-type(15) label:after,
input.accord-input:nth-of-type(16):checked ~ div.accord-wrap .menu-category:nth-of-type(16) label:after,
input.accord-input:nth-of-type(17):checked ~ div.accord-wrap .menu-category:nth-of-type(17) label:after,
input.accord-input:nth-of-type(18):checked ~ div.accord-wrap .menu-category:nth-of-type(18) label:after,
input.accord-input:nth-of-type(19):checked ~ div.accord-wrap .menu-category:nth-of-type(19) label:after {
  transform: translateY(-50%) rotate(45deg);
  transition: 0.2s ease-in-out;
}

.tabbed-pg-wrap {
  flex: 1;
  position: relative;
  height: calc(100vh - 119px);
  overflow-y: scroll;
}
.tabbed-pg-wrap .tabbed-pg {
  width: calc(100% - 40px);
  max-height: 0;
  padding: 20px;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
  transition: opacity 0.2s ease-in-out;
}
.tabbed-pg-wrap p {
  margin: 10px 0;
}

.nav-header {
  padding: 10px 30px 10px 15px;
  margin-left: 15px;
  border-radius: 10px 0 0 10px;
}
.nav-header:hover {
  background: rgba(255, 255, 255, 0.5);
}

input.nav-input:nth-of-type(1):checked ~ div.menu-container label.nav-header:nth-of-type(1),
input.nav-input:nth-of-type(2):checked ~ div.menu-container label.nav-header:nth-of-type(2),
input.nav-input:nth-of-type(3):checked ~ div.menu-container label.nav-header:nth-of-type(3),
input.nav-input:nth-of-type(4):checked ~ div.menu-container label.nav-header:nth-of-type(4),
input.nav-input:nth-of-type(5):checked ~ div.menu-container label.nav-header:nth-of-type(5),
input.nav-input:nth-of-type(6):checked ~ div.menu-container label.nav-header:nth-of-type(6),
input.nav-input:nth-of-type(7):checked ~ div.menu-container label.nav-header:nth-of-type(7),
input.nav-input:nth-of-type(8):checked ~ div.menu-container label.nav-header:nth-of-type(8),
input.nav-input:nth-of-type(9):checked ~ div.menu-container label.nav-header:nth-of-type(9),
input.nav-input:nth-of-type(10):checked ~ div.menu-container label.nav-header:nth-of-type(10),
input.nav-input:nth-of-type(11):checked ~ div.menu-container label.nav-header:nth-of-type(11),
input.nav-input:nth-of-type(12):checked ~ div.menu-container label.nav-header:nth-of-type(12),
input.nav-input:nth-of-type(13):checked ~ div.menu-container label.nav-header:nth-of-type(13),
input.nav-input:nth-of-type(14):checked ~ div.menu-container label.nav-header:nth-of-type(14),
input.nav-input:nth-of-type(15):checked ~ div.menu-container label.nav-header:nth-of-type(15),
input.nav-input:nth-of-type(16):checked ~ div.menu-container label.nav-header:nth-of-type(16),
input.nav-input:nth-of-type(17):checked ~ div.menu-container label.nav-header:nth-of-type(17),
input.nav-input:nth-of-type(18):checked ~ div.menu-container label.nav-header:nth-of-type(18),
input.nav-input:nth-of-type(19):checked ~ div.menu-container label.nav-header:nth-of-type(19) {
  background: #e4e8ec;
}
input.nav-input:nth-of-type(1):checked ~ div.menu-container label.nav-header:nth-of-type(1):hover,
input.nav-input:nth-of-type(2):checked ~ div.menu-container label.nav-header:nth-of-type(2):hover,
input.nav-input:nth-of-type(3):checked ~ div.menu-container label.nav-header:nth-of-type(3):hover,
input.nav-input:nth-of-type(4):checked ~ div.menu-container label.nav-header:nth-of-type(4):hover,
input.nav-input:nth-of-type(5):checked ~ div.menu-container label.nav-header:nth-of-type(5):hover,
input.nav-input:nth-of-type(6):checked ~ div.menu-container label.nav-header:nth-of-type(6):hover,
input.nav-input:nth-of-type(7):checked ~ div.menu-container label.nav-header:nth-of-type(7):hover,
input.nav-input:nth-of-type(8):checked ~ div.menu-container label.nav-header:nth-of-type(8):hover,
input.nav-input:nth-of-type(9):checked ~ div.menu-container label.nav-header:nth-of-type(9):hover,
input.nav-input:nth-of-type(10):checked ~ div.menu-container label.nav-header:nth-of-type(10):hover,
input.nav-input:nth-of-type(11):checked ~ div.menu-container label.nav-header:nth-of-type(11):hover,
input.nav-input:nth-of-type(12):checked ~ div.menu-container label.nav-header:nth-of-type(12):hover,
input.nav-input:nth-of-type(13):checked ~ div.menu-container label.nav-header:nth-of-type(13):hover,
input.nav-input:nth-of-type(14):checked ~ div.menu-container label.nav-header:nth-of-type(14):hover,
input.nav-input:nth-of-type(15):checked ~ div.menu-container label.nav-header:nth-of-type(15):hover,
input.nav-input:nth-of-type(16):checked ~ div.menu-container label.nav-header:nth-of-type(16):hover,
input.nav-input:nth-of-type(17):checked ~ div.menu-container label.nav-header:nth-of-type(17):hover,
input.nav-input:nth-of-type(18):checked ~ div.menu-container label.nav-header:nth-of-type(18):hover,
input.nav-input:nth-of-type(19):checked ~ div.menu-container label.nav-header:nth-of-type(19):hover {
  cursor: default;
}

input.nav-input:nth-of-type(1):checked ~ div.menu-container .tabbed-pg:nth-of-type(1),
input.nav-input:nth-of-type(2):checked ~ div.menu-container .tabbed-pg:nth-of-type(2),
input.nav-input:nth-of-type(3):checked ~ div.menu-container .tabbed-pg:nth-of-type(3),
input.nav-input:nth-of-type(4):checked ~ div.menu-container .tabbed-pg:nth-of-type(4),
input.nav-input:nth-of-type(5):checked ~ div.menu-container .tabbed-pg:nth-of-type(5),
input.nav-input:nth-of-type(6):checked ~ div.menu-container .tabbed-pg:nth-of-type(6),
input.nav-input:nth-of-type(7):checked ~ div.menu-container .tabbed-pg:nth-of-type(7),
input.nav-input:nth-of-type(8):checked ~ div.menu-container .tabbed-pg:nth-of-type(8),
input.nav-input:nth-of-type(9):checked ~ div.menu-container .tabbed-pg:nth-of-type(9),
input.nav-input:nth-of-type(10):checked ~ div.menu-container .tabbed-pg:nth-of-type(10),
input.nav-input:nth-of-type(11):checked ~ div.menu-container .tabbed-pg:nth-of-type(11),
input.nav-input:nth-of-type(12):checked ~ div.menu-container .tabbed-pg:nth-of-type(12),
input.nav-input:nth-of-type(13):checked ~ div.menu-container .tabbed-pg:nth-of-type(13),
input.nav-input:nth-of-type(14):checked ~ div.menu-container .tabbed-pg:nth-of-type(14),
input.nav-input:nth-of-type(15):checked ~ div.menu-container .tabbed-pg:nth-of-type(15),
input.nav-input:nth-of-type(16):checked ~ div.menu-container .tabbed-pg:nth-of-type(16),
input.nav-input:nth-of-type(17):checked ~ div.menu-container .tabbed-pg:nth-of-type(17),
input.nav-input:nth-of-type(18):checked ~ div.menu-container .tabbed-pg:nth-of-type(18),
input.nav-input:nth-of-type(19):checked ~ div.menu-container .tabbed-pg:nth-of-type(19) {
  opacity: 1;
  position: relative;
  max-height: unset;
  transition: opacity 0.2s ease-in-out;
  z-index: 9;
}

.menu-nav .sticky {
  position: sticky;
  top: 10px;
}

.menu-nav {
  padding: 20px 0;
  background: white;
  height: calc(100vh - 119px - 40px);
  position: relative;
  z-index: 5;
  overflow-y: scroll;
}
.menu-nav label {
  display: block;
  white-space: nowrap;
}
.menu-nav label:hover {
  background: rgba(228, 232, 236, 0.5);
  cursor: pointer;
}

.menu-item {
  padding: 0 !important;
  margin: 0 0 10px;
  border-radius: 10px;
  background: white !important;
  overflow: hidden;
  justify-content: unset !important;
  align-items: stretch !important;
}
.menu-item:last-child {
  margin-bottom: 0;
}
.menu-item .item-img img {
  min-width: unset !important;
  height: unset !important;
  margin-right: 0px !important;
  border-radius: 0px !important;
}
.menu-item .descript {
  padding: 15px;
  flex: 1;
}
header > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .beers .col-2 {
    column-count: 2;
  }
}
@media (max-width: 768px) {
  .menu-nav {
    height: calc(100vh - 109px - 40px);
  }
  .tabbed-pg-wrap {
    height: calc(100vh - 109px);
  }
  .accord-wrap .menu-category .accord-content,
.col-2 {
    column-count: 1;
  }
  header {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  header,
.menu-nav {
    position: sticky;
    top: 0;
    box-shadow: 0 1px #e4e8ec;
  }
  .menu-container {
    display: block;
    position: relative;
    z-index: 5;
  }
  .menu-container .menu-nav {
    display: grid;
    min-height: unset;
    padding: 0 10px;
    height: unset;
    z-index: 15;
  }
  .menu-container .menu-nav .sticky {
    position: relative;
    top: 0;
    display: flex;
    overflow-x: scroll;
  }
  .menu-container .menu-nav .sticky label {
    padding: 5px 15px;
    margin: 10px 0 0;
    border-radius: 10px 10px 0 0;
  }
  .menu-container .tabbed-pg-wrap {
    height: unset;
  }
  .menu-container .beers .col-2,
.menu-container .col-2 {
    column-count: 2;
  }
  input.nav-input:nth-of-type(1):checked ~ div.menu-container label.nav-header:nth-of-type(1),
input.nav-input:nth-of-type(2):checked ~ div.menu-container label.nav-header:nth-of-type(2),
input.nav-input:nth-of-type(3):checked ~ div.menu-container label.nav-header:nth-of-type(3),
input.nav-input:nth-of-type(4):checked ~ div.menu-container label.nav-header:nth-of-type(4),
input.nav-input:nth-of-type(5):checked ~ div.menu-container label.nav-header:nth-of-type(5),
input.nav-input:nth-of-type(6):checked ~ div.menu-container label.nav-header:nth-of-type(6),
input.nav-input:nth-of-type(7):checked ~ div.menu-container label.nav-header:nth-of-type(7),
input.nav-input:nth-of-type(8):checked ~ div.menu-container label.nav-header:nth-of-type(8),
input.nav-input:nth-of-type(9):checked ~ div.menu-container label.nav-header:nth-of-type(9),
input.nav-input:nth-of-type(10):checked ~ div.menu-container label.nav-header:nth-of-type(10),
input.nav-input:nth-of-type(11):checked ~ div.menu-container label.nav-header:nth-of-type(11),
input.nav-input:nth-of-type(12):checked ~ div.menu-container label.nav-header:nth-of-type(12),
input.nav-input:nth-of-type(13):checked ~ div.menu-container label.nav-header:nth-of-type(13),
input.nav-input:nth-of-type(14):checked ~ div.menu-container label.nav-header:nth-of-type(14),
input.nav-input:nth-of-type(15):checked ~ div.menu-container label.nav-header:nth-of-type(15),
input.nav-input:nth-of-type(16):checked ~ div.menu-container label.nav-header:nth-of-type(16),
input.nav-input:nth-of-type(17):checked ~ div.menu-container label.nav-header:nth-of-type(17),
input.nav-input:nth-of-type(18):checked ~ div.menu-container label.nav-header:nth-of-type(18),
input.nav-input:nth-of-type(19):checked ~ div.menu-container label.nav-header:nth-of-type(19) {
    background: #e4e8ec;
  }
}
@media (max-width: 575px) {
  header {
    font-size: 14px;
  }
  header > div {
    display: block;
    text-align: center;
  }
  header > div img {
    margin: 0 auto 20px;
  }
  header h1,
header h1 + div {
    margin-right: 15px !important;
  }
  header h1 img.menu-head-logo,
header h1 + div img.menu-head-logo {
    width: 90px;
  }
  .menu-container .col-2 {
    column-count: 1;
  }
}

/*# sourceMappingURL=menu-styles.css.map */
