.frame_header,
.frame_header * {
  box-sizing: border-box;
}
.frame_header {
  background-color: #fffdfa;
  padding: 8px;
}
.frame_header_list {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: stretch;
}
.frame_header_list-item {
  list-style-type: none;
  padding: 6px 20px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.frame_header_list-item:not(:first-of-type) {
  border-left: 1px solid #333;
}
.frame_header_list-item-link {
  color: #333;
  text-decoration: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.frame_header_list-item-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.frame_header_list-item-icon > * {
  width: 100%;
  height: 100%;
}
.frame_header_list-item-icon > img,
.frame_header_list-item-icon > svg {
  object-fit: contain;
}
.frame_header_list-item-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
