:root {
  --header_bg_color: #fff;
  --header_link_color: #777777;
  --header_link_hover_color: #333333;
}
.custom_header {
  display: flex;
  background: var(--header_bg_color);
  height: 110px;
  font-family: "Helvetica", helvetica, arial, sans-serif;
  text-align: left;
  font-size: 16px;
  width: 100%;
}
.custom_header .brand {
  margin: 14px;
  height: calc(100% - 28px);
}
.custom_header .brand a {
  display: flex;
  height: 100%;
}
.custom_header .brand a img {
  height: 100%;
  width: auto;
}
.custom_header .items-left {
  flex-grow: 1;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.custom_header .items-right {
  margin-right: 30px;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.custom_header .item {
  background: none !important;
}
.custom_header .item img {
  height: 40px;
}
.custom_header .item > a {
  white-space: nowrap;
  color: var(--header_link_color);
  padding: 8px 12px;
  display: block;
}
.custom_header .item > a:focus,
.custom_header .item > a:hover {
  outline: none;
  text-decoration: none;
  color: var(--header_link_hover_color);
  text-shadow: 0px 0px 1px currentColor;
}
.custom_header .dropdown {
  white-space: nowrap;
}
.custom_header .dropdown .dropdown-toggle {
  color: var(--header_link_color);
}
.custom_header .dropdown.open {
  background: #e7e7e7;
}
.custom_header .dropdown.open .dropdown-toggle,
.custom_header .dropdown .dropdown-toggle:hover {
  color: var(--header_link_hover_color);
  text-decoration: none;
}
.custom_header .dropdown-menu {
  margin-top: -1px;
}
.custom_header .items-mobile {
  display: none;
  margin-right: 20px;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: flex-end;
}
.custom_header .menu_trigger {
  transition: opacity 0.2s ease-in 0.1s;
  font-size: 24px;
  padding: 3px 14px 0px 14px !important;
  border: 1px solid #00000010;
  border-radius: 4px;
  color: var(--header_link_color) !important;
}
.custom_header .menu_trigger:hover {
  color: var(--header_link_color) !important;
  border: 1px solid transparent;
  background: #00000010;
}
.custom_header .menu_trigger.menu_open {
  opacity: 0;
}
.custom_side_menu {
  pointer-events: none;
  display: none;
  position: fixed;
  font-family: "Helvetica", helvetica, arial, sans-serif;
  text-align: left;
  font-size: 16px;
  z-index: 1100;
  width: 100%;
  top: 0;
  bottom: 0;
}
.custom_side_menu .side_menu_items {
  transition: margin-left 0.3s ease-out;
  margin-left: -360px;
  overflow: auto;
  background: var(--header_bg_color);
  width: 360px;
  max-width: 100%;
}
.custom_side_menu .side_menu_items .brand {
  margin: 14px;
  height: 52px;
  overflow: hidden;
}
.custom_side_menu .side_menu_items .brand a {
  display: block;
  height: 100%;
}
.custom_side_menu .side_menu_items .brand img {
  height: 100%;
}
.custom_side_menu .side_menu_items .items {
  border-top: 1px solid #00000010;
  padding: 12px 6px;
}
.custom_side_menu .side_menu_items .items .item {
  background: none !important;
}
.custom_side_menu .side_menu_items .items .item > a {
  white-space: nowrap;
  color: var(--header_link_color);
  padding: 8px 12px;
  display: block;
}
.custom_side_menu .side_menu_items .items .item > a:hover,
.custom_side_menu .side_menu_items .items .item > a:focus {
  outline: none;
  text-decoration: none;
  color: var(--header_link_hover_color);
  text-shadow: 0px 0px 1px currentColor;
}
.custom_side_menu .side_menu_items .items .item > a img {
  height: 40px;
}
.custom_side_menu .side_menu_items .items .submenu {
  margin-left: 12px;
}
.custom_side_menu .side_menu_overlay {
  transition: opacity 0.2s ease-out 0.1s;
  background: black;
  flex-grow: 1;
  opacity: 0;
}
.custom_side_menu .menu_trigger {
  transition: opacity 0.2s ease-in 0.1s;
  opacity: 0;
  position: absolute;
  font-size: 26px;
  right: 20px;
  top: 20px;
  padding: 0px 17px 0px 17px !important;
  border: 1px solid var(--header_bg_color);
  border-radius: 4px;
  color: var(--header_link_color) !important;
}
.custom_side_menu .menu_trigger:hover {
  color: var(--header_link_color) !important;
  background: var(--header_bg_color);
}
.custom_side_menu.menu_open {
  pointer-events: all;
}
.custom_side_menu.menu_open .side_menu_items {
  margin-left: 0;
}
.custom_side_menu.menu_open .side_menu_overlay {
  opacity: 0.3;
}
.custom_side_menu.menu_open .menu_trigger {
  opacity: 1;
}
@media only screen and (max-width: 760px) {
  .custom_header {
    height: 80px;
  }
  .custom_header .items-right {
    display: none;
  }
  .custom_header .items-left {
    display: none;
  }
  .custom_header .items-mobile {
    display: flex;
  }
  .custom_side_menu {
    display: flex;
  }
}
/*# sourceMappingURL=header.css.map */