.header {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  height: 100%; }
  @media only screen and (max-width: 1040px) {
    .header {
      padding: 0 10px; } }
  .header__logo {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-decoration: none;
    outline: none;
    cursor: pointer; }
  .header__burger {
    display: none;
    height: 30px;
    width: 30px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.32);
    background-image: url("../../img/ico_burger.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 14px;
    cursor: pointer; }
    @media only screen and (max-width: 1040px) {
      .header__burger {
        display: block; } }
  .header__menu {
    position: relative;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    -webkit-transition: right 200ms;
    -moz-transition: right 200ms;
    transition: right 200ms; }
    @media only screen and (max-width: 1040px) {
      .header__menu {
        position: fixed;
        top: 0;
        display: block;
        right: -200px;
        z-index: 3;
        margin: 0;
        padding: 10px 20px;
        width: 200px;
        height: 100vh;
        background-color: #1e73b2; }
        .header__menu_open {
          right: 0; } }
    .header__menu li {
      display: inline-block; }
      .header__menu li:not(:last-child) {
        margin-right: 15px; }
      @media only screen and (max-width: 1040px) {
        .header__menu li {
          margin: 10px 0; }
          .header__menu li.btn_light {
            margin-top: 20px; } }
  .header__user {
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 2;
    margin: 0;
    padding: 10px 15px;
    display: none;
    max-width: 200px;
    border-radius: 6px;
    background-color: #fff;
    list-style: none;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3); }
    .header__user ul {
      margin: 0;
      padding: 0;
      list-style: none; }
    .header__user li {
      display: block;
      text-align: left; }
    .header__user a {
      color: #075e9d;
      text-decoration: none; }
      .header__user a:hover {
        text-decoration: underline; }

.btn_light {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px; }
  @media only screen and (max-width: 1040px) {
    .btn_light {
      width: auto;
      padding: 7px; } }

.header__user-name {
  display: block;
  overflow: hidden;
  width: 120px;
  text-overflow: ellipsis; }

/*# sourceMappingURL=header.css.map */
