#caseBody {
  display: flex;
  margin-top: 16px;
  max-width: 1100px;
}

#caseInfoPane {
  flex: 0 0 480px;
}
#caseInfoPane .imageList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2px;
}
#caseInfoPane .imageList .imageItem {
  display: flex;
  display: block;
  margin: 4px 2px;
  flex: 0 0 96px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center center;
}

#caseThreadPane {
  flex: 1 1 auto;
  margin-left: 48px;
}

.caseNodeListPane {
  max-width: 640px;
}
.caseNodeListPane .node {
  display: flex;
  position: relative;
  margin: 16px 0;
}
.caseNodeListPane .node .timeline {
  flex: 0 0 32px;
  position: relative;
}
.caseNodeListPane .node .timeline .line {
  position: absolute;
  left: 7px;
  top: 20px;
  height: calc(100% + 2px);
  width: 2px;
  background: var(--c-ltgray);
}
.caseNodeListPane .node .timeline .point {
  content: "";
  position: absolute;
  left: 0px;
  top: 4px;
  height: 100%;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: var(--c-blue);
}
.caseNodeListPane .node .action {
  flex: 0 0 32px;
  margin-right: 16px;
  color: var(--c-blue);
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
}
.caseNodeListPane .node .content {
  flex: 1 1 auto;
}
.caseNodeListPane .node .msg {
  padding: 0 0;
  font-size: 14px;
  line-height: 20px;
}
.caseNodeListPane .node .fileList .imageList {
  display: flex;
  margin: 0 -2px;
}
.caseNodeListPane .node .fileList .imageList a {
  display: block;
  margin: 4px 2px;
  flex: 0 0 96px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center center;
}
.caseNodeListPane .node .meta {
  font-size: 14px;
  color: var(--c-gray);
}
.caseNodeListPane .node:last-child .timeline .line {
  display: none;
}
.caseNodeListPane .node.updateNode .actionSelector > * {
  margin: 8px 0;
}
.caseNodeListPane .node.updateNode .inputBox {
  position: relative;
  border: 1px solid var(--c-border);
}
.caseNodeListPane .node.updateNode .inputBox .topRow {
  padding: 4px 8px;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid var(--c-ltborder);
}
.caseNodeListPane .node.updateNode .inputBox .inputRow {
  width: 100%;
}
.caseNodeListPane .node.updateNode .inputBox .inputRow textarea {
  display: block;
  width: 100%;
  height: 8em;
  padding: 7px;
  font-size: 16px;
  line-height: 24px;
  border: 0;
}
.caseNodeListPane .node.updateNode .inputBox .inputRow input[type=text],
.caseNodeListPane .node.updateNode .inputBox .inputRow select {
  width: 100%;
  border: 0;
  height: 32px;
  padding: 0 7px;
}
.caseNodeListPane .node.updateNode .inputBox .bottomRow {
  padding: 8px 4px;
  display: flex;
  border-top: 1px solid var(--c-ltborder);
}
.caseNodeListPane .node.updateNode .inputBox .bottomRow > * {
  margin: 0 4px;
}

.lg-backdrop {
  z-index: 100000 !important;
  background-color: rgba(0, 0, 0, 0.75) !important;
  -webkit-backdrop-filter: blur(16px) !important;
          backdrop-filter: blur(16px) !important;
}

.lg-outer {
  z-index: 100000 !important;
}