@keyframes open_slide_frames {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
@keyframes close_slide_frames {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#menu-guest.--hidden {
  display: none;
}

#menu-guest {
  padding: 21px 24px;
}

.menu-guest-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.menu-guest-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 14px;
  padding-left: 12px;
}

.menu-guest-items > *:not(:last-child) {
  margin-bottom: 9px;
}

.menu-guest-items > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.menu-guest-items a {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
  max-width: 100%;
  font-size: 14px;
  line-height: 20px;
}