#menu_bar, #rulers, #panels, #tools_bottom, #tools_left {
	display: none;
}
select.btn {
	border: none;
	cursor: pointer;
	font-size: 16px;
	color: var(--z15);
	font-weight: 550;
	line-height: 140%;
	border-radius: var(--x1);
	padding: var(--x2) var(--x4);
	background: var(--accent7);
}
.navseam {
  text-align: center;
  padding: 10px;
}
.navseam .btn {
	color: #333;
	font-size: 12px;
	font-weight: 500;
	padding: 5px 10px;
	background: #d4d4d4;
}
.navseam select.btn {
	padding: 6px 10px 7px;
}
.seamcut-result {
	background: #f0f0f0;
  overflow: auto;
  height: 650px;
}
.seamcut-result .packed-svg {
  width: 100%;
}
.menu {
  /*display: grid;
  grid-template-rows: 40px max-content;
  gap: 10px;*/
}

.navseam .toggle {
  all: unset;
  background: #d4d4d4;
  color: white;
  padding: 5px 20px 5px 10px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  color: #333;
  font-weight: normal;
  width: 100px;
}
.toggle::after {
  content: "";
  width: 5px;
  height: 5px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  transform: rotate(45deg);
  transition: 0.4s;
  right: -10px;
	position: relative;
}
.list {
  background-color: #d4d4d4;
  color: #444;
  list-style: none;
  display: grid;
  grid-template-rows: repeat(8, 30px);
  border-radius: 5px;
  overflow: hidden;
  height: 0;
  margin: 3px 0 0;
  transition: 0.4s;
  position: absolute;
	padding: 0;
	width: 100%;
}

.list-item {
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.4s, transform 0.4s var(--delay);
  user-select: none;
  cursor: pointer;
}
.list-item i.fa {
	font-size: 20px;
	margin-right: 5px;
}
.list-item:hover {
  background-color: #ccc;
  color: #333;
}

.open .toggle::after {
  transform: rotate(225deg);
}

.open .list {
  height: 240px;
}

.toggle:focus ~ .list .list-item {
  transform: translateX(0);
}