/* 
#### This file contains styling for all web elements that are only on the web bundle.
*/
/* New media queries we are migrating toward */
/* The switch - the box around the slider */
div.ToggleSwitch {
  display: flex;
  align-items: center;
  font-size: larger;
  margin: 5px;
}
div.ToggleSwitch .switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
  margin-right: 4px;
  /* The slider */
}
div.ToggleSwitch .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
div.ToggleSwitch .switch input:checked + .slider {
  background-color: #2196f3;
}
div.ToggleSwitch .switch input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}
div.ToggleSwitch .switch input:checked + .slider:before {
  transform: translateX(24px);
}
div.ToggleSwitch .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
div.ToggleSwitch .switch .slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
div.ToggleSwitch .switch .slider.round {
  border-radius: 24px;
}
div.ToggleSwitch .switch .slider.round:before {
  border-radius: 50%;
}
div.ToggleSwitch .tooltip.-noFixed {
  position: unset;
  min-width: 70px;
}
/* Snackbar */
.SnackbarsContainer {
  position: absolute;
  z-index: 12001;
  min-width: 33vw;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, -25px);
  pointer-events: none;
}
.snackbar {
  visibility: hidden;
  width: 100%;
}
.snackbar.show {
  visibility: visible;
}
.snackbar.clickable {
  pointer-events: none;
  cursor: pointer;
}
.snackbar .panel {
  background-color: var(--small);
  border-radius: 0.2rem;
  padding: 0.75rem;
  color: var(--background);
}
.snackbar .panel.is-info {
  margin: 0.125rem 0;
}
section.events .event-item {
  padding-right: 2rem;
}
section.events h3 {
  width: 100vw;
  font-size: 1em;
}
.event-showcase {
  line-height: 1.5em;
}
.event-showcase h4 {
  margin: 0 0 0.5rem 0;
  padding: 0;
}
.event-showcase .event-item {
  margin-bottom: 1rem;
}
.event-showcase .event-item .header {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-showcase .event-item .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-showcase .event-item .description .see-more {
  text-align: right;
}
.event-showcase .event-item .summary {
  color: var(--small);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: x-small;
}
.event-showcase .event-item .summary .host,
.event-showcase .event-item .summary .venue {
  font-style: italic;
}
.events {
  margin-bottom: 3rem;
}
.parcel-event-panel {
  border-bottom: 1px solid #ddd;
}
.parcel-event-panel .event-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.parcel-event-panel .content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.parcel-event-panel .content .event-item {
  flex: 1 1 auto;
}
.parcel-event-panel .content .event-item > div {
  margin-bottom: 1rem;
}
.parcel-event-panel .content .event-item .event-time {
  flex: 0 0 95px;
  text-align: center;
}
.parcel-event-panel .content .event-item .event-time > a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 85px;
}
.parcel-event-panel .content .event-item .event-time .first {
  flex: 1 0 1rem;
}
.parcel-event-panel .content .event-item .event-time .middle {
  flex-basis: 3rem;
  line-height: 3rem;
  font-size: 2rem;
}
.parcel-event-panel .content .event-item .event-time .last {
  padding: 0 0.5rem 0.25rem 0.5rem;
}
.parcel-event-panel .content .event-item .event-time .live-now {
  font-size: 2rem;
}
.parcel-event-panel .content .event-item .event-time.past .first {
  background: #adadad;
  text-shadow: 1px 1px #a9a9a9;
  color: white;
  border-color: #a9a9a9;
}
.parcel-event-panel .content .event-item .event-time .add-to-calendar {
  padding-top: 0.5rem;
  font-size: smaller;
}
.parcel-event-panel .content .event-item .location {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.parcel-event-panel .content .event-item .event-body {
  display: flex;
  column-gap: 0.5rem;
}
.parcel-event-panel .content .event-item .event-body .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 1rem;
}
.parcel-event-panel .content .event-item .event-body .countdown {
  margin-top: 1rem;
}
.parcel-event-panel .content .preview {
  flex: 1 1 320px;
  border: 1px solid #ddd;
}
.event-page iframe {
  /* sizing mixin */
  min-width: calc(min(100%, 80vh, 1024px));
  aspect-ratio: 3/4;
  max-height: 60vh;
  border: none;
  outline: none;
}
.event-page .content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.event-page .content .event-item {
  flex: 1 1 auto;
  max-width: 32rem;
}
.event-page .content .event-item > div {
  margin-bottom: 1rem;
}
.event-page .content .event-item .event-body {
  display: flex;
  column-gap: 0.5rem;
}
.event-page .content .event-item .event-body .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 1rem;
}
.event-page .content .event-item .event-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem;
}
.event-page .content .event-item .event-footer .event-actions {
  display: flex;
  flex-direction: column;
  text-align: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.event-page .content .event-item .event-footer .summary {
  flex: 1;
}
.event-page .content .event-item .event-footer .admin {
  flex-basis: 100%;
  display: flex;
  gap: 1rem;
  justify-content: end;
}
.event-page .content .preview {
  flex: 1 1 320px;
  border: 1px solid #ddd;
}
.EventRow {
  position: relative;
  margin: 10px auto;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
  display: flex;
  max-height: 135px;
}
.EventRow > aside {
  margin-right: 8px;
}
.EventRow > aside div.userCount {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 5px;
  border-radius: 5px;
  background: #3d2f5fbf;
}
.EventRow > aside img {
  width: 180px;
  height: 135px;
}
.EventRow > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.EventRow > div > header {
  display: flex;
  justify-content: space-between;
}
.EventRow > div > header div.event {
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 1;
  max-width: 45rem;
}
.EventRow > div > header div.user {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: right;
}
.EventRow > div > header div + div {
  margin-left: 4px;
}
.EventRow > div div.eventDescription {
  line-height: 1.3;
  margin: 5px 0;
  font-size: 90%;
  white-space: pre-line;
  display: flex;
  flex: 1;
  align-content: center;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 45rem;
}
.historic-events .event-item {
  margin-bottom: 0.5rem;
}
.historic-events .event-header h4 {
  padding: 0;
  margin: 0 0 0.25rem;
}
.historic-events .event-footer {
  display: flex;
  column-gap: 0.25rem;
}
.calTime {
  flex: 0 0 95px;
  text-align: center;
}
.calTime > a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 85px;
}
.calTime .first {
  flex: 1 0 1rem;
}
.calTime .middle {
  flex-basis: 3rem;
  line-height: 3rem;
  font-size: 2rem;
}
.calTime .last {
  padding: 0 0.5rem 0.25rem 0.5rem;
}
.calTime .live-now {
  font-size: 2rem;
}
.calTime.past .first {
  background: #adadad;
  text-shadow: 1px 1px #a9a9a9;
  color: white;
  border-color: #a9a9a9;
}
.calTime .add-to-calendar {
  padding-top: 0.5rem;
  font-size: smaller;
}
.create-event-form .field {
  margin-bottom: 1.5rem;
}
.create-event-form .field label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: bold;
}
.create-event-form .field .starts-now {
  display: inline;
}
.create-event-form .field .starts-now label {
  display: inline;
}
.create-event-form .field input.name,
.create-event-form .field textarea {
  font-size: 0.85rem;
  width: 33rem;
}
.create-event-form .field.duration div {
  display: flex;
  column-gap: 0.25rem;
  align-items: center;
}
.create-event-form .submit {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 0.25rem;
  align-items: center;
}
.event-calendar .navigation {
  display: flex;
  justify-content: space-between;
  clear: both;
  margin-top: 0.5rem;
}
.event-readable-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}
.leaflet-container {
  overflow: hidden;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
  max-width: none !important;
  max-height: none !important;
}
.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}
.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}
.leaflet-tile-loaded {
  visibility: inherit;
}
.leaflet-zoom-box {
  width: 0;
  height: 0;
  box-sizing: border-box;
  z-index: 800;
}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}
.leaflet-pane {
  z-index: 400;
}
.leaflet-tile-pane {
  z-index: 200;
}
.leaflet-overlay-pane {
  z-index: 400;
}
.leaflet-shadow-pane {
  z-index: 500;
}
.leaflet-marker-pane {
  z-index: 600;
}
.leaflet-tooltip-pane {
  z-index: 650;
}
.leaflet-popup-pane {
  z-index: 700;
}
.leaflet-map-pane canvas {
  z-index: 100;
}
.leaflet-map-pane svg {
  z-index: 200;
}
.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}
/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}
.leaflet-top {
  top: 0;
}
.leaflet-right {
  right: 0;
}
.leaflet-bottom {
  bottom: 0;
}
.leaflet-left {
  left: 0;
}
.leaflet-control {
  float: left;
  clear: both;
}
.leaflet-right .leaflet-control {
  float: right;
}
.leaflet-top .leaflet-control {
  margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
  margin-left: 10px;
}
.leaflet-right .leaflet-control {
  margin-right: 10px;
}
/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
}
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}
.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}
/* cursors */
.leaflet-interactive {
  cursor: pointer;
}
.leaflet-grab {
  cursor: grabbing;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: grabbing;
}
/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
  pointer-events: auto;
}
/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0;
}
.leaflet-container a {
  color: #555;
}
.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}
/* general typography */
.leaflet-container {
  font: 12px/1.5 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}
.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}
.leaflet-bar a:hover {
  background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}
.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px;
}
.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}
/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}
.leaflet-control-layers-toggle {
  background-image: url(/images/layers.png);
  width: 36px;
  height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(/images/layers-2x.png);
  background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}
.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}
.leaflet-control-layers label {
  display: block;
}
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}
/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url(/images/marker-icon.png);
}
/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}
.leaflet-control-attribution a {
  text-decoration: none;
}
.leaflet-control-attribution a:hover {
  text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}
.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}
.leaflet-popup-content p {
  margin: 18px 0;
}
.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}
.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: 'progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)';
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}
/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}
/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: '';
}
/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}
.leaflet-tooltip-top {
  margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}
.leaflet-tooltip-left {
  margin-left: -6px;
}
.leaflet-tooltip-right {
  margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}
