body {
  margin: 0;
}

.shared-header {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'PT Sans', 'PTSans', sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
  color: #61757e;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.shared-header__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 65px;
  margin: 8px 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  border-left: 1px solid #61757e;
}

.shared-header__label-less {
  display: none;
}

.shared-header__label-more {
  display: block;
}

.shared-header__item {
  position: relative;
  display: block;
  padding: 0 15px 0 16px;
  margin: 8px 0 8px -1px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  border-left: 1px solid #61757e;
}

.shared-header__projects {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-height: 30px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  -o-transition: max-height 0.5s;
  transition: max-height 0.5s;
}

.shared-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.shared-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.shared-header__opener {
  display: none;
}

.shared-header__opener:checked + .shared-header__container .shared-header__projects {
  max-height: 90px;
}

.shared-header__opener:checked + .shared-header__container .shared-header__label-less {
  display: block;
}

.shared-header__opener:checked + .shared-header__container .shared-header__label-more {
  display: none;
}

@media (max-width: 767px) {
  .shared-header {
    display: none;
  }
}

