/** Shopify CDN: Minification failed

Line 132:1 Expected "}" to go with "{"

**/
.subheader {
  padding-top: 0 !important; padding-bottom: 0 !important;
  background-color: rgba(0,0,0,0.3);
  max-width: 100%;
}
.subheader .subarea {
  max-width: 1400px;
  margin: auto;
  padding: 0 5rem;
}

.subheader.desktop {
  display: none;
}
@media screen and (min-width: 990px) {
.subheader.desktop {
  display: block;
}

@media screen and (min-width: 750px) {
  .subheader .subarea {
    padding: 0 5rem;
  }
}

@media screen and (min-width: 990px) {
  .header {
    padding-bottom: 10px !important;
  }
  .subheader.header {
    padding-bottom: 0 !Important;
  }
}

.subarea {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.menuitem {
  display: flex;
  flex: 1;
  text-align: center;
  transition: all ease-out .15s;
  position: relative;
  border-right: 2px solid rgba(255,255,255,.15);
  box-sizing: border-box;
}
.menuitem::first-child {
 left: 2px solid rgba(255,255,255,.15);
}
.menuitem::last-child {
  border-right: 0;
}
.menuitem .maintext {
  position: relative;
  width: 100%;
  padding: 6px 10px;
  min-width: 6rem;
  padding: 8 15px;
  min-width: 120px;
  font-size: 12px;
}
.menuitem a.maintext {
  color: #fff;
  text-decoration: none;
}

.menuitem:hover .maintext {
  background-color: #f49335;
  color: #000;
  cursor: pointer;
}

.menuitem ul {
  list-style-type: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 150px;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  background: #63676b;
  color: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: all ease-in .2s;
}

.menuitem:hover ul {
  max-height: 500px;
  pointer-events: all;
}

.menuitem ul li a {
  display: inline-block !important;
  color: #fff !important;
  transition: all ease .2s;
  padding: 8px 10px;
  width: 100%;
  text-decoration: none !important;
  font-size: 12px;
}
.menuitem ul li a:hover {
  background: #f49335 !important;
  color: #000 !important;
}

@media (max-width: 990px) {
  
  .subheader.mobile {
    padding-top: 30px;
  }

  .menuitem ul {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .subheader .menuitem a, a.maintext {
    color: #fff !important;
  }
  
}