/* 
#### This file contains styling for all client elements that are only on the client bundle.
*/
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}
.leaflet-container {
  overflow: hidden;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}
.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}
.leaflet-tile-loaded {
  visibility: inherit;
}
.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}
.leaflet-overlay-pane {
  z-index: 400;
}
.leaflet-shadow-pane {
  z-index: 500;
}
.leaflet-marker-pane {
  z-index: 600;
}
.leaflet-tooltip-pane {
  z-index: 650;
}
.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}
.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}
.leaflet-top {
  top: 0;
}
.leaflet-right {
  right: 0;
}
.leaflet-bottom {
  bottom: 0;
}
.leaflet-left {
  left: 0;
}
.leaflet-control {
  float: left;
  clear: both;
}
.leaflet-right .leaflet-control {
  float: right;
}
.leaflet-top .leaflet-control {
  margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
  margin-left: 10px;
}
.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
}
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}
.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */

.leaflet-interactive {
  cursor: pointer;
}
.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */

.leaflet-container {
  background: #ddd;
  outline: 0;
}
.leaflet-container a {
  color: ##555;
}
.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font: 12px/1.5 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

/* general toolbar styles */

.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}
.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}
.leaflet-bar a:hover {
  background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */

.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}
.leaflet-control-layers-toggle {
  background-image: url(/images/layers.png);
  width: 36px;
  height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(/images/layers-2x.png);
  background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}
.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}
.leaflet-control-layers label {
  display: block;
}
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url(/images/marker-icon.png);
}

/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}
.leaflet-control-attribution a {
  text-decoration: none;
}
.leaflet-control-attribution a:hover {
  text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */

.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}
.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}
.leaflet-popup-content p {
  margin: 18px 0;
}
.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;

  margin: -10px auto 0;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}
.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;

  -ms-filter: 'progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)';
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */

.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: '';
}

/* Directions */

.leaflet-tooltip-bottom {
  margin-top: 6px;
}
.leaflet-tooltip-top {
  margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}
