.header {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;

  &__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  &__burger, &__user {
    background: none;
    border: none;
    cursor: pointer;

    img {
      display: block;
      object-fit: contain;
      width: 100%;
      height: 100%;
      filter: contrast(0) brightness(200);
    }
  }

  &__burger {
    max-width: 30px;
    max-height: 30px;
    width: 100%;
    height: 100%;
  }

  &__right {
    display: flex;
    align-items: center;
    .age {
      color: #ffffff;
      border-radius: 100%;
      width: 25px;
      height: 25px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      border: 1px solid #ffffff;
      font-size: 10px;
    }
  }

  &__close {
    display: none;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    margin-right: 5px;

    img {
      display: block;
      object-fit: contain;
      width: 100%;
      height: 100%;
      filter: contrast(0) brightness(200);
    }
  }

  &__user {
    max-width: 24px;
    max-height: 24px;
    width: 100%;
    height: 100%;
    filter: contrast(0) brightness(200);
  }

  &__search {
    display: flex;
    width: 100%;
    border: #343434 1px solid;
    border-radius: 5px;
    input {
      max-width: 100%;
      width: 100%;
      border: none;
      background: none;
      font-size: 17px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      padding: 6px 11px;
      color: $c-gray-text;
      background: #121212;
    }

    button {
      color: #ffffff;
      border: none;
      background: #343434;
      padding: 9px 10px;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }
  }
}
