/* 
#### This file contains styling for all web elements that are only on the web bundle.
*/
/* New media queries we are migrating toward */
.leaflet-cluster-anim .leaflet-marker-icon,
.leaflet-cluster-anim .leaflet-marker-shadow {
  -webkit-transition:
    -webkit-transform 0.3s ease-out,
    opacity 0.3s ease-in;
  -moz-transition:
    -moz-transform 0.3s ease-out,
    opacity 0.3s ease-in;
  -o-transition:
    -o-transform 0.3s ease-out,
    opacity 0.3s ease-in;
  transition:
    transform 0.3s ease-out,
    opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
  /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
  -webkit-transition:
    -webkit-stroke-dashoffset 0.3s ease-out,
    -webkit-stroke-opacity 0.3s ease-in;
  -moz-transition:
    -moz-stroke-dashoffset 0.3s ease-out,
    -moz-stroke-opacity 0.3s ease-in;
  -o-transition:
    -o-stroke-dashoffset 0.3s ease-out,
    -o-stroke-opacity 0.3s ease-in;
  transition:
    stroke-dashoffset 0.3s ease-out,
    stroke-opacity 0.3s ease-in;
}

/* 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;
}
div.Carousel {
  min-height: 100px;
  overflow: hidden;
  position: relative;
}
div.Carousel label {
  z-index: 1;
  position: absolute;
  font-size: 12px;
  top: 30%;
  border: 1px solid #aaa;
  color: #aaa;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  background-color: #eee;
  -webkit-transition: opacity 0.7s 0.4s;
  transition: opacity 0.7s 0.4s;
}
div.Carousel label:hover {
  background-color: #4c056a;
  color: #fff;
  border: 1px solid #000;
}
div.Carousel label:nth-child(3) {
  right: 0;
}
div.Carousel div.carousel-container {
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  height: fit-content;
  margin-right: 28px;
  margin-left: 28px;
}
div.Carousel div.carousel-container::-webkit-scrollbar {
  display: none;
}
/**
  Small component that has two states: normal: show the wallet; edit: let's a user edit the content.
*/
.WalletBoxes .ScrollPane {
  max-height: 40vh;
}
.WalletBoxes button {
  cursor: pointer;
  margin: 0 2px;
}
.WalletBoxes .wallet-box {
  margin: 2px 0;
}
.WalletBoxes .wallet-box div.wallet-container {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}
.WalletBoxes .wallet-box div.wallet-container > div {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.WalletBoxes .wallet-box div.wallet-container > div,
.WalletBoxes .wallet-box div.wallet-container input[type='text'] {
  flex: 1;
}
.WalletBoxes.-web input[type='text'] {
  margin: 1px;
}
.GiftCollectible {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: stretch;
}
.GiftCollectible > * {
  margin: 4px 0;
}
.GiftCollectible form {
  display: flex;
}
.GiftCollectible form > div {
  flex: 2;
}
.GiftCollectible form > div label {
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.GiftCollectible form > div .Progressbar {
  margin-bottom: 0.25rem;
}
.GiftCollectible form > div > input[type='text'] {
  display: block;
  width: 100%;
  min-height: 46px;
  margin: 0 0 4px 0;
  font-size: larger;
  padding: 0;
}
.GiftCollectible form > div:last-of-type {
  margin-left: 3px;
}
.GiftCollectible .GiftCollectibleConfirm img {
  width: 52px;
  float: left;
  margin-right: 4px;
}
.GiftCollectible .GiftCollectibleConfirm > div {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre;
}
.GiftCollectible .GiftCollectibleConfirm small {
  display: block;
  text-overflow: ellipsis;
  color: #aaa;
  white-space: nowrap;
  height: 1rem;
  overflow: hidden;
}
ul.HorizontalTabPanel {
  padding: 0;
  margin: 0;
  font-size: smaller !important;
  /*Ben's changes in his rampage*/
}
ul.HorizontalTabPanel * {
  margin: 0;
  padding: 0;
}
ul.HorizontalTabPanel a {
  color: inherit;
  background-color: unset;
}
ul.HorizontalTabPanel li + li {
  margin-left: 6px;
}
ul.HorizontalTabPanel li {
  display: inline-block;
  cursor: pointer;
  list-style: none;
  padding: 10px !important;
  border-radius: 4px;
}
ul.HorizontalTabPanel li.-active > h5 {
  text-decoration: underline;
}
ul.HorizontalTabPanel.-avatar-profile li {
  color: #555;
  background: white;
  border: 1px solid #777;
}
ul.HorizontalTabPanel.-avatar-profile li h5 {
  color: black;
}
ul.HorizontalTabPanel.-avatar-profile li:hover {
  background-color: #efefef;
}
ul.HorizontalTabPanel.-avatar-profile li.-active > h5 {
  color: black;
}
/* 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 {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5em;
}
.event-showcase h4 {
  margin: 0 0 0.5rem 0;
  padding: 0;
}
.event-showcase .event-item {
  margin-bottom: 1rem;
  max-width: 30rem;
}
.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;
}
:root {
  --text: #111;
  --header: #000;
  --small: #666666;
  --background: #fff;
  --component: #ffffff;
  --link: #31f;
  --visited: #1800aa;
  --border: #aaa;
  --alert: red;
}
@media (prefers-color-scheme: dark) {
  :root {
    --text: #ccc;
    --header: #eee;
    --small: #aaa;
    --background: #222;
    --component: #22343c;
    --link: #2f81f7;
    --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;
  color: var(--background);
  background-color: var(--text);
}
.roundedButton[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
a.RoundedButton,
button.RoundedButton {
  padding: 4px 8px;
  margin-right: 8px;
  font: inherit;
  font-size: small;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  color: var(--background);
  background-color: var(--text);
}
a.RoundedButton[disabled],
button.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;
  }
}
.map-icon {
  width: 15px !important;
  height: 15px !important;
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.map-icon.sandbox {
  background-image: url(/icons/mapIcons/sandbox_icon.png);
}
.map-icon.gallery {
  background-image: url(/icons/mapIcons/gallery_icon.png);
}
.map-icon.club {
  background-image: url(/icons/mapIcons/club_icon.png);
}
.map-icon.park {
  background-image: url(/icons/mapIcons/park_icon.png);
}
.map-icon.bar {
  background-image: url(/icons/mapIcons/bar_icon.png);
}
.map-icon.theater {
  background-image: url(/icons/mapIcons/theater_icon.png);
}
.map-icon.food {
  background-image: url(/icons/mapIcons/food_icon.png);
}
.map-icon.rest {
  background-image: url(/icons/mapIcons/rest_icon.png);
}
.map-icon.animal {
  background-image: url(/icons/mapIcons/animal_icon.png);
}
.map-icon.education {
  background-image: url(/icons/mapIcons/education_icon.png);
}
.map-icon.library {
  background-image: url(/icons/mapIcons/library_icon.png);
}
.map-icon.sports {
  background-image: url(/icons/mapIcons/sports_icon.png);
}
.map-icon.factory {
  background-image: url(/icons/mapIcons/factory_icon.png);
}
.map-icon.beach {
  background-image: url(/icons/mapIcons/beach_icon.png);
}
.map-icon.teleports {
  background-image: url(/icons/mapIcons/teleports_icon.png);
}
.map-icon.shops {
  background-image: url(/icons/mapIcons/shops_icon.png);
}
.map-icon.scenic {
  background-image: url(/icons/mapIcons/scenic_icon.png);
}
.map-icon.game {
  background-image: url(/icons/mapIcons/game_icon.png);
}
.map-icon.event {
  background-image: url(/icons/mapIcons/event_icon.png);
}
.map-icon.concert {
  background-image: url(/icons/mapIcons/concert_icon.png);
}
.map-icon.music {
  background-image: url(/icons/mapIcons/music_icon.png);
}
.map-icon.sale {
  background-image: url(/icons/mapIcons/sale_icon.png);
}
.map-icon.womp {
  background-image: url(/images/camera-transparent.png);
  transform: scale(1.8);
}
.map-icon.avatar {
  background-image: url(/images/marker.png);
}
.map-icon.money {
  background-image: url(/icons/mapIcons/money_icon.png);
}
/* !important needed here as somehow leaflet forces an element-specific style*/
div.leaflet-marker-icon.MarkersClusters {
  margin-left: -20px !important;
  margin-top: -20px !important;
  width: 40px !important;
  height: 40px !important;
  z-index: 298;
  background-clip: padding-box;
  border-radius: 20px;
  background-color: rgba(204, 57, 184, 0.6);
}
div.leaflet-marker-icon.MarkersClusters br {
  height: 8px;
}
div.leaflet-marker-icon.MarkersClusters > div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font: 12px 'Helvetica Neue', Arial, Helvetica, sans-serif;
  background-color: rgba(170, 57, 204, 0.6);
}
div.leaflet-marker-icon.MarkersClusters.-avatar {
  background-color: rgba(57, 199, 204, 0.6);
}
div.leaflet-marker-icon.MarkersClusters.-avatar > div {
  background-color: rgba(57, 162, 204, 0.6);
}
/* flex helpers */
.is-flex {
  display: flex;
  flex-direction: row;
}
.is-flex.space-between {
  justify-content: space-between;
}
.is-flex.space-around {
  justify-content: space-around;
}
.flex-column {
  flex-direction: column;
}
.flex-fill {
  flex: 1;
}
.flex-grow {
  flex-grow: 1;
}
.flex-one {
  flex: 1;
}
.flex-two {
  flex: 2;
}
.flex-three {
  flex: 3;
}
.flex-four {
  flex: 4;
}
.flex-col-gap {
  column-gap: 1rem;
}
.flex-row-gap {
  row-gap: 1rem;
}
.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: -8px 0 0 0;
  padding: 0;
  position: relative;
  width: fit-content;
}
.actions .not-favourite {
  filter: grayscale(100%);
}
.actions .favourite {
  background: #ffa;
}
.actions > li {
  display: inline-block;
  list-style: none;
  margin: 20px 0 2px 2px;
  padding: 0;
  position: relative;
}
.actions .visit a {
  border: none;
  box-shadow: none;
}
.actions .toggleOrbit {
  margin: 20px 0 1px 1px;
}
.actions a,
.actions button {
  padding: 4px 8px;
  margin-right: 8px;
  font: inherit;
  font-size: small;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  color: var(--background);
  background-color: var(--text);
}
.actions a[disabled],
.actions button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.actions button {
  padding-bottom: 32px;
}
.actions .add-colors:hover {
  background: linear-gradient(339deg, #ff0000, #ffe300, #02ff00, #00fdff, #1c00ff, #fd00ff, #ff0000);
  background-size: 1400% 1400%;
  color: black;
  -webkit-animation: ColorRoll 4s ease infinite;
  -moz-animation: ColorRoll 4s ease infinite;
  animation: ColorRoll 4s ease infinite;
}
@-webkit-keyframes ColorRoll {
  0% {
    background-position: 14% 0;
  }
  50% {
    background-position: 87% 100%;
  }
  100% {
    background-position: 14% 0;
  }
}
@-moz-keyframes ColorRoll {
  0% {
    background-position: 14% 0;
  }
  50% {
    background-position: 87% 100%;
  }
  100% {
    background-position: 14% 0;
  }
}
@keyframes ColorRoll {
  0% {
    background-position: 14% 0;
  }
  50% {
    background-position: 87% 100%;
  }
  100% {
    background-position: 14% 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;
}
/* has borders helper*/
.has-borders {
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 4px;
  border-bottom: 2px solid;
}
/* Emoji badges */
.add-emoji,
.emoji-badge {
  position: relative;
  border-radius: 3px;
  margin: 3px 5px 3px 3px;
  display: flex;
  align-items: center;
  column-gap: 3px;
}
.emoji-badge {
  cursor: pointer;
}
.emoji-badge .emoji {
  display: block;
  height: 1.5rem;
  padding: 0 0.5rem;
  line-height: 1.5rem;
  text-align: center;
  border-radius: 1rem;
  border: none;
}
.emoji-badge .emoji u {
  padding-left: 0.3rem;
  text-decoration: none;
}
.emoji-badge .emoji.changing {
  cursor: wait;
}
.emoji-scores {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: flex-end;
  flex-direction: row;
}
.emoji-scores .spinner {
  display: block;
  align-self: center;
}
.emoji-scores .add-emoji svg {
  height: 1.25rem;
}
.emoji-scores .add-emoji svg:hover {
  filter: invert(18%) sepia(0%) saturate(0%) hue-rotate(254deg) brightness(92%) contrast(91%);
}
.emoji-scores .add-emoji.disabled svg {
  filter: invert(15%) sepia(0%) saturate(1557%) hue-rotate(179deg) brightness(96%) contrast(84%);
}
.emoji-scores .add-emoji:hover:not(.emoji-scores .add-emoji.disabled) .emojis-box {
  display: block;
}
.emoji-scores .add-emoji .emojis-box {
  display: none;
  color: #682472;
  position: absolute;
  width: 290px;
  height: fit-content;
  background: #efefef;
  border-radius: 4px;
  border: 1px solid #ddd;
  left: -12px;
  top: 50%;
  z-index: 100;
  transition: all 0.1s ease-out;
}
.emoji-scores .add-emoji .emojis-box .emoji-icon {
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 190%;
  display: inline-block;
  border-radius: 5px;
  margin: 8px -1px 0 8px;
  text-align: center;
  transition: all 0.1s;
}
.emoji-scores .add-emoji .emojis-box .emoji-icon.has-owner-vote {
  background-color: #682472;
}
.emoji-scores .add-emoji .emojis-box .emoji-icon:hover {
  transform: scale(1.2);
}
.emoji-scores .add-emoji .emojis-box.in-world {
  width: 250px;
}
.emoji-scores .add-emoji .emojis-box.in-world .emoji-icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 120%;
  margin: 4px -1px 0 4px;
}
.emoji-scores.in-world .add-emoji svg {
  filter: invert(97%) sepia(73%) saturate(7483%) hue-rotate(184deg) brightness(92%) contrast(87%);
}
.emoji-scores.in-world .add-emoji svg:hover {
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(58deg) brightness(105%) contrast(101%);
}
.PopupAction {
  position: relative;
}
.PopupAction .PopupWindow {
  color: black;
  position: absolute;
  background-color: #fafafa;
  border: 1px solid gainsboro;
  border-radius: 4px;
  height: 500px;
  width: 300px;
  right: -120px;
  top: 16px;
  padding: 1px 4px;
  z-index: 50000;
  overflow: hidden;
  overflow-y: auto;
  -webkit-box-shadow: 11px 10px 5px -11px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 11px 10px 5px -11px rgba(0, 0, 0, 0.75);
  box-shadow: 11px 10px 5px -11px rgba(0, 0, 0, 0.75);
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .PopupAction .PopupWindow {
    height: 300px;
    width: 250px;
    right: -100px;
  }
}
.PopupAction .PopupWindow .submenu {
  margin-bottom: 15px;
  display: block;
  padding: 4px 0;
}
.PopupAction .PopupWindow .submenu h2 {
  margin: auto;
  display: inline-block;
  font-size: inherit;
}
.PopupAction .PopupWindow .submenu span {
  margin: 0 2px;
  float: right;
  border: 1px solid black;
  border-radius: 5px;
  padding: 2px;
}
.PopupAction .PopupWindow .submenu span:hover {
  cursor: pointer;
  background-color: #eeeeee;
}
.PopupAction.-inWorld > a {
  padding: 8px 1px;
}
.PopupAction.-inWorld button {
  padding: 4px 8px;
  margin-right: 8px;
  font: inherit;
  font-size: small;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  color: var(--background);
  background-color: var(--text);
}
.PopupAction.-inWorld button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.mailbox-icon {
  position: relative;
}
.mailbox-icon .PopupWindow {
  color: black;
  position: absolute;
  background-color: #fafafa;
  border: 1px solid gainsboro;
  border-radius: 4px;
  height: 500px;
  width: 300px;
  right: -120px;
  top: 16px;
  padding: 1px 4px;
  z-index: 50000;
  overflow: hidden;
  overflow-y: auto;
  -webkit-box-shadow: 11px 10px 5px -11px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 11px 10px 5px -11px rgba(0, 0, 0, 0.75);
  box-shadow: 11px 10px 5px -11px rgba(0, 0, 0, 0.75);
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .mailbox-icon .PopupWindow {
    height: 300px;
    width: 250px;
    right: -100px;
  }
}
.mailbox-icon .PopupWindow .submenu {
  margin-bottom: 15px;
  display: block;
  padding: 4px 0;
}
.mailbox-icon .PopupWindow .submenu h2 {
  margin: auto;
  display: inline-block;
  font-size: inherit;
}
.mailbox-icon .PopupWindow .submenu span {
  margin: 0 2px;
  float: right;
  border: 1px solid black;
  border-radius: 5px;
  padding: 2px;
}
.mailbox-icon .PopupWindow .submenu span:hover {
  cursor: pointer;
  background-color: #eeeeee;
}
.mailbox-icon.-inWorld > a {
  padding: 8px 1px;
}
.mailbox-icon.-inWorld button {
  padding: 4px 8px;
  margin-right: 8px;
  font: inherit;
  font-size: small;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  color: var(--background);
  background-color: var(--text);
}
.mailbox-icon.-inWorld button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.mailbox-icon .inbox .submenu span.cog {
  font-size: smaller;
}
.mailbox-icon .inbox .mail-subject {
  cursor: pointer;
}
.mailbox-icon .inbox .mail-subject:hover {
  background-color: #f0f0f0;
}
.mailbox-icon .inbox .mail-subject b {
  color: black;
  display: block;
  text-overflow: ellipsis;
  white-space: pre;
  overflow: hidden;
}
.mailbox-icon .inbox .mail-subject b.read {
  color: #777;
}
.mailbox-icon .inbox .mail-content {
  color: black;
  margin-top: 4px;
  background-color: #f3f3f3;
  padding: 2px;
  border: 1px solid #dedede;
  word-break: break-word;
}
.mailbox-icon .inbox .mail-write-form input[type='text'] {
  width: 90%;
}
.mailbox-icon .inbox .mail-write-form textarea {
  width: 90%;
}
.mailbox-icon .unread-mails {
  position: absolute;
  top: 0;
  right: -2px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: red;
}
.mailbox-icon.-inWorld .mail-subject b {
  color: #ffffff;
}
.mailbox-icon.-inWorld .mail-subject b.read {
  color: #777;
}
.mailbox-icon.-inWorld .mail-subject small {
  color: #a2a2a2;
}
.mailbox-icon.-inWorld .mail-subject:hover b {
  color: #494949;
}
.mailbox-icon.-inWorld .mail-subject:hover b.read {
  color: #b9b9b9;
}
.mailbox-icon.-inWorld .mail-subject:hover small {
  color: #a2a2a2;
}
.mailbox-icon.-inWorld .mail-content {
  color: #ffffff;
  background-color: #313131;
  border: 1px solid #747474;
}
.mailbox-icon.-inWorld .mail-content a {
  color: darkgray;
}
.mailbox-icon.-inWorld .mail-write-form input,
.mailbox-icon.-inWorld .mail-write-form textarea {
  background: #222;
  color: #aaa;
}
.Center {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.Center.-no-flex {
  display: block;
  flex-direction: unset;
}
.ScrollPane {
  max-height: 250px;
  overflow-y: auto;
}
@media only screen and (max-height: 900px) {
  .ScrollPane {
    max-height: 95px;
  }
}
.SplitPanel {
  display: flex;
}
.SplitPanel > aside {
  min-width: 20%;
}
.SplitPanel > aside.-max40 {
  max-width: 40%;
}
.SplitPanel > div {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}
.SplitPanel > * + * {
  margin-left: 10px;
}
.SplitPanel.-column {
  flex-direction: column;
}
@media only screen and (max-width: 800px) {
  .SplitPanel {
    flex-direction: column;
    /* This is to make the whole SplitPanel scrollable */
    overflow-y: auto;
    /* remove scrollable attribute of Panels; */
  }
  .SplitPanel > div.panel {
    overflow: unset;
    min-height: unset;
  }
  .SplitPanel > * + * {
    margin-left: 0;
    margin-bottom: 5px;
  }
}
.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;
}
.login-options {
  position: relative;
}
.login-options .PopupWindow {
  color: black;
  position: absolute;
  background-color: #fafafa;
  border: 1px solid gainsboro;
  border-radius: 4px;
  height: 500px;
  width: 300px;
  right: -120px;
  top: 16px;
  padding: 1px 4px;
  z-index: 50000;
  overflow: hidden;
  overflow-y: auto;
  -webkit-box-shadow: 11px 10px 5px -11px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 11px 10px 5px -11px rgba(0, 0, 0, 0.75);
  box-shadow: 11px 10px 5px -11px rgba(0, 0, 0, 0.75);
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .login-options .PopupWindow {
    height: 300px;
    width: 250px;
    right: -100px;
  }
}
.login-options .PopupWindow .submenu {
  margin-bottom: 15px;
  display: block;
  padding: 4px 0;
}
.login-options .PopupWindow .submenu h2 {
  margin: auto;
  display: inline-block;
  font-size: inherit;
}
.login-options .PopupWindow .submenu span {
  margin: 0 2px;
  float: right;
  border: 1px solid black;
  border-radius: 5px;
  padding: 2px;
}
.login-options .PopupWindow .submenu span:hover {
  cursor: pointer;
  background-color: #eeeeee;
}
.login-options.-inWorld > a {
  padding: 8px 1px;
}
.login-options.-inWorld button {
  padding: 4px 8px;
  margin-right: 8px;
  font: inherit;
  font-size: small;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  color: var(--background);
  background-color: var(--text);
}
.login-options.-inWorld button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
/* Parcel Details on parcel page and parcel-info tab.*/
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;
}
.ParcelCard {
  width: 100px;
  min-width: 100px;
  margin: 0 3px;
  z-index: 0;
  cursor: pointer;
}
.ParcelCard:first-child {
  margin-left: 0;
}
.ParcelCard:last-child {
  margin-right: 0;
}
.ParcelCard img {
  width: 100px;
  height: 100px;
  display: block;
  margin: 2px auto;
}
.ParcelCard img:hover {
  transform: scaleY(1.025);
  transform-origin: 0 0;
}
.ParcelCard .parcel-card-content {
  padding: 3px;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: smaller;
}
.ParcelCard .parcel-card-content b,
.ParcelCard .parcel-card-content small {
  display: block;
  white-space: pre;
  overflow: hidden;
  text-overflow: ellipsis;
}
.PropertyItem .property-item-header {
  display: flex;
  padding: 5px 0;
  cursor: pointer;
}
.PropertyItem .property-item-header > div:first-child {
  width: 10%;
  text-align: center;
  margin: auto 0;
}
.PropertyItem .property-item-header > div:not(:first-child) {
  margin: auto 5px;
}
.PropertyItem .property-item-header img {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .PropertyItem .property-item-header img {
    width: 50px;
    height: 50px;
  }
}
.PropertyItem .property-item-header > div:last-child {
  text-align: center;
  margin: auto 5px auto auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .PropertyItem .property-item-header > div:last-child {
    flex-direction: row;
  }
  .PropertyItem .property-item-header > div:last-child a:last-child {
    margin: 0 0 0 10px;
  }
}
.PropertyItem .property-item-header.-space {
  justify-content: space-between;
}
.PropertyItem .property-item-header.-space > div:last-child {
  margin: unset;
}
.PropertyItem div.property-item-body {
  display: flex;
  justify-content: space-evenly;
  margin: 8px 0;
  font-size: xx-small;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .PropertyItem div.property-item-body {
    font-size: inherit;
  }
}
.PropertyItem div.property-item-body.collapsed {
  display: none;
}
.PropertyItem div.property-item-body > div {
  margin: 0 5px 0 5px;
}
.PropertyItem div.property-item-body.-space {
  justify-content: flex-end;
}
.PropertyItem div.property-item-body.-space > div > a {
  padding: 5px;
  background: #ebebeb;
  border-radius: 4px;
  color: black;
  cursor: pointer;
}
.PropertyItem div.property-item-body.-space > div > a:hover {
  background-color: #d4d4d4;
}
.bubble {
  position: absolute;
  font-size: 12px;
  line-height: 15px;
  text-shadow: none;
  width: 250px;
  min-width: 180px;
  background: #fff;
  margin-top: 15px;
  border-radius: 5px;
  padding: 24px;
  text-align: center;
  color: #000;
  z-index: 50000;
}
.bubble .close {
  background: #7a7a7a;
  color: #000000;
  font: inherit;
  font-weight: bold;
  background: none;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  text-align: center;
  position: absolute;
  top: 8px;
  right: 4px;
  cursor: pointer;
}
.bubble .close:hover {
  background: #5e5e5e;
}
.bubble.bubble-top-right {
  left: -250px;
  top: 10px;
}
.bubble.bubble-top-left {
  left: -3px;
  top: 5px;
}
.bubble-top-right:before {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  border-right: 24px solid #fff;
  border-left: 12px solid transparent;
  border-bottom: 12px solid #fff;
  border-top: 20px solid transparent;
  right: 32px;
  top: -24px;
}
.bubble-top-left:before {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  border-left: 24px solid #fff;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
  border-top: 20px solid transparent;
  left: 32px;
  top: -16px;
}
div.SimpleNameMintInput {
  padding-bottom: 10px;
}
div.SimpleNameMintInput form {
  margin-bottom: 5px;
  text-align: center;
}
div.SimpleNameMintInput form label {
  font-weight: bold;
}
div.SimpleNameMintInput form input[type='text'] {
  width: 60%;
  line-height: 20px;
  border-radius: 5px;
  border: none;
  border-bottom: 2px solid black;
  margin: 2px 4px;
  padding: 2px;
}
.editor-field label {
  display: block;
}
.editor-field .fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
.editor-field .fields .vector-field {
  flex: 0 1 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  margin: 0 2px;
}
.editor-field .fields .vector-field .minus,
.editor-field .fields .vector-field .plus {
  width: 16px;
  display: inline-block;
  text-align: center;
}
.editor-field .fields .vector-field .minus:hover,
.editor-field .fields .vector-field .plus:hover {
  cursor: pointer;
}
.editor-field .fields .vector-field input {
  padding: 3px 0;
  text-align: center;
  border: 1px solid transparent;
}
.editor-field .fields .vector-field input:focus {
  outline: none;
}
.dark .editor-field .error {
  color: #ff6644;
  text-shadow: 0 1px #0e0e0e;
}
.dark .editor-field .fields .vector-field {
  background: #333;
  border: 1px solid #111;
}
.dark .editor-field .fields input {
  color: #aaa;
  background: #222;
  border: 1px solid #111;
  border-top: 0;
  border-bottom: 0;
}
.TransferCollectible,
.BatchTransferNFT {
  max-width: 95vh;
}
.TransferCollectible .progress,
.BatchTransferNFT .progress {
  display: flex;
  gap: 0.25rem;
}
.TransferCollectible .help,
.BatchTransferNFT .help {
  margin-top: 1rem;
}
.Progressbar {
  width: 100%;
  position: relative;
  height: 4px;
  overflow: hidden;
  transform: translateZ(0);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.6, 1) 0ms;
}
.Progressbar .progress-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: top left;
  animation: none;
}
.Progressbar .progress-outer .progress-inner {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #682472;
  animation: none;
}
/* 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... */
.WalletInfo {
  display: flex;
}
.WalletInfo img {
  position: relative;
  top: -0.5rem;
}
.WalletInfo div.info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.WalletInfo div.info div.name {
  min-height: 2rem;
}
/* Avatar image */
.avatar-image {
  width: 3rem;
  height: 3rem;
  position: relative;
  top: -0.8rem;
  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.5);
}
.costumer {
  height: 90vh;
}
.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 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 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.costumer ul li {
  margin: 0;
  padding: 0;
}
.costumer ul li a {
  display: block;
  padding: 0.5rem;
}
.costumer .columns {
  display: flex;
  justify-content: left;
  height: 100%;
}
.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 .avatar-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.costumer .columns .avatar-column .editable-name .action {
  font-size: 0.85em;
}
.costumer .columns .avatar-column .editable-name .action::before {
  content: ' ';
}
.costumer .columns .avatar-column .viewer {
  position: relative;
  flex-grow: 1;
}
.costumer .columns .avatar-column .viewer canvas {
  width: 100%;
  height: calc(min(1200px, 100vh) - 190px);
  max-height: 680px;
  outline: none !important;
}
.costumer .columns .avatar-column #gizmos {
  position: absolute;
  top: 2px;
  right: 0;
}
.costumer .columns .avatar-column #gizmos.active {
  display: flex;
}
.costumer .columns .avatar-column #gizmos.inactive {
  display: none;
}
.costumer .columns .avatar-column #gizmos button {
  margin: 0 1px;
}
.costumer .columns .editor-column {
  flex: 0 1 auto;
  width: 13rem;
}
.costumer .columns .editor-column .costumer-wearable-editor {
  padding: 0.25rem;
  margin-bottom: 1rem;
  border-radius: 0.2rem;
}
.costumer .columns .editor-column .costumer-wearable-editor h4 {
  margin: 0;
}
.costumer .columns .editor-column .costumer-wearable-editor label {
  font-weight: bold;
}
.costumer .columns .editor-column .costumer-wearable-editor .editor-field {
  margin: 0.25rem 0;
}
.costumer .columns .editor-column .costumer-wearable-editor .editor-field .fields input {
  width: 28%;
  margin-right: 2px;
}
.costumer .columns .editor-column .costumer-wearable-editor .editor-field .fields input:last-child {
  margin-right: 0;
}
.costumer .columns .editor-column .costumer-wearable-editor .editor-field.scale input {
  width: 22%;
}
.costumer .columns .editor-column .costumer-wearable-editor .action {
  text-align: right;
  padding-top: 0.25rem;
}
.costumer .columns .editor-column .costumer-wearable-editor .bones {
  display: flex;
  justify-content: space-between;
}
.costumer .columns .editor-column .costumer-wearable-editor .bones label {
  flex: 1;
}
.costumer .columns .editor-column .costumer-wearable-editor .bones select {
  flex: 1;
}
.costumer .columns .editor-column summary {
  cursor: pointer;
  font-weight: bold;
  padding: 0.5rem;
}
.costumer .columns .editor-column ul.tree li ul.skin-list li {
  padding: 2px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.costumer .columns .editor-column ul.tree li ul.skin-list li.everything input {
  margin-left: 1.2rem;
}
.costumer .columns .editor-column ul.tree li ul.skin-list input[type='checkbox'] {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 2px;
}
.costumer .columns .editor-column ul.tree li 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 .columns .editor-column ul.tree li ul.skin-list input[type='color']::-webkit-color-swatch {
  padding: 0;
  margin: 0;
}
.costumer .columns .editor-column ul.tree li ul.skin-list input[type='color']::-moz-color-swatch {
  padding: 0;
  margin: 0;
}
.costumer .columns .editor-column ul.tree li ul.skin-list label {
  cursor: pointer;
}
.costumer .columns .wearables-column {
  flex: 1;
  max-height: 100%;
}
.costumer .columns .wearables-column .navigation {
  text-align: center;
  height: 1.5rem;
}
.costumer .columns .wearables-column:hover ul::-webkit-scrollbar-thumb {
  background: var(--border);
}
.costumer .columns .wearables-column:hover ul::-webkit-scrollbar {
  -webkit-appearance: none;
  background-color: var(--border);
}
.costumer .columns .wearables-column .wearables-list {
  display: flex;
  flex-wrap: wrap;
  overflow-x: hidden;
}
.costumer .columns .wearables-column .wearables-list .draggable-wearable,
.costumer .columns .wearables-column .wearables-list .dragging-wearable {
  cursor: grab;
}
.costumer .columns .wearables-column .wearables-list .draggable-wearable > div,
.costumer .columns .wearables-column .wearables-list .dragging-wearable > div {
  display: block;
  margin: 0;
  padding: 0;
}
.costumer .columns .wearables-column .wearables-list .dragging-wearable > div {
  opacity: 0.5;
}
.costumer .columns .wearables-column .wearables-list .dragging-wearable > div img {
  mix-blend-mode: multiply;
  isolation: isolate;
}
.costumer .columns .wearables-column .wearables-list li {
  text-align: center;
  width: 100px;
}
.costumer .columns .wearables-column .wearables-list li img {
  width: 94px;
  height: 94px;
  object-fit: cover;
  user-select: none;
  touch-action: none;
  pointer-events: none;
}
.costumer .columns .wearables-column .wearables-list li div {
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: small;
}
.costumer .columns .wearables-column .wearables-list li:hover div {
  text-overflow: initial;
  overflow: visible;
}
/* Grid for showing things*/
.CardList {
  padding: 4px 4px 4px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  width: 100%;
}
.CardList.loading-in-place {
  opacity: 0.2;
  pointer-events: none;
}
.CardList .EmptyList {
  margin: auto;
}
@media screen and (min-height: 1200px) {
  .CardList {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
.CardList.small {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
.CardList.small .Card {
  margin: 2px 4px;
  padding: 4px;
}
.EmptyList {
  display: flex;
  flex-direction: column;
}
.EmptyList .icon {
  display: none;
}
.EmptyList .lead {
  margin: 0;
  display: none;
}
.Card {
  justify-content: center;
  margin: 4px 4px;
  padding: 4px 4px 4px 4px;
  display: block;
  position: relative;
  text-decoration: unset;
  overflow: hidden;
  cursor: pointer;
}
.Card img {
  border-radius: 0.25rem;
  box-sizing: border-box;
  display: block;
  margin: auto auto 5px;
  height: auto;
  width: 100%;
  object-fit: scale-down;
}
.Card .img_container {
  position: relative;
}
.Card .womp-time {
  display: none;
}
.Card.-compact {
  margin: 0;
  padding: 4px;
  border-radius: 0.25rem;
}
.Card.-compact .womp-time {
  display: none;
}
.Card a {
  text-decoration: none;
}
.Card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Card header div {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 1;
}
.Card header div.user {
  font-size: 85%;
  float: right;
  text-align: right;
}
.Card header div.user a {
  color: var(--small);
}
.Card header div + div {
  margin-left: 4px;
}
.Card div.userDescription {
  display: flex;
  justify-content: space-between;
  color: #7e7e7e;
}
.Card div.userDescription div.description {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-style: italic;
  flex: 1;
  padding: 6px 0 0 0;
}
.Card div.teleport {
  display: flex;
  justify-content: center;
}
.Card div.teleport a,
.Card div.teleport button {
  text-align: center;
  background: #ffffff;
  border: 1px solid #7e7e7e;
  margin-top: 10px;
  padding: 10px 0;
  cursor: pointer;
}
.Card div.userCount {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px;
  border-radius: 0.25rem;
  background: #3d2f5fbf;
  color: #ececec;
}
.womp_time > p {
  font-size: 80%;
  font-weight: 600;
  float: right;
  line-height: 0;
  padding: 2px 10px 10px 0;
  margin: 2px;
}
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: 15px;
  width: 160px;
}
.webheader .logo {
  text-align: center;
}
.webheader .logo a:hover {
  background: none;
}
.webheader .logo img {
  width: 56px;
  height: 67px;
}
.webheader form.websearch {
  margin-top: 0.5rem;
}
.webheader form.websearch input[type='search'] {
  padding: 4px;
  width: 100%;
}
@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.1rem 0.6rem !important;
  }
}
.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-reverse;
    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: right;
  }
  .webheader .top .logo img {
    width: 1.3rem;
    height: 1.6rem;
  }
  .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;
  }
}
span.unread {
  opacity: 0.4;
  background: black;
  color: white;
  border-radius: 1rem;
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  line-height: 0.9rem;
  text-align: center;
  font-size: 0.72rem;
  position: relative;
  top: -0.1rem;
}
li.account {
  margin-bottom: 1.5rem;
  font-weight: bold;
}
li.account ul {
  font-weight: normal;
}
.WebTopBar {
  background: #333333a6;
  color: #ddd;
  text-shadow: 1px 1px 1px #111;
  border-radius: 6px;
  margin-left: auto;
  padding: 0 5px;
}
.WebTopBar i {
  line-height: unset;
}
@media only screen and (max-width: 500px) {
  .WebTopBar {
    padding: 5px 0;
  }
}
.WebTopBar > ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media only screen and (max-width: 500px) {
  .WebTopBar > ul {
    display: block;
  }
}
.WebTopBar > ul > li {
  font-size: 16px;
  list-style: none;
  margin: 0;
}
@media only screen and (max-width: 800px) {
  .WebTopBar > ul > li {
    font-size: 14px;
  }
}
.WebTopBar > ul > li:hover > div.dropDown.-hoverVisible {
  display: block;
}
.WebTopBar > ul > li.-unread > a > i {
  color: #ff6666;
}
.WebTopBar > ul > li > a {
  display: block;
  padding: 8px 10px;
  line-height: 18px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  color: unset;
}
@media only screen and (max-width: 500px) {
  .WebTopBar > ul > li > a {
    padding: 5px 20px;
  }
}
.WebTopBar > ul > li > a:hover {
  color: white;
  background-color: #111a;
}
.WebTopBar > ul > li > div.dropDown {
  white-space: normal;
  font-weight: normal;
  line-height: normal;
  cursor: default;
  position: relative;
  text-shadow: none;
}
.WebTopBar > ul > li > div.dropDown.-hoverVisible {
  display: none;
}
.WebTopBar > ul > li.-location {
  font-weight: bold;
}
.WebTopBar > ul > li.-user {
  font-weight: bold;
  color: white;
}
.WebTopBar > ul > li.-user > a > i {
  padding-right: 2px;
  vertical-align: bottom;
}
.WebSearch {
  position: relative;
}
.WebSearch input {
  font-size: inherit;
}
.WebSearch:focus-within ul {
  display: block;
}
.WebSearch ul {
  display: none;
  font-size: 10pt;
  border: 1px solid #ccc;
  position: absolute;
  background: white;
  left: 0;
  right: 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  min-height: 32px;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 5px 0 16px;
  padding: 0;
  z-index: 2;
}
.WebSearch li {
  cursor: pointer;
  list-style: none;
  clear: both;
  height: 32px !important;
  overflow: hidden;
  margin: 0;
  padding: 4px;
}
.WebSearch li > div {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre;
}
.WebSearch li small {
  display: block;
  text-overflow: ellipsis;
  color: #aaa;
  white-space: nowrap;
  height: 1em;
  max-width: 320px;
  overflow: hidden;
}
.WebSearch li:hover {
  background: #682472;
  color: white;
}
ul.WebMenu {
  list-style: none;
  margin: -6px -15px;
  font-size: 14px;
  padding: 0;
  text-shadow: 1px 1px 1px black;
}
ul.WebMenu li > a {
  display: block;
  padding: 6px 20px;
  cursor: pointer;
  color: white;
}
ul.WebMenu li > a > span.unreadCount {
  background: #ff7979;
  padding: 0.3em 0.5em;
  border-radius: 12px;
  font-size: 82%;
}
ul.WebMenu li > a:hover {
  color: white;
  background: #682472;
}
ul.WebMenu li > a i {
  display: inline-block;
  width: 20px;
  text-align: center;
}
ul.WebMenu li header {
  font-weight: bold;
}
.TopBarOverlay {
  background: rgba(32, 32, 32, 0.8);
  display: block;
  position: fixed;
  top: 5rem;
  right: 1rem;
  width: 16rem;
  padding: 1rem;
}
@media only screen and (max-width: 800px) {
  .TopBarOverlay {
    padding: 6px;
  }
}
.TopBarOverlay label {
  cursor: pointer;
}
.TopBarOverlay header span.closeButton {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.TopBarOverlay h2 {
  color: white;
  margin-top: 0;
}
.TopBarOverlay h4 {
  color: #fafafa;
  font-size: 1em;
  text-shadow: none;
}
.TopBarOverlay.-signIn {
  width: 260px;
}
.TopBarOverlay.-signIn header h2 {
  text-align: center;
  font-weight: normal;
}
.TopBarOverlay.-signIn a {
  color: #d1d1d1;
  text-decoration: underline;
}
.TopBarOverlay.-signIn label.rememberCheckbox {
  border-radius: 3px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  font-size: 86%;
  align-items: center;
}
.TopBarOverlay.-signIn label.rememberCheckbox input {
  vertical-align: sub;
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.TopBarOverlay.-signIn label.rememberCheckbox span {
  flex: 1;
}
.TopBarOverlay.-signIn label.rememberCheckbox:hover {
  color: white;
  background: #682472;
}
.TopBarOverlay.-persona {
  width: 180px;
}
.TopBarOverlay.-webPersona {
  width: 180px;
  left: 0;
  right: unset;
  margin-left: 0;
  margin-top: 0;
  border-top-left-radius: 0;
}
@media only screen and (max-width: 500px) {
  .TopBarOverlay.-webPersona {
    left: unset;
    right: 0;
  }
}
.TopBarOverlay .fs label {
  display: block;
}
.TopBarOverlay .fs label > span {
  display: inline-block;
  min-width: 50%;
}
.TopBarOverlay .fs label select {
  width: 45%;
}
.TopBarOverlay .fs label input[type='checkbox'] {
  vertical-align: bottom;
  margin-right: 5px;
  margin-bottom: 2px;
  accent-color: white;
}
.TopBarOverlay .fs input[type='range'] {
  accent-color: white;
  width: 230px;
}
ul.PersonaMenu {
  list-style: none;
  margin: -6px -15px;
  font-size: 14px;
  padding: 0;
}
ul.PersonaMenu li {
  padding: 6px 20px;
  cursor: pointer;
}
ul.PersonaMenu li > span.unreadCount {
  background: #ff7979;
  padding: 0.3em 0.5em;
  border-radius: 12px;
  font-size: 82%;
}
ul.PersonaMenu li header {
  font-weight: bold;
}
ul.PersonaMenu li:hover {
  color: white;
  background: #682472;
}
.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;
}
.parcel-listing {
  position: relative;
}
.parcel-listing .avatar-image {
  position: absolute;
  bottom: 4.8rem;
  right: 0.6rem;
}
.parcel-listing p,
.parcel-listing h3 {
  margin: 0;
}
.parcel-listing .address {
  font-weight: bold;
  max-width: 128px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}
.parcel-listing img {
  aspect-ratio: 1;
  background: #7cf;
  border-radius: 2px;
  border-width: 1px;
  border-style: solid;
  border-color: #682472;
  width: 100%;
}
.parcel-listing .price {
  flex: 1;
}
.parcel-listing .name {
  position: absolute;
  top: 16px;
  left: 8px;
  padding: 0 6px;
  color: #555;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  max-width: 128px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.parcel-listing.primary .name {
  background-color: gold;
}
.parcel-listing.primary.card a.button {
  background-color: gold;
  color: black;
}
.parcel-listing a.button {
  background: #682472;
  color: white;
  border-radius: 4px;
  padding: 4px 8px;
}
.parcel-listing a.button:hover {
  background: #ccc;
}
.parcel-listing .owner {
  display: none;
}
.MarketPlaceNavigation {
  border-bottom: 2px solid #bfbfbf;
}
.MarketPlace-Parcels .ParcelsSortTools {
  display: flex;
  justify-content: space-between;
  background: white;
  margin: 0;
  flex-wrap: wrap-reverse;
  padding: 0;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .MarketPlace-Parcels .ParcelsSortTools {
    margin: 0 10% 0 0;
  }
}
.MarketPlace-Parcels .ParcelsSortTools > div {
  margin: auto 0;
}
.MarketPlace-Parcels .ParcelsSortTools input[type='text'] {
  height: 30px;
}
.MarketPlace-Parcels table.for-sale {
  width: 100%;
  /* MAKE TABLE LOOK GOOOD ON MOBILE */
}
.MarketPlace-Parcels table.for-sale td.id {
  position: relative;
}
@media only screen and (max-width: 800px) {
  .MarketPlace-Parcels table.for-sale {
    border: 0;
  }
  .MarketPlace-Parcels table.for-sale caption {
    font-size: 1.3em;
  }
  .MarketPlace-Parcels table.for-sale thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .MarketPlace-Parcels table.for-sale tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }
  .MarketPlace-Parcels table.for-sale tr:first-of-type {
    display: none;
  }
  .MarketPlace-Parcels table.for-sale td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: right;
  }
  .MarketPlace-Parcels table.for-sale td:nth-of-type(2) {
    text-align: center;
  }
  .MarketPlace-Parcels table.for-sale td:nth-of-type(2) img {
    width: 120px;
  }
  .MarketPlace-Parcels table.for-sale td::before {
    /*
        * aria-label has no advantage, it won't be read inside a table
        content: attr(aria-label);
        */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  .MarketPlace-Parcels table.for-sale td:last-child {
    border-bottom: 0;
  }
}
.MarketPlace-Parcels div.IsPrimarySale-icon {
  background-color: #ffd000;
  color: #292929;
  position: absolute;
  top: -5px;
  padding: 3px;
  left: -5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.MarketPlace-Parcels div.IsSecondarySale-icon {
  background-color: #57da4b;
  color: #292929;
  position: absolute;
  top: -5px;
  padding: 3px;
  left: -5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
div.AvatarSocialLinks input[type='text'] {
  border: none;
  border-bottom: 1px solid black;
  padding: 2px 2px;
  margin: 3px;
}
div.AvatarSocialLinks input[type='text']:focus,
div.AvatarSocialLinks input[type='text']:focus-visible {
  border: none;
  border-bottom: 2px solid black;
}
div.AvatarSocialLinks button {
  border-radius: 5px;
  background: white;
  margin: 2px;
  cursor: pointer;
  border: 1px solid #1a1a1a;
}
div.AvatarSocialLinks button:hover {
  background: #ececec;
}
.mailbox-dialog {
  min-height: 50vw;
}
.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 */
}
.OverlayWindow .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
.OverlayWindow header img.blockie {
  position: absolute;
  left: 1rem;
  top: 1.3rem;
}
.OverlayWindow input:disabled,
.OverlayWindow button:disabled,
.OverlayWindow select:disabled,
.OverlayWindow textarea:disabled {
  color: #666;
}
.OverlayWindow::-webkit-scrollbar {
  width: 5px;
  background-color: #ccc;
  /* or add it to the track */
  position: relative;
  border-radius: 0.3rem;
}
.OverlayWindow::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 0.3rem;
}
@media only screen and (max-width: 800px) {
  .OverlayWindow {
    width: 80vw;
    height: 95vh;
  }
}
.OverlayWindow .nft-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
}
.OverlayWindow .nft-overlay a:hover {
  background: none !important;
}
.OverlayWindow .nft-overlay img {
  max-width: 100%;
  border-radius: 0.1rem;
}
.OverlayWindow p {
  user-select: text;
}
.OverlayWindow p,
.OverlayWindow h4 {
  margin: 0 0 1rem 0;
}
.OverlayWindow.-takeWomp {
  height: auto;
  width: 700px;
}
.OverlayWindow.-takeWomp > header {
  padding: 16px;
}
.OverlayWindow.-takeWomp > header h3 i {
  margin-right: 3px;
}
.OverlayWindow.-takeWomp > header button.close {
  top: 16px;
  right: 16px;
}
.OverlayWindow.-noHiddenOverflow {
  overflow: initial;
}
.OverlayWindow.-WhatsNew .PagingButtons {
  margin-bottom: 15px;
}
.OverlayWindow.-WhatsNew .PagingButtons span {
  font-size: larger;
}
.OverlayWindow.-WhatsNew .markup {
  padding-left: 20px;
}
.OverlayWindow.-auto-height {
  height: fit-content;
}
@media only screen and (max-width: 800px) {
  .OverlayWindow.-auto-height {
    height: 90%;
  }
}
.OverlayWindow.-fixed {
  position: fixed;
}
.OverlayWindow.-top-offset {
  top: 10vh;
  transform: none;
  margin-left: -25vw;
}
.OverlayWindow.-right-offset {
  animation-name: slidein-right-offset;
  transform: none;
  left: unset;
  right: 10px;
  top: 54px;
}
.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 #ddd;
  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;
}
section.EditNFTGatingSetings ul {
  padding: 0;
}
section.EditNFTGatingSetings ul > li.tokensToEnter {
  padding: 15px 12px 15px 12px;
  margin: 10px 0 10px 0;
  display: flex;
}
section.EditNFTGatingSetings ul > li.tokensToEnter form {
  flex: 1;
}
section.EditNFTGatingSetings ul > li.tokensToEnter form > div {
  padding: 2px;
}
section.EditNFTGatingSetings ul > li.tokensToEnter form > div label {
  min-width: 25%;
  display: inline-block;
}
section.EditNFTGatingSetings ul > li.tokensToEnter form > div.buttons {
  margin-top: 4px;
  display: flex;
  justify-content: center;
}
section.EditNFTGatingSetings ul > li.tokensToEnter form > div.buttons button {
  margin-left: 3px;
  margin-right: 3px;
}
section.EditNFTGatingSetings ul > li.tokensToEnter > div {
  text-align: center;
  width: 25%;
  padding-right: 15px;
}
div.ParcelForSaleSign {
  position: absolute;
  top: -20px;
  right: -45px;
  background-color: red;
  border-radius: 5px;
  transform: rotateZ(14deg);
  padding: 4px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
div.ParcelForSaleSign h1 {
  margin: 0;
  font-size: 18px;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  div.ParcelForSaleSign h1 {
    font-size: 20px;
  }
}
div.ParcelForSaleSign h1 a {
  color: white;
  cursor: pointer;
}
div.ParcelForSaleSign h1 a:hover {
  color: #f0f0f0;
  background-color: transparent;
}
div.embed {
  background: yellow;
  padding: 0;
  margin: 0;
  height: 100%;
}
div.embed .webheader {
  display: none;
}
div.embed .WebMap {
  margin-top: 0 !important;
}
div.webmap {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: row;
}
div.webmap .big-map {
  background: #70cdfa !important;
  outline: 0;
}
div.webmap .island-list {
  width: 15rem;
}
div.webmap .island-list ul,
div.webmap .island-list li {
  margin: 0;
  padding: 0;
}
div.webmap .island-list li {
  list-style: none;
  border-bottom: 1px solid var(--border);
  padding: 0.3rem 0.1rem;
}
div.webmap div.MapIslandCarousel {
  position: absolute;
  max-width: 65%;
  min-width: 65%;
  padding: 3px;
  left: 14%;
  top: 2px;
  z-index: 425;
  background: white;
  border-radius: 5px;
  box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.75);
}
div.webmap div.MapIslandCarousel input[type='text'] {
  display: none;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  div.webmap div.MapIslandCarousel input[type='text'] {
    display: inline;
    margin-left: 2px;
  }
}
div.webmap div.MapIslandCarousel .Carousel.islands-on-map-carousel {
  height: auto;
  min-height: auto;
}
div.webmap div.MapIslandCarousel .Carousel.islands-on-map-carousel label {
  top: 20%;
  font-size: 20px;
  width: 22px;
  height: 22px;
}
div.webmap div.MapIslandCarousel .Carousel.islands-on-map-carousel .carousel-container {
  padding: 5px 30px;
}
div.webmap div.MapIslandCarousel .islands-on-map-carousel-item {
  min-width: 100px;
  border-radius: 5px;
  cursor: pointer;
  padding: 2px;
  margin-right: 2px;
}
div.webmap div.MapIslandCarousel .islands-on-map-carousel-item:hover {
  background: #eeeeee;
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.75);
}
@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;
}
h3 {
  color: var(--header);
  font-size: 1rem;
  letter-spacing: -0.02rem;
}
h4 {
  font-weight: bold;
  font-size: 1rem;
}
a {
  color: inherit;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
  color: var(--link) !important;
}
a:visited {
  color: var(--visited);
}
body {
  font-family: 'SF Pro Text', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.84rem;
  line-height: 1rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
/* end todo */
h1 {
  font-weight: bold;
}
/* Main layout */
a.button,
a.linkbutton,
button:not([class]),
button.secondary,
button[class=''] {
  display: inline-block;
  text-decoration: none;
  background: none;
  border: 2px solid var(--link);
  border-radius: 32px;
  color: var(--link);
  padding: 0.4rem 0.8rem;
  cursor: pointer;
}
a.button:hover,
a.linkbutton: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,
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 {
  display: flex;
  flex-direction: row;
  max-width: 1520px;
  margin: 0 auto;
  align-items: flex-start;
  min-height: 88vh;
  justify-content: stretch;
}
body > div > section {
  flex: 1;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 720px) {
  body > div {
    flex-direction: row;
    max-width: 1520px;
    margin: 0 auto;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 800px) {
  body > div {
    flex-direction: column;
  }
  body > div > * {
    box-sizing: border-box;
    padding: 0;
    max-width: calc(100vw - 12px);
    margin-left: 6px;
  }
  body > div > .webheader {
    margin-left: 0;
  }
}
body > div .webheader + * {
  flex-grow: 1;
  margin-right: 1rem;
}
body > div > section {
  display: block;
  position: relative;
}
/* Pagination */
.pagination-summary {
  text-align: center;
  color: var(--small);
  display: none;
}
.pagination {
  text-align: center;
}
.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: 32px;
  display: inline-block;
  line-height: 32px;
  text-align: center;
  margin-right: 4px;
}
.pagination .nav,
.pagination .disnav {
  width: 64px;
}
.pagination .disnav {
  opacity: 0.5;
  touch-action: none;
  color: #aaa;
  border-color: #aaa;
}
/* 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;
}
@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: center;
}
table.parcels td:nth-child(2),
table.parcels th:nth-child(2),
table.parcels td:last-child,
table.parcels th:last-child {
  text-align: left;
}
table.parcels td {
  vertical-align: top;
  padding-top: 0.5em;
}
table.parcels td small {
  color: #888;
}
/* Big - map with icons*/
.big-map {
  width: 100%;
  height: 640px;
  background: #eee;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
/* 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;
}
@media prefers-color-scheme: dark {
  .visit-button a {
    background: linear-gradient(#556, #0f0f13);
    border-color: #aaa;
  }
}
.visit-button a:hover {
  background: linear-gradient(#556, #0f0f13);
  text-shadow: 1px 1px 3px black;
}
/* Home - Homepage if logged in */
#username {
  font-weight: 700;
  font-size: 2.2rem;
}
.avatar-profile {
  display: flex;
  flex-direction: column;
}
.avatar-profile canvas.costumer {
  width: 20rem !important;
  height: 40vh !important;
  outline: none !important;
}
.avatar-profile h1 {
  display: flex;
  align-items: center;
  margin-bottom: 0.1rem;
}
.avatar-profile h1 img {
  margin-right: 0.5rem;
}
.avatar-profile h1 .name-edit {
  align-self: end;
  margin-left: 0.5rem;
  font-size: 1rem;
  font-weight: normal;
}
.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 .description {
  margin-top: 1rem;
}
.avatar-profile .description .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;
}
a.favorite-button {
  display: flex;
}
a.favorite-button img {
  margin-top: 8px;
  width: 40x;
  height: 38px;
}
/* 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: -0.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 canvas {
  width: 50vw;
  height: 50vw;
  max-height: 69vh;
}
.womp-page .framing img {
  max-width: 50vw;
  aspect-ratio: 1;
}
@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%;
  min-width: calc(min(80vh, 800px, 100vw));
  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;
}
/* Admin table layout for table */
.admin-table {
  width: 100%;
  border-spacing: 0;
}
.admin-table td {
  margin: 0;
  padding: 8px;
}
.admin-table td button {
  height: 35px;
  margin: auto 1px;
  cursor: pointer;
}
.admin-table td:last-of-type {
  text-align: center;
}
.admin-table tr:nth-child(even) td {
  background: #f3f3f3;
}
.admin-table .cckable {
  cursor: pointer;
}
.admin-table .cckable:hover {
  background: #efefef;
}
.admin-table .cckable:hover td {
  background: #efefef;
}
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;
  color: var(--background);
  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;
}
.wearable div.wearable-actions-bar ul {
  list-style: none;
  padding: 0;
}
.wearable div.wearable-actions-bar li {
  display: flex;
  flex-direction: column;
  margin: 3px 0 10px 3px;
}
.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;
}
.ExpandingCarousel {
  padding-bottom: 16px;
}
.ExpandingCarousel > .displayButtons {
  display: flex;
  justify-content: center;
  padding-bottom: 8px;
}
.ExpandingCarousel > .displayButtons button {
  margin-left: 12px;
  border: 1px solid #e7e7e7;
  box-shadow: -5px 3px 5px #f5f5f5;
  padding: 8px 0;
  width: 120px;
  cursor: pointer;
}
.ExpandingCarousel > .displayButtons button:hover {
  background: #fff;
  box-shadow: 0 3px 5px #f5f5f5;
}
.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;
  color: var(--background);
  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 {
  color: #111111;
  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;
}
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;
}
section.asset iframe {
  /* sizing mixin */
  min-width: calc(min(100%, 80vh, 1024px));
  aspect-ratio: 3/4;
  max-height: 40vh;
}
section.asset pre {
  width: 50vw;
  max-height: 50vh;
  overflow: auto;
  background: #ffe;
  padding: 1rem;
  font-family: 'Andale Mono', monospace;
  color: #333;
}
/* 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 li {
  display: flex;
  flex-direction: row;
}
.radar li div:first-child {
  width: 3rem;
  text-align: center;
}
.radar,
.radar ul,
.radar li {
  margin: 0;
  padding: 0;
}
.radar li {
  list-style: none;
  margin-right: 0.2rem;
  border-top: 1px solid var(--border);
  padding: 0.2rem;
}
.radar small {
  display: block;
  color: var(--small);
  font-size: 0.85em;
  padding-top: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 16rem;
  height: 1rem;
}
.radar a {
  display: block;
}
/* mailbox */
.mailbox .sub {
  color: var(--border);
}
.mailbox .history {
  max-height: calc(100vh - 280px);
  overflow-x: hidden;
  overflow-y: scroll;
  padding-right: 0.5rem;
}
.mailbox ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.mailbox ::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: var(--border);
  -webkit-box-shadow: 0 0 1px var(--border);
}
.mailbox .message-row {
  display: flex;
}
.mailbox .message-row small {
  display: none;
}
.mailbox .message-row.sender {
  justify-content: flex-end;
}
.mailbox .message-row .message {
  background: var(--border);
  border-radius: 0.8rem;
  padding: 0.3rem 0.5rem;
  max-width: 70%;
  line-height: 1.5rem;
  margin: 0 0.3rem 0.1rem 0.3rem;
}
.mailbox .message-row .message.recipient {
  margin-right: 10vw;
}
.mailbox .message-row .message.sender {
  margin-left: 10vw;
}
.mailbox .message-row .message * {
  display: inline;
}
.mailbox textarea {
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.8rem;
  background: none;
  color: inherit;
  outline: none;
  font: inherit;
}
.mailbox .convos {
  border-top: 1px solid var(--border);
  margin: 0;
  padding: 0;
}
.mailbox .convos li {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.5rem;
  min-height: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.mailbox .convos img {
  vertical-align: bottom;
  position: relative;
  top: 0.2rem;
  margin-right: 0.5rem;
}
.parcel-page {
  /* Parcel view on parcel page */
}
.parcel-page .slippy-map {
  aspect-ratio: 4/3;
  max-height: 50vh;
  background: #71cdfb;
}
.parcel-page dd > ul {
  margin: 0;
  padding: 0;
}
.parcel-page dd > ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.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;
}
figure .f-costume,
.framing .f-costume,
figure .f-dance,
.framing .f-dance {
  position: absolute;
  margin: 0;
  padding: 0.5rem;
  top: 0;
}
figure .f-costume,
.framing .f-costume {
  right: 0;
}
figure .f-dance,
.framing .f-dance {
  left: 0;
}
figure .row,
.framing .row {
  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 0.5rem 0 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
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-c,
.framing .row .pd-c {
  text-align: right;
  flex-grow: 1;
}
figure .row .pd-c button,
.framing .row .pd-c button,
figure .row .pd-c a,
.framing .row .pd-c a {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  border-color: white;
}
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;
}
.add-delegate .message:hover {
  filter: invert();
}
.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;
  padding: 0.2rem;
  border-bottom: 1px dotted var(--border);
  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: 4px;
  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 div.f input,
form.f div.f textarea {
  font: inherit;
}
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;
}
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;
}
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;
}
/* 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;
}
