.Menu__wrapper {
  height: 50px;
  flex-shrink: 0;
}

.Menu {
  display: flex;
  align-items: center;

  height: 50px;
  background-color: rgb(242, 242, 242);

  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;

  box-shadow: 0 -5px 8px 3px rgba(0,0,0,0.7);
  border-bottom: 1px solid #c5c5c5;
}

body.__with-menu .Menu {
  left: var(--safe-area-left, 70px);
}

.Menu__content {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.Menu__content-logo {
  min-width: 170px;
}

.Menu__content-logo-link {
  cursor: pointer;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
}

.Menu__content-logo:hover {
  background-color: rgb(232, 232, 232);
}

.Menu__content-search {
  flex-grow: 2;
  padding: 0 10px;
}

.Menu__content-user {
  flex-shrink: 0;
  display: flex;
  margin-right: 20px;
}

.Menu__content-user-photo-link {
  height: 36px;
}

.Menu__content-user-photo {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 3px;
  background-size: cover;
  background-position: 50% 50%;
}

@media (max-width: 600px) {

  .Menu__content {
    padding: 0 20px 0 10px;
  }

  .Menu__content-logo-full {
    display: none;
  }

  .Menu__content-logo {
    min-width: auto;
  }

  .Menu__content-logo-link {
    padding: 0 0 0 10px;
  }

  .Menu__content-search {
    padding: 0 10px 0 0;
  }

  .Menu__content-user {
    margin-right: 0px;
  }

}
