#pl-lock-ui > div {
  height: 1mm;
  width: 0;
  animation: lock-ui 6s ease-out 500ms forwards;
}

@keyframes lock-ui {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

table tr.pl-lock > td {
  position: sticky;
  z-index: 2;
}

table tr.pl-lock > td.-left, table tr.pl-lock > td.-right {
  z-index: 3;
}

table td.pl-lock {
  position: sticky;
  z-index: 1;
}

.pl-element-title {
  position: absolute;
  padding: 1mm;
  white-space: pre-wrap;
  word-break: break-all;
  box-shadow: 3px 3px 9px 0 rgba(0, 0, 0, 0.4);
}

.pl-backdrop {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: fixed;
}

.pl-backdrop.-shaded {
  background-color: rgba(0, 0, 0, 0.6);
}

.pl-backdrop.-close {
  cursor: pointer;
}

.pl-dialog {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  width: fit-content;
  height: fit-content;
  margin: auto;
  box-shadow: 3px 3px 9px 0 rgba(0, 0, 0, 0.4);
  max-width: 90vw;
  max-height: 90vh;
}

.pl-dialog > .-head {
  padding: 3mm;
  cursor: pointer;
}

.pl-dialog > .-body {
  padding: 3mm;
}

.pl-dialog > .-body > * {
  flex: 1 1 auto;
}

.pl-splash {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  width: fit-content;
  height: fit-content;
  margin: auto;
  max-width: 90vw;
  max-height: 90vh;
}

.pl-splash > * {
  flex: 1 1 auto;
}

.pl-sticky {
  box-shadow: 3px 3px 9px 0 rgba(0, 0, 0, 0.4);
  position: absolute;
  max-width: 50vw;
  max-height: 50vh;
  padding: 3mm;
}

.pl-sticky > * {
  flex: 1 1 auto;
}

#pl-notify {
  position: fixed;
  bottom: 5mm;
  left: 50%;
  margin-left: -5cm;
  width: 10cm;
  max-width: 90vw;
}

#pl-notify > div {
  margin-top: 3mm;
  border: 1px outset;
  border-radius: 3px;
  padding: 3mm 5mm;
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
  opacity: 0;
  animation-name: notify;
  animation-duration: 6s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}

#pl-notify > div > .-text {
  max-height: 4em;
  overflow: hidden;
  flex-grow: 1;
}

#pl-notify > div > .-text:hover {
  overflow: auto;
}

#pl-notify > div > .-action {
  margin-left: 5mm;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}

@keyframes notify {
  3% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
