#header_region {
  z-index: 2;
  background-color: #fff;
  box-shadow: 0px -1px 0px 0px rgba(242,242,243,100%);
}
#header_region .container,
#header_navigator .container{
  overflow: visible;
}
#header_region .panel {
  height: 100px;
  justify-content: space-between;
}
#header_region .region {
  font-size: 30px;
  height: 60px;
  line-height: 60px;
  color: #666;
  position: relative;
}
#header_region .region >.selected {
  cursor: pointer;
}
#header_region .region >.selected .text{
  padding-left: 1em;
}
#header_region .region >.selected .select {
  display: inline-block;
  width: 30px;
  text-align: center;
  transform: rotate(90deg) scaleY(1.5);
  transition: all 0.4s ease;
}
#header_region .region >.selected.activated .select {
  transform: rotate(270deg) scaleY(1.5);
}
#header_region .region .candidates {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  line-height: 60px;
  background-color: #e9e9e9;
  overflow: hidden;
  display: none;
}
#header_region .region .candidate {
  background-color: #fff;
  cursor: pointer;
  margin: 1px;
}
#header_region .region .candidate:first-child {
  margin-top: 0;
}
#header_region .region .candidate:hover,
#header_region .region .candidate.active {
  background-color: #2c7ae1;
  color: #fff;
}

#header_navigator {
  background-color: #2853c2;
  color: #fff;
  font-size: 30px;
  z-index: 1;
}
#header_navigator .panel {
  height: 95px;
  justify-content: space-between;
}
#category-menu-wrapper {
  position: relative;
  cursor: pointer;
}
#category-menu {
  background-color: #fff;
  position: absolute;
  left: -60px;
  top: 65px;
  width: 180px;
  font-size: 24px;
}
#category-menu:after {
  content: " ";
  position: absolute;
  left: 80px;
  bottom: 100%;
  width: 0;
  height: 0;
  border-right: solid 10px transparent;
  border-bottom: solid 10px #fff;
  border-left: solid 10px transparent;
}
#category-menu .category {
  width: 100%;
  color: #333;
  line-height: 62px;
}
#category-menu .category:not(:first-child) {
  border-top: solid 3px #fbfcfb;
}

#crumbs {
  height: 90px;
  margin: 0 auto;
  line-height: 100px;
  text-align: left;
  font-size: 24px;
  color: #666;
}
#crumbs a {
  display: inline;
}