.header {
  &__container {
  }

  &__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 5px;
  }

  &__close {
    display: none;
    position: absolute;
    top: 15px;
    right: 10px;
  }

  &__btns {
    display: flex;
    justify-content: space-between;
    margin-top: -17px;
  }

  &__link {
    min-width: 62px;
    max-width: 30%;
    width: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: $c-white-smoke;
    text-decoration: none;

    &:nth-child(2) {
      padding-right: 30px;
    }
  }

  &__search {
    border-top: 1px solid $c-grey-3;
    border-bottom: 1px solid $c-grey-3;
    background: $c-black;
    padding: 5px 0;

    &-form {
      border-radius: 5px;
      border: 1px solid $c-grey-2;
      background: #1A1B1E;
      display: flex;
      align-items: center;
      padding: 8px 12px;

      button {
        background: none;
        border: none;
        margin-right: 13px;
      }

      input {
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;

        &::placeholder {
          font-size: 13px;
          font-style: normal;
          font-weight: 500;
          line-height: normal;
          color: $c-grey;
        }
      }
    }
  }
}