:root {
  --text: #111;
  --header: #000;
  --small: hsl(10, 9%, 60%);
  --background: #fff;
  --component: #ffffff;
  --link: hsl(205, 90%, 50%);
  --visited: hsl(205, 90%, 30%);
  --border: #aaa;
  --alert: red;
}
@media (prefers-color-scheme: dark) {
  :root {
    --text: hsl(10, 15%, 70%);
    --header: hsl(10, 10%, 85%);
    --small: hsl(10, 30%, 40%);
    --background: hsl(30, 30%, 8%);
    --component: #22343c;
    --link: hsl(205, 60%, 50%);
    --visited: #af51b7;
    --border: #444;
    --alert: yellow;
  }
  .invertable {
    filter: invert(1);
    mix-blend-mode: screen;
  }
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  touch-action: manipulation;
}
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  font-family: 'Helvetica Neue', Helvetica, Arial;
}
body * {
  font-family: inherit;
}
img.blockie {
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}
a.wallet {
  position: relative;
  padding-left: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
}
input[type='checkbox'] {
  margin-bottom: 2px;
}
section {
  padding: 0 8px;
}
@media only screen and (max-width: 800px) {
  section {
    margin: 0;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 500px) {
  section {
    padding: 0 10px;
  }
}
section section {
  padding: 0;
}
section .columns {
  display: flex;
  flex-direction: column;
}
section .alt-columns {
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  section .columns {
    display: flex;
    flex-direction: row;
  }
  section .columns .left-column {
    flex: 1;
    position: relative;
    padding-bottom: 80px;
  }
  section .columns .right-column {
    width: 280px;
    margin-left: 20px;
  }
  section .alt-columns {
    display: flex;
    flex-direction: row;
  }
  section .alt-columns .left-column {
    width: 280px;
    margin-right: 20px;
  }
  section .alt-columns .right-column {
    flex: 1;
    position: relative;
    padding-bottom: 80px;
  }
}
section > video {
  max-width: 100%;
}
section > h1:first-child {
  margin-top: 20px;
}
footer {
  margin-top: 40px;
  padding-top: 20px;
  margin-bottom: 40px;
  text-align: center;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: inherit;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-size: unset;
  }
}
h1 {
  font-size: 1.6em;
  font-weight: normal;
  margin: 0 0 0.4em 0;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  h1 {
    font-size: 2em;
  }
}
h2 {
  font-size: 1em;
  font-weight: bold;
}
p {
  line-height: 1.5em;
}
.roundedButton {
  padding: 4px 8px;
  margin-right: 8px;
  font: inherit;
  font-size: small;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-block;
  color: var(--background) !important;
  background-color: var(--text);
}
.roundedButton[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.desktop-only {
  display: none;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .desktop-only {
    display: block;
  }
}
.play-buttons {
  display: flex;
  flex-direction: row;
  margin-top: 0.2rem;
}
@media only screen and (max-width: 800px) {
  .play-buttons {
    display: none;
  }
}
button.play-now,
a.play-now,
a.xr-now {
  cursor: pointer;
  border-radius: 4px;
  border: black solid 2px;
  background-size: 200% 200%;
  background-position: 0 100%;
  background-color: #55278c;
  white-space: nowrap;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 0 16px;
  line-height: 42px;
  height: 42px;
  color: white !important;
  text-decoration: none !important;
}
button.play-now:hover,
a.play-now:hover,
a.xr-now:hover {
  background: linear-gradient(45deg, #ae2dde, #4283df, #d13465);
  background-size: 400% 400%;
  -webkit-animation: button-rainbow-hover 1.5s ease infinite;
  animation: button-rainbow-hover 1.5s ease infinite;
  animation-fill-mode: forwards;
  color: white !important;
}
a.play-now {
  flex: 0.8;
}
a.play-now:only-child {
  flex: auto;
}
a.xr-now {
  flex: 0.2;
  margin-left: 4px;
  background: linear-gradient(-42deg, #d13465, #ae2dde, #4283df);
}
a.xr-now img {
  width: 1rem;
  margin-top: 10%;
}
.actions {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  position: relative;
  width: fit-content;
}
.actions .not-favourite {
  filter: grayscale(100%);
}
.actions .favourite {
  background: #ffa;
}
.actions > li {
  display: inline-block;
  list-style: none;
  margin: 1rem 0 0 0;
}
.actions div.BuildTab a:hover {
  color: black;
  background: transparent;
}
.actions img {
  width: 84px;
}
/* Loading gif */
.loading {
  width: 32px;
  height: 32px;
  position: relative;
  top: 12px;
  margin-right: 0;
  display: inline-block;
  background: no-repeat center;
}
@media prefers-color-scheme: dark {
  .loading {
    filter: invert();
  }
}
.loading-icon {
  width: max-content;
  -webkit-animation: loading-icon-spin 1s linear infinite;
  -moz-animation: loading-icon-spin 1s linear infinite;
  animation: loading-icon-spin 1s linear infinite;
}
.loading-icon i {
  position: relative;
  top: 0.1em;
}
.loading-icon.inline {
  display: inline-block;
  position: relative;
  top: 4px;
  margin-right: 8px;
}
.loading-icon.very-large {
  font-size: x-large;
}
@-moz-keyframes loading-icon-spin {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading-icon-spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loading-icon-spin {
  100% {
    transform: rotate(360deg);
  }
}
.panel {
  border-radius: 2px;
  padding: 5px;
  text-align: center;
}
.overlay .panel {
  word-break: break-word;
}
.collapsible.collapsed {
  display: none;
}
/* badges label */
.rarity-label {
  display: none;
}
.dot {
  height: 2px;
  width: 2px;
  border-radius: 50%;
  margin-left: 0;
  padding: 0.2em;
}
.no-margin {
  margin: 0;
}
.panel {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.MessageWriteForm {
  padding: 8px 10px;
}
.MessageWriteForm * + section {
  margin-top: 10px;
}
.MessageWriteForm input,
.MessageWriteForm textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 120%;
  padding: 4px;
  display: block;
  margin-top: 4px;
}
.MessageWriteForm button {
  padding: 5px 10px;
}
.MessageWriteForm button i {
  margin-right: 4px;
}
/* Parcel Details on parcel page and parcel-info tab.*/
@media only screen and (min-width: 720px) {
  dl {
    position: relative;
  }
  dl dt {
    position: absolute;
    padding-top: 0.5rem;
    padding-left: 0;
  }
  dl dd {
    padding-left: 8rem;
    margin: 0 0 1rem;
    padding-top: 0.5rem;
    min-height: 1rem;
  }
  dl dd.clear {
    padding-left: 1rem;
    padding-top: 2rem;
  }
  dl dd > ul {
    margin: 0;
    padding: 0;
  }
  dl dd > ul li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
@media only screen and (max-width: 800px) {
  dl dt {
    margin: 0;
    padding: 0 0 0.2rem 0;
    color: var(--header);
    font-size: smaller;
  }
  dl dd {
    margin: 0 0 1rem 0;
    color: var(--text);
    padding: 0;
  }
  dl dd.clear {
    padding-left: 1rem;
    padding-top: 2rem;
  }
  dl dd > ul {
    margin: 0;
    padding: 0;
  }
  dl dd > ul li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
/* edit-name-window */
.name-window .f {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 1.2rem;
}
.name-window .f label {
  position: absolute;
  left: 0;
  opacity: 0.69;
}
.name-window .f button {
  cursor: pointer;
}
.name-window .f .subtle {
  opacity: 0.69;
}
.name-window .f input,
.name-window .f select {
  width: 100%;
}
/* Feb 2024 UI rework... */
.wallet-info {
  display: inline-block;
  position: relative;
}
.wallet-info .avatar-image {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 0;
  left: 0.2rem;
}
.wallet-info a + a {
  margin-left: 1.5rem;
}
.wallet-info img {
  position: absolute;
  top: -0.5rem;
}
.wallet-info div.info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wallet-info div.info div.name {
  min-height: 2rem;
}
/* Avatar image */
.avatar-image {
  width: 3rem;
  height: 3rem;
  background: var(--border);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  display: inline-block;
}
.avatar-image img {
  width: 100%;
  height: 100%;
  transform-origin: center center;
  transform: scale(1.1);
}
/* 
  
  Branchable tree with nodes and collapsible buttons, requires javascript

  <ul class='branch-tree'>
    <li class="expanded parent">
      <address />
      <button class="branch">+</button> Root Node
      <ul>
        <li class="expanded parent">
          <address />
          <button class="branch">+</button> Child Node 1
          <ul>
            <li>
              <address /> Grandchild Node 1
            </li>
            <li>
              <address /> Grandchild Node 2
            </li>
          </ul>
        </li>
        <li>
          <address /> Child Node 2
        </li>
      </ul>
    </li>
  </ul>

*/
.branch-tree {
  margin-left: 0;
  padding-left: 0;
}
.branch-tree,
.branch-tree ul {
  list-style-type: none;
  position: relative;
}
.branch-tree ul {
  margin: 0;
  padding-left: 20px;
  overflow: hidden;
}
.branch-tree li > ul {
  display: none;
}
.branch-tree li.expanded > ul {
  display: block;
}
.branch-tree li {
  margin: 0.1rem 0;
  line-height: 1.5em;
  cursor: pointer;
  /* Make the entire list item clickable */
  position: relative;
  padding-left: 0.3rem;
}
.branch-tree li > button.branch {
  color: var(--text);
  border-radius: 1rem;
  content: '+';
  border: 1px solid var(--text);
  background: var(--background);
  position: relative;
  left: -0.3rem;
  top: -0.05rem;
  width: 1.1rem;
  height: 1.1rem;
  padding: 0;
  line-height: 0.8rem;
  text-align: center;
  user-select: none;
  margin-right: -0.05rem;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.branch-tree li address {
  content: '';
  position: absolute;
  top: -100rem;
  height: 100.7rem;
  left: -1rem;
  width: 1rem;
  border: 1px solid var(--border);
  border-width: 0 0 1px 1px;
  z-index: -1;
  display: block;
}
.branch-tree li:last-child:before {
  height: 50%;
}
/* Parcel select */
.parcel-select {
  display: flex;
  flex-direction: column;
}
.parcel-select input {
  width: 30rem;
}
.parcel-select datalist {
  background: red;
}
/* Dialog style */
dialog a.button,
dialog button {
  padding: 4px 8px;
  margin-right: 8px;
  font: inherit;
  font-size: small;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-block;
  color: var(--background) !important;
  background-color: var(--text);
}
dialog a.button[disabled],
dialog button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.costumer article {
  position: relative;
}
.costumer .head-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.costumer .head-bar h3 {
  flex: 1;
}
.costumer .head-bar form,
.costumer .head-bar div {
  padding: 0.5rem;
}
.costumer .actions {
  margin-bottom: 1rem;
}
.costumer .actions select {
  margin-right: 1rem;
}
.costumer .actions form {
  padding: 0;
  margin: 0;
}
.costumer .actions > * {
  display: inline-block;
}
.costumer form.upload {
  position: relative;
  cursor: pointer;
}
.costumer form.upload button {
  pointer-events: none;
}
.costumer form.upload input {
  position: absolute;
  cursor: pointer;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
.costumer a.pending {
  opacity: 0.5;
}
.costumer .columns {
  justify-content: left;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.costumer .columns > div {
  flex: 1 0;
  padding-right: 0.5rem;
  overflow-y: auto;
}
.costumer .columns .column-header {
  display: flex;
  margin-bottom: 0.5rem;
}
.costumer .columns .column-header button,
.costumer .columns .column-header input,
.costumer .columns .column-header select {
  margin-right: 4px;
}
.costumer .columns .editable-name .action {
  font-size: 0.85em;
}
.costumer .columns .editable-name .action::before {
  content: ' ';
}
.costumer .columns .viewer {
  position: relative;
  flex-grow: 1;
}
.costumer .columns .viewer canvas {
  width: 100%;
  height: calc(min(1200px, 100vh) - 190px);
  max-height: 680px;
  outline: none !important;
}
.costumer .columns #gizmos {
  position: absolute;
  top: 2px;
  right: 0;
}
.costumer .columns #gizmos.active {
  display: flex;
}
.costumer .columns #gizmos.inactive {
  display: none;
}
.costumer .columns #gizmos button {
  margin: 0 1px;
}
.costumer .costumer-wearable-editor {
  position: absolute;
  top: 48rem;
  right: 1rem;
  padding: 0.25rem;
  margin-bottom: 1rem;
  border-radius: 0.2rem;
  z-index: 100;
  width: 18rem;
}
.costumer .costumer-wearable-editor h4 {
  margin: 0;
}
.costumer .costumer-wearable-editor .editor-field {
  margin: 0.8rem 0;
}
.costumer .costumer-wearable-editor .editor-field .fields input {
  background: var(--border);
  border: none;
  color: var(--text);
  border-radius: 0.2rem;
  width: 28%;
  padding: 0.2rem;
  margin-right: 0.2rem;
}
.costumer .costumer-wearable-editor .editor-field .fields input:last-child {
  margin-right: 0;
}
.costumer .costumer-wearable-editor .editor-field.scale input {
  width: 22%;
}
.costumer .costumer-wearable-editor .bones {
  display: flex;
  justify-content: space-between;
}
.costumer .costumer-wearable-editor .bones label {
  flex: 1;
}
.costumer .costumer-wearable-editor .bones select {
  flex: 1;
}
.costumer summary {
  cursor: pointer;
  font-weight: bold;
  padding: 0.5rem;
}
.costumer ul.skin-list li {
  padding: 2px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.costumer ul.skin-list li.everything input {
  margin-left: 1.2rem;
}
.costumer ul.skin-list input[type='checkbox'] {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 2px;
}
.costumer ul.skin-list input[type='color'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  width: 1rem;
  height: 1rem;
  margin: 0 1px;
  padding: 0;
}
.costumer ul.skin-list input[type='color']::-webkit-color-swatch {
  padding: 0;
  margin: 0;
}
.costumer ul.skin-list input[type='color']::-moz-color-swatch {
  padding: 0;
  margin: 0;
}
.costumer ul.skin-list label {
  cursor: pointer;
}
.costumer .wearables-list ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  justify-content: flex-start;
}
.costumer .wearables-list input {
  width: 100%;
}
.costumer .wearables-list .draggable-wearable,
.costumer .wearables-list .dragging-wearable {
  cursor: grab;
}
.costumer .wearables-list .draggable-wearable > div,
.costumer .wearables-list .dragging-wearable > div {
  display: block;
  margin: 0;
  padding: 0;
}
.costumer .wearables-list .dragging-wearable > div {
  opacity: 0.5;
}
.costumer .wearables-list .dragging-wearable > div img {
  mix-blend-mode: multiply;
  isolation: isolate;
}
.costumer .wearables-list li {
  text-align: center;
  width: 33%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0.5rem 0.2rem;
}
.costumer .wearables-list li img {
  width: 94px;
  height: 94px;
  object-fit: cover;
  user-select: none;
  touch-action: none;
  pointer-events: none;
}
.costumer .wearables-list li address {
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: small;
  font-style: normal;
  max-width: 100%;
  white-space: nowrap;
}
.costumer figure {
  position: relative;
}
.costumer figure #gizmos {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  text-align: center;
}
.costumer figure #gizmos button {
  background: var(--background);
  margin: 0.1rem;
}
.costumer figure canvas {
  height: 50rem;
}
.costumer .branch-tree a.active {
  font-weight: bold;
}
a.external:after {
  /*
  content: '';
  width: 11px;
  height: 11px;
  margin-left: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  */
}
.webheader {
  padding: 1rem;
  width: 10rem;
}
.webheader .logo {
  text-align: center;
  margin-bottom: 1rem;
}
.webheader .logo a:hover {
  background: none;
}
.webheader .logo img {
  width: 5rem;
}
.webheader form.websearch {
  margin-top: 0.5rem;
}
.webheader form.websearch input[type='search'] {
  padding: 4px;
  width: 100%;
  font: inherit;
}
@media only screen and (max-width: 800px) {
  .webheader form.websearch input[type='search'] {
    background: none;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.3rem 0.6rem !important;
    height: 1.5rem;
  }
}
.webheader div.hamburger {
  display: none;
}
.webheader .call-to-action {
  text-align: center;
  margin-top: 4px;
  margin-right: 2px;
}
.webheader nav ul,
.webheader nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.webheader nav > ul {
  margin-top: 1rem;
}
.webheader nav > ul > li.account,
.webheader nav > ul li.logout {
  margin-bottom: 1rem;
}
.webheader nav ul {
  margin-bottom: 1rem;
}
.webheader nav ul a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 4px;
  white-space: nowrap;
}
.webheader nav ul a:hover {
  text-decoration: underline;
}
.webheader nav ul a.active {
  text-decoration: none;
  font-weight: bold;
  color: var(--header);
}
.webheader nav ul li ul li a {
  padding-left: 1.2rem;
}
@media only screen and (max-width: 800px) {
  .webheader {
    padding: 5px;
    width: 100%;
  }
  .webheader .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .webheader .top > * {
    flex: 1;
  }
  .webheader .top form {
    flex: 10;
    margin: 0 0.25rem;
  }
  .webheader .top form input[type='search'] {
    width: 100%;
    padding: 2px;
    height: 1.5rem;
  }
  .webheader .top .logo {
    text-align: left;
  }
  .webheader .top .logo img {
    width: 2rem;
    height: 2.3rem;
    margin-top: 1rem;
    margin-right: 0.5rem;
  }
  .webheader .top div.hamburger {
    flex: 0 0;
    display: block;
    padding: 0 0.25rem;
  }
  .webheader .top div.hamburger button {
    font-size: 1.5rem;
    border-radius: 2px;
    border: none;
    padding: 0 8px;
    opacity: 0.8;
    filter: grayscale(0.8);
    height: 38px;
  }
  .webheader .call-to-action {
    display: flex;
    text-align: center;
    justify-content: center;
  }
  .webheader .call-to-action .PlayNowButton {
    font-size: 16px;
    height: 32px;
    line-height: 32px;
  }
  .webheader nav {
    display: block;
    z-index: 20000;
    width: 100%;
    background: var(--background);
  }
  .webheader .collapsed {
    display: none;
  }
}
@media only screen and (max-width: 800px) {
  .play-buttons {
    display: none;
  }
}
.marketplace small {
  color: var(--small);
}
.marketplace fieldset .island .floor {
  font-size: smaller;
  float: right;
}
.marketplace fieldset .island .floor small {
  padding-left: 0.1rem;
}
.marketplace .transfer-history .avatar-image {
  position: absolute;
  left: -1.5rem;
  top: -0.3rem;
}
.marketplace .transfer-history li {
  margin-bottom: 0.3rem;
  position: relative;
}
.marketplace .transfer-history li.same-recipient {
  display: none;
}
.marketplace .transfer-history small {
  padding-left: 0.4rem;
}
.marketplace .sort {
  text-align: right;
  margin-top: -1rem;
  padding-bottom: 0.5rem;
}
.marketplace .sort select {
  margin-left: 1rem;
}
.marketplace .columns {
  display: flex;
  flex-direction: row;
}
.marketplace .columns label.seller-crvox-eth {
  font-weight: bold;
}
.marketplace .columns > form {
  width: 200px;
}
.marketplace .columns > form fieldset {
  border: none;
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
  margin-bottom: 10px;
}
.marketplace .columns > form fieldset label {
  display: block;
}
.marketplace .columns > div {
  flex: 1;
}
.pointer-lock-close > dialog,
.overlay-window,
.OverlayWindow {
  background: rgba(32, 32, 32, 0.8);
  overflow: auto;
  padding: 1rem;
  position: fixed;
  left: 1rem;
  top: 6rem;
  bottom: 6rem;
  /* Makes more sense for OverlayWindow to be centered by default. Especially on web. */
  /* Creates a small window that isn't exactly a Main UI window
This is mainly used for the script-browser in exanded editor. The idea is to create an very small overlay window
similar to a dropdown */
}
.pointer-lock-close > dialog .close,
.overlay-window .close,
.OverlayWindow .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.pointer-lock-close > dialog header img.blockie,
.overlay-window header img.blockie,
.OverlayWindow header img.blockie {
  position: absolute;
  left: 1rem;
  top: 1.3rem;
}
.pointer-lock-close > dialog input:disabled,
.overlay-window input:disabled,
.OverlayWindow input:disabled,
.pointer-lock-close > dialog button:disabled,
.overlay-window button:disabled,
.OverlayWindow button:disabled,
.pointer-lock-close > dialog select:disabled,
.overlay-window select:disabled,
.OverlayWindow select:disabled,
.pointer-lock-close > dialog textarea:disabled,
.overlay-window textarea:disabled,
.OverlayWindow textarea:disabled {
  color: #666;
}
.pointer-lock-close > dialog::-webkit-scrollbar,
.overlay-window::-webkit-scrollbar,
.OverlayWindow::-webkit-scrollbar {
  width: 5px;
  background-color: #ccc;
  /* or add it to the track */
  position: relative;
  border-radius: 0.3rem;
}
.pointer-lock-close > dialog::-webkit-scrollbar-thumb,
.overlay-window::-webkit-scrollbar-thumb,
.OverlayWindow::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 0.3rem;
}
@media only screen and (max-width: 800px) {
  .pointer-lock-close > dialog,
  .overlay-window,
  .OverlayWindow {
    width: 80vw;
    height: 95vh;
  }
}
.pointer-lock-close > dialog .nft-overlay,
.overlay-window .nft-overlay,
.OverlayWindow .nft-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
}
.pointer-lock-close > dialog .nft-overlay a:hover,
.overlay-window .nft-overlay a:hover,
.OverlayWindow .nft-overlay a:hover {
  background: none !important;
}
.pointer-lock-close > dialog .nft-overlay img,
.overlay-window .nft-overlay img,
.OverlayWindow .nft-overlay img {
  max-width: 100%;
  border-radius: 0.1rem;
}
.pointer-lock-close > dialog p,
.overlay-window p,
.OverlayWindow p {
  user-select: text;
}
.pointer-lock-close > dialog p,
.overlay-window p,
.OverlayWindow p,
.pointer-lock-close > dialog h4,
.overlay-window h4,
.OverlayWindow h4 {
  margin: 0 0 1rem 0;
}
.pointer-lock-close > dialog.-takeWomp,
.overlay-window.-takeWomp,
.OverlayWindow.-takeWomp {
  height: auto;
  width: 700px;
}
.pointer-lock-close > dialog.-takeWomp > header,
.overlay-window.-takeWomp > header,
.OverlayWindow.-takeWomp > header {
  padding: 16px;
}
.pointer-lock-close > dialog.-takeWomp > header h3 i,
.overlay-window.-takeWomp > header h3 i,
.OverlayWindow.-takeWomp > header h3 i {
  margin-right: 3px;
}
.pointer-lock-close > dialog.-takeWomp > header button.close,
.overlay-window.-takeWomp > header button.close,
.OverlayWindow.-takeWomp > header button.close {
  top: 16px;
  right: 16px;
}
.pointer-lock-close > dialog.-noHiddenOverflow,
.overlay-window.-noHiddenOverflow,
.OverlayWindow.-noHiddenOverflow {
  overflow: initial;
}
.pointer-lock-close > dialog.-WhatsNew .PagingButtons,
.overlay-window.-WhatsNew .PagingButtons,
.OverlayWindow.-WhatsNew .PagingButtons {
  margin-bottom: 15px;
}
.pointer-lock-close > dialog.-WhatsNew .PagingButtons span,
.overlay-window.-WhatsNew .PagingButtons span,
.OverlayWindow.-WhatsNew .PagingButtons span {
  font-size: larger;
}
.pointer-lock-close > dialog.-WhatsNew .markup,
.overlay-window.-WhatsNew .markup,
.OverlayWindow.-WhatsNew .markup {
  padding-left: 20px;
}
.pointer-lock-close > dialog.-auto-height,
.overlay-window.-auto-height,
.OverlayWindow.-auto-height {
  height: fit-content;
}
@media only screen and (max-width: 800px) {
  .pointer-lock-close > dialog.-auto-height,
  .overlay-window.-auto-height,
  .OverlayWindow.-auto-height {
    height: 90%;
  }
}
.pointer-lock-close > dialog.-fixed,
.overlay-window.-fixed,
.OverlayWindow.-fixed {
  position: fixed;
}
.pointer-lock-close > dialog.-top-offset,
.overlay-window.-top-offset,
.OverlayWindow.-top-offset {
  top: 10vh;
  transform: none;
  margin-left: -25vw;
}
.pointer-lock-close > dialog.-right-offset,
.overlay-window.-right-offset,
.OverlayWindow.-right-offset {
  animation-name: slidein-right-offset;
  transform: none;
  left: unset;
  right: 10px;
  top: 54px;
}
.pointer-lock-close > dialog.-script-library,
.overlay-window.-script-library,
.OverlayWindow.-script-library {
  animation-duration: unset;
  animation-name: none;
  top: unset;
  left: unset;
  transform: none;
  right: 0;
}
div.MultiRangeSlider {
  height: 75px;
  display: flex;
  align-items: center;
  /* Removing the default appearance */
  /* For Chrome browsers */
  /* For Firefox browsers */
}
div.MultiRangeSlider .slider {
  position: relative;
  width: 450px;
}
div.MultiRangeSlider .slider__track,
div.MultiRangeSlider .slider__range,
div.MultiRangeSlider .slider__left-value,
div.MultiRangeSlider .slider__right-value {
  position: absolute;
}
div.MultiRangeSlider .slider__track,
div.MultiRangeSlider .slider__range {
  border-radius: 3px;
  height: 5px;
}
div.MultiRangeSlider .slider__track {
  background-color: #ced4da;
  width: 100%;
  z-index: 1;
}
div.MultiRangeSlider .slider__range {
  background-color: #24b6af;
  z-index: 2;
}
div.MultiRangeSlider .slider__left-value,
div.MultiRangeSlider .slider__right-value {
  color: #333333;
  font-size: 12px;
  margin-top: 20px;
}
div.MultiRangeSlider .slider__left-value {
  left: 6px;
}
div.MultiRangeSlider .slider__right-value {
  right: -4px;
}
div.MultiRangeSlider .thumb,
div.MultiRangeSlider .thumb::-webkit-slider-thumb {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
div.MultiRangeSlider .thumb {
  pointer-events: none;
  position: absolute;
  height: 0;
  width: 450px;
  outline: none;
}
div.MultiRangeSlider .thumb--left {
  z-index: 3;
  margin-left: 0;
}
div.MultiRangeSlider .thumb--right {
  z-index: 4;
}
div.MultiRangeSlider .thumb::-webkit-slider-thumb {
  background-color: #f1f5f7;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 1px 1px #ced4da;
  cursor: pointer;
  height: 18px;
  width: 18px;
  margin-top: 4px;
  pointer-events: all;
  position: relative;
}
div.MultiRangeSlider .thumb::-moz-range-thumb {
  background-color: #f1f5f7;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 1px 1px #ced4da;
  cursor: pointer;
  height: 18px;
  width: 18px;
  margin-top: 4px;
  pointer-events: all;
  position: relative;
}
div.MultiRangeSlider.-smaller .thumb {
  width: 400px;
}
div.MultiRangeSlider.-smaller .slider {
  width: 400px;
}
.WalletProviderChooser {
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: center;
}
.WalletProviderChooser.advanced {
  opacity: 0.5;
}
.WalletProviderChooser.advanced > div.provider {
  border-width: 1px;
  padding: 5px;
  width: 9rem;
  font-weight: normal;
}
.WalletProviderChooser.advanced > div.provider img {
  opacity: 0.8;
  filter: grayscale();
  position: relative;
  left: 4px;
}
.WalletProviderChooser.advanced > div.provider:hover {
  background: #666;
  color: white;
}
.WalletProviderChooser > div.provider {
  width: 10rem;
  border: 2px solid var(--border);
  border-radius: 4rem;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-weight: bold;
  height: 32px;
  align-items: center;
  padding: 10px;
  margin: 5px;
}
.WalletProviderChooser > div.provider div {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-evenly;
  align-items: stretch;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .WalletProviderChooser > div.provider {
    padding: 15px;
  }
}
.WalletProviderChooser > div.provider small {
  display: none;
}
.WalletProviderChooser > div.provider p {
  display: none;
}
.WalletProviderChooser > div.provider img {
  width: 20px;
  height: 20px;
}
.WalletProviderChooser > div.provider.provider-apple img {
  filter: invert();
}
.WalletProviderChooser > div.provider:hover {
  background: black;
  color: white;
}
.ParcelPageHeader {
  position: relative;
  padding: 0;
}
.ParcelPageHeader:after {
  content: '';
  position: absolute;
  pointer-events: none;
  height: 100px;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
}
/* Spaces / parcels display */
dl.attr {
  position: relative;
}
dl.attr * {
  margin: 0;
  padding: 0;
}
dl.attr dt {
  position: absolute;
  max-width: 64px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 8px 0 0 8px;
  color: #555;
}
dl.attr dd {
  border-bottom: 1px solid var(--border);
  padding: 8px 0 8px 72px;
}
.stay-spaced-out .play-view {
  /* sizing mixin */
  min-width: calc(min(100%, 80vh, 1024px));
  aspect-ratio: 3/4;
  max-height: 60vh;
}
.stay-spaced-out ul.setting {
  border-top: 1px solid #eee;
}
.stay-spaced-out ul.setting li {
  border-bottom: 1px solid #eee;
  padding: 0.1rem 0.4rem;
}
.stay-spaced-out ul.setting .content-upload {
  position: relative;
}
.stay-spaced-out ul.setting .content-upload label {
  color: #55258c;
}
.stay-spaced-out ul.setting .content-upload input {
  opacity: 0.01;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
@media (prefers-color-scheme: dark) {
  .invertable {
    filter: invert(1);
    mix-blend-mode: screen;
  }
}
body {
  background-color: var(--background);
  color: var(--text);
}
h1,
h2,
h3,
h4,
h5 {
  color: var(--header);
  font-weight: 600px;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.16;
}
h1 {
  color: var(--header);
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: -0.09rem;
}
@media only screen and (max-width: 800px) {
  h1 {
    font-size: 2rem;
  }
}
h3 {
  color: var(--header);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: -0.05rem;
}
@media only screen and (max-width: 800px) {
  h3 {
    font-size: 1.5rem;
  }
}
h4 {
  font-weight: bold;
  font-size: inherit;
}
a {
  color: var(--link);
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
  color: var(--link) !important;
}
a:visited {
  color: var(--visited);
}
body {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
h1 {
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
input,
textarea {
  border-radius: 0.2rem;
  border: none;
  padding: 0.3rem;
  font: inherit;
}
/* end todo */
h1 {
  font-weight: bold;
}
/* Main layout */
a.button,
a.linkbutton,
.buttonable,
button:not([class]),
button.secondary,
button[class=''] {
  display: inline-block;
  text-decoration: none;
  background: var(--header);
  border: 2px solid var(--header);
  border-radius: 1.5rem;
  color: var(--background);
  padding: 0.4rem 0.6rem;
  font-size: inherit;
  cursor: pointer;
}
a.button:hover,
a.linkbutton:hover,
.buttonable:hover,
button:not([class]):hover,
button.secondary:hover,
button[class='']:hover {
  border-color: 2px solid var(--text);
  color: var(--text);
}
a.button.secondary,
a.linkbutton.secondary,
.buttonable.secondary,
button:not([class]).secondary,
button.secondary.secondary,
button[class=''].secondary {
  font-size: smaller;
  border-width: 1px;
  border-color: var(--text);
  color: var(--text);
  padding: 0 0.5rem;
  height: 1.75rem;
  line-height: 1.5rem;
}
@media only screen and (max-width: 800px) {
  html,
  body {
    margin: 0;
    padding: 0;
  }
}
body > div:first-child {
  display: flex;
  flex-direction: row;
  max-width: 1520px;
  margin: 0 auto;
  align-items: flex-start;
  min-height: 88vh;
  justify-content: stretch;
}
body > div:first-child > section {
  flex: 1;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 720px) {
  body > div:first-child {
    flex-direction: row;
    max-width: 1520px;
    margin: 0 auto;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 800px) {
  body > div:first-child {
    flex-direction: column;
  }
  body > div:first-child > * {
    box-sizing: border-box;
    padding: 0;
    max-width: calc(100vw - 12px);
    margin-left: 6px;
  }
  body > div:first-child > .webheader {
    margin-left: 0;
  }
}
@media only screen and (min-width: 720px) {
  body > div:first-child .webheader + * {
    flex-grow: 1;
    margin-right: 1rem;
    width: calc(100% - 20rem);
  }
}
body > div:first-child > section {
  display: block;
  position: relative;
}
/* Pagination */
.pagination-summary {
  text-align: center;
  color: var(--small);
  display: none;
}
.pagination {
  text-align: center;
  font-size: smaller;
}
.pagination span + span {
  display: none;
}
.pagination a {
  border: 1px solid var(--border);
}
.pagination a.active {
  border: none;
  font-weight: bold;
}
.pagination span,
.pagination a {
  width: 1.5rem;
  display: inline-block;
  line-height: 1.5rem;
  text-align: center;
  margin-right: 4px;
  border-radius: 2rem;
  padding: 0.3rem;
}
.pagination .nav,
.pagination .disnav {
  width: 64px;
}
.pagination .disnav {
  opacity: 0.5;
  touch-action: none;
  color: #aaa;
  border-color: #aaa;
}
@media only screen and (max-width: 800px) {
  .pagination a,
  .pagination span {
    display: none;
  }
  .pagination a.nav,
  .pagination a.active {
    display: inline-block;
  }
}
/* Table class properties-list */
table.parcels {
  width: 100%;
  margin-bottom: 1.1em;
  border-collapse: collapse;
}
table.parcels th {
  color: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1em 0;
  font-weight: normal;
  text-align: left;
}
@media only screen and (max-width: 800px) {
  table.parcels td + td + td + td + td,
  table.parcels th + th + th + th + th {
    display: none;
  }
}
table.parcels td {
  text-align: left;
}
table.parcels tr > *:nth-last-child(1),
table.parcels tr > *:nth-last-child(2) {
  text-align: right;
  width: 4rem;
}
table.parcels td {
  vertical-align: top;
  padding-top: 0.5em;
}
table.parcels td small {
  color: #888;
}
.webmap article {
  width: 100%;
  display: flex;
  margin-right: 0 !important;
}
.webmap article > div {
  background: var(--background);
  border-radius: 0.5rem;
  flex: 1;
}
@media only screen and (max-width: 800px) {
  .webmap aside {
    height: 25vh;
    overflow: auto;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 720px) {
  .webmap aside {
    width: 12rem;
    margin-right: 1rem;
  }
}
.webmap aside .islands {
  list-style: none;
  margin: 1rem 0 0 0;
  padding: 0;
}
.webmap aside .islands li {
  margin: 0;
  padding: 0.2rem 0.5rem;
  border-bottom: 1px solid var(--border);
}
/* Big - map with icons*/
.big-map {
  width: 100%;
  height: 80vh;
  background: #eee;
}
@media only screen and (max-width: 800px) {
  .big-map {
    height: 75vh;
  }
}
/* Visit button on Home page */
.visit-button {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}
.visit-button a {
  border: 2px solid black;
  border-radius: 30px;
  display: inline-block;
  padding: 10px 20px;
  background: white;
}
/* Home - Homepage if logged in */
#username {
  font-weight: 700;
  font-size: 2.2rem;
}
.avatar-profile {
  display: flex;
  flex-direction: column;
}
.avatar-profile figure canvas {
  border-radius: 1rem;
}
.avatar-profile h1 {
  display: block;
  overflow: visible;
  margin: 0;
}
.avatar-profile h1 a.avatar-image {
  position: relative;
  top: 1rem;
  margin-right: 1rem;
}
@media only screen and (min-width: 720px) {
  .avatar-profile section.wearing {
    display: flex;
    flex-direction: row;
  }
  .avatar-profile section.wearing > * {
    width: 50%;
  }
  .avatar-profile figure {
    padding-right: 1rem;
    max-width: 20rem;
  }
}
.avatar-profile .wallet {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.avatar-profile .wallet a {
  cursor: pointer;
}
.avatar-profile .interactions {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
.avatar-profile cite {
  margin: 0;
}
.avatar-profile cite .markup p {
  margin-top: 0;
}
.avatar-profile cite .markup p:last-child {
  margin-bottom: 0;
}
.avatar-profile .container {
  display: flex;
  gap: 2rem;
  flex-direction: row;
  flex-wrap: wrap;
}
.avatar-profile .container .main-content {
  flex: 1;
}
.avatar-profile .container .main-content .editing-action {
  float: right;
}
.avatar-profile .container .main-content .information {
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
}
.avatar-profile .container .main-content .information div {
  flex: 2;
}
.avatar-profile .container .main-content .information div:nth-child(2) {
  flex: 3;
}
.avatar-profile .container .main-content .information input {
  width: 100%;
}
.avatar-profile .container .main-content .information dd {
  margin-left: 5rem;
  margin-bottom: 0.5rem;
}
.avatar-profile .container .costume {
  flex: none;
}
.avatar-profile div.parcelList {
  margin-top: 0;
}
.avatar-profile .madnav {
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 800px) {
  .avatar-profile .madnav a {
    max-width: 80px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 2px;
  }
}
.avatar-profile .madnav a {
  position: relative;
  top: 2px;
  display: inline-block;
  line-height: 32px;
  padding: 0 12px;
  text-decoration: none;
  color: var(--link);
}
.avatar-profile .madnav a.active {
  border-bottom: 1px solid var(--text);
  color: var(--text);
}
.avatar-profile .madnav a:hover {
  background: none !important;
  text-decoration: underline;
}
.avatar-profile .madnav a:first-child {
  padding-left: 0;
}
/* Explore page - Homepage if not logged in */
.-bio,
.explorePage {
  display: flex;
}
@media only screen and (max-width: 800px) {
  .-bio,
  .explorePage {
    flex-direction: column;
  }
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .-bio,
  .explorePage {
    flex-direction: row;
  }
}
.explorePage .col-left {
  margin: 0 0 10px 0;
}
@media only screen and (min-width: 720px) {
  .explorePage .col-left {
    width: 100%;
    margin: 0 2rem 0 0;
  }
}
.explorePage .col-right {
  width: 400px;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .-bio .col-left {
    width: 50%;
  }
}
.-bio .col-right {
  margin: 0 0 10px 0;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .-bio .col-right {
    width: 50%;
    margin: 0 0 0 40px;
  }
}
.space-size i {
  opacity: 0.5;
}
.space-thumb {
  display: inline-block;
  border: 1px solid #ccc;
  background-image: url(/images/spaces-icon.png);
  background-size: 64px;
}
.space-thumb,
img.thumb {
  width: 64px;
  height: 64px;
  border-radius: 1px;
}
.action-list {
  margin: 1rem 0;
  padding: 0;
  display: flex;
}
.action-list li {
  margin: 0;
  padding: 0 0.2rem 0 0;
  list-style: none;
  display: block;
}
.action-list a.button {
  margin-left: 4px;
}
/* Parcel detail section */
.parcel-profile {
  position: relative;
  top: -120px;
  z-index: 10001;
}
.parcel-profile .columns {
  display: flex;
  flex-direction: row;
}
.parcel-profile .columns .left-column {
  flex: 1;
  position: relative;
  padding-bottom: 20px;
}
.parcel-profile .columns .right-column {
  width: fit-content;
  margin-left: 60px;
}
@media only screen and (max-width: 800px) {
  .parcel-profile {
    top: -100px;
  }
  .parcel-profile .columns {
    flex-direction: column;
  }
  .parcel-profile .columns .right-column {
    width: fit-content;
    margin-left: 0;
  }
  .parcel-profile .parcelContent {
    max-height: 200px;
  }
}
.parcel-profile li {
  list-style: none;
}
.parcel-profile .parcel-editable input[type='text']:hover {
  border: 2px #000;
}
.parcel-profile .parcel-editable input[type='text']:focus {
  border: 2px #000;
}
.parcel-profile div.ParcelOwnershipDisplay {
  display: none;
  position: absolute;
  top: 64px;
  right: 40px;
  min-width: 194px;
  padding: 5px;
  background-color: white;
  margin-bottom: 6px;
  align-items: center;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .parcel-profile div.ParcelOwnershipDisplay {
    display: flex;
  }
}
.parcel-profile div.ParcelOwnershipDisplay img {
  width: 32px;
  margin-right: 2px;
}
.parcel-profile div.ParcelOwnershipDisplay h2 {
  margin: 0 4px 0 0;
}
.parcel-profile div.ParcelOwnershipDisplay a {
  display: flex;
  align-items: center;
}
.parcel-profile div.ParcelOwnershipDisplay a:hover {
  background-color: grey;
  font-weight: bold;
}
/* PARCEL ADMIN PANEL */
.ParcelAdminPanel {
  box-sizing: border-box;
}
.ParcelAdminPanel h3 + p,
.ParcelAdminPanel h4 + p {
  margin-bottom: 0;
}
.ParcelAdminPanel .PanelHeader small {
  margin: auto;
}
.ParcelAdminPanel ul,
.ParcelAdminPanel li {
  margin-left: 0;
  padding-left: 0;
  line-height: 1.5rem;
}
.ParcelAdminPanel section.PanelBody .Setting input[type='checkbox'] {
  margin-left: 0;
}
.ParcelAdminPanel section.PanelBody .Setting .hostedScripts input[type='text'] {
  width: 75%;
}
.ParcelAdminPanel section.PanelBody ul {
  list-style-type: none;
}
.ParcelAdminPanel section.PanelBody ul > li > ul.sub-list {
  padding-left: 1rem;
  background-color: #e9e9e9;
  border-radius: 0.25rem;
}
.RollBackTool .rollback-tool-header {
  padding: 0.5em 0.2em 0.2em 0.2em;
  border-top: 1px groove #000;
}
.RollBackTool .rollback-tool-header:hover {
  background-color: #c0c0c0;
  font-weight: 700;
  cursor: pointer;
}
.RollBackTool .rollback-tool-header:active {
  background-color: #888888;
  color: white;
}
.RollBackTool .rollback-tool-header.active {
  background-color: #e4e4e4;
}
.RollBackTool .summary-actions {
  display: flex;
}
.RollBackTool .summary-actions button {
  margin: 2px;
  max-width: 70%;
}
.RollBackTool .collapsible {
  max-height: 200px;
  overflow-y: scroll;
}
.RollBackTool .edit-summary > :first-child {
  margin: 5px 2px 2px 2px;
}
.RollBackTool .edit-summary > :last-child {
  margin: 2px 1px 2px 5px;
}
/* Trait editor for collection's custom attributes*/
.CustomAttributesEditor {
  display: unset;
}
.CustomAttributesEditor > div {
  display: flex;
}
.CustomAttributesEditor .AttributeEditor {
  background-color: #eeeeee;
  padding: 4px;
  border-radius: 2px;
  margin: 2px;
}
.CustomAttributesEditor .AttributeEditor > div {
  justify-content: space-between;
  display: flex;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .CustomAttributesEditor .AttributeEditor {
    width: 31%;
  }
}
h1 + p.sub {
  margin-top: -1.5rem;
}
.womp-page .-body {
  position: relative;
}
.womp-page .framing {
  display: inline-block;
  clear: both;
}
.womp-page .framing + * {
  clear: both;
}
.womp-page .action-list .emoji {
  line-height: 42px;
  padding: 4px;
  color: #555;
}
.womp-page .-head a {
  color: inherit;
}
.womp-page .-head address {
  font-style: normal !important;
  padding-left: 0.25rem;
  display: inline-block;
}
.womp-page .framing img {
  border-radius: 1rem;
}
@media only screen and (min-width: 720px) {
  .womp-page .framing img {
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
}
@media only screen and (max-width: 800px) {
  .womp-page .framing img {
    max-height: 69vh;
  }
}
.womp-page h1 {
  font-weight: bold;
}
.womp-page .deets p {
  display: flex;
  flex-direction: row;
}
.womp-page .deets p b {
  width: 100px;
}
.womp-page .womp-image {
  /* sizing mixin */
  max-width: 100%;
  border-radius: 2px;
  margin: 0;
  padding: 0;
  display: block;
}
section.collection-page .summary {
  position: relative;
  padding-left: 58px;
}
section.collection-page .summary .collection-icon {
  width: 48px;
  left: 0;
  position: absolute;
  border-radius: 2px;
}
section.collection-page .summary dl {
  position: relative;
}
section.collection-page .summary dl dt {
  position: absolute;
  left: 0;
  color: #555;
}
section.collection-page .summary dl dd {
  padding-left: 6rem;
  min-height: 2rem;
}
section.collection-page .collection-actions,
section.collection-page .collection-actions li {
  list-style: none;
  margin: 0;
  padding: 0;
}
section.collection-page .collection-actions {
  margin-top: 2rem;
}
section.collection-page .parcels-details.collection {
  position: relative;
  display: flex;
}
section.collection-page .parcels-details.collection > img {
  width: 52px;
  height: 52px;
  margin: 5px 0;
}
section.collection-page .parcels-details.collection .unlocked {
  position: absolute;
  top: -15px;
  right: -10px;
  font-size: large;
}
section.collection-page .parcels-details.collection > div {
  min-width: 180px;
  margin: auto 0 auto 5px;
}
section.collection-page .parcels-details.collection > div h1 {
  margin: 0;
}
section.collection-page .collection-management {
  max-width: 54rem;
  padding: 10px;
}
section.collection-page .collection-management .Form .collection-management-form .field label {
  flex: 0 0 14rem;
}
section.collection-page .collection-management .Form .collection-management-form .field .help {
  margin-left: 0.5rem;
}
section.collection-page .collection-management .Form .collection-management-form .field.Submit {
  justify-content: end;
}
section.collection-page .collection-management .field .CustomAttributesEditor {
  display: unset;
}
section.collection-page .collection-management .field .CustomAttributesEditor > div {
  display: flex;
}
section.collection-page .collection-management .field .CustomAttributesEditor .AttributeEditor > div {
  justify-content: space-between;
  display: flex;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  section.collection-page .collection-management .field .CustomAttributesEditor .AttributeEditor {
    width: 32%;
  }
}
.twitter-embed {
  display: none;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .twitter-embed {
    display: block;
  }
}
.featured-collectible > .grid-item {
  width: 90%;
  /* Show three by default on mobile */
  height: 180px;
  position: relative;
  margin: 0 20% 9% 10%;
  display: inline-block;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .featured-collectible > .grid-item {
    height: 120px;
  }
}
.featured-collectible > .grid-item .title {
  display: block;
  margin-bottom: 6px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 85%;
}
.featured-collectible > .grid-item .title .rarity-label {
  display: inline-block;
}
.featured-collectible > .grid-item img {
  border: 2px solid white;
  position: relative;
  left: -2px;
  top: -2px;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .featured-collectible > .grid-item img {
    width: 60%;
    height: 120px;
  }
}
.featured-collectible > .grid-item a:hover img {
  border: 2px solid black;
}
.featured-collectible > .grid-item .title + a:hover {
  background: none;
}
.featured-collectible .collectible-description {
  display: block;
  width: 100%;
}
.featured-collectible .collectible-description p {
  margin: 5px;
}
h2.header-divider {
  display: flex;
  align-items: flex-start;
  text-align: left;
}
h2.header-divider:after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: #bdbdbd;
  min-width: 20px;
  margin: auto;
}
h2.header-divider:after {
  margin-left: 20px;
}
/* version/history stuff in parcel */
.edit-summary .meta {
  font-weight: bold;
}
.edit-summary button {
  border: 2px solid var(--border);
  border-radius: 5px;
  color: black;
  padding: 1px 3px;
  background: white;
  margin: 0 5px;
  cursor: pointer;
}
.edit-summary button:hover {
  background: #f9f9f9;
}
.edit-summary ul {
  padding: 0 0.5em 0.5em 0.5em;
}
.edit-summary li {
  padding: 0;
  margin: 0;
  list-style-type: square;
}
.edit-summary.small {
  font-weight: normal;
}
/* Change background css if owner */
.is-owner-only {
  background-color: #f5f5f5;
  border: 1px solid #c0c0c0;
  border-radius: 3px;
}
/* Thumbnails of nearby and basic looking information of parcel */
.BasicParcelInfo {
  clear: both;
}
.BasicParcelInfo img {
  border: 1px solid #aaa;
  width: 66px;
  height: 66px;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.slippy-map {
  top: -1px;
}
/* Buy button on parcel page */
.purchase-info {
  font-size: 0.9em;
  color: #333;
  padding: 0.75em;
  background: #f3f3f3;
}
/* Parcel columns in parcel page*/
.parcel-col th:nth-child(1),
.parcel-col td:nth-child(1) {
  width: 5%;
  padding-right: 2rem;
}
.parcel-col th:nth-child(3),
.parcel-col th:nth-child(4),
.parcel-col td:nth-child(3),
.parcel-col td:nth-child(4) {
  padding-left: 2rem;
  width: 10%;
  text-align: right;
}
.parcel-col .left {
  width: 300px;
  position: absolute;
  padding-right: 20px;
}
@media only screen and (max-width: 800px) {
  .parcel-col .left {
    display: none;
  }
}
.parcel-col .left .tags {
  font-size: 0.7em;
  text-align: justify;
}
.parcel-col .left .tags a {
  color: #777;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .parcel-col .right {
    margin-left: 320px;
  }
}
.parcel-col .tabben {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}
.parcel-col .tabben li {
  margin: 0;
  padding: 0 0.8em;
  line-height: 2em;
  display: inline-block;
  text-decoration: underline;
  cursor: pointer;
}
.parcel-col .tabben li:first-child {
  border-right: 1px solid #aaa;
}
table.CollectibleSubmissions td {
  text-align: center;
}
table.CollectibleSubmissions td.collectible_id {
  width: 10%;
  font-size: small;
}
table.CollectibleSubmissions td.collectible_preview img {
  background: url('/images/default.png');
  background-size: contain;
}
table.CollectibleSubmissions td.collectible_desc {
  width: 25%;
}
table.CollectibleSubmissions td.collectible_attributes ul {
  padding: 0;
}
table.CollectibleSubmissions td.collectible_actions button {
  margin: 2px 0;
}
/* Keys help in about.tsx */
.keys-help dt {
  border: 1px solid #ccc;
  background: linear-gradient(#fff, #eee);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  position: absolute;
  padding: 4px;
  font-size: 0.9em;
  color: #333;
}
.keys-help dd {
  margin-left: 80px;
  padding-top: 4px;
  padding-bottom: 16px;
}
/* Neighborhood and island pages */
.neighborhood li a.bold {
  font-weight: bold;
}
.neighborhood #map {
  width: 100%;
  height: 480px;
  background: #f3f3f3;
}
.neighborhood .split {
  position: relative;
}
.neighborhood .split .floater {
  z-index: 2000;
  position: absolute;
  left: 50px;
  top: 10px;
  bottom: 10px;
  width: 240px;
  background: white;
  padding: 10px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  overflow-y: scroll;
}
@media prefers-color-scheme: dark {
  .neighborhood .split .floater {
    background: #333;
    color: white;
  }
}
.neighborhood .split .floater h3 {
  margin-top: 0;
}
/* List of names */
.avatar-name-list {
  margin-left: 0;
  padding-left: 0;
}
.avatar-name-list li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.avatar-name-list li span {
  font-size: 2em;
}
/* For-sale tab (buy tab) */
.for-sale {
  border-collapse: collapse;
}
.for-sale th {
  text-align: left;
  border-bottom: 1px solid #ccc;
  font-size: 0.8em;
  color: #aaa;
  padding: 8px;
  font-weight: normal;
}
.for-sale tr td {
  border-bottom: 1px solid #ccc;
}
.for-sale small {
  color: var(--small);
}
.for-sale td {
  vertical-align: top;
  padding: 6px;
}
.for-sale td:nth-child(1) {
  color: #999;
  font-size: smaller;
}
.for-sale td:nth-child(2) {
  padding: 0;
}
.for-sale td.actionButtons {
  padding: 2px;
  min-width: 100px;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .for-sale td.actionButtons {
    min-width: 150px;
  }
}
.for-sale td.actionButtons div {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.for-sale td.actionButtons .action {
  border: 1px solid #444;
  box-shadow: 1px 1px 0 black;
  border-radius: 1px;
  padding: 4px 8px;
  background: #00aaff;
  color: white;
  text-decoration: none;
  margin: 1px;
}
.for-sale td.actionButtons .action:hover {
  text-decoration: underline;
  background: #66ccff;
}
.for-sale td.actionButtons .action.-green {
  background: #16ad04;
}
.for-sale td.actionButtons .action.-green:hover {
  background: #35fa1d;
}
.for-sale td.actionButtons .action.-darker {
  background: #0d79c5;
}
.for-sale td.actionButtons .action.-darker:hover {
  background: #45abf3;
}
.for-sale td.actionButtons .action.-rarible {
  background-color: #feda03;
  color: black;
}
.for-sale td.actionButtons .action.-rarible:hover {
  background: #fede1c;
}
.for-sale tr:nth-child(odd) td {
  background: #fafafa;
}
.for-sale td img {
  width: 64px;
  border: 1px solid #ccc;
  border-radius: 1px;
  margin: 2px;
}
.for-sale td img:hover {
  transform: scale(2.5);
}
.for-sale div.ViewForSale3D {
  position: fixed;
  display: inline-block;
  padding: 5px 5px;
  background: white;
  border-radius: 4px;
  border: 1px solid #5a328e;
  transform: scale(0);
  transform-origin: top center;
  transition: all 0.1s linear 0s;
  margin-top: 5px;
  z-index: 12;
  text-align: center;
}
.for-sale div.ViewForSale3D .in {
  position: relative;
}
.for-sale div.ViewForSale3D iframe {
  background: url(/images/loading-large.gif) center center no-repeat;
}
.for-sale div.ViewForSale3D.active {
  transform: scale(1);
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .for-sale > div {
    width: 20%;
  }
}
@media only screen and (max-width: 800px) {
  .for-sale {
    justify-content: center;
  }
  .for-sale > div {
    width: 240px;
  }
}
/* Wearables in account tab */
.AvatarCanvas {
  position: relative;
  width: 100%;
}
.AvatarCanvas a.edit {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  margin-right: 8px;
  font: inherit;
  font-size: small;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-block;
  color: var(--background) !important;
  background-color: var(--text);
  margin-right: 0;
}
.AvatarCanvas a.edit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.AvatarCanvas canvas {
  width: 100%;
  height: 480px;
  border: 1px solid #ddd;
  background: #f0f3ff;
}
@media only screen and (max-width: 800px) {
  .AvatarCanvas canvas {
    width: 100%;
    height: 40vh;
  }
}
.AvatarCanvas .left-column {
  position: absolute;
}
.AvatarCanvas .right-column {
  margin-left: 440px;
}
/* Admin listing */
.admin-listing table {
  width: 100%;
  border-spacing: 0;
}
.admin-listing table th:nth-child(1) {
  width: 115px;
}
.admin-listing table th {
  width: 80px;
}
.admin-listing table th {
  border-bottom: 1px solid #aaa;
  color: var(--small);
  font-weight: normal;
  text-align: left;
  margin-bottom: 4px;
  padding-bottom: 4px;
}
.admin-listing table tr.-highlight {
  background-color: #ececa1;
}
.admin-listing .pricing {
  width: 115px;
}
.admin-listing .expiration {
  width: 200px;
}
/* Popular in Activity.tsx */
.popular {
  width: 100%;
}
.popular td {
  border-top: 1px solid #ccc;
  padding: 16px;
  vertical-align: top;
}
.popular img {
  width: 100px;
  border: 1px solid #ccc;
}
.popular td:nth-child(3) {
  width: 100%;
}
/* Avatars table in avatars.tsx */
.avatars td {
  padding-bottom: 12px;
  vertical-align: top;
}
.avatars img {
  width: 48px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-left: 6px;
  margin-right: 6px;
}
.avatars small a {
  text-decoration: none;
}
.avatars small a:hover {
  text-decoration: underline;
}
.avatars small span span {
  color: var(--small);
}
.avatars small span:last-child span {
  display: none;
}
/* Wearables page - wearable.tsx */
.wearables .tabs {
  border-bottom: 1px solid #ccc;
}
.wearables .tabs li {
  display: inline-block;
  list-style: none;
  border: 1px solid #ccc;
  height: 32px;
  line-height: 32px;
  padding: 0 16px;
  position: relative;
  top: 1px;
  margin-right: 8px;
}
.wearables .tabs li.active {
  border-bottom-color: white;
}
/* Attachment editor -wearables in account */
.attachment-editor {
  border-top: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px;
}
.attachment-editor img {
  width: 42px;
  float: left;
}
.attachment-editor .header {
  min-height: 50px;
  margin: 0 0 4px 0;
  padding: 0;
  border-bottom: 1px solid #ccc;
}
.attachment-editor .header * {
  margin: 0;
  padding: 0;
}
.attachment-editor .header img {
  margin-right: 8px;
}
.attachment-editor .header p {
  color: var(--small);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}
.attachment-editor .f {
  position: relative;
  padding-left: 100px;
}
.attachment-editor .f input {
  width: 60px;
  margin-right: 4px;
}
.attachment-editor .f label {
  position: absolute;
  left: 0;
}
.attachment-editor .f small {
  display: block;
  color: #aaa;
}
/* Skin tab and colors */
.hats.colors svg {
  display: block;
  transform: scale(0.5, 0.5);
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-top: 20px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  left: -160px;
  top: -160px;
  position: relative;
}
.body-parts {
  width: 100%;
  color: #333;
  border-collapse: collapse;
}
.body-parts tr.deselected {
  opacity: 0.5;
}
.body-parts td {
  border-top: 1px dotted #aaa;
  padding: 4px;
}
.body-parts tr:nth-child(even) {
  background: #fafafa;
}
/* Wearable grid wearables.tsx and avatar.tsx */
.collectibles-grid {
  display: flex;
  flex-wrap: wrap;
}
.collectibles-grid .wearable {
  width: 22.5%;
  margin-bottom: 9%;
  position: relative;
}
@media only screen and (min-width: 500px) and (max-width: 800px) {
  .collectibles-grid .wearable {
    min-height: 140px;
  }
}
.collectibles-grid .wearable .is-flex {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
}
.collectibles-grid .wearable .title {
  display: block;
  margin-bottom: 6px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.collectibles-grid .wearable img {
  width: 90%;
}
.collections-grid {
  width: 100%;
}
.collections-grid .collection-item {
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: row;
  padding: 0.5rem 0;
  width: 100%;
}
.collections-grid p {
  margin: 0;
}
.collections-grid dl {
  display: none;
  grid-template-columns: auto 1fr;
  gap: 0;
}
.collections-grid .name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.collections-grid .description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.collections-grid dt {
  justify-self: start;
}
.collections-grid dd {
  justify-self: end;
}
.collections-grid .details {
  flex: 1;
}
.collections-grid .logo {
  padding: 0 0.5rem 0 0;
}
.collections-grid .logo img,
.collections-grid .logo canvas {
  width: 3rem;
  height: 3rem;
  border-radius: 0.1rem;
}
.collections-grid dl,
.collections-grid .description {
  font-size: smaller;
  color: var(--small);
}
.relative {
  position: relative;
}
/* Wearable page */
.wearable canvas {
  outline: none;
}
@media only screen and (min-width: 720px) {
  .wearable canvas {
    width: 40rem;
  }
}
.wearable .overlay-wearable-tags {
  position: absolute;
  top: 5px;
  right: 5px;
}
.wearable .overlay-wearable-tags > div:first-child {
  font-size: large;
  margin: 0 0 5px 0;
}
.wearable .overlay-wearable-tags > div:last-child {
  font-size: large;
}
.wearable .browse {
  float: right;
}
.wearable .browse a:first-child {
  margin-right: 10px;
}
.wearable .price {
  position: relative;
  color: #777;
  border: 1px solid #777;
  padding: 2px 4px;
  border-radius: 10px;
  font-size: 0.9em;
  background: white;
}
/* Wearable orderbook within wearable page */
.Wearable-orderBook {
  width: 100%;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .Wearable-orderBook {
    width: 90%;
  }
}
.Wearable-orderBook tr:nth-child(1) {
  border-bottom: #000;
  border-bottom-width: 1px;
}
.Wearable-orderBook tr:nth-child(2) {
  border-bottom: 1px #818181;
  padding-bottom: 3%;
}
.Wearable-orderBook tr:nth-child(2) th {
  padding-right: 2px;
}
.Wearable-orderBook tr:nth-child(2) th:nth-child(4) {
  border: solid 0 #000;
  border-left-width: 2px;
  padding-left: 0.1em;
}
.Wearable-orderBook td {
  text-align: center;
}
.Wearable-orderBook .orderbook-item {
  min-height: 70px;
  padding-left: 70px;
  position: relative;
}
.Wearable-orderBook .orderbook-item td:nth-child(4) {
  border: solid 0 #000;
  border-left-width: 2px;
  padding-left: 0.1em;
}
/* wearable owners */
.wearable-owners {
  margin-top: 1rem;
}
.wearable-owners div {
  position: relative;
  padding-right: 1rem;
}
.wearable-owners img {
  position: relative;
  top: 0.6rem;
  margin-right: 0.5rem;
}
.wearable-owners .quantity {
  position: absolute;
  top: 0.2rem;
  left: 1.2rem;
  display: inline-block;
  border-radius: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
}
.wearable-owners .quantity-1 {
  display: none;
}
/* Web sub-menu tabs */
.avatar-tabs {
  border-bottom: 1px solid #ccc;
  margin: 0 0 5px 0;
  padding: 0;
}
.avatar-tabs.smaller {
  font-size: smaller;
}
.avatar-tabs li {
  display: inline-block;
  list-style: none;
  border: 1px solid #ccc;
  margin-left: 2px;
  position: relative;
  top: 1px;
  cursor: pointer;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .avatar-tabs li {
    margin-left: 6px;
  }
}
.avatar-tabs li a {
  padding: 6px;
  display: block;
}
.sub-avatar-tabs {
  border-bottom: 1px solid #ccc;
  padding: 0;
  margin: 0 0 5px 0;
  padding: 0 0 0 10px;
}
.sub-avatar-tabs.smaller {
  font-size: smaller;
}
.sub-avatar-tabs li {
  display: inline-block;
  list-style: none;
  border: 1px solid #ccc;
  margin-left: 2px;
  position: relative;
  top: 1px;
  cursor: pointer;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .sub-avatar-tabs li {
    margin-left: 6px;
  }
}
.sub-avatar-tabs li a {
  padding: 6px;
  display: block;
}
/* Popular parcels on home page */
.popular-home {
  clear: both;
  padding-top: 0.5rem;
}
@media only screen and (max-width: 800px) {
  .popular-home p + p + p + p + p + p {
    display: none;
  }
}
.popular-home .avatar-tabs {
  min-width: 320px;
}
.popular-home li a.title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.popular-home .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.popular-home small {
  font-size: smaller;
  color: var(--small);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Account tab in name.tsx */
.account .f {
  padding-left: 120px;
  position: relative;
  margin-bottom: 20px;
}
.account .f label {
  position: absolute;
  left: 0;
}
/* Create a new space */
form.new-space .f.advanced input {
  opacity: 0.5;
}
form.new-space .f {
  position: relative;
  padding-left: 120px;
}
form.new-space .f label {
  position: absolute;
  left: 0;
}
/* Spaces */
.spaces-list {
  width: 100%;
}
.spaces-list th {
  border-bottom: 1px solid #ccc;
}
.spaces-list td:first-child {
  width: 180px;
}
.spaces-list td,
.spaces-list th {
  text-align: left;
}
.spaces-list td a,
.spaces-list th a {
  cursor: pointer;
}
/* Web columns */
div.columns {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  div.columns {
    flex-direction: row;
  }
}
div.columns .left-column {
  max-width: 75%;
}
/* Button helper */
.cv-button {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
  cursor: pointer;
}
.cv-button a {
  border-radius: 20px;
  display: inline-block;
  padding: 10px 20px;
}
.small-button {
  margin-bottom: 10px;
  margin-top: 10px;
}
.small-button a {
  padding: 5px 10px;
}
/* most worn/traded wearables - overflow vertical*/
.canOverflow-vertical {
  width: 100%;
  overflow-y: auto;
  height: 280px;
}
.canOverflow-vertical .row-most-worn {
  display: flex;
  width: 100%;
  padding: 5px;
  border-bottom: 1px solid #aaaa;
  margin-bottom: 2px;
}
.canOverflow-vertical .row-most-worn div {
  margin: auto;
}
hr {
  background: #ccc;
  border: none;
  height: 1px;
}
/* Womps listing */
.womps .loading {
  top: -8px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal.show {
  display: block;
}
.modal img {
  width: 100%;
}
.modal .modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 20%;
}
.modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.modal .close:hover,
.modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.WebOverlayWindow {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.4);
}
.WebOverlayWindow section {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 20%;
}
.WebOverlayWindow section > header {
  position: relative;
  color: #000000;
  background: rgba(241, 241, 241, 0.667);
  border-radius: 4px;
  padding: 10px;
  margin: -5px -5px 10px;
}
.WebOverlayWindow section > header h3 {
  background: none;
  color: #333;
}
.WebOverlayWindow section > header button {
  padding: 4px 8px;
  margin-right: 8px;
  font: inherit;
  font-size: small;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-block;
  color: var(--background) !important;
  background-color: var(--text);
  position: absolute;
  margin-right: 0;
  top: 10px;
  right: 10px;
}
.WebOverlayWindow section > header button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.WebOverlayWindow.-auto-height section {
  width: 40%;
}
.WebOverlayWindow.-large section {
  width: 50%;
}
.WebOverlayWindow .close {
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.WebOverlayWindow .close:hover,
.WebOverlayWindow .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.ToggleTabs {
  width: 100%;
  height: 30px;
  padding: 0 0 10px;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .ToggleTabs {
    height: 40px;
  }
}
.ToggleTabs ul {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  border: 1px solid #b0b0b0;
}
.ToggleTabs li {
  cursor: pointer;
  background-color: #e6e6e6;
  display: inline-block;
  list-style-type: none;
  width: 100%;
  padding: 10px;
}
.ToggleTabs li.active {
  background-color: #cccccc;
  font-weight: bold;
}
.ToggleTabs li.active:hover {
  background-color: #cccccc;
}
.ToggleTabs li:hover {
  background-color: #c1c1c1;
}
.ToggleTabs li a {
  color: #333;
}
.ToggleTabs li a:hover {
  background: unset;
}
.MultipleWaySwitch {
  display: inline;
}
.MultipleWaySwitch button {
  width: 60px;
  padding: 5px;
  cursor: pointer;
  background-color: #d8d8d8;
  border-top: 1px solid #3f3f3f;
  border-bottom: 1px solid #3f3f3f;
}
.MultipleWaySwitch button:nth-of-type(1) {
  border-top-left-radius: 10%;
  border-bottom-left-radius: 10%;
  border-left: 1px solid #3f3f3f;
}
.MultipleWaySwitch button:last-of-type {
  border-top-right-radius: 10%;
  border-bottom-right-radius: 10%;
  border-right: 1px solid #3f3f3f;
}
.MultipleWaySwitch button:hover {
  background-color: #cccccc;
}
.MultipleWaySwitch button:disabled {
  color: white;
  background-color: #525252;
}
.MultipleWaySwitch button:disabled:hover {
  background-color: #525252;
}
.collectible-owned-action {
  display: flex;
  background-color: #e6e6e6;
  border-radius: 5px;
  justify-content: space-between;
  padding: 2px 5px;
}
.collectible-owned-action h4 {
  margin-bottom: revert;
}
.collectible-owned-action .transfer-button {
  margin: auto 4px;
}
.collectible-owned-action .transfer-button a {
  border: 1px solid black;
  border-radius: 5px;
  color: black;
  padding: 0.5em 0.5em;
}
.collectible-owned-action .transfer-button a:hover {
  color: white;
  background: linear-gradient(#556, #0f0f13);
}
footer {
  padding: 4rem 0 12rem 0;
}
footer li {
  display: inline-block;
  list-style: none;
  padding: 0 0 0 0.5rem;
}
footer li:after {
  padding-left: 0.5rem;
  content: ' | ';
}
footer li:last-child:after {
  content: '';
}
.CodeOfConduct h2 {
  font-size: 150%;
  margin-top: 40px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 10px;
}
.CodeOfConduct aside {
  float: right;
  background: #eeeeee;
  border: 1px solid #cccccc;
  padding: 10px 21px;
  width: 300px;
  margin-left: 20px;
  box-sizing: border-box;
}
.CodeOfConduct aside > ol {
  padding-left: 30px;
}
.CodeOfConduct aside > div.tldr {
  text-align: center;
  margin-top: 30px;
  font-size: 110%;
}
section.SignIn {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  min-height: 35vh;
  padding-top: 10rem;
}
section.SignIn form.email > p label {
  width: 5rem;
  display: inline-block;
}
section.SignIn form.email > p input {
  margin-right: 1rem;
}
section.SignIn h3 {
  opacity: 0.5;
  font-size: 1rem;
  font-weight: normal;
}
section.SignIn .chooser {
  text-align: center;
}
section.SignIn .notice {
  max-width: 30rem;
  margin: 0 auto;
  margin-top: 3rem;
  color: var(--small);
}
section.SignIn .notice a {
  color: inherit;
}
section.SignIn .notice h3,
section.SignIn .notice p {
  margin-bottom: 2.5rem;
}
section.SignIn small {
  color: var(--small);
  font-size: 0.8rem;
  display: block;
}
section.SignIn > div h4 {
  font-size: large;
  margin-bottom: 1rem;
}
/* Avatar page */
.avatar-stats {
  margin: 0;
  display: grid;
  grid-template-rows: auto auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.avatar-stats dt,
.avatar-stats dd {
  text-align: center;
  margin: 0;
}
.avatar-stats dt {
  font-weight: bold;
  font-size: 2em;
}
.avatar-stats dd {
  color: #999;
  display: inline-block;
}
.avatar-infos {
  line-height: 1.5em;
}
.avatar-infos small {
  color: #999;
  font-size: 1em;
}
.avatar-infos dt {
  position: absolute;
  color: #999;
  padding-top: 1px;
}
.avatar-infos dd {
  margin-left: 4em;
  min-height: 1em;
  margin-bottom: 1.2em;
}
.fraud {
  background: #fee;
  border-top: 1px solid red;
  border-bottom: 1px solid red;
  padding: 8px 8px 8px 30px;
  color: #500;
}
.fraud::first-letter {
  margin-left: -22px;
}
div.Setting.ContentUploadDownload input[name='upload-btn'] {
  display: none;
}
div.Setting.ContentUploadDownload label:hover {
  background-color: #e4e4e4a1;
}
div.Setting.ContentUploadDownload label.disabled {
  color: #4d4d4d;
  cursor: default;
}
div.Setting.ContentUploadDownload label.disabled:hover {
  background-color: white;
}
div.Setting.ContentUploadDownload div.f {
  font-size: smaller;
}
/*Alternative PLAY NOW area on the home page*/
div.PlayNowArea {
  padding: 4px;
  display: flex;
  align-items: center;
}
div.PlayNowArea div.intro {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 800px) {
  div.PlayNowArea div.intro {
    display: none;
  }
}
div.PlayNowArea div.intro > h1 {
  padding: 0;
  margin: 0;
}
div.PlayNowArea div.intro > p {
  line-height: 20px;
  margin-top: 0;
}
div.PlayNowArea div.intro > .welcomeLead {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
  line-height: 1rem;
  color: #333;
  letter-spacing: -0.05rem;
  padding: 0.8rem 0;
}
div.PlayNowArea div.intro .welcomeText {
  color: #333;
}
div.PlayNowArea .play-games {
  display: flex;
  flex-direction: row;
  align-items: center;
}
div.PlayNowArea .play-games > span {
  line-height: 48px;
  margin: 0 10px;
}
div.PlayNowArea .buy-parcel-button,
div.PlayNowArea .log-in-button {
  line-height: 44px;
  padding: 0 12px;
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  font-weight: bold;
  border-radius: 4px;
  border: 2px solid #999;
}
div.PlayNowArea .buy-parcel-button:hover,
div.PlayNowArea .log-in-button:hover {
  text-decoration: underline;
  border-color: #333;
}
div.PlayNowArea .buy-parcel-button {
  background: linear-gradient(#7cf, #44b9ff);
}
div.PlayNowArea .log-in-button {
  background: linear-gradient(#d73b71, #b92659);
}
@keyframes button-rainbow-hover {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
/* The switch - the box around the slider */
.costumer-dark-mode-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-left: -6px;
  margin-bottom: 5px;
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}
.costumer-dark-mode-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.costumer-dark-mode-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #6c6c6c;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.costumer-dark-mode-switch .slider:before {
  position: absolute;
  content: '';
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.costumer-dark-mode-switch input:checked + .slider {
  background-color: #6c6c6c;
}
.costumer-dark-mode-switch input:focus + .slider {
  box-shadow: 0 0 1px #6c6c6c;
}
.costumer-dark-mode-switch input:checked + .slider:before {
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.costumer-dark-mode-switch .slider.round {
  border-radius: 4px;
}
.costumer-dark-mode-switch .slider.round:before {
  border-radius: 4px;
}
.costumer-dark-mode-switch .sun-moon-container {
  display: flex;
  padding-top: 8px;
  padding-left: 7px;
  font-size: large;
  justify-content: space-between;
  padding-right: 6px;
}
@media only screen and (max-width: 800px) {
  .avatar-page canvas {
    width: calc(100% - 20px);
  }
}
@media only screen and (min-width: 720px) {
  .avatar-page canvas {
    width: calc(100% - 320px);
    padding: 12px;
    border-radius: 2px;
    border: 1px solid #eee;
    box-shadow: 1px 1px 3px #ddd;
    margin-left: 32px;
  }
}
.avatar-page h1 {
  margin-bottom: 1rem;
}
.avatar-page .blockie {
  width: 3rem;
  position: relative;
  top: 1rem;
  left: 2rem;
  margin-right: 2.5rem;
}
.avatar-page canvas {
  aspect-ratio: 16 / 9;
}
.search-results .result {
  margin-bottom: 1rem;
}
.search-results .result img,
.search-results .result code {
  width: 48px;
  margin-right: 1rem;
}
.search-results .result img {
  height: 48px;
  background: #f3f3f3;
  border: none;
  border-radius: 1px;
}
.search-results .result code {
  background: #f3f3f3;
  color: #ccc;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
  text-transform: lowercase;
  font-size: 0.8rem;
  line-height: 32px;
}
.search-results .result address {
  font-style: normal;
  color: #777;
  margin-left: calc(48px + 1rem);
}
.search-results .avatar code {
  background: #f3fff3;
}
.search-results .parcel code {
  background: #f3f3ff;
}
.asset-list {
  display: flex;
  flex-wrap: wrap;
}
.asset-list div.asset {
  width: 10rem;
  margin: 0 1rem 1rem 0;
}
.asset-list div.asset .title {
  min-height: 3.5rem;
}
.asset-list div.asset h3 {
  -webkit-line-clamp: 2;
  font-size: 1rem;
}
.asset-list div.asset h4 {
  -webkit-line-clamp: 1;
}
.asset-list div.asset h3,
.asset-list div.asset h4 {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.asset-list div.asset h4 {
  color: var(--small);
  font-weight: normal;
}
.asset-list div.asset img {
  width: 10rem;
  max-height: 30rem / 4;
  object-fit: cover;
}
.asset-list div.asset .desc {
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Columnar */
.columnar {
  display: flex;
  flex-direction: row;
}
@media only screen and (min-width: 720px) {
  .columnar .col-a,
  .columnar .left-col,
  .columnar .col-left {
    margin-right: 4rem;
    flex: 1;
  }
}
@media only screen and (min-width: 720px) {
  .columnar .col-b,
  .columnar .right-col,
  .columnar .col-right {
    width: 20rem;
  }
}
@media only screen and (max-width: 800px) {
  .columnar {
    display: block;
    flex-direction: column;
  }
}
.room h1 {
  margin-top: 3rem;
}
.room .sub {
  color: #777;
  margin-top: -0.5rem;
}
.room ul.messages {
  max-height: calc(100vh - 30rem);
  background: #fefefe;
  padding: 0;
  overflow: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column-reverse;
  margin: 0 0 1rem;
}
.room ul.messages li:nth-child(even) {
  background: #fefef0;
}
.room ul.messages li {
  margin: 0;
  padding: 0.5rem 0 0.5rem 3rem;
  border-bottom: 1px solid #f0f0f0;
  list-style: none;
  position: relative;
}
.room ul.messages li span {
  font-weight: bold;
  color: #555;
}
.room ul.messages li > * {
  margin: 0;
  padding: 0;
}
.room ul.messages li .blockie {
  position: absolute;
  left: 0.5rem;
  top: 0.7rem;
}
.room ul.messages li cite {
  color: #777;
  font-size: smaller;
}
.room ul.participants {
  max-height: calc(100vh - 30rem);
  background: #fefefe;
  margin: 0;
  padding: 0;
  overflow: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
.room ul.participants li {
  margin: 0;
  padding: 0.5rem 0 0.5rem 3rem;
  border-bottom: 1px solid #f0f0f0;
  list-style: none;
  position: relative;
  min-height: 2.5rem;
}
.room ul.participants li span {
  font-weight: bold;
  color: #555;
}
.room ul.participants li > * {
  margin: 0;
  padding: 0;
}
.room ul.participants li .blockie {
  position: absolute;
  left: 0.5rem;
  top: 0.7rem;
}
.room ul.participants li cite {
  color: #777;
  font-size: smaller;
}
.room audio {
  width: 160px;
}
.room audio::-webkit-media-controls-current-time-display,
.room audio::-webkit-media-controls-timeline {
  display: none;
}
.room form {
  width: 100%;
}
.room form textarea {
  width: 100%;
  height: 4rem;
}
.room .stats {
  max-height: 4rem;
  overflow: hidden;
  font-family: monospace;
  font-size: 0.5rem;
  opacity: 0.5;
  background: var(--border);
}
.parcel-view .button-right {
  width: 100%;
  text-align: end;
}
.radar h4 {
  margin: 0.5rem 0 0 0;
}
.radar .avatar-image {
  width: 1.4rem;
  height: 1.4rem;
  overflow: hidden;
}
.radar .avatar-image img {
  width: 100%;
  height: 100%;
}
.radar ul {
  position: relative;
  top: 0.4rem;
  left: -0.2rem;
}
.radar ul,
.radar ul li {
  display: flex;
  flex-direction: row;
}
.radar ul div,
.radar ul li div {
  padding: 0 0.2rem;
}
.radar,
.radar ul,
.radar li {
  margin: 0;
  padding: 0;
}
.radar > li {
  list-style: none;
  margin-right: 0.2rem;
  padding: 0.2rem;
}
.radar a {
  display: block;
}
.parcel-page {
  /* Parcel view on parcel page */
}
.parcel-page .slippy-map {
  aspect-ratio: 4/3;
  max-height: 50vh;
  background: #71cdfb;
}
.parcel-page .BannerFrame {
  width: 100%;
  aspect-ratio: 1;
  max-height: 50vh;
  display: block;
  border: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.parcel-page .BannerFrame.-hide-until-loaded {
  opacity: 0;
  transition: opacity 1s;
}
.parcel-page .BannerFrame.-loaded {
  opacity: 1;
}
.vitalik {
  height: 1.1rem;
  padding-right: 0.3rem;
  vertical-align: bottom;
}
figure,
.framing {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}
figure canvas,
.framing canvas {
  border-radius: 1rem;
}
figure .f-dance,
.framing .f-dance {
  display: none;
  position: absolute;
  margin: 0;
  padding: 0.5rem;
  left: calc(50% - 6rem);
  bottom: 1rem;
  width: 12rem;
  border: 2px solid var(--border);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 2rem;
  flex-direction: row;
}
figure .f-dance label,
.framing .f-dance label {
  flex: 1;
}
figure:hover .f-dance,
.framing:hover .f-dance {
  display: flex;
}
figure .row,
.framing .row {
  color: white;
  border-color: white;
  position: absolute;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
figure .row h1,
.framing .row h1 {
  color: inherit;
  text-shadow: 2px 2px solid black;
}
figure .row span,
.framing .row span {
  opacity: 0.8;
}
figure .row a.play-now,
.framing .row a.play-now {
  margin: 0.3rem 0.5rem 0.2rem 0;
}
figure .row .pd-a,
.framing .row .pd-a {
  display: flex;
  flex-direction: row;
  flex-grow: 0;
  margin-right: 10px;
}
figure .row .pd-a h1 .avatar-image,
.framing .row .pd-a h1 .avatar-image {
  margin-right: 0.5rem;
  padding-bottom: 0.2rem;
  position: relative;
  top: 0.2rem;
}
figure .row .pd-b,
.framing .row .pd-b {
  flex-grow: 1;
}
figure .row .pd-b a:hover,
.framing .row .pd-b a:hover {
  color: inherit !important;
}
figure .row .pd-c,
.framing .row .pd-c {
  text-align: right;
  flex-grow: 1;
  line-height: 3rem;
}
figure .row .pd-c p,
.framing .row .pd-c p {
  display: inline;
}
figure .row .pd-c button,
.framing .row .pd-c button,
figure .row .pd-c a,
.framing .row .pd-c a {
  border-color: white;
  color: white;
}
figure .row .pd-c button:not(.favorite-button),
.framing .row .pd-c button:not(.favorite-button),
figure .row .pd-c a,
.framing .row .pd-c a {
  background: rgba(0, 0, 0, 0.2);
}
figure .row .pd-c button:not(.favorite-button):hover,
.framing .row .pd-c button:not(.favorite-button):hover,
figure .row .pd-c a:hover,
.framing .row .pd-c a:hover {
  background: white;
  color: black;
}
figure .row h1,
.framing .row h1 {
  margin: 0;
}
figure .row h2.address,
.framing .row h2.address {
  font-size: 1.5em;
  margin: 0;
}
.home-is-where-the-art-is .grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.home-is-where-the-art-is .grid > div {
  position: relative;
  width: calc((100% / 6) - 1px);
  aspect-ratio: 1;
  overflow: hidden;
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  margin: 0;
}
.home-is-where-the-art-is .grid > div a,
.home-is-where-the-art-is .grid > div img {
  margin: 0;
  padding: 0;
}
.home-is-where-the-art-is .grid > div img {
  width: 100%;
}
.home-is-where-the-art-is .grid > div cite {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.3rem;
  min-height: 2rem;
  color: var(--header);
  text-decoration: none;
  font-style: normal;
}
.home-is-where-the-art-is .grid > div cite small {
  display: block;
  color: var(--text);
}
.home-is-where-the-art-is .grid > div:hover cite {
  display: block;
}
.home-is-where-the-art-is .grid > div:nth-child(odd) {
  background-color: var(--background);
}
.home-is-where-the-art-is .grid > div:nth-child(even) {
  background-color: var(--background);
}
.add-delegate label {
  opacity: 0.5;
}
.add-delegate div.f {
  padding-left: 10rem;
  position: relative;
}
.add-delegate div.f label {
  position: absolute;
  left: 0;
}
.add-delegate code {
  font-family: monospace;
  color: var(--background);
  font-size: 0.75rem;
  background: var(--text);
  padding: 0.1rem 0.2rem;
  margin: 0 0.1rem;
  border-radius: 3px;
  opacity: 0.5;
}
.add-delegate textarea {
  width: 90%;
  height: 2rem;
  background: var(--background);
  border: 1px solid var(--border);
  padding: 0.5rem;
  border-radius: 0.2rem;
  color: inherit;
}
.add-delegate .message {
  outline: none;
  cursor: pointer;
  background: var(--border);
  color: var(--text);
}
.add-delegate .f > small {
  display: block;
}
.add-delegate li {
  margin-bottom: 0.5rem;
}
.add-delegate .torus {
  opacity: 0.8;
}
.add-delegate div.f {
  margin-bottom: 1rem;
}
ul.delegations {
  margin: 0;
  padding: 0;
}
ul.delegations li {
  margin: 0;
  list-style: none;
}
ul.delegations li:last-child {
  border-bottom: none;
}
.space-page .banner-frame {
  width: 100%;
  max-height: 69vh;
  aspect-ratio: 1;
  display: block;
  border-radius: 1rem;
  background: #eee;
  border: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.space-page .banner-frame.-hide-until-loaded {
  opacity: 0;
  transition: opacity 1s;
}
.space-page .banner-frame.-loaded {
  opacity: 1;
}
h1.with-love {
  font-size: 2em;
  filter: grayscale(1);
}
h1.with-love img {
  position: relative;
  top: 0.5rem;
}
form.f *[role='alert'] {
  color: var(--alert);
}
form.f fieldset {
  border: none;
}
form.f div.f {
  padding-left: 10rem;
  position: relative;
  padding-bottom: 1rem;
}
form.f div.f label {
  position: absolute;
  left: 0;
}
form.f .f-collab ul,
form.f .f-collab li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.beat-display {
  border: 2px solid var(--text);
  color: transparent;
  border-radius: 2rem;
  width: 1.2rem;
  line-height: 1.2rem;
  text-align: center;
  display: inline-block;
}
.beat-display.beat-1 {
  background: var(--text);
}
.parcel-edit .collaborators li {
  display: flex;
  flex-direction: Row;
}
.parcel-edit .collaborators button {
  font-size: smaller;
  border-width: 1px;
  border-color: var(--text);
  color: var(--text);
  padding: 0 0.5rem;
  height: 1.75rem;
  line-height: 1.5rem;
  margin-left: 1rem;
  position: relative;
  top: -0.25rem;
}
.warpcast {
  width: 10rem;
  margin-right: 4rem;
}
.warpcast iframe {
  border: none;
  width: 16rem;
  height: 400vh;
  transform: scale(80%) translate(-3rem, -50vh);
}
.event-edit .small,
.event-edit .suggested {
  font-size: smaller;
}
.event-edit .suggested a {
  margin-right: 0.7rem;
}
.parcel-build .builds {
  display: flex;
  flex-wrap: wrap;
}
.parcel-build .builds div {
  width: 10rem;
  padding: 0.2rem;
  box-sizing: border-box;
}
.parcel-build .builds div a {
  cursor: pointer;
}
.parcel-build .builds div img {
  aspect-ratio: 1;
  max-width: 100%;
}
.parcel-build iframe {
  height: 50vh;
  aspect-ratio: 4/3;
  border: none;
}
.parcel-build .snapshots,
.parcel-build .versions {
  width: 100%;
  margin-bottom: 1rem;
}
.parcel-build .snapshots td button,
.parcel-build .versions td button {
  opacity: 0.3;
  filter: grayscale(1);
}
.parcel-build .snapshots tr:hover td button,
.parcel-build .versions tr:hover td button {
  opacity: 1;
  filter: none;
}
.parcel-build .snapshots,
.parcel-build .versions,
.parcel-build .snapshots td,
.parcel-build .versions td {
  border-collapse: collapse;
}
.parcel-build .snapshots td,
.parcel-build .versions td {
  padding: 1rem 0.1rem;
}
.parcel-build .snapshots tr td,
.parcel-build .versions tr td {
  border-bottom: 1px solid var(--border);
}
.parcel-build .snapshots tr:first-child td,
.parcel-build .versions tr:first-child td {
  border-top: 1px solid var(--border);
}
.parcel-build .snapshots td:first-child,
.parcel-build .versions td:first-child {
  vertical-align: top;
  width: 5rem;
}
.parcel-build .snapshots td:last-child,
.parcel-build .versions td:last-child {
  text-align: right;
}
.parcel-build .snapshots small,
.parcel-build .versions small {
  color: var(--small);
}
.avatar-headshot {
  overflow: hidden;
}
.avatar-headshot > div,
.avatar-headshot canvas {
  width: 100vw;
  height: 100vh;
  max-width: none;
}
.avatar-headshot * {
  margin: 0;
  padding: 0;
}
.avatar-headshot .webheader,
.avatar-headshot footer {
  display: none;
}
figure {
  position: relative;
  margin: 0;
  margin-inline: 0;
}
figure canvas {
  width: 100%;
  aspect-ratio: 1;
  max-height: 50vh;
  outline: none;
}
figure figcaption {
  background: linear-gradient(rgba(0, 0, 0, 0.33), rgba(0, 0, 0, 0.66));
  backdrop-filter: blur(10px);
  position: absolute;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
figure figcaption span {
  opacity: 0.8;
}
figure figcaption > div:first-child {
  flex: 1;
}
figure figcaption > div:last-child {
  text-align: right;
  flex-grow: 1;
}
figure figcaption > div:last-child button,
figure figcaption > div:last-child a {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  border-color: white;
}
figure figcaption h1 {
  margin: 0;
  color: white;
  text-shadow: black;
}
figure figcaption a {
  color: white !important;
}
figure figcaption address {
  font-size: 1em;
  margin: 0;
  font-style: normal;
}
/* Main / aside */
main {
  display: flex;
  flex-direction: row;
}
@media only screen and (min-width: 720px) {
  main article {
    margin-right: 4rem;
    flex: 1;
  }
}
@media only screen and (min-width: 720px) {
  main aside {
    width: 20rem;
  }
}
@media only screen and (max-width: 800px) {
  main {
    display: block;
    flex-direction: column;
  }
}
/* Standard table layout */
table.std {
  width: 100%;
  margin-bottom: 1.1em;
  border-collapse: collapse;
}
table.std th {
  color: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1em 0;
  font-weight: normal;
}
table.std td,
table.std th {
  text-align: left;
}
@media only screen and (max-width: 800px) {
  table.std td.stats + td.stats,
  table.std th.stats + th.stats {
    display: none;
  }
}
table.std th a {
  color: inherit;
}
table.std th.stats,
table.std td.stats {
  text-align: center;
}
table.std td {
  vertical-align: top;
  padding-top: 0.5em;
}
table.std td small {
  color: #888;
}
/* Favorite button */
button.favorite-button {
  display: inline-block;
  text-decoration: none;
  background: var(--header);
  border: 2px solid var(--header);
  border-radius: 1.5rem;
  color: var(--background);
  padding: 0.4rem 0.6rem;
  font-size: inherit;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
}
button.favorite-button:hover {
  border-color: 2px solid var(--text);
  color: var(--text);
}
button.favorite-button.secondary {
  font-size: smaller;
  border-width: 1px;
  border-color: var(--text);
  color: var(--text);
  padding: 0 0.5rem;
  height: 1.75rem;
  line-height: 1.5rem;
}
button.favorite-button.favorite {
  background: linear-gradient(#b30077, #800055);
  color: white !important;
}
button.favorite-button:hover {
  background: #f0a;
}
/* Upload wearables */
.upload-wearable canvas.hidden {
  z-index: -1;
  position: absolute;
}
.upload-wearable textarea {
  width: 40rem;
  height: 6rem;
}
.upload-wearable input.name {
  width: 40rem;
}
.upload-wearable .f.author .avatar-image {
  position: absolute;
  filter: grayscale();
  transform: scale(0.5);
}
.upload-wearable .f.author input {
  margin-left: 50px;
  width: 30rem;
}
dialog.report {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -10rem;
  margin-top: -8rem;
  background: var(--border);
  color: var(--small);
  box-shadow: 0.2rem 0.2rem 1rem black;
  border-radius: 1rem;
  border: none;
}
dialog.report .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--border);
  background: var(--small);
  border-radius: 0.2rem;
  border: none;
}
dialog.report button {
  background: white;
}
dialog.report .f {
  margin-bottom: 0.5rem;
}
div.comments .comment {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
}
div.comments .comment .avatar-image {
  margin: 0 1rem 0 1rem;
  position: relative;
  top: 0;
}
div.comments .comment div {
  display: block;
}
div.comments .comment div cite {
  display: block;
  font-style: normal;
  font-weight: bold;
}
div.comments .comment div > * {
  margin-bottom: 0.5rem;
}
div.comments .comment div time {
  color: var(--small);
  font-size: x-small;
}
div.comments textarea {
  margin: 1rem 0;
  width: 20rem;
  min-height: 5rem;
}
/* Costume page */
.wearable-info a {
  display: flex;
  flex-direction: row;
}
.wearable-info a span {
  padding: 1rem;
}
.wearable-info img {
  width: 3rem;
  width: 2.7rem;
  height: 3rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin-bottom: 0.4rem;
}
/* Costume */
section.costume .colors span {
  width: 1.8rem;
  height: 2rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: inline-block;
  margin-right: 0.2rem;
  background: red;
}
/* Edit profile */
.edit-profile form.f input,
.edit-profile form.f textarea {
  width: 32rem;
}
.edit-profile textarea {
  height: 12rem;
}
/* Help page */
section.help h1 {
  margin-top: 3rem;
}
section.help * + h3 {
  margin-top: 2rem;
}
section.help h4 {
  line-height: 1.5rem;
}
section.help aside img {
  max-width: 10rem;
}
section.help ul,
section.help li {
  margin: 0;
  padding: 0;
}
section.help li {
  margin-left: 1.4rem;
  margin-bottom: 0.4rem;
}
@media only screen and (max-width: 800px) {
  section.help .suggest {
    display: none;
  }
}
@media only screen and (min-width: 720px) {
  section.help article {
    margin-right: 14rem;
  }
  section.help aside {
    width: 10rem;
    margin-right: 2rem;
    padding-top: 1rem;
    position: fixed;
  }
}
section.help p,
section.help li {
  line-height: inherit;
}
section.help .toc {
  list-style: none;
  border-top: 1px solid var(--border);
  margin: 0 0 2rem 0;
  padding: 0;
}
section.help .toc a {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
section.help .toc li {
  margin: 0;
  padding: 0.2rem 0.4rem;
  border-bottom: 1px solid var(--border);
}
/* Right to left */
main.reverse {
  flex-direction: row-reverse;
  line-height: 1.5rem;
}
/* ... */
.event-page .play-view-small {
  width: 100%;
  aspect-ratio: 1;
}
.event-page article,
.event-page aside {
  width: auto;
  flex: 1;
}
.play-view {
  border-radius: 1rem;
}
/* Tile view */
ul.tiles {
  display: grid;
  grid-auto-flow: column;
  overflow: hidden;
  white-space: nowrap;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 720px) {
  ul.tiles {
    grid-template-columns: repeat(auto-fill, 9.75rem);
  }
}
@media only screen and (max-width: 800px) {
  ul.tiles {
    grid-template-columns: repeat(auto-fill, 25vw);
  }
}
ul.tiles.grid,
ul.tiles.wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}
ul.tiles.grid li,
ul.tiles.wrap li {
  margin-right: 0.66rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 800px) {
  ul.tiles.grid li,
  ul.tiles.wrap li {
    margin: 0 0.2rem;
  }
  ul.tiles.grid li > .tile,
  ul.tiles.wrap li > .tile {
    width: calc(33vw - 0.6rem);
  }
}
ul.tiles li {
  display: block;
}
ul.tiles li > .tile {
  display: flex;
  flex-direction: column;
  width: 9rem;
}
ul.tiles li > .tile a > img {
  width: 100%;
  border-radius: 0.4rem;
  aspect-ratio: 1;
}
ul.tiles li > .tile > a,
ul.tiles li > .tile > span {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  font-size: smaller;
}
ul.tiles li > .tile span.desc {
  color: var(--text);
}
ul.tiles li > .tile span {
  color: var(--small);
}
/* Subheading */
.subheading {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 0.66rem;
}
.subheading h2 {
  flex: 1;
}
.subheading h2 a {
  color: inherit;
  text-decoration: none;
}
.subheading h2 a:hover {
  text-decoration: underline;
}
.subheading > a {
  font-size: smaller;
}
/* Mobile */
.breadcrumbs {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 800px) {
  .breadcrumbs {
    font-size: smaller;
    opacity: 0.5;
    margin: 0;
    padding: 0;
    margin-top: -0.5rem;
  }
}
.breadcrumbs span,
.breadcrumbs a {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  margin: 0 0.2rem;
}
@media only screen and (max-width: 800px) {
  .breadcrumbs span,
  .breadcrumbs a {
    max-width: 4rem;
  }
}
@media only screen and (min-width: 720px) {
  .breadcrumbs span,
  .breadcrumbs a {
    max-width: 10rem;
  }
}
.breadcrumbs span {
  max-width: 8rem;
}
.breadcrumbs a:first-child {
  margin-left: 0;
}
.breadcrumbs + h1 {
  margin-top: 0.5rem;
}
section h1:first-child {
  margin-top: 0;
}
ul.history {
  margin: 0;
  padding: 0;
}
ul.history li {
  list-style: none;
  margin: 1.7rem 0;
  padding: 0;
}
ul.history li time {
  display: block;
  color: var(--small);
  font-size: smaller;
  margin-bottom: 0.3rem;
}
/* Asset view */
section.asset .matrix small {
  display: block;
  font-weight: normal;
  color: var(--small);
}
/* Island editor */
.island-edit canvas {
  width: 100%;
  height: 60vh;
  outline: none;
}
.island-edit .tools {
  display: flex;
  flex-direction: row;
  margin: 0 0 1rem 0;
  padding: 0;
}
.island-edit .tools li {
  list-style: none;
}
.island-edit textarea {
  width: 100%;
  height: 50vh;
  font: inherit;
  background: none;
  color: var(--text);
  border: none;
}
