.menu {
  background: #ffffff;
  border: 1px solid #c0ccda;
  border-radius: 3px;
  list-style: none;
  margin: 0;
  max-width: 100vw;
  min-width: 100%;
  padding: 0;
}
.menu.collapsible__content {
  position: absolute;
  top: 100%;
  z-index: 1;
}
.menu.collapsible__content:not(.collapsible__content_toggled) {
  display: none;
}
.menu__content {
  list-style: none;
  margin: 1rem;
  padding: 0;
}
.menu__content:first-child {
  margin-top: 0.5rem;
}
.menu__content:last-child {
  margin-bottom: 0.5rem;
}
.menu__heading {
  color: #044a75;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 700;
  margin: 0;
  padding: 0.5rem 1rem;
}
.menu__icon {
  color: #687484;
  height: 1em;
  vertical-align: -0.125em;
  width: 1em;
  margin-right: 0.5rem;
}
.menu__control {
  color: inherit;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0.5rem 1rem;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu__control:hover:not(.menu__control_locked),
.menu__control:focus:not(.menu__control_locked) {
  background: #f9fafc;
}
.menu__control_locked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M224 412c-15.5 0-28-12.5-28-28v-64c0-15.5 12.5-28 28-28s28 12.5 28 28v64c0 15.5-12.5 28-28 28zm224-172v224c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V240c0-26.5 21.5-48 48-48h32v-48C80 64.5 144.8-.2 224.4 0 304 .2 368 65.8 368 145.4V192h32c26.5 0 48 21.5 48 48zm-320-48h192v-48c0-52.9-43.1-96-96-96s-96 43.1-96 96v48zm272 48H48v224h352V240z' fill='%233c4858'/%3E%3C/svg%3E");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1em;
  cursor: not-allowed;
  opacity: 0.5;
  padding-right: 2.5rem;
}
.menu__divider {
  border: 0;
  border-top: 1px solid #c0ccda;
  margin: 0.5rem 0;
}