.leaflet-tooltip-left {
  margin-left: -6px;
}
.leaflet-tooltip-right {
  margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  touch-action: manipulation;
}
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  background: white;
  color: black;
  font-family: 'helvetica neue', sans-serif;
  font-display: swap;
  font-size: 0.85em;
}
@media prefers-color-scheme: dark {
  body {
    background: black;
    color: white;
  }
}
body * {
  font-family: inherit;
}
a {
  color: blue;
  cursor: pointer;
}
@media prefers-color-scheme: dark {
  a {
    color: white;
  }
}
a:visited {
  color: purple;
}
@media prefers-color-scheme: dark {
  a:visited {
    color: #ccc;
  }
}
a:hover {
  background: black;
  color: white;
}
@media prefers-color-scheme: dark {
  a:hover {
    text-decoration: underline;
  }
}
section {
  max-width: 540px;
  margin: auto;
  padding: 0 8px;
}
@media only screen and (max-width: 800px) {
  section {
    margin: 0;
    padding: 0 8px;
  }
}
section section {
  padding: 0;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  section {
    max-width: 1024px;
    margin: auto;
    padding: 0 16px;
  }
  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 > video {
  max-width: 100%;
}
section > h1:first-child {
  margin-top: 20px;
}
footer {
  border-top: 1px solid #ccc;
  margin-top: 40px;
  padding-top: 20px;
  margin-bottom: 40px;
  text-align: center;
  color: #555;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: inherit;
  font-weight: bold;
  color: #333;
  font-size: large;
}
@media prefers-color-scheme: dark {
  h1,
  h2,
  h3,
  h4,
  h5 {
    color: #fff;
  }
}
@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: 600;
  margin: 0 0 0.4em 0;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  h1 {
    font-size: 2em;
  }
}
h1 span {
  background: black;
  color: white;
  padding: 0.5em;
}
h2 {
  font-size: 1em;
  font-weight: bold;
}
h3 {
  font-size: 1.3em;
}
p {
  line-height: 1.5em;
}
.roundedButton {
  padding: 4px 8px;
  margin-right: 8px;
  background: #aaa;
  color: #111;
  font: inherit;
  font-size: smaller;
  border-radius: 4px;
  border: none;
}
.roundedButton[disabled] {
  opacity: 0.6;
}
.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.money {
  background-image: url(/icons/mapIcons/money_icon.png);
}
/* flex helpers */
.is-flex {
  display: flex;
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.parcels-details {
  background: white;
  width: fit-content;
  border: 1px solid #555;
  font: inherit;
  border-radius: 2px;
  padding: 0 15px 0 10px;
  margin: 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
}
.parcels-details .parcelName-editable {
  font-size: 2em;
  font-weight: 600;
  border: #000;
  border-bottom: 1px solid #888888;
}
.parcels-details .parcelName-editable:hover {
  border-bottom: 2px solid #424242;
}
.parcels-details .parcelName-editable:focus {
  outline: none;
  border-bottom: 3px solid #383838;
  color: #222222;
}
.parcels-details h2 {
  color: #666;
}
.parcels-details h2.address {
  font-size: 1.5em;
  margin: 0;
  color: #444;
}
.parcels-details.collection img {
  width: 75px;
  height: 75px;
}
.eventBoard-item {
  position: relative;
  overflow-wrap: break-word;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 1px 1px 2px;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .eventBoard-item {
    border-radius: unset;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: unset;
  }
  .eventBoard-item:hover {
    box-shadow: 1px 2px 4px;
  }
}
.eventBoard-item .remove-btn {
  position: absolute;
  right: 5px;
  top: 0px;
  width: 16px;
  height: 16px;
  text-align: center;
  font-weight: 800;
  cursor: pointer;
}
.eventBoard-item .remove-btn:hover {
  transform: scale(1.5);
}
.eventBoard-item .event-header {
  background-color: mintcream;
  padding: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.eventBoard-item .event-header h3,
.eventBoard-item .event-header h4,
.eventBoard-item .event-header h5 {
  margin: 0;
  padding: 4px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: inherit;
}
.eventBoard-item .event-body p {
  line-height: 16px;
  margin: 0;
  padding: 2px;
}
.eventBoard-item .event-footer {
  display: grid;
}
.eventBoard-item .event-footer small {
  margin: 0;
  padding: 2px;
}
.eventBoard-item.historic {
  width: 15%;
  margin: 2px;
  display: inline-block;
}
.eventBoard-item.historic h4 {
  font-size: smaller;
}
.eventBoard-item.historic:hover {
  cursor: default;
  box-shadow: unset;
}
.actions {
  margin: -8px 0 0 0;
  padding: 0;
  position: relative;
}
.actions .not-favourite {
  filter: grayscale(100%);
  color: #555 !important;
}
.actions .favourite {
  background: #ffa;
}
.actions > li {
  display: inline-block;
  list-style: none;
  margin: 20px 0 2px 2px;
  padding: 0;
  position: relative;
}
.actions .toggleOrbit {
  margin: 20px 0 1px 1px;
}
.actions a,
.actions button {
  display: inline-block;
  border: 1px solid #555;
  font: inherit;
  border-radius: 2px;
  height: 32px;
  line-height: 32px;
  padding: 0 16px;
  margin: 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  decoration: underline;
  background: white;
}
@media prefers-color-scheme: dark {
  .actions a,
  .actions button {
    background: #333;
    border: none;
    color: white;
  }
}
.actions button {
  padding-bottom: 32px;
}
.actions a:hover,
.actions button:hover {
  background: black;
  color: white;
}
.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 .build-menu {
  background: white;
  position: absolute;
  z-index: 2000;
  top: 36px;
  border: 1px solid black;
  border-radius: 2px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.actions .build-menu div {
  padding: 16px;
  background: linear-gradient(#ccc, #fff);
  font-weight: bold;
  font-size: 0.8em;
}
.actions .build-menu ul {
  display: flex;
  flex-wrap: wrap;
  width: 384px;
  height: 384px;
  margin: 0;
  padding: 0;
}
.actions .build-menu li {
  list-style: none;
  flex: 1 1 128px;
  width: 128px;
  height: 128px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.actions .build-menu li:hover {
  background: #ccc;
}
.actions .build-menu li:hover h4 {
  text-decoration: underline;
}
.actions .build-menu li > * {
  padding: 0;
  margin: 0 8px;
}
.actions .build-menu li h4 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.actions .build-menu li p {
  padding-top: 8px;
  font-size: 0.8em;
  color: #666;
  max-width: 128px;
}
.actions .build-menu img {
  width: 84px;
}
/* Loading gif */
.loading {
  width: 32px;
  height: 32px;
  position: relative;
  top: 12px;
  margin-right: 0;
  display: inline-block;
  background: url('/images/ajax-loader.gif') no-repeat center;
  background-repeat: no-repeat;
}
@media prefers-color-scheme: dark {
  .loading {
    filter: invert();
  }
}
/* Womp grid for showing womps */
.womp-grid {
  display: flex;
  overflow-x: auto;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .womp-grid {
    flex-wrap: wrap;
  }
}
.womp-grid .womp {
  width: 240px;
  padding: 0 10px 0 0;
  position: relative;
}
.womp-grid .womp p:nth-of-type(2) div,
.womp-grid .womp p:nth-of-type(2) br {
  display: none;
}
.womp-grid .womp p {
  font-size: smaller;
  color: #666;
  width: 150px;
}
.womp-grid .womp p + p {
  margin-top: -10px;
}
.womp-grid .womp img.w {
  width: 100%;
}
.womp-grid .womp.isInWorld {
  width: 134px;
  padding: 0 8px 0 0;
}
.womp-grid .womp.isInWorld p {
  margin-bottom: 1px;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .womp-grid .womp {
    width: 31%;
  }
  .womp-grid .womp p:nth-of-type(2) div,
  .womp-grid .womp p:nth-of-type(2) br {
    display: block;
  }
  .womp-grid .womp p {
    width: unset;
  }
}
.panel {
  padding-bottom: 0.4em;
}
.panel .panel-title {
  background-color: #e7e7e7;
  padding: 2px;
  padding-left: 1.7em;
  display: block;
  cursor: pointer;
}
.panel .panel-titlehover {
  background-color: #b8b8b8;
}
.panel .panel-title .panel_arrow {
  float: right;
}
.panel .panel-title h4 {
  font-size: 1em;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .panel .panel-title h4 {
    font-size: initial;
  }
}
.collapsible.collapsed {
  display: none;
}
.panel.is-warning {
  margin: 0.75em 0 0.75em 0em;
  border-bottom: 0.18em dotted #ffab22;
}
.panel.is-warning .panel-title {
  background-color: #fdd697;
}
.panel.is-danger {
  margin: 0.75em 0.1em 0.75em 0em;
  border-bottom: 0.18em dotted #ff2e2e;
}
.panel.is-danger .panel-title {
  background-color: #ffa8a8;
}
.panel.is-info {
  margin: 0.75em 0.1em 0.75em 0em;
  border-bottom: 0.18em dotted #264bd2;
}
.panel.is-info .panel-title {
  background-color: #a8bafc;
}
/* badges label */
.rarity-label {
  min-width: max-content;
  min-height: max-content;
  background-color: #9ba3a6;
  filter: contrast(120%);
  color: #000;
  border-radius: 5px;
  margin-left: 15%;
  padding: 0.1em 0.3em 0.1em 0.3em;
  font-weight: 600;
}
.rarity-label.rare {
  background-color: #4e95f1;
  filter: contrast(120%);
  color: #000;
}
.rarity-label.epic {
  background-color: #cf52cb;
  filter: contrast(120%);
  color: #000;
}
.rarity-label.legendary {
  background-color: #f3b643;
  filter: contrast(120%);
  color: #000;
}
.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 */
.emoji_badge {
  color: #000;
  float: left;
  position: relative;
  border-radius: 5px;
  background-color: #a7ebfa;
  margin: 3px;
  padding: 3px 5px;
}
.emoji_badge.has-owner-vote {
  cursor: pointer;
}
.emoji_badge.has-owner-vote:hover {
  background-color: rgba(136, 188, 223, 0.3);
}
.emoji-scores {
  max-width: 330px;
  display: inline-block;
}
@media only screen and (min-width: 950px) {
  .emojis-box {
    max-width: 400px;
  }
}
@media only screen and (min-width: 365px) and (max-width: 950px) {
  .emojis-box {
    max-width: 330px;
  }
}
@media only screen and (max-width: 365px) {
  .emojis-box {
    max-width: 200px;
  }
}
.addEmoji {
  position: relative;
  cursor: pointer;
}
.addEmoji .emojis-box {
  position: absolute;
  width: 312px;
  height: fit-content;
  background: #efefef;
  border-radius: 28px;
  left: -55px;
  top: 30px;
  display: none;
  z-index: 100;
}
.addEmoji .emojis-box .emoji-icon {
  width: 40px;
  height: 40px;
  font-size: 190%;
  display: inline-block;
  border-radius: 20px;
  margin: 8px -1px 0 8px;
  text-align: center;
  transition: all 0.3s;
}
.addEmoji .emojis-box.small {
  width: 250px;
}
.addEmoji .emojis-box.small .emoji-icon {
  width: 30px;
  height: 30px;
  font-size: 120%;
  margin: 4px -1px 0 4px;
}
.addEmoji:hover {
  background: #abd8da;
}
.addEmoji:hover .emojis-box {
  display: block;
}
.addEmoji:hover .emojis-box .emoji-icon:hover {
  transform: scale(1.4);
}
.addEmoji::before {
  content: '.';
  opacity: 0;
  display: block;
  width: 44px;
  height: 13px;
  position: absolute;
  top: 20px;
  left: 0;
}
/* canvas render */
canvas#renderCanvas {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
body.ready-player-one {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  touch-action: none;
}
body.hide-ui .map-overlay {
  display: none;
}
/* Animations Emote*/
.animations {
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
}
.animations li {
  list-style: none;
  margin: 0;
  padding: 16px;
  width: 64px;
}
.animations li:hover {
  cursor: pointer;
}
/* World Player */
.ready-player-one p,
.ready-player-one li,
.ready-player-one ul,
.ready-player-one section,
.ready-player-one h1,
.ready-player-one h2,
.ready-player-one h3,
.ready-player-one h4 {
  margin: 0;
  padding: 0;
}
.ready-player-one .loading-spinner {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
}
.ready-player-one .loading-spinner .version {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: 150px;
  margin-left: -50px;
  color: #aaa;
  text-align: center;
  width: 100px;
}
.ready-player-one div.scene {
  -webkit-transform-style: preserve-3d;
  -webkit-animation: spin 2.5s infinite linear;
  position: relative;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotateX(-20deg) rotateY(-20deg);
  }
  100% {
    -webkit-transform: rotateX(-20deg) rotateY(-740deg);
  }
}
/* Mobile dpad*/
.mobile-dpad {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 150px;
  width: 150px;
  padding: 0;
  border: 30px solid transparent;
  touch-action: none;
  display: flex;
}
/* Mobile controls mobile*/
.mobile-controls-container {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  width: 150px;
  margin: 20px;
}
/* Camera view button mobile */
.camera-view-button {
  background: #f3f3f3;
  color: #555;
  margin: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  padding: 12px;
  touch-action: none;
}
/* fly button mobile */
.fly-button {
  margin: 5px;
  background: #f3f3f3;
  color: #555;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  padding: 12px;
  touch-action: none;
}
/* Map Overlay */
@keyframes mapslide {
  from {
    right: -500px;
  }
  75% {
    right: -500px;
  }
  to {
    right: 10px;
  }
}
.map-ui {
  width: 100%;
  height: 100%;
}
.map-overlay {
  animation-duration: 4s;
  animation-name: mapslide;
  color: white;
  position: absolute;
  z-index: 2000;
  right: 10px;
  bottom: 10px;
  width: 15vw;
  height: 15vw;
  min-width: 200px;
  min-height: 200px;
  border-radius: 2px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}
.map-overlay .leaflet-top.leaflet-left {
  transform: scale(0.7);
  margin: -10px -8px;
}
.map-overlay .leaflet-control-layers {
  visibility: hidden;
}
.map-overlay .close {
  position: absolute;
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
  background-color: #fff;
  background-image: url(/icons/mapIcons/expand.png);
  z-index: inherit;
  top: 5px;
  right: 5px;
  cursor: pointer;
  border: #a0a0a0 2px solid;
  border-radius: 4px;
}
.map-overlay .close:hover {
  background-color: #ececec;
  border-color: #505050;
}
.map-overlay .close:before {
  content: '';
}
.map-overlay .leaflet-tile-pane {
  opacity: 0.5;
}
.map-overlay .map-teleport-popup button {
  text-align: center;
}
.map-overlay.big {
  background: #333a;
  color: white;
  border-radius: 4px;
  padding: 4px;
  width: 60vw;
  height: 80vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.map-overlay.big .leaflet-control-layers {
  visibility: visible;
  margin-right: 40px;
  margin-top: 5px;
}
.map-overlay.big .close {
  display: block;
  background: white;
  font: inherit;
  font-weight: bold;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-right: 5px;
  margin-top: 5px;
  width: 30px;
  height: 30px;
  min-width: 25px;
  min-height: 25px;
  text-align: center;
  position: absolute;
  cursor: pointer;
}
.map-overlay.big .close:after {
  content: 'X';
}
.map-overlay.big .close:hover {
  background: black;
  color: white;
}
/* Chat unread */
.unread {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 0.8em;
  padding: 8px;
  text-shadow: 1px 1px 1px black;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
/* Chat overlay collapsed */
.chat-overlay.collapsed {
  height: auto !important;
}
@keyframes chatslide {
  from {
    left: -2000px;
  }
  75% {
    left: -2000px;
  }
  to {
    left: 10px;
  }
}
/* main chat overlay */
.chat-overlay {
  animation-duration: 4s;
  animation-name: chatslide;
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 420px;
  max-height: 168px;
  color: white;
  font-size: 0.9em;
  padding: 4px;
  text-shadow: 1px 1px 1px black;
  display: flex;
  flex-direction: column;
}
.chat-overlay.focus {
  background: #333a;
  border-radius: 4px;
  height: 400px;
}
.chat-overlay p.meta {
  min-height: 22px;
}
.chat-overlay p.meta span {
  margin-left: 10px;
}
.chat-overlay p.meta a:hover {
  text-decoration: underline;
  cursor: pointer;
}
.chat-overlay p.meta a {
  color: white;
}
.chat-overlay p.meta b {
  color: white;
}
.chat-overlay p.meta select {
  float: right;
}
.chat-overlay div.messages {
  flex: 1;
  width: 100%;
  overflow: hidden;
  margin: 0 0 4px 0;
}
.chat-overlay div.messages:hover {
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.1);
}
.chat-overlay div.messages::-webkit-scrollbar {
  width: 5px;
}
.chat-overlay div.messages::-webkit-scrollbar-track {
  background: transparent;
}
.chat-overlay div.messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
}
.chat-overlay div.messages a:hover {
  color: white;
}
.chat-overlay div.messages div {
  font-size: 15px;
}
.chat-overlay div.messages div.-you {
  font-style: italic;
  background-color: #00000047;
}
.chat-overlay div.messages div.broadcast {
  background: #352469;
  color: white;
}
.chat-overlay div.messages div p {
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  display: inline;
  color: #fff;
  font-weight: normal;
}
.chat-overlay div.messages div p b a {
  color: #eee;
}
.chat-overlay div.messages div p span {
  flex: 1;
}
.chat-overlay div.messages div p.action {
  opacity: 0.6;
}
.chat-overlay div.messages a.teleport {
  margin-left: 10px;
  color: #aaa;
}
.chat-overlay .messages > div {
  color: white;
}
.chat-overlay .messages > div > p {
  padding: 2px;
  display: inline-block;
}
.chat-overlay input {
  border: none;
  font: inherit;
  color: white;
  text-decoration: 1px 1px 1px black;
}
.chat-overlay b {
  margin-right: 6px;
  font-weight: normal;
  color: #aaa;
}
.chat-overlay a {
  color: inherit;
  text-decoration: none;
}
.chat-overlay a:hover {
  text-decoration: underline;
  color: black;
  background: none !important;
}
/* Overlay in-world */
.overlay {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  padding: 20px;
  width: 480px;
  max-height: 90%;
  border-radius: 8px;
  z-index: 12000;
  background: #3337;
}
.overlay h3,
.overlay p {
  margin-bottom: 10px;
  color: white;
}
.overlay .button {
  font: inherit;
  padding: 8px 16px;
  display: inline-block;
  border: 1px solid #555;
  color: #444;
  background: linear-gradient(#f3f3f3, #fafafa);
  font-weight: bold;
}
.overlay .button.enabled:hover {
  background: black;
  color: white;
}
.overlay .close {
  background: #555;
  color: white;
  font: inherit;
  font-weight: bold;
  background: none;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 24px;
  height: 24px;
  text-align: center;
  position: absolute;
  top: 8px;
  right: 4px;
  cursor: pointer;
}
.overlay .close:hover {
  background: black;
  color: white;
}
/*  Open overlay in-world */
.overlay.open-link {
  max-width: 100%;
  width: auto;
  box-sizing: border-box;
  background: rgba(1, 1, 1, 0.85);
}
.overlay.open-link button {
  padding: 4px 8px;
  margin-right: 8px;
  background: #aaa;
  color: #111;
  font: inherit;
  font-size: smaller;
  border-radius: 4px;
  border: none;
}
.overlay.open-link button[disabled] {
  opacity: 0.6;
}
.overlay.open-link p.url {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 500px;
}
.overlay.open-link p.url span {
  color: #555;
  background-color: #f3f3f3;
  border-radius: 2px;
}
/*  Overlay in-world Spawn here (outdated) */
.overlay.spawn-here {
  width: 240px;
  box-sizing: border-box;
}
.overlay.buy-nft {
  max-width: 80%;
  height: 580px;
  padding: 4px;
  background: #3337;
  border-radius: 4px;
  padding: 10px;
}
.overlay.buy-nft button {
  padding: 4px 8px;
  margin-right: 8px;
  background: #aaa;
  color: #111;
  font: inherit;
  font-size: smaller;
  border-radius: 4px;
  border: none;
}
.overlay.buy-nft button[disabled] {
  opacity: 0.6;
}
.overlay.buy-nft h3 {
  font-size: inherit;
}
.overlay.buy-nft h3 a {
  color: white !important;
}
.overlay.buy-nft .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -32px 0 0 -32px;
}
.overlay.buy-nft iframe {
  border: none;
  width: 100%;
  /* bypass less min function and use the css one *(: */
  height: 540px;
  max-height: 80vh;
}
.overlay.buy-nft dl {
  border-top: 1px solid #ccc;
}
.overlay.buy-nft dt {
  position: absolute;
  padding: 5px;
}
.overlay.buy-nft dd {
  padding: 5px 5px 5px 120px;
  border-bottom: 1px solid #ccc;
  margin: 0;
}
.overlay.buy-nft dd small {
  color: #777;
  display: block;
}
.overlay.buy-nft .buying {
  margin-top: 20px;
}
.overlay.buy-nft .disabled {
  opacity: 0.5;
  cursor: default;
}
/* Location text overlay */
.location-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.2em;
  text-shadow: 1px 1px 3px black;
  color: white !important;
  z-index: 1000;
}
.location-overlay a {
  color: inherit;
}
.location-overlay a:hover {
  background: none !important;
}
/* search */
.search-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
}
.search-overlay form.uncollapsed {
  background: white;
  border-radius: 4px;
  padding: 4px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  width: 240px;
}
.search-overlay form.uncollapsed input {
  font: inherit;
  width: 100%;
}
.search-overlay form.collapsed {
  font-size: 2em;
  text-shadow: 1px 1px 3px black;
  color: white !important;
  cursor: pointer;
}
.search-overlay .result {
  list-style: none;
  border-top: 1px solid #eee;
  margin: 0;
  padding: 4px 8px;
}
.search-overlay .result small {
  opacity: 0.5;
}
.search-overlay .result:hover {
  background: black;
  cursor: pointer;
}
.search-overlay .result:hover * {
  color: white;
}
/* inventory overlay (outdated) */
.overlay.inventory {
  left: auto;
  right: 10px;
  top: 10px;
  bottom: 60px;
  width: 260px;
  overflow: auto;
  overflow-x: hidden;
}
.overlay.inventory .nftitem {
  min-height: 98px;
  clear: both;
  position: relative;
}
.overlay.inventory .nftitem button.remove {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #555;
  padding: 0 4px;
}
.overlay.inventory .nftitem h3 {
  border-top: 1px solid #ccc;
  padding-top: 6px;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1em;
  font-weight: bold;
}
.overlay.inventory .nftitem img {
  width: 64px;
  max-height: 48px;
  float: left;
  margin-right: 8px;
}
/* XR button overlay - unused */
.xr-button-overlay {
  left: 10px;
  top: 10px;
  right: unset !important;
  bottom: unset !important;
}
/* Inspector ui */
.inspector {
  background: #444;
  color: #ccc;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 4px;
  overflow: auto;
  overflow-x: hidden;
}
.inspector h3,
.inspector h4 {
  color: #eee;
  margin-top: 10px;
}
.inspector ul {
  margin: 4px 0 0 0;
  padding: 0;
}
.inspector li:hover {
  background: black;
  color: #ddd;
  cursor: pointer;
}
.inspector li {
  position: relative;
  font-size: smaller;
  top: 0;
  list-style: none;
  padding: 8px 4px 4px 34px;
  border: none;
  border-bottom: 1px solid #333;
  margin: 0;
}
.inspector li p {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.inspector li img {
  width: 24px;
  position: absolute;
  left: 4px;
}
.inspector li small {
  color: #888 !important;
}
/* Parent-overlay - old */
/* Editor overlay */
@keyframes editorslide {
  from {
    right: -500px;
  }
  to {
    right: 10px;
  }
}
.editor.overlay {
  animation-duration: 0.15s;
  animation-name: editorslide;
  transform: none;
  pointer-events: auto;
  width: 320px;
  right: 10px;
  left: auto;
  top: 40px !important;
  bottom: 10px;
  margin: 0 !important;
  background: transparent;
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.editor.overlay section {
  background: #444;
  color: #ccc;
  padding: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  flex: 1;
  overflow: auto;
  overflow-x: hidden;
}
.editor.overlay section::-webkit-scrollbar-track {
  background: transparent;
}
.editor.overlay .keys {
  padding: 10px;
  font-size: 0.8em;
  opacity: 0.8;
  background: #555;
  color: white;
}
.editor.overlay .tabs {
  height: 32px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  position: relative;
}
.editor.overlay .tabs li.active {
  border-bottom: none;
  background: #444;
  color: #eee;
}
.editor.overlay .tabs li {
  margin: 0 2px 0 0;
  padding: 4px 10px;
  list-style: none;
  background: #222;
  color: #ccc;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom: 1px solid #111;
  max-width: 60px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.editor.overlay .tabs li img {
  width: 12px;
  position: relative;
  top: 4px;
  left: 2px;
}
.editor.overlay .tabs li.close-button {
  position: absolute;
  right: -2px;
  padding-bottom: 10px !important;
  background: #444;
}
.editor.overlay .add-buttons li {
  list-style: none;
  border-bottom: 2px solid #555;
  margin: 0;
  padding: 8px 0 8px 38px;
  position: relative;
  background: #333;
}
.editor.overlay .add-buttons li.selectable {
  cursor: pointer;
  background: #444;
}
.editor.overlay .add-buttons li.selectable:hover {
  background: #414141;
}
.editor.overlay .add-buttons li.selectable .meta {
  color: #777;
  font-weight: normal;
}
.editor.overlay .add-buttons li img {
  width: 24px;
  position: absolute;
  left: 4px;
  top: 8px;
}
.editor.overlay .add-buttons li small {
  display: block;
  color: #999;
}
.editor.overlay .add-buttons li .meta {
  color: #dd0000;
  font-size: smaller;
  position: absolute;
  top: 10px;
  right: 4px;
}
.editor.overlay .tiles + p {
  margin-top: 16px;
  margin-left: 12px;
}
.editor.overlay .tiles + p small {
  opacity: 0.3;
  font-size: 7px;
  overflow-wrap: break-word;
}
.editor.overlay .upload {
  padding: 16px 0 2px 8px;
  position: relative;
}
.editor.overlay .tile-selector h4 {
  padding-left: 8px;
  position: relative;
  top: 8px;
}
.editor.overlay .tile-selector h4 span:nth-child(1) {
  color: red;
}
.editor.overlay .tile-selector h4 span:nth-child(2) {
  color: yellow;
}
.editor.overlay .tile-selector h4 span:nth-child(3) {
  color: lime;
}
.editor.overlay .tile-selector h4 span:nth-child(4) {
  color: cyan;
}
.editor.overlay .tile-selector h4 span:nth-child(5) {
  color: #75f;
}
.editor.overlay .tile-selector .toggle-switch {
  margin: 8px;
}
.editor.overlay .tile-selector .toggle-switch > b {
  position: relative;
  top: -2px;
  font-weight: normal;
}
.editor.overlay .tile-selector .toggle-switch .toggle {
  border: 2px solid #ccc;
  display: inline-block;
  margin-right: 2px;
  background: #555;
  width: 24px;
  height: 12px;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}
.editor.overlay .tile-selector .toggle-switch .toggle:hover {
  border-color: white;
}
.editor.overlay .tile-selector .toggle-switch .toggle:hover b {
  background-color: white;
}
.editor.overlay .tile-selector .toggle-switch .toggle b {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 20px;
  display: block;
  left: 2px;
  top: 2px;
  position: absolute;
}
.editor.overlay .tile-selector .toggle-switch .toggle.on b {
  left: 12px;
}
.editor.overlay h4 {
  color: #ccc;
  text-shadow: 1px 1px 1px black;
}
.editor.overlay div.tiles {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}
.editor.overlay div.swatches input {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  margin-top: 12px;
  cursor: pointer;
  border: none;
}
.editor.overlay div.swatches img {
  width: 24px;
  margin-left: 12px;
  margin-top: 12px;
  border-radius: 1px;
  cursor: pointer;
}
.editor.overlay div.swatches img.inverted {
  filter: invert(1);
}
.editor.overlay div.swatches img.active {
  border: 1px solid white;
  width: 24px;
}
.editor.overlay div.tiles > div {
  width: 72px;
  height: 72px;
}
.editor.overlay div.tiles > div img,
.editor.overlay div.tiles > div div.tile {
  display: block;
  margin-left: 22px;
  margin-top: 22px;
  background-size: 384px 384px;
  background-repeat: repeat;
  border-radius: 2px;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
.editor.overlay div.tiles > div img {
  border: none;
  width: 48px;
  height: 48px;
}
.editor.overlay div.tiles > div small {
  display: block;
  color: #999;
}
.editor.overlay .bake-parcel {
  padding: 16px 0 2px 8px;
}
.editor.overlay .bake-parcel p.error {
  font-size: 80%;
  margin-top: 5px;
  color: #ffa9a9;
}
.editor.overlay .toolbar {
  padding-left: 0;
}
.editor.overlay .toolbar li {
  display: inline-block;
  list-style: none;
}
.editor.overlay .toolbar li button {
  padding: 4px 8px;
  margin-right: 8px;
  background: #aaa;
  color: #111;
  font: inherit;
  font-size: smaller;
  border-radius: 4px;
  border: none;
}
.editor.overlay .toolbar li button[disabled] {
  opacity: 0.6;
}
.editor.overlay .f {
  border-bottom: 2px solid #555;
  padding: 2px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.editor.overlay .f * {
  box-sizing: border-box;
}
.editor.overlay .f label:first-child {
  display: block;
  color: #ccc;
  font-size: smaller;
  padding-bottom: 3px;
}
.editor.overlay .f .help-script {
  color: inherit;
  padding-left: 1em;
}
.editor.overlay .f input[type='text'],
.editor.overlay .f input[type='number'],
.editor.overlay .f input[type='range'],
.editor.overlay .f textarea {
  font: inherit;
  width: 100%;
  border: none;
  padding: 4px;
  background: #222;
  color: #aaa;
  border-radius: 4px;
}
.editor.overlay .f.uv input[type='number'] {
  width: 90px;
  margin-right: 8px;
}
.editor.overlay .f input[type='checkbox'] {
  margin-right: 10px;
}
.editor.overlay .f textarea {
  height: 150px;
}
.editor.overlay .f small {
  display: block;
  margin-top: 10px;
  color: #aaa;
}
.editor.overlay .f input[type='checkbox'] + small {
  display: inline;
}
.editor.overlay .f .sub-f {
  background-color: #272727;
  padding: 3px 5px 0 5px;
  margin: 5px 0;
  border-radius: 2px;
  transition: height 0.5s linear;
}
.editor.overlay button {
  padding: 4px 8px;
  margin-right: 8px;
  background: #aaa;
  color: #111;
  font: inherit;
  font-size: smaller;
  border-radius: 4px;
  border: none;
}
.editor.overlay button[disabled] {
  opacity: 0.6;
}
.editor.overlay .f select + div {
  margin-top: 4px;
}
.editor.overlay .f.fs input[type='number'] {
  width: 88px;
  margin-right: 4px;
}
.editor.overlay .f-keyframe input {
  width: 50px !important;
}
.editor.overlay .f-keyframe input.frame {
  background: #111;
  color: white;
  text-align: center;
}
.image-popup-overlay {
  position: absolute;
  top: 0;
  width: 400px;
  z-index: 50;
}
/* Inspector overlay */
.inspector.overlay {
  width: 240px;
  left: 40px;
  top: 40px;
  bottom: 40px;
  margin-left: 0;
  margin-top: 0;
  overflow-y: auto;
}
.inspector.overlay ul li {
  margin-bottom: 4px;
}
.inspector.overlay ul li p {
  overflow: hidden;
  margin: 0;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inspector.overlay ul li small {
  color: #555;
  display: block;
  margin: 0;
}
/* Inspector feature overlay */
@keyframes slidein {
  from {
    top: -400px;
  }
  to {
    top: 120px;
  }
}
.overlay.inspect-feature {
  background-color: #333333ed;
}
.overlay.inspect-feature .feature-inspector-container {
  background: white;
  padding: 10px;
  user-select: text;
}
.overlay.inspect-feature .feature-inspector-container table th,
.overlay.inspect-feature .feature-inspector-container table td {
  text-align: left;
  padding: 5px;
}
.overlay.inspect-feature .feature-inspector-moderator-options {
  margin-top: 10px;
}
.overlay.inspect-feature .feature-inspector-moderator-options h4 {
  color: #ffef76;
  margin: 10px 0;
}
.overlay.inspect-feature .feature-inspector-moderator-options button {
  padding: 4px 8px;
  margin-right: 8px;
  background: #aaa;
  color: #111;
  font: inherit;
  font-size: smaller;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.overlay.inspect-feature .feature-inspector-moderator-options button[disabled] {
  opacity: 0.6;
}
/* Emote overlay on-world */
.overlay.emote-overlay {
  animation-duration: 0.5s;
  animation-name: slidein;
  top: 120px;
  background: none;
  transform: translate(-50%, 0);
}
.overlay.emote-overlay .close {
  background: #3335;
  border: none;
  color: white;
  right: 20px;
  top: 20px;
}
.overlay.emote-overlay .tab {
  padding-left: 10px;
  margin: 0;
}
.overlay.emote-overlay .tab li {
  display: inline-block;
  margin-right: 10px;
  list-style: none;
  background: #3335;
  color: white;
  text-shadow: 1px 1px 1px black;
  padding: 10px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  cursor: pointer;
}
.overlay.emote-overlay .tab li.-selected {
  background: #333a;
}
.overlay.emote-overlay .say-pane {
  padding: 10px;
}
.overlay.emote-overlay .say-pane input {
  color: white;
  text-shadow: 1px 1px 1px black;
  font: inherit;
  background: black;
  flex: 1;
  padding: 10px;
  outline: none;
  width: 100%;
  border: none;
  box-sizing: border-box;
}
.overlay.emote-overlay .say-pane input::placeholder {
  color: #aaa;
}
.overlay.emote-overlay div {
  background: #333a;
  border-radius: 8px;
}
.overlay.emote-overlay .emotes {
  font-size: 32px;
}
.overlay.emote-overlay div > ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.overlay.emote-overlay div > ul li {
  color: white;
  list-style: none;
  margin: 0;
  padding: 16px;
  width: 64px;
  cursor: pointer;
  text-align: center;
}
.overlay.emote-overlay div > ul li:hover {
  background: #333a;
  border-radius: 2px;
}
/* Instruction overlay in-world */
.instructions-overlay {
  animation-duration: 0.5s;
  animation-name: slidein;
  position: absolute;
  z-index: 12000;
  background: #333a;
  color: white;
  border-radius: 4px;
  padding: 4px;
  left: 50%;
  margin-left: -160px;
  width: 320px;
  top: 120px;
}
.instructions-overlay h3 {
  color: white;
  background: #111a;
  border-radius: 4px;
  padding: 8px;
  margin-bottom: 10px;
}
.instructions-overlay h4 {
  color: white;
  text-shadow: 1px 1px 1px black;
  font-size: 1em;
  padding-left: 6px;
}
.instructions-overlay ul {
  margin-left: 22px;
  color: #ccc;
}
/* Parcel information overlay */
.overlay .parcel-information-overlay h5,
.overlay .parcel-information-overlay h4,
.overlay .parcel-information-overlay h3,
.overlay .parcel-information-overlay h2 {
  color: #d8d8d8;
}
.overlay .parcel-information-overlay a {
  color: #969696;
}
.overlay .parcel-information-overlay a:visited {
  color: aliceblue;
}
.overlay .parcel-information-overlay p {
  margin-bottom: 1px;
}
.overlay .parcel-information-overlay .parcels-details {
  padding: 5px;
  border-radius: 4px;
  border: none;
  background-color: #2d2d2d;
}
.overlay .parcel-information-overlay .actions > li {
  margin: 5px 0 2px 2px;
}
.overlay .parcel-information-overlay .actions > li a {
  text-decoration: none;
  padding: 0 13px;
  background-color: #2d2d2d;
}
.overlay .parcel-information-overlay .overlay-parcel-info-content {
  padding: 3px;
  margin: 2px;
  display: flex;
  flex-direction: column;
  background-color: #2d2d2d;
  overflow: visible;
}
.overlay .parcel-information-overlay .overlay-parcel-info-content > * {
  margin-bottom: 8px;
}
.overlay .parcel-information-overlay .overlay-parcel-info-content .emoji_badge {
  background-color: #b1d3da;
}
.overlay .parcel-information-overlay .overlay-parcel-info-content .eventBoard-item {
  background-color: #1d1d1d;
}
.overlay .parcel-information-overlay .overlay-parcel-info-content p {
  margin-bottom: 2px;
}
.overlay .parcel-information-overlay .overlay-parcel-info-content h1,
.overlay .parcel-information-overlay .overlay-parcel-info-content h2,
.overlay .parcel-information-overlay .overlay-parcel-info-content h3,
.overlay .parcel-information-overlay .overlay-parcel-info-content h4,
.overlay .parcel-information-overlay .overlay-parcel-info-content h5 {
  margin: 2px 0 2px 0;
  text-shadow: none;
}
/* Screen feature overlay */
.presenter.overlay {
  background: #3338;
  border-radius: 4px;
  left: 10px;
  top: 80px;
  margin: 0 0 0 0;
  color: white;
}
.presenter.overlay button {
  padding: 4px 8px;
  margin-right: 8px;
  background: #aaa;
  color: #111;
  font: inherit;
  font-size: smaller;
  border-radius: 4px;
  border: none;
}
.presenter.overlay button[disabled] {
  opacity: 0.6;
}
/* Boombox feature overlay */
.boombox-broadcast {
  transform: translate(0, -50%);
  right: 5px;
  left: unset;
  background: #555;
  box-shadow: none;
  color: #ccc;
  position: absolute;
}
.boombox-broadcast label {
  color: white;
}
.boombox-broadcast .fs {
  text-align: right;
}
.boombox-broadcast .fs button {
  padding: 5px;
}
.boombox-broadcast .broadcast-warning {
  background: #484200;
  color: white;
  padding: 5px;
  border: 1px solid #fff700;
  margin-bottom: 10px;
}
.boombox-broadcast .broadcast-status {
  background: #004826;
  color: white;
  padding: 5px;
  border: 1px solid #00ff88;
  margin-bottom: 10px;
}
.boombox-broadcast .broadcast-error {
  background: #480000;
  color: white;
  padding: 5px;
  border: 1px solid red;
  margin-bottom: 10px;
}
.boombox-broadcast .close {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  margin-right: 8px;
  background: #aaa;
  color: #111;
  font: inherit;
  font-size: smaller;
  border-radius: 4px;
  border: none;
}
.boombox-broadcast .close[disabled] {
  opacity: 0.6;
}
.boombox-broadcast * {
  box-sizing: border-box;
}
.boombox-broadcast h3 {
  color: white;
}
.boombox-broadcast h3 img {
  width: 64px;
  float: left;
  margin-right: 5px;
  margin-left: -10px;
  margin-top: -10px;
}
/* Boombox feature overlay - audio meter */
.audio-meter {
  min-height: 20px;
  background: #1f1f1f;
  padding: 1px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.audio-meter.clipping span {
  background: #c20000;
}
.audio-meter span {
  background: #00ff00;
  flex: 1;
  height: 10px;
  width: 100%;
}
.audio-meter span.audio-meter--r {
  margin-top: 1px;
}
/* youtube feature */
#youtube-css-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* Vidscreen feature - overlay */
@keyframes vidscreenslide {
  from {
    top: -200px;
  }
  to {
    top: 20px;
  }
}
.vid-screen {
  animation-duration: 0.15s;
  animation-name: vidscreenslide;
  background: #333a;
  border-radius: 4px;
  top: 20px;
  color: white;
}
/* Scripting feature - in=world */
.scripting-container .expandScript {
  float: right;
  margin-bottom: 3px;
  margin-top: -2px;
}
/* Scripting feature */
textarea.script-editor {
  white-space: nowrap;
  overflow: auto;
}
/* Scripting container */
.scripting-container-overlay {
  position: absolute;
  border-radius: 4px;
  padding: 5px;
  width: 60vw;
  height: 60vh;
  top: 45%;
  left: 45%;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}
.scripting-container-overlay h4,
.scripting-container-overlay label,
.scripting-container-overlay a {
  color: #fff;
}
.scripting-container-overlay .scripting-container {
  display: flex;
  flex-direction: column;
  height: inherit;
}
.scripting-container-overlay .overlay-Header {
  margin-bottom: 5px;
}
.scripting-container-overlay .editor-toolbar {
  display: flex;
  margin-bottom: 5px;
}
.scripting-container-overlay .editor-toolbar .f {
  margin-right: 10px;
}
.scripting-container-overlay .editor-toolbar select {
  min-width: 130px;
  max-width: 180px;
}
@media only screen and (max-width: 870px) {
  .scripting-container-overlay .editor-toolbar {
    display: block;
    margin-bottom: 5px;
  }
}
.scripting-container-overlay .editor-container {
  height: 100%;
}
.scripting-container-overlay .editor-container textarea {
  resize: none;
}
.scripting-container-overlay .script-editor {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: #222;
  color: #aaa;
}
.scripting-container-overlay .scripting-buttonMenu {
  text-align: right;
  margin-top: 5px;
}
.scripting-container-overlay .scripting-buttonMenu button {
  padding: 4px 8px;
  margin-right: 8px;
  background: #aaa;
  color: #111;
  font: inherit;
  font-size: smaller;
  border-radius: 4px;
  border: none;
}
.scripting-container-overlay .scripting-buttonMenu button[disabled] {
  opacity: 0.6;
}
/* Post womp overlay */
.post-womp {
  width: 640px;
  height: 670px;
  margin: 1% 0 0 -2%;
  background: #555;
  box-shadow: none;
  color: #ccc;
  position: absolute;
}
.post-womp .close {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  margin-right: 8px;
  background: #aaa;
  color: #111;
  font: inherit;
  font-size: smaller;
  border-radius: 4px;
  border: none;
}
.post-womp .close[disabled] {
  opacity: 0.6;
}
.post-womp .vignette {
  position: relative;
  height: 480px;
  width: 640px;
  display: block;
  margin-bottom: 4px;
}
.post-womp .vignette:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: radial-gradient(circle, transparent 50%, black 150%);
}
.post-womp * {
  box-sizing: border-box;
}
.post-womp h3 {
  color: white;
}
.post-womp h3 img {
  width: 64px;
  position: relative;
  top: -24px;
  float: left;
}
.post-womp .fs {
  text-align: right;
}
.post-womp .fs button {
  font: inherit;
  padding: 8px;
  background: #eee;
  color: #555;
  border: none;
  border-radius: 4px;
}
.post-womp .fs button:hover {
  background: #fff;
  color: #444;
  cursor: pointer;
}
.post-womp textarea {
  font: inherit;
  background: #222;
  color: white;
  width: 100%;
  height: 48px;
  padding: 4px;
  border: none;
  border-radius: 4px;
}
@media only screen and (max-width: 1000px) {
  .post-womp {
    width: 64vw;
    height: auto;
    margin: -2% 0 0 -2%;
  }
  .post-womp .vignette {
    width: 64vw;
    height: auto;
  }
  .post-womp .vignette img {
    width: 100%;
    height: auto;
  }
}
.womp-button {
  position: absolute;
  bottom: 15px;
  left: 50%;
  border: 4px solid rgba(255, 255, 255, 0.4);
  color: transparent;
  padding: 0;
  overflow: hidden;
  width: 64px;
  height: 64px;
  margin-left: -32px;
  background: rgba(0, 0, 0, 0.2);
  background-image: url(/images/camera-static.gif);
  background-position: -18px -26px;
  background-size: 100px 100px;
  border-radius: 48px;
  font-size: 9px;
  font-weight: bold;
  text-align: center;
  line-height: 64px;
}
.womp-button:hover {
  background-image: url(/images/camera.gif);
  border-color: #222;
  cursor: pointer;
}
/* NFT TAB ui */
.nfts {
  overflow: scroll;
  overflow-x: hidden;
  color: white;
}
.nfts button {
  padding: 4px 8px;
  margin-right: 8px;
  background: #aaa;
  color: #111;
  font: inherit;
  font-size: smaller;
  border-radius: 4px;
  border: none;
}
.nfts button[disabled] {
  opacity: 0.6;
}
.nfts .nft-img {
  margin: auto 0;
}
.nfts img {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  background: #222;
  margin-right: 4px;
}
.nfts h5 {
  color: #eee;
  margin: 0;
}
.nfts .nft-summary {
  border-top: 1px solid #555;
  padding-left: 5px;
  height: 64px;
  /*overflow: hidden;*/
  margin-bottom: 5px;
  color: #999;
  cursor: pointer;
}
.nfts h4 {
  border-top: 1px solid #555;
  padding-top: 2px;
  clear: both;
  text-shadow: 1px 1px 1px black;
  color: #ccc;
  margin: 0;
  cursor: pointer;
  background: #333;
}
/* Toolbar in-game */
.game-toolbar {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 12px;
  background: #3337;
  color: #ddd;
  text-shadow: 1px 1px 1px #111;
  border-radius: 4px;
}
.game-toolbar.collapsed li + li {
  display: none;
}
.game-toolbar .grabber {
  color: black;
  text-shadow: 1px 1px 1px white;
}
.game-toolbar .colr a {
  color: white;
  text-decoration: none;
}
.game-toolbar .colr a span:nth-child(1) {
  color: red;
}
.game-toolbar .colr a span:nth-child(2) {
  color: yellow;
}
.game-toolbar .colr a span:nth-child(3) {
  color: #55ee00;
}
.game-toolbar .colr a span:nth-child(4) {
  color: #00eeaa;
}
.game-toolbar .colr a span:nth-child(5) {
  color: lightskyblue;
}
.game-toolbar .colr a:hover {
  text-decoration: underline;
}
.game-toolbar .colr a:hover span {
  color: white;
}
.game-toolbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}
.game-toolbar li {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: relative;
  cursor: pointer;
}
.game-toolbar li:hover {
  color: white;
  background-color: #111a;
}
.game-toolbar .location a {
  color: white;
}
.game-toolbar .location a:hover {
  background: none !important;
}
.game-toolbar .location small {
  opacity: 0.5;
}
.game-toolbar .location.canEdit a {
  color: yellow;
}
.game-toolbar .searchbar ul {
  display: block;
  position: absolute;
  background: #3337;
}
.game-toolbar .searchbar ul a {
  color: white;
}
.game-toolbar .searchbar ul small {
  display: none;
}
/* Settings toolbar popup UI */
.settings {
  display: block;
  position: absolute;
  background: #3337;
  color: white;
  text-shadow: 1px 1px 1px black;
  border-radius: 4px;
  margin-left: -80px;
  margin-top: 10px;
  width: 240px;
  padding: 8px;
}
.settings h4 {
  color: #fafafa;
  font-size: 1em;
  text-shadow: none;
}
.settings .fs {
  margin-bottom: 8px;
}
.settings .fs label {
  display: block;
}
.settings .fs label input[type='checkbox'] {
  vertical-align: bottom;
  margin-right: 5px;
}
.settings .fs input[type='range'] {
  width: 230px;
}
.voxel-library {
  height: 150px;
  overflow-y: auto;
  padding: 4px 1px;
  margin: 5px 1px;
  background-color: #2d2d2d;
}
.voxel-library .category-name {
  cursor: pointer;
}
.voxel-library .category-name h5 {
  color: #cccccc;
  margin: 2px 2px 5px;
}
.voxel-library .category-models {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.voxel-library .category-models a {
  padding: 3px;
}
.voxel-library .category-models img {
  width: 40px;
  height: 40px;
}
@media only screen and (min-width: 800px) and (min-height: 450px) {
  .voxel-library .category-models img {
    width: 55px;
    height: 55px;
  }
  .voxel-library .category-models img:hover {
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    transition: all 0.2s ease-in-out;
  }
}
.voxel-library .category-models p {
  margin-bottom: 0;
  margin: auto 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
