/* ============================================================================
   SHARED PANEL SYSTEM
   Used by editor, profile, future panels
   ============================================================================ */

.content-chrome {
  position: sticky;
  top: 0;
  height: 2.75rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-body {
  height: calc(100% - 2.75rem);
  overflow-y: auto;
  padding: 1rem;
  padding-top: 0.25rem;
}

.content-close {
  position: absolute;
  top: 0.3rem;
  right: 0.4rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.content-close img {
  width: 100%;
  height: 100%;
  display: block;
}

.content-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.content-close:active {
  background: rgba(0, 0, 0, 0.12);
}