body {
  padding-top: 50px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  z-index: 9;
}

.header__wrapper {
  position: relative;
  background-color: #66a94f;
  height: 50px;
  width: 100%;
  z-index: 3;
}

.header__logo {
  float: left;
}

.header__logo-link {
  margin-top: 3px;
  /* margin-bottom: 5px; */
  display: block;
  height: 40px;
  line-height: 40px;
}

.header__logo-link img {
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}

.header__burger {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  color: #f1f1f1;
  cursor: pointer;
  display: none;
  float: right;
  font-size: 24px;
  line-height: 30px;
  text-shadow: 0 0 1px #dbdbdb;
}

.header__burger:hover {
  color: white;
}

.header__menu {
  float: right;
}

.header__menu_slide {
  padding-right: 10px;
  padding-left: 20px;
  position: fixed;
  top: 50px;
  right: -300px;
  background-color: rgba(129, 192, 88, 0.9);
  box-shadow: 0 0 1px white;
  float: none;
  -webkit-transition: 0.5s right;
  transition: 0.5s right;
  overflow-y: auto;
  width: 300px;
  z-index: 2;
}

.header__menu_show {
  right: 0;
}

.header__list {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0;
}

.header__item {
  margin-left: 10px;
  display: inline-block;
  font-size: 18px;
  line-height: 30px;
}

.header__item > a {
  color: #f1f1f1;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.header__item > a:hover {
  color: white;
}

.header__menu_slide .header__item {
  margin-left: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}

.header__menu_slide .header__item > a {
  text-shadow: 0 0 1px #dbdbdb;
}
