#add {
  position: relative;
  padding: 1.5rem;
}
#add #add-upload {
  position: relative;
  height: 17vh;
  min-height: 10rem;
  border: 3px dashed #292929;
  border-radius: 0.5rem;
}
#add #add-upload #add-upload-ctrl {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  background: #151515;
  border-radius: 0.4rem;
  transition: background-color 0.25s;
}
#add #add-upload #add-upload-ctrl > label {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}
#add #add-upload #add-upload-ctrl > label > input {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
#add #add-upload #add-upload-ctrl > label > span {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
#add #add-upload #add-upload-ctrl > label > span > span {
  padding: 1rem;
  border: 1px solid #eb5e28;
  border-radius: 0.25rem;
  color: #eb5e28;
  transition: background-color 0.25s;
}
#add #add-upload #add-upload-ctrl > label:active {
  background: #292929;
}
#add #add-upload #add-upload-ctrl > label:active > span > span {
  background: #eb5e28;
  color: #090909;
}
#add #add-preview {
  margin: 1.5rem 0;
}
#add #add-preview > ul {
  display: flex;
  flex-wrap: wrap;
}
#add #add-preview > ul > li {
  position: relative;
  flex: 0 0 25%;
}
#add #add-preview > ul > li > span {
  display: block;
  position: relative;
  margin: 2px;
  aspect-ratio: 1/1;
}
#add #add-preview > ul > li > span > span.add-preview-img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-color: #151515;
  z-index: 1;
}
#add #add-preview > ul > li > span > span.add-preview-img.no-img {
  background: rgba(204,204,204,0.5);
}
#add #add-preview > ul > li > span > em {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.5rem 0.5rem 0.5rem;
  background: rgba(9,9,9,0.75);
  color: #999;
  content: attr(data-status-label);
  text-transform: uppercase;
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  font-style: normal;
  z-index: 2;
}
#add #add-preview > ul > li.pending > span:before,
#add #add-preview > ul > li.uploading > span:before,
#add #add-preview > ul > li.uploaded > span:before,
#add #add-preview > ul > li.processing > span:before,
#add #add-preview > ul > li.processed > span:before,
#add #add-preview > ul > li.error > span:before,
#add #add-preview > ul > li.pending > span:after,
#add #add-preview > ul > li.uploading > span:after,
#add #add-preview > ul > li.uploaded > span:after,
#add #add-preview > ul > li.processing > span:after,
#add #add-preview > ul > li.processed > span:after,
#add #add-preview > ul > li.error > span:after {
  position: absolute;
  content: "";
}
#add #add-preview > ul > li.pending > span:before,
#add #add-preview > ul > li.uploading > span:before,
#add #add-preview > ul > li.uploaded > span:before,
#add #add-preview > ul > li.processing > span:before,
#add #add-preview > ul > li.processed > span:before,
#add #add-preview > ul > li.error > span:before {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(9,9,9,0.85);
  z-index: 2;
}
#add #add-preview > ul > li.pending > span:after,
#add #add-preview > ul > li.uploading > span:after,
#add #add-preview > ul > li.uploaded > span:after,
#add #add-preview > ul > li.processing > span:after,
#add #add-preview > ul > li.processed > span:after,
#add #add-preview > ul > li.error > span:after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  color: #eb5e28;
  z-index: 3;
}
#add #add-preview > ul > li.pending > span:after {
  font-family: "Material Symbols Outlined";
  content: "pending";
  font-size: 1.5rem;
}
#add #add-preview > ul > li.uploading > span:after {
  color: #ccc;
  animation: add-preview-uploading linear 1s infinite;
  font-family: "Material Symbols Outlined";
  content: "progress_activity";
  font-size: 1.5rem;
}
#add #add-preview > ul > li.uploaded > span:after {
  font-family: "Material Symbols Outlined";
  content: "check";
  font-size: 1.5rem;
}
#add #add-preview > ul > li.processing > span:after {
  font-family: "Material Symbols Outlined";
  content: "manufacturing";
  font-size: 1.5rem;
}
#add #add-preview > ul > li.processed > span:after {
  font-family: "Material Symbols Outlined";
  content: "done_all";
  font-size: 1.5rem;
}
#add #add-preview > ul > li.error > span:after {
  font-family: "Material Symbols Outlined";
  content: "error";
  font-size: 1.5rem;
}
@-moz-keyframes add-preview-uploading {
  0% {
    transform: translate(-50%, -100%) rotate(0);
  }
  100% {
    transform: translate(-50%, -100%) rotate(360deg);
  }
}
@-webkit-keyframes add-preview-uploading {
  0% {
    transform: translate(-50%, -100%) rotate(0);
  }
  100% {
    transform: translate(-50%, -100%) rotate(360deg);
  }
}
@-o-keyframes add-preview-uploading {
  0% {
    transform: translate(-50%, -100%) rotate(0);
  }
  100% {
    transform: translate(-50%, -100%) rotate(360deg);
  }
}
@keyframes add-preview-uploading {
  0% {
    transform: translate(-50%, -100%) rotate(0);
  }
  100% {
    transform: translate(-50%, -100%) rotate(360deg);
  }
}
.form {
  margin: 1.5rem 0;
}
.form-field {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: 0 0 1rem 0;
  width: 100%;
}
.form-field .form-label {
  display: none;
  align-items: center;
  padding: 0.8rem 0.9rem;
  background: #151515;
  color: #ccc;
  border: 1px solid #292929;
  border-right: none;
  font-family: "Noto Sans Mono", monospace;
  opacity: 0.75;
}
.form-field .form-ctrl {
  display: flex;
  position: relative;
  flex: 1;
}
.form-field .form-ctrl input[type="text"],
.form-field .form-ctrl input[type="email"],
.form-field .form-ctrl input[type="phone"],
.form-field .form-ctrl input[type="password"],
.form-field .form-ctrl textarea,
.form-field .form-ctrl div.form-select,
.form-field .form-ctrl > span,
.form-field .form-ctrl > button,
.form-field .form-ctrl > a {
  display: block;
  box-sizing: border-box;
  margin: 0;
  padding: 0.8rem 0.9rem;
  width: 100%;
  background: #151515;
  border: 1px solid #292929;
  outline: none;
  color: #ccc;
  line-height: 1.3;
  font-size: 1rem;
  font-family: "Noto Sans Mono", monospace;
  transition: all 0.25s;
}
.form-field .form-ctrl input[type="text"]:focus,
.form-field .form-ctrl input[type="email"]:focus,
.form-field .form-ctrl input[type="phone"]:focus,
.form-field .form-ctrl input[type="password"]:focus,
.form-field .form-ctrl textarea:focus,
.form-field .form-ctrl div.form-select:focus {
  border-color: #eb5e28;
  z-index: 1;
}
.form-field .form-ctrl input[type="text"].has-error,
.form-field .form-ctrl input[type="email"].has-error,
.form-field .form-ctrl input[type="phone"].has-error,
.form-field .form-ctrl input[type="password"].has-error,
.form-field .form-ctrl textarea.has-error,
.form-field .form-ctrl div.form-select.has-error {
  border-color: #f00;
}
.form-field .form-ctrl > span,
.form-field .form-ctrl > button,
.form-field .form-ctrl > a {
  white-space: nowrap;
}
.form-field .form-ctrl > span:not(:only-child),
.form-field .form-ctrl > button:not(:only-child),
.form-field .form-ctrl > a:not(:only-child) {
  width: auto;
}
.form-field .form-ctrl > span:not(:first-child):not(.form-error):last-child,
.form-field .form-ctrl > button:not(:first-child):not(.form-error):last-child,
.form-field .form-ctrl > a:not(:first-child):not(.form-error):last-child {
  border-left: none;
}
.form-field .form-ctrl > button,
.form-field .form-ctrl > a {
  color: #eb5e28;
}
.form-field .form-ctrl > button:active,
.form-field .form-ctrl > a:active {
  background: #eb5e28;
  color: #090909;
}
.form-field .form-ctrl input[type="text"]:not(:first-child),
.form-field .form-ctrl input[type="email"]:not(:first-child),
.form-field .form-ctrl input[type="phone"]:not(:first-child),
.form-field .form-ctrl input[type="password"]:not(:first-child) {
  flex: 1;
  margin-left: -1px;
  width: auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form-field .form-ctrl div.form-select {
  cursor: pointer;
  padding: 0;
  font-family: "Rubik", sans-serif;
}
.form-field .form-ctrl div.form-select > div {
  display: flex;
  margin: 0 2rem 0 0;
  padding: 0.8rem 0.4rem 0.8rem 0.9rem;
}
.form-field .form-ctrl div.form-select > div > img {
  margin: 0.125rem 0.5rem 0 0;
  max-height: 1rem;
}
.form-field .form-ctrl div.form-select > div > span {
  white-space: nowrap;
}
.form-field .form-ctrl div.form-select > div > span:after {
  display: inline-block;
  margin: 0 0 0 0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  transform: translateY(-28%) rotate(45deg);
  border: 2px solid #999;
  border-top: none;
  border-left: none;
  content: "";
}
.form-field .form-ctrl div.form-select:not(:only-child) {
  width: auto;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.form-field .form-ctrl textarea {
  height: 10rem;
  resize: none;
}
.form-field .form-ctrl .form-error {
  display: flex;
  align-items: center;
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  padding: 0 0.75rem 0 1rem;
  background: rgba(255,0,0,0.2);
  border-left: 1px solid #f00;
  white-space: nowrap;
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 2;
}
.form-field .form-desc {
  margin: 0 0 1rem 0;
  padding: 1.25rem 1rem;
  width: 100%;
  border: 1px solid #292929;
  border-top: none;
  color: #999;
}
.form-field .form-desc > p {
  margin: 0.5rem 0 0 0;
  font-size: 0.9rem;
}
.form-field .form-desc > ul > li {
  position: relative;
  margin: 0 0 0.125rem 0;
  padding: 0 0 0 1rem;
  background: none;
  line-height: 1.2;
  font-size: 0.9rem;
}
.form-field .form-desc > ul > li:last-child {
  margin-bottom: 0;
}
.form-field .form-desc > ul > li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\00279c";
}
.form-field.form-field-w-label .form-label {
  display: flex;
}
.form-fields {
  display: flex;
}
.form-fields .form-field {
  flex: 1;
}
.error {
  display: table;
  margin: -1rem 0 1rem 0;
  padding: 0.25rem;
  background: #f00;
  color: #fff;
  font-weight: 800;
}
.error .form-submit {
  width: 100%;
}
.form-select-list {
  position: absolute;
  z-index: 666;
}
.form-select-list:before {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(9,9,9,0.75);
  content: "";
  z-index: 1;
}
.form-select-list > ul {
  position: relative;
  height: 100%;
  background: #151515;
  border: 1px solid #292929;
  z-index: 2;
}
.form-select-list > ul > li {
  display: flex;
  padding: 0.8rem 2rem 0.8rem 0.9rem;
  cursor: pointer;
}
.form-select-list > ul > li.active {
  background: #eb5e28;
}
.form-select-list > ul > li.active > span {
  color: #ccc;
}
.form-select-list > ul > li > img {
  margin: 0.125rem 0.5rem 0 0;
  max-height: 1rem;
}
.form-select-list > ul > li > span {
  white-space: nowrap;
}
#locations-map-wrap {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#locations-map-wrap #locations-map {
  flex: 1;
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #090909;
  border: 1px solid #292929;
  color: #ccc;
}
.leaflet-popup-content-wrapper {
  border-radius: 0;
}
.leaflet-popup-content {
  margin: 0;
  padding: 0.75rem;
}
.leaflet-container a.leaflet-popup-close-button {
  display: none;
}
.map-popup-thumbnails {
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  max-height: 50vh;
  margin: 0;
  padding: 0;
}
.map-popup-thumbnails::-webkit-scrollbar {
  display: none;
}
.map-popup-thumbnails > a {
  display: block;
  flex: 0 0 calc(100% - 4px);
  margin: 2px 0 4px 2px;
  padding: 0.5rem;
  border: 1px solid #eb5e28;
  color: #eb5e28;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.map-popup-thumbnails > a:active {
  background: #eb5e28;
  color: #090909;
}
.map-popup-thumbnails > a > span.material-symbols-outlined {
  margin-right: 0.5rem;
}
.map-popup-thumbnails > div {
  position: relative;
  flex: 0 0 25%;
  aspect-ratio: 1/1;
}
.map-popup-thumbnails > div > a,
.map-popup-thumbnails > div > div {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border: 1px solid #292929;
  -webkit-tap-highlight-color: transparent;
}
.map-popup-thumbnails > div > a:active,
.map-popup-thumbnails > div > div:active {
  opacity: 0.75;
}
.map-popup-thumbnails > div > a.has-img,
.map-popup-thumbnails > div > div.has-img {
  background: #000;
}
.map-popup-thumbnails > div > a > img,
.map-popup-thumbnails > div > div > img {
  display: block;
  max-width: calc(100% - .25rem);
  max-height: calc(100% - .25rem);
}
.map-popup-thumbnails > div > a > span,
.map-popup-thumbnails > div > div > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - .25rem);
  height: calc(100% - .25rem);
  color: #999;
  font-size: 1.2rem;
  opacity: 0.5;
}
.location-list-map > img {
  display: block;
  width: 100%;
  aspect-ratio: 450/200;
  background: #151515;
}
.location-list-place {
  display: flex;
  margin: 0 0 1.5rem 0;
  padding: 2.15rem 1.5rem 1.8rem 1.5rem;
  background: #151515;
  border: 1px solid #292929;
  border-left: none;
  border-right: none;
}
.location-list-place > span.location-list-place-icon {
  margin: 0 0.5rem 0 0;
  color: #eb5e28;
  font-size: 2.5rem;
}
.location-list-place > span.location-list-place-text {
  flex: 1;
}
.location-list-place > span.location-list-place-text > span {
  display: block;
  overflow: hidden;
  margin: 0;
  height: 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.9rem;
}
.location-list-place > span.location-list-place-text > span:last-child {
  margin-bottom: 0;
}
.location-list-place > span.location-list-place-text > span:not(:only-child):before {
  display: inline-block;
  margin: 0 0.25rem 0 0;
  content: "-";
  opacity: 0.5;
}
#wl-minimap {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}
#wl-minimap #wl-minimap-monthes {
  display: flex;
  position: relative;
  order: 1;
  flex-direction: column;
  background: linear-gradient(90deg, rgba(9,9,9,0), rgba(9,9,9,0.5));
  z-index: 1;
}
#wl-minimap #wl-minimap-monthes > svg {
  width: 15vw;
  flex: 1;
}
#wl-minimap #wl-minimap-monthes > svg rect {
  fill: rgba(204,204,204,0.25);
}
#wl-minimap #wl-minimap-monthes > svg rect.active {
  fill: #eb5e28;
}
#wl-minimap #wl-minimap-years {
  display: flex;
  position: relative;
  order: 2;
  flex-direction: column;
  background: rgba(9,9,9,0.85);
  border-left: 1px solid #292929;
  opacity: 0.75;
  z-index: 2;
}
#wl-minimap #wl-minimap-years > div {
  position: relative;
  flex: 1;
  width: 2.5rem;
  min-height: 0;
  border-bottom: 1px solid #292929;
}
#wl-minimap #wl-minimap-years > div:last-child {
  border-bottom: none;
}
#wl-minimap #wl-minimap-years > div > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 0.7rem;
  font-weight: bold;
}
#wl-minimap #wl-minimap-years > div.active {
  background: #eb5e28;
}
#wl-minimap #wl-minimap-years > div.active > span {
  color: #090909;
}
.wl {
  position: relative;
  z-index: 1;
}
.wl .wl-grp {
  position: relative;
}
.wl .wl-grp .wl-grp-head {
  display: flex;
}
.wl .wl-grp .wl-grp-head > div {
  padding: 1.5rem;
}
.wl .wl-grp .wl-grp-head .wl-grp-title {
  flex: 1;
  font-weight: bold;
}
.wl .wl-grp .wl-grp-head .wl-grp-nb {
  background: #151515;
  opacity: 0.5;
}
.wl .wl-grp .wl-grp-body > div {
  position: relative;
  overflow: hidden;
  margin: -2px 0 0 -2px;
}
.wl .wl-grp .wl-grp-body > div:before {
  position: absolute;
  left: 2px;
  right: 2px;
  top: 0;
  bottom: 0;
  background-color: #151515;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='98' height='98' fill='rgb(15, 15, 15)' /%3E%3C/svg%3E");
  background-repeat: repeat;
  background-position: left top;
  background-size: 33.33333% auto;
  content: "";
  z-index: 1;
}
.wl .wl-grp .wl-grp-body > div .wl-p {
  position: absolute;
  width: 1em;
  height: 1em;
  z-index: 2;
}
.wl .wl-grp .wl-grp-body > div .wl-p:active {
  opacity: 0.75;
}
.wl .wl-grp .wl-grp-body > div .wl-p .wl-p-img {
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  background-color: #090909;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
.wl .wl-grp .wl-grp-body > div .wl-p.selected .wl-p-img {
  left: 8px;
  right: 8px;
  top: 8px;
  bottom: 8px;
}
.wl .wl-grp .wl-grp-body > div .wl-p.selected:before,
.wl .wl-grp .wl-grp-body > div .wl-p.selected:after {
  position: absolute;
  pointer-events: none;
}
.wl .wl-grp .wl-grp-body > div .wl-p.selected:before {
  left: 8px;
  right: 8px;
  top: 8px;
  bottom: 8px;
  background: rgba(9,9,9,0.75);
  content: "";
  z-index: 2;
}
.wl .wl-grp .wl-grp-body > div .wl-p.selected:after {
  left: 50%;
  top: 50%;
  font-family: "Material Symbols Outlined";
  content: "check";
  font-size: 2rem;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.wl[data-wl-cols="1"] .wl-grp .wl-grp-body {
  font-size: calc(100vw + (2px / 1.5));
}
.wl[data-wl-cols="2"] .wl-grp .wl-grp-body {
  font-size: calc(50vw + (2px / 1.5));
}
.wl[data-wl-cols="3"] .wl-grp .wl-grp-body {
  font-size: calc(33.333333333333336vw + (2px / 1.5));
}
.wl[data-wl-cols="4"] .wl-grp .wl-grp-body {
  font-size: calc(25vw + (2px / 1.5));
}
.wl[data-wl-cols="5"] .wl-grp .wl-grp-body {
  font-size: calc(20vw + (2px / 1.5));
}
.wl[data-wl-cols="6"] .wl-grp .wl-grp-body {
  font-size: calc(16.666666666666668vw + (2px / 1.5));
}
.wl[data-wl-cols="7"] .wl-grp .wl-grp-body {
  font-size: calc(14.285714285714286vw + (2px / 1.5));
}
.wl[data-wl-cols="8"] .wl-grp .wl-grp-body {
  font-size: calc(12.5vw + (2px / 1.5));
}
#photo {
  position: relative;
  height: 100vh;
  background: #000;
}
#photo #photo-view {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#photo #photo-view > img {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
#photo #photo-more {
  position: fixed;
  overflow-y: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 11;
  transition: opacity 0.25s;
}
#photo #photo-more::-webkit-scrollbar {
  display: none;
}
#photo #photo-more:before {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,0.75);
  content: "";
  opacity: 0.5;
  z-index: 1;
}
#photo #photo-more.on {
  opacity: 1;
  pointer-events: all;
}
#photo #photo-more #photo-more-sections {
  position: relative;
  background: #151515;
  border-top: 1px solid #090909;
  box-shadow: 0 0 1.5rem 0.5rem rgba(9,9,9,0.75);
  margin: 100vh 0 0 0;
  z-index: 2;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-title {
  padding: 1.5rem;
  color: #eb5e28;
  font-size: 1.15rem;
  font-weight: 800;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-title > a:not(:first-child) {
  display: block;
  float: right;
  margin: -0.35rem -0.5rem 0 0;
  padding: 0.5rem 0.5rem 0.3rem 0.35rem;
  text-decoration: none;
  font-weight: normal;
  font-size: 1rem;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-title > a:not(:first-child):active {
  background: #eb5e28;
  color: #090909;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body {
  overflow: hidden;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > textarea {
  display: block;
  padding: 1.5rem;
  width: 100%;
  height: 20vh;
  resize: none;
  background: rgba(153,153,153,0.1);
  border: none;
  outline: none;
  color: #ccc;
  transition: background-color 0.25s;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > textarea:focus {
  background: rgba(153,153,153,0.15);
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > textarea.loading {
  background: rgba(153,153,153,0.05);
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > textarea.saved {
  background: #385f3f;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > ul.photo-more-primary-actions {
  display: flex;
  padding: 1.5rem;
  border-bottom: 1px solid #292929;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > ul.photo-more-primary-actions > li {
  margin: 0 0.5rem;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > ul.photo-more-primary-actions > li.divider {
  flex: 1;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > ul.photo-more-primary-actions > li > a {
  display: block;
  padding: 1rem;
  border: 1px solid #292929;
  color: #ccc;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > ul.photo-more-primary-actions > li > a > span.material-symbols-outlined {
  font-size: 1.5rem;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > ul.photo-more-primary-actions > li > a > span:not(.material-symbols-outlined) {
  display: block;
  margin: 0.5rem 0 0 0;
  font-size: 0.8rem;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > ul.photo-more-primary-actions > li > a:active {
  background: #eb5e28;
  border-color: #eb5e28;
  color: #090909;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > ul.photo-more-primary-actions > li:first-child {
  margin-left: 0;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > ul.photo-more-primary-actions > li:last-child {
  margin-right: 0;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > ul.photo-more-secondary-actions > li {
  margin: 0.5rem 1.5rem 0 1.5rem;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > ul.photo-more-secondary-actions > li > a {
  display: block;
  padding: 1rem;
  border: 1px solid #292929;
  color: #ccc;
  text-decoration: none;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body > ul.photo-more-secondary-actions > li:first-child {
  margin-top: 0;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body dl {
  display: flex;
  flex-wrap: wrap;
  margin: 1.5rem 1.5rem;
  padding: 0;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body dl > dt,
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body dl > dd {
  display: block;
  margin: 0.5rem 0 0 0;
  padding: 0;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body dl > dt:nth-child(1),
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body dl > dd:nth-child(2) {
  margin-top: 0;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body dl > dt {
  width: 130px;
  color: rgba(153,153,153,0.5);
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body dl > dd {
  width: calc(100% - 130px);
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body dl > dd > span.dd-lines {
  display: block;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body dl > dd > span.dd-lines > span {
  display: block;
  overflow: hidden;
  margin: 0;
  height: 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.9rem;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body dl > dd > span.dd-lines > span:last-child {
  margin-bottom: 0;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body dl > dd > span.dd-lines > span:not(:only-child):before {
  display: inline-block;
  margin: 0 0.25rem 0 0;
  content: "-";
  opacity: 0.5;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-location > dl {
  margin-top: 0;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-map > a {
  display: block;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-map > a > img {
  display: block;
  aspect-ratio: 450/300;
  width: 100%;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-no-location > a {
  display: block;
  padding: 1.5rem;
  background: rgba(153,153,153,0.05);
  text-align: center;
  text-decoration: none;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-no-location > a > strong {
  display: block;
  color: #999;
  font-weight: normal;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-no-location > a > span {
  display: block;
  margin: 1rem 0 0 0;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-no-location > a > span > span:not(.material-symbols-outlined) {
  font-weight: bold;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body #photo-more-tags {
  margin: 0 1.5rem 1rem 1.5rem;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body #photo-more-tags > p {
  display: block;
  color: #999;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.5;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body #photo-more-tags > ul {
  display: none;
  flex-wrap: wrap;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body #photo-more-tags > ul > li {
  display: flex;
  margin: 0 0.5rem 0.5rem 0;
  background: #090909;
  border: 1px solid #292929;
  font-size: 0.9rem;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body #photo-more-tags > ul > li > span.material-symbols-outlined {
  padding: 0.65rem 0.25rem 0 0.25rem;
  color: #eb5e28;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body #photo-more-tags > ul > li > span:not(.material-symbols-outlined) {
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  background: #151515;
  border-left: 1px solid #292929;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body #photo-more-tags > ul > li:active {
  border-color: #eb5e28;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body #photo-more-tags.with-tags > p {
  display: none;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body #photo-more-tags.with-tags > ul {
  display: flex;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body #photo-more-new-tag {
  margin: 0 1.5rem;
  width: auto;
  font-size: 0.9rem;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-date {
  display: flex;
  margin: 0 0 2rem 0;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-date > div {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 1.5rem;
  background: rgba(153,153,153,0.05);
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-date > div > span.material-symbols-outlined {
  margin: 0 0.5rem 0 0;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-date > div > span:not(.material-symbols-outlined) {
  flex: 1;
  font-family: "Noto Sans Mono", monospace;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-date > div:last-child > span.material-symbols-outlined {
  order: 2;
  margin: 0 0 0 0.5rem;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-date > div:last-child > span:not(.material-symbols-outlined) {
  order: 1;
  text-align: right;
}
#photo #photo-more #photo-more-sections .photo-more-section .photo-more-section-body .photo-more-meta .photo-more-meta-title {
  margin: 1rem 1.5rem;
}
#photo #photo-more .add-tag-autocomplete {
  position: absolute;
  background: rgba(21,21,21,0.75);
  z-index: 10;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-opposite {
  left: 0;
  right: 0;
  top: 0;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-left {
  left: 0;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-right {
  right: 0;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-main {
  left: 0;
  right: 0;
  bottom: 0;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-main > ul {
  position: absolute;
  overflow-y: auto;
  top: 0;
  bottom: 1.5rem;
  padding: 1rem 0 5vh 0;
  background: #151515;
  border: 1px solid #292929;
  border-top: none;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-main > ul:before,
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-main > ul:after {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-main > ul:before {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #151515;
  content: "";
  z-index: 8;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-main > ul:after {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  font-family: "Material Symbols Outlined";
  content: "tag";
  font-size: 2rem;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-main > ul:empty:before {
  opacity: 1;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-main > ul:empty:after {
  opacity: 0.25;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-main > ul.add-tag-autocomplete-loading:after {
  font-family: "Material Symbols Outlined";
  content: "more_horiz";
  font-size: 2rem;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-main > ul > li {
  position: relative;
  padding: 0.9rem;
  background: #090909;
  border-bottom: 1px solid #292929;
  color: #eb5e28;
  font-family: "Noto Sans Mono", monospace;
  font-size: 0.95rem;
  z-index: 1;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-main > ul > li:first-child {
  border-top: 1px solid #292929;
}
#photo #photo-more .add-tag-autocomplete.add-tag-autocomplete-main > ul > li:active {
  background: #292929;
}
.selected-photos-thumbnails {
  padding: 1.25rem;
  background: #151515;
}
.selected-photos-thumbnails > ul {
  display: flex;
  overflow-x: auto;
  border-bottom: none;
}
.selected-photos-thumbnails > ul::-webkit-scrollbar {
  display: none;
}
.selected-photos-thumbnails > ul > li {
  display: block;
  flex: 0 0 25%;
  margin: 0 0.5rem 0 0;
  padding: 0.5rem;
  background: #000;
  border: 1px solid #eb5e28;
}
.selected-photos-thumbnails > ul > li:last-child {
  margin-right: 0;
}
.selected-photos-thumbnails > ul > li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
.selected-photos-thumbnails > ul > li > span > img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.selected-photos-thumbnails > ul > li > span > span {
  display: none;
}
.selected-photos-thumbnails > ul > li.selected-photos-thumbnails-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  border: none;
  opacity: 0.5;
}
.selected-photos-thumbnails > ul > li.selected-photos-thumbnails-ellipsis > em {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-style: normal;
  font-size: 1rem;
}
.inside-content-location {
  display: flex;
  flex-direction: column;
}
.inside-content-location #photo-location-map-select {
  flex: 1;
  width: 100%;
}
#search #search-form form {
  display: block;
  overflow: hidden;
}
#search #search-form #search-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem;
}
#search #search-form #search-title > span.material-symbols-outlined {
  color: #eb5e28;
  font-size: 2.5rem;
}
#search #search-form #search-title > div {
  margin: 1rem 0 0 0;
  color: #999;
  font-size: 1.25rem;
}
#search #search-form #search-apply {
  margin: 0 1.5rem 1.5rem 1.5rem;
}
#search #search-form #search-toggle {
  margin: 0;
}
#search #search-form #search-toggle > button {
  display: block;
  margin: 0;
  padding: 1rem;
  width: 100%;
  background: #090909;
  border: none;
  border: 1px solid #292929;
  border-left: none;
  border-right: none;
  color: #eb5e28;
}
#search #search-form #search-toggle > button #search-toggle-show {
  display: none;
}
#search #search-form #search-toggle > button #search-toggle-hide {
  display: block;
}
#search #search-form #search-terms > li {
  margin: 0 1.5rem 1.5rem 1.5rem;
  border: 1px solid #292929;
}
#search #search-form #search-terms > li > strong {
  display: block;
  padding: 1rem;
  border-bottom: 1px solid #292929;
}
#search #search-form #search-terms > li > div {
  display: flex;
}
#search #search-form #search-terms > li > div.search-multiple-terms {
  display: block;
}
#search #search-form #search-terms > li > div > div {
  display: flex;
}
#search #search-form #search-terms > li > div > div:not(:first-child) {
  border-top: 1px solid #292929;
}
#search #search-form #search-terms > li > div > input[type="date"],
#search #search-form #search-terms > li > div > div > input[type="date"],
#search #search-form #search-terms > li > div > input[type="text"],
#search #search-form #search-terms > li > div > div > input[type="text"] {
  flex: 1;
  padding: 1rem;
  min-width: 0;
  width: auto;
  background: #151515;
  border: none;
  color: #ccc;
  font-family: "Noto Sans Mono", monospace;
}
#search #search-form #search-terms > li > div > input[type="date"][readonly],
#search #search-form #search-terms > li > div > div > input[type="date"][readonly],
#search #search-form #search-terms > li > div > input[type="text"][readonly],
#search #search-form #search-terms > li > div > div > input[type="text"][readonly] {
  opacity: 0.5;
}
#search #search-form #search-terms > li > div > span,
#search #search-form #search-terms > li > div > div > span {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: #999;
}
#search #search-form #search-terms > li > div > span:not(:first-child),
#search #search-form #search-terms > li > div > div > span:not(:first-child) {
  border-left: 1px solid #292929;
}
#search #search-form #search-terms > li > div > span:not(:last-child),
#search #search-form #search-terms > li > div > div > span:not(:last-child) {
  border-right: 1px solid #292929;
}
#search #search-form #search-terms > li > div > ul.checklist {
  flex: 1;
}
#search #search-form #search-terms > li > div #search-map {
  width: 100%;
  height: 20vh;
}
#search #search-form.collapsed form {
  height: 0;
  pointer-events: none;
}
#search #search-form.collapsed #search-toggle > button {
  border-top: none;
}
#search #search-form.collapsed #search-toggle > button #search-toggle-show {
  display: block;
}
#search #search-form.collapsed #search-toggle > button #search-toggle-hide {
  display: none;
}
#search #search-results #search-results-title {
  display: flex;
  margin: 0 0 1.5rem 0;
  border-bottom: 1px solid #292929;
}
#search #search-results #search-results-title > strong,
#search #search-results #search-results-title > span {
  padding: 1rem;
  background: #151515;
}
#search #search-results #search-results-title > strong {
  flex: 1;
  font-weight: bold;
}
#search #search-results #search-results-title > span {
  border-left: 1px solid #292929;
  color: #999;
  opacity: 0.5;
}
#search #search-results .search-results-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5vh 0;
}
#search #search-results .search-results-empty > span.material-symbols-outlined {
  font-size: 2.5rem;
  opacity: 0.25;
}
#search #search-results .search-results-empty > div {
  display: block;
  margin: 1rem 0 1rem 0;
  color: #999;
  text-align: center;
  font-size: 0.9rem;
}
#search #search-results .search-results-empty > a {
  display: inline-block;
  padding: 1.1rem 1.5rem 1rem 1.5rem;
  background: #eb5e28;
  border: none;
  outline: none;
  color: #090909;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-weight: normal;
  cursor: pointer;
  margin-top: 2rem;
}
#search #search-results .search-results-empty > a:active {
  background: #e24e15;
}
* {
  box-sizing: border-box;
  outline: none;
}
:root {
  color-scheme: dark;
  font-size: 13px;
}
body {
  margin: 0;
  padding: 0;
  background: #090909;
  color: #ccc;
  line-height: 1;
  user-select: none;
}
body:after {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(9,9,9,0.5);
  content: "";
  opacity: 0;
  pointer-events: none;
  z-index: 1666;
  transition: opacity 0.25s;
}
body.locked {
  pointer-events: none;
}
body.loading {
  pointer-events: none !important;
}
body.loading:after {
  opacity: 1;
}
body,
button,
input,
textarea,
select,
legend {
  font-family: "Rubik", sans-serif;
}
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}
ul,
ol,
li {
  list-style: none;
}
a {
  color: #eb5e28;
  text-decoration: underline;
}
a:not([class]):not([id]):active {
  background: #eb5e28;
  color: #090909;
  text-decoration: none;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
code,
.code {
  display: inline;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans Mono", monospace;
  font-size: 1em;
}
.material-symbols-outlined {
  margin-top: -0.15em;
  vertical-align: middle;
  font-size: 1.15em;
}
.leaflet-container {
  background: #090909;
}
.bt {
  display: inline-block;
  padding: 1.1rem 1.5rem 1rem 1.5rem;
  background: #eb5e28;
  border: none;
  outline: none;
  color: #090909;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-weight: normal;
  cursor: pointer;
}
.bt:active {
  background: #e24e15;
}
.bt.bt-block {
  display: block;
  width: 100%;
}
.hidden {
  display: none !important;
}
.center {
  text-align: center !important;
}
.low {
  color: #999;
}
.sm {
  font-size: 0.95em;
}
.mb0 {
  margin-bottom: 0rem !important;
}
.mb1 {
  margin-bottom: 0.75rem !important;
}
.mb2 {
  margin-bottom: 1.5rem !important;
}
.mb3 {
  margin-bottom: 2.25rem !important;
}
.mb4 {
  margin-bottom: 3rem !important;
}
.mb5 {
  margin-bottom: 3.75rem !important;
}
.mb6 {
  margin-bottom: 4.5rem !important;
}
.mb7 {
  margin-bottom: 5.25rem !important;
}
.mb8 {
  margin-bottom: 6rem !important;
}
.mb9 {
  margin-bottom: 6.75rem !important;
}
.back {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.subtitle {
  margin: 0;
  padding: 2.5rem;
  color: #ccc;
  text-align: center;
  font-weight: 100;
  font-size: 1.5rem;
}
.subtitle > span {
  display: block;
}
.subtitle > span.material-symbols-outlined {
  margin-bottom: 1rem;
  color: #292929;
  font-size: 3rem;
}
.notice {
  margin: 1rem;
  padding: 1rem;
  background: #151515;
  color: #999;
  text-align: center;
}
.warning-notice {
  margin: 1rem;
  padding: 1.5rem;
  background: #151515;
  color: #999;
  text-align: center;
}
.warning-notice:first-child {
  margin-top: 0;
}
.warning-notice > span.material-symbols-outlined {
  display: table;
  margin: 0 auto;
  color: #eb5e28;
  font-size: 4rem;
}
.warning-notice > p {
  margin: 1rem 0 0 0;
}
.empty-notice {
  overflow: hidden;
}
.empty-notice > div {
  display: flex;
  flex-direction: column;
  margin: 1.5rem;
  padding: 7.5vh 1.5rem;
  background: #151515;
}
.empty-notice > div > span.material-symbols-outlined {
  display: block;
  margin: 0 auto;
  font-size: 5rem;
  color: #999;
  opacity: 0.25;
}
.empty-notice > div > p {
  margin: 2.5vh 0;
  color: #999;
  text-align: center;
}
.empty-notice > div > a {
  margin: 0 auto;
}
#g {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#g #head {
  order: 1;
  display: block;
  position: relative;
  background: #151515;
  border-bottom: 1px solid #292929;
}
#g #head #head-default {
  display: flex;
  position: relative;
  align-items: center;
}
#g #head #head-default #title {
  flex: 1;
}
#g #head #head-default #title > a {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding: 0.75rem;
  height: 5rem;
  text-decoration: none;
}
#g #head #head-default #title > a:before {
  display: block;
  height: 100%;
  aspect-ratio: 153/155;
  background: url("../img/logo.svg") no-repeat left top;
  background-size: 100%;
  content: "";
}
#g #head #head-default #title > a > span {
  display: block;
  margin: 0.4rem 0 0 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.8rem;
  background: linear-gradient(#69645e, #403d39);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#g #head #head-default #title > a:active {
  background: #090909;
}
#g #head #head-default #back {
  display: none;
  flex: 1;
}
#g #head #head-default #back > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.75rem;
  height: 5rem;
  width: 5rem;
  text-decoration: none;
}
#g #head #head-default #back > a > span {
  color: #ccc;
  font-size: 1.5rem;
}
#g #head #head-default #back > a > span:not(.material-symbols-outlined) {
  display: none;
}
#g #head #head-default #back > a:active {
  background: #eb5e28;
}
#g #head #head-default #back > a:active > span {
  color: #090909;
}
#g #head #head-default #user {
  display: flex;
  align-self: stretch;
}
#g #head #head-default #user > a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 1.15rem;
  color: #999;
  text-decoration: none;
  font-size: 2rem;
}
#g #head #head-default #user > a > span.material-symbols-outlined {
  margin: 0;
}
#g #head #head-default #user > a > span:not(.material-symbols-outlined) {
  display: none;
}
#g #head #head-default #user > a:active {
  background: #090909;
}
#g #head #head-ctx {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #151515;
}
#g #head #head-ctx.on {
  display: flex;
}
#g #head #head-ctx .head-ctx {
  display: none;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}
#g #head #head-ctx .head-ctx.on {
  display: flex;
}
#g #head #head-ctx .head-ctx > ul {
  display: flex;
  flex: 1;
}
#g #head #head-ctx .head-ctx > ul > li {
  display: flex;
  flex: 1;
}
#g #head #head-ctx .head-ctx > ul > li.head-ctx-spacer {
  display: none;
}
#g #head #head-ctx .head-ctx > ul > li > a {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 0.5rem;
}
#g #head #head-ctx .head-ctx > ul > li > a > span {
  color: #ccc;
}
#g #head #head-ctx .head-ctx > ul > li > a > span:not(.material-symbols-outlined) {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
}
#g #head #head-ctx .head-ctx > ul > li > a > em {
  display: block;
  margin-top: 0.5rem;
  color: #999;
  font-style: normal;
  font-weight: bold;
  font-size: 0.8rem;
}
#g #head #head-ctx .head-ctx > ul > li > a:active {
  background: #eb5e28;
}
#g #head #head-ctx .head-ctx > ul > li > a:active > span,
#g #head #head-ctx .head-ctx > ul > li > a:active > em {
  color: #090909;
}
#g #head #head-ctx .head-ctx > ul > li.head-ctx-action-simple > a {
  background: #090909;
}
#g #head #head-ctx .head-ctx > ul > li.head-ctx-action-simple > a > span:not(.material-symbols-outlined) {
  display: none;
}
#g #head #head-ctx .head-ctx > ul > li.head-ctx-action-simple > a:active {
  background: #eb5e28;
}
#g #nav {
  display: none;
  order: 3;
  background: #151515;
  border-top: 1px solid #292929;
}
#g #nav > ul {
  display: flex;
}
#g #nav > ul > li {
  flex: 1;
}
#g #nav > ul > li > a {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  color: #ccc;
  text-decoration: none;
}
#g #nav > ul > li > a > span {
  flex: 1;
  margin: 0 auto;
}
#g #nav > ul > li > a > span:not(.material-symbols-outlined) {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
#g #nav > ul > li:not(.active):active > a {
  background: #292929;
}
#g #nav > ul > li.active > a {
  background: #eb5e28;
  color: #090909;
}
#g #main {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 1px;
  order: 2;
  flex: 1;
}
#g #main #wrap {
  position: relative;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
}
#g #main #wrap::-webkit-scrollbar {
  display: none;
}
#g #main #wrap #wrapper {
  position: relative;
  min-height: 100%;
}
#g #main #wrap #wrapper .content {
  margin: 0 1rem;
}
#g #main #wrap #wrapper .content .content-section-title {
  margin: 2rem 0 1rem 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.15rem;
}
#g #main #wrap #wrapper .content .content-section-title:first-child {
  margin-top: 0;
}
#g #main #wrap #wrapper .content p {
  margin: 1rem 0;
  line-height: 1.2;
}
#g #main #wrap #wrapper .content p:first-child {
  margin-top: 0;
}
#g #main #wrap #wrapper .content p:last-child {
  margin-bottom: 0;
}
#g #main #wrap #wrapper #inside-wrap {
  position: relative;
  min-height: 100vh;
}
#g #main #wrap #wrapper #inside-content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 70px 0 0 0;
  min-height: 100vh;
  z-index: 1;
}
#g #main #wrap #wrapper #inside-content #inside-content-wrap {
  position: relative;
  flex: 1;
}
#g #main #wrap #wrapper #inside-content #inside-content-wrap #inside-content-wrapper {
  position: absolute;
  overflow-y: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#g #main #wrap #wrapper #inside-content #inside-content-wrap #inside-content-wrapper::-webkit-scrollbar {
  display: none;
}
#g #main #wrap #wrapper #inside-content .inside-padded-content {
  margin: 1.5rem;
}
#g #main #wrap #wrapper #inside-content .inside-padded-content .warning-notice {
  margin-left: 0;
  margin-right: 0;
}
#g #main #wrap #wrapper #inside-content .inside-content-form {
  margin: 1.5rem;
}
#g #main #wrap #wrapper #inside-content .inside-content-form > .form-field:last-child,
#g #main #wrap #wrapper #inside-content .inside-content-form > .form-fields:last-child > .form-field {
  margin-bottom: 0;
}
#g #main #wrap #wrapper #inside-head-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
}
#g #main #wrap #wrapper #inside-head-nav > ul {
  display: flex;
}
#g #main #wrap #wrapper #inside-head-nav > ul > li.divider {
  flex: 1;
}
#g #main #wrap #wrapper #inside-head-nav > ul > li.title {
  flex: 1;
  align-self: center;
  margin: 0;
  font-weight: 700;
}
#g #main #wrap #wrapper #inside-head-nav > ul > li > a,
#g #main #wrap #wrapper #inside-head-nav > ul > li > button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 5rem;
  height: 5rem;
  background: none;
  border: none;
  color: #ccc;
  text-decoration: none;
}
#g #main #wrap #wrapper #inside-head-nav > ul > li > a > span.material-symbols-outlined,
#g #main #wrap #wrapper #inside-head-nav > ul > li > button > span.material-symbols-outlined {
  font-size: 1.5rem;
}
#g #main #wrap #wrapper #inside-head-nav > ul > li > a > span:not(.material-symbols-outlined),
#g #main #wrap #wrapper #inside-head-nav > ul > li > button > span:not(.material-symbols-outlined) {
  display: none;
}
#g #main #wrap #wrapper #inside-head-nav > ul > li > a:active,
#g #main #wrap #wrapper #inside-head-nav > ul > li > button:active {
  background: #eb5e28;
  color: #090909;
}
#g #main #wrap #wrapper .inside-padded-content {
  padding: 1.5rem 1.5rem 10vh 1.5rem;
}
#g #main #wrap #wrapper #tabs {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#g #main #wrap #wrapper #tabs > ul#tabs-nav {
  display: flex;
  border-bottom: 1px solid #292929;
}
#g #main #wrap #wrapper #tabs > ul#tabs-nav > li {
  flex: 1;
  border-right: 1px solid #292929;
}
#g #main #wrap #wrapper #tabs > ul#tabs-nav > li:last-child {
  border-right: none;
}
#g #main #wrap #wrapper #tabs > ul#tabs-nav > li > a {
  display: block;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
}
#g #main #wrap #wrapper #tabs > ul#tabs-nav > li.active > a {
  background: #eb5e28;
  color: #090909;
}
#g #main #wrap #wrapper #tabs > ul#tabs-nav > li:not(.active):not(.tabs-nav-label) > a:active {
  background: #292929;
}
#g #main #wrap #wrapper #tabs > ul#tabs-nav > li.tabs-nav-label {
  display: flex;
  flex: 0 0 auto;
  padding: 0 1rem 0 0.75rem;
  align-items: center;
  color: rgba(153,153,153,0.75);
}
#g #main #wrap #wrapper #tabs > ul#tabs-nav > li.tabs-nav-label > span.material-symbols-outlined {
  margin-right: 0.25rem;
}
#g #main #wrap #wrapper #tabs > #tabs-containers {
  display: flex;
  position: relative;
  flex: 1;
}
#g #main #wrap #wrapper #tabs > #tabs-containers .tabs-container {
  display: block;
  position: absolute;
  overflow-y: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  flex: 1;
}
#g #main #wrap #wrapper #tabs > #tabs-containers .tabs-container-actions {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: rgba(21,21,21,0.75);
  border-top: 1px solid rgba(41,41,41,0.5);
  text-align: center;
  z-index: 10;
}
#g #main #wrap #wrapper #tabs > #tabs-containers .tabs-container-actions.on {
  display: block;
}
#g #main #wrap #wrapper ul.pills > li,
#g #main #wrap #wrapper ol.pills > li {
  margin: 0 0 4px 0;
}
#g #main #wrap #wrapper ul.pills > li > a,
#g #main #wrap #wrapper ol.pills > li > a,
#g #main #wrap #wrapper ul.pills > li > span,
#g #main #wrap #wrapper ol.pills > li > span {
  display: flex;
  border: 1px solid #292929;
  color: #999;
  text-decoration: none;
}
#g #main #wrap #wrapper ul.pills > li > a > span,
#g #main #wrap #wrapper ol.pills > li > a > span,
#g #main #wrap #wrapper ul.pills > li > span > span,
#g #main #wrap #wrapper ol.pills > li > span > span {
  padding: 1rem;
}
#g #main #wrap #wrapper ul.pills > li > a > span.pills-item-icon,
#g #main #wrap #wrapper ol.pills > li > a > span.pills-item-icon,
#g #main #wrap #wrapper ul.pills > li > span > span.pills-item-icon,
#g #main #wrap #wrapper ol.pills > li > span > span.pills-item-icon {
  padding: 1rem;
  color: #eb5e28;
}
#g #main #wrap #wrapper ul.pills > li > a > span.pills-item-text,
#g #main #wrap #wrapper ol.pills > li > a > span.pills-item-text,
#g #main #wrap #wrapper ul.pills > li > span > span.pills-item-text,
#g #main #wrap #wrapper ol.pills > li > span > span.pills-item-text {
  flex: 1;
  border: 1px solid #292929;
  border-top: none;
  border-bottom: none;
  color: #ccc;
}
#g #main #wrap #wrapper ul.pills > li > a > span.pills-item-text > ol,
#g #main #wrap #wrapper ol.pills > li > a > span.pills-item-text > ol,
#g #main #wrap #wrapper ul.pills > li > span > span.pills-item-text > ol,
#g #main #wrap #wrapper ol.pills > li > span > span.pills-item-text > ol {
  display: block;
  max-width: calc(100vw - 11.5rem);
}
#g #main #wrap #wrapper ul.pills > li > a > span.pills-item-text > ol > li,
#g #main #wrap #wrapper ol.pills > li > a > span.pills-item-text > ol > li,
#g #main #wrap #wrapper ul.pills > li > span > span.pills-item-text > ol > li,
#g #main #wrap #wrapper ol.pills > li > span > span.pills-item-text > ol > li {
  display: block;
  overflow: hidden;
  margin: 0;
  height: 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.9rem;
}
#g #main #wrap #wrapper ul.pills > li > a > span.pills-item-text > ol > li:last-child,
#g #main #wrap #wrapper ol.pills > li > a > span.pills-item-text > ol > li:last-child,
#g #main #wrap #wrapper ul.pills > li > span > span.pills-item-text > ol > li:last-child,
#g #main #wrap #wrapper ol.pills > li > span > span.pills-item-text > ol > li:last-child {
  margin-bottom: 0;
}
#g #main #wrap #wrapper ul.pills > li > a > span.pills-item-text > ol > li:not(:only-child):before,
#g #main #wrap #wrapper ol.pills > li > a > span.pills-item-text > ol > li:not(:only-child):before,
#g #main #wrap #wrapper ul.pills > li > span > span.pills-item-text > ol > li:not(:only-child):before,
#g #main #wrap #wrapper ol.pills > li > span > span.pills-item-text > ol > li:not(:only-child):before {
  display: inline-block;
  margin: 0 0.25rem 0 0;
  content: "-";
  opacity: 0.5;
}
#g #main #wrap #wrapper ul.pills > li > a > span.pills-item-count,
#g #main #wrap #wrapper ol.pills > li > a > span.pills-item-count,
#g #main #wrap #wrapper ul.pills > li > span > span.pills-item-count,
#g #main #wrap #wrapper ol.pills > li > span > span.pills-item-count {
  min-width: 4.5rem;
  text-align: right;
  opacity: 0.5;
}
#g #main #wrap #wrapper ul.pills > li > a:active,
#g #main #wrap #wrapper ol.pills > li > a:active {
  background: #292929;
}
#g #main #wrap #wrapper ul.photos-list-items {
  display: flex;
  flex-wrap: wrap;
  margin: 2px;
}
#g #main #wrap #wrapper ul.photos-list-items > li {
  position: relative;
  flex: 0 0 calc(100% / 3);
}
#g #main #wrap #wrapper ul.photos-list-items > li > a {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
}
#g #main #wrap #wrapper ul.photos-list-items > li > a > span {
  display: block;
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  background-color: #151515;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
#g #main #wrap #wrapper ul.photos-list-items > li > a:active {
  background: none;
  opacity: 0.75;
}
#g #main #wrap #wrapper ul.photos-list-items > li > input[type="checkbox"] {
  display: block;
  position: absolute;
  overflow: hidden;
  appearance: none;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  z-index: 2;
  pointer-events: none;
}
#g #main #wrap #wrapper ul.photos-list-items > li > input[type="checkbox"]:before {
  display: block;
  position: absolute;
  left: -45%;
  top: -45%;
  width: 150%;
  height: 150%;
  transform: rotate(-45deg) translate(0%, -70%);
  background: #eb5e28;
  content: "";
  z-index: 1;
  transition: all 0.25s;
  pointer-events: all;
}
#g #main #wrap #wrapper ul.photos-list-items > li > input[type="checkbox"]:after {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  font-family: "Material Symbols Outlined";
  content: "check";
  font-size: 2rem;
  transform: translate(-50%, -50%);
  color: #ccc;
  opacity: 0;
  transition: all 0.25s;
  z-index: 2;
}
#g #main #wrap #wrapper ul.photos-list-items > li > input[type="checkbox"]:not(:checked):active:before {
  background: #e24e15;
}
#g #main #wrap #wrapper ul.photos-list-items > li > input[type="checkbox"]:checked:before {
  left: 50%;
  top: 50%;
  width: 150%;
  height: 150%;
  transform: rotate(-45deg) translate(0%, -70%);
  background: rgba(9,9,9,0.65);
  transition: all 0.25s;
}
#g #main #wrap #wrapper ul.photos-list-items > li > input[type="checkbox"]:checked:after {
  opacity: 1;
  transition: all 0.25s;
}
#g #main #wrap #wrapper ul.photos-list-items.has-checked > li > input[type="checkbox"] {
  pointer-events: all;
}
#g #main #wrap #wrapper .pages {
  position: relative;
  margin: 1.5rem 0;
}
#g #main #wrap #wrapper .pages > ul {
  display: flex;
  background: #151515;
  border: 1px solid #292929;
  border-left: none;
  border-right: none;
}
#g #main #wrap #wrapper .pages > ul > li {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
#g #main #wrap #wrapper .pages > ul > li.divider {
  flex: 1;
}
#g #main #wrap #wrapper .pages > ul > li.pages-prev > a,
#g #main #wrap #wrapper .pages > ul > li.pages-next > a,
#g #main #wrap #wrapper .pages > ul > li.pages-prev > span,
#g #main #wrap #wrapper .pages > ul > li.pages-next > span {
  display: block;
  padding: 1rem;
}
#g #main #wrap #wrapper .pages > ul > li.pages-prev > a,
#g #main #wrap #wrapper .pages > ul > li.pages-next > a {
  color: #eb5e28;
  text-decoration: none;
}
#g #main #wrap #wrapper .pages > ul > li.pages-prev > a:active,
#g #main #wrap #wrapper .pages > ul > li.pages-next > a:active {
  background: #eb5e28;
  color: #090909;
}
#g #main #wrap #wrapper .pages > ul > li.pages-prev > span,
#g #main #wrap #wrapper .pages > ul > li.pages-next > span {
  opacity: 0.5;
}
#g #main #wrap #wrapper .pages > ul > li.pages-prev {
  border-right: 1px solid #292929;
}
#g #main #wrap #wrapper .pages > ul > li.pages-next {
  border-left: 1px solid #292929;
}
#g #main #wrap #wrapper .pages > ul > li.pages-current > input {
  display: block;
  appearance: none;
  margin: 0;
  padding-block: 0;
  padding-inline: 0;
  padding: calc(1rem - 1px) 1rem 1rem 0;
  background: none;
  border: none;
  color: #eb5e28;
  vertical-align: top;
  line-height: 1;
  text-align: right;
  font-size: 1rem;
}
#g #main #wrap #wrapper .pages > ul > li.pages-current > input:focus {
  background: rgba(41,41,41,0.5);
}
#g #main #wrap #wrapper .pages > ul > li.pages-slash {
  padding: 1rem 0;
  color: rgba(153,153,153,0.5);
}
#g #main #wrap #wrapper .pages > ul > li.pages-total {
  padding: 1rem;
  color: #999;
}
#g #main #wrap #wrapper ul.actions > li {
  display: block;
  margin: 0 0 0.5rem 0;
  text-align: center;
}
#g #main #wrap #wrapper ul.actions > li > a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: #eb5e28;
  border: 1px solid #eb5e28;
  color: #090909;
}
#g #main #wrap #wrapper ul.actions > li > a > span.material-symbols-outlined {
  margin: 0 0.75rem;
}
#g #main #wrap #wrapper ul.actions > li > a > span:not(.material-symbols-outlined) {
  padding: 0.75rem;
  border-left: 1px solid #090909;
}
#g #main #wrap #wrapper ul.actions.actions-sm > li {
  padding: 4px;
  background: rgba(41,41,41,0.5);
}
#g #main #wrap #wrapper ul.actions.actions-sm > li > a {
  background: #090909;
  color: #eb5e28;
}
#g #main #wrap #wrapper ul.actions.actions-sm > li > a > span.material-symbols-outlined {
  color: #999;
}
#g #main #wrap #wrapper ul.actions.actions-sm > li > a > span:not(.material-symbols-outlined) {
  border-left-color: #292929;
}
#g #main #wrap #wrapper ul.actions > li > a:active,
#g #main #wrap #wrapper ul.actions.actions-sm > li > a:active {
  background: #292929;
  color: #ccc;
}
#g #main #wrap #wrapper ul.actions > li > a:active > span:not(.material-symbols-outlined),
#g #main #wrap #wrapper ul.actions.actions-sm > li > a:active > span:not(.material-symbols-outlined) {
  border-left-color: rgba(153,153,153,0.25);
}
#g #main #wrap #wrapper hr {
  margin: 1.5rem auto;
  max-width: 15rem;
  height: 0.25rem;
  background: #292929;
  border: none;
  outline: none;
}
ul.checklist {
  flex: 1;
}
ul.checklist.checklist-bordered {
  border: 1px solid #292929;
}
ul.checklist > li {
  border-bottom: 1px solid #292929;
}
ul.checklist > li:last-child {
  border-bottom: none;
}
ul.checklist > li > label {
  display: flex;
  position: relative;
}
ul.checklist > li > label > span.material-symbols-outlined {
  position: relative;
  margin: 0 0 0 0.5rem;
  padding: 0.5rem;
  opacity: 0.5;
  z-index: 2;
}
ul.checklist > li > label > input[type="checkbox"] {
  appearance: none;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: rgba(21,21,21,0.5);
  transition: background-color 0.125s;
  z-index: 1;
}
ul.checklist > li > label > input[type="checkbox"]:after {
  position: absolute;
  left: 2.5rem;
  top: calc(50% - .1rem);
  transform: translateY(-50%);
  color: #999;
  opacity: 0.25;
  transition: opacity 0.125s;
  font-family: "Material Symbols Outlined";
  content: "check_box_outline_blank";
  font-size: 1.25rem;
}
ul.checklist > li > label > input[type="checkbox"]:checked {
  background: rgba(41,41,41,0.65);
}
ul.checklist > li > label > input[type="checkbox"]:checked:after {
  color: #eb5e28;
  opacity: 1;
  font-family: "Material Symbols Outlined";
  content: "check_box";
  font-size: 1.25rem;
}
ul.checklist > li > label > input[type="checkbox"][data-has-indeterminate]:indeterminate {
  background: rgba(41,41,41,0.65);
}
ul.checklist > li > label > input[type="checkbox"][data-has-indeterminate]:indeterminate:after {
  opacity: 1;
  font-family: "Material Symbols Outlined";
  content: "indeterminate_check_box";
  font-size: 1.25rem;
}
ul.checklist > li > label > span:not(.material-symbols-outlined) {
  position: relative;
  margin: 0 0 0 1rem;
  padding: 0.5rem;
  opacity: 0.5;
  z-index: 3;
}
ul.checklist > li > label > span:not(.material-symbols-outlined):nth-child(3) {
  flex: 1;
  opacity: 1;
}
ul.keys-list {
  margin: 0 0 1rem 0;
}
ul.keys-list > li {
  display: flex;
  margin: 0 0 0.25rem 0;
}
ul.keys-list > li > input[type="text"] {
  display: block;
  appearance: none;
  flex: 1;
  margin: 0;
  padding: 0.75rem;
  border: none;
  outline: none;
  background: #151515;
  border: 1px solid #292929;
  font-family: "Noto Sans Mono", monospace;
}
ul.keys-list > li > a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: #151515;
  border: 1px solid #292929;
  border-left: none;
  text-decoration: none;
}
ul.keys-list > li > a > span.material-symbols-outlined {
  margin: 0;
}
ul.keys-list > li > a > span:not(.material-symbols-outlined) {
  display: none;
}
#dialog-container {
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(9,9,9,0.75);
  z-index: 1660;
}
#dialog-container #dialog {
  position: relative;
  margin: 0 2rem;
  background: #151515;
  border: 1px solid #eb5e28;
}
#dialog-container #dialog #dialog-head {
  display: flex;
  border-bottom: 1px solid #292929;
}
#dialog-container #dialog #dialog-head #dialog-head-title,
#dialog-container #dialog #dialog-head #dialog-head-close {
  padding: 1.5rem 1.5rem 1.25rem 1.5rem;
}
#dialog-container #dialog #dialog-head #dialog-head-title {
  flex: 1;
  font-weight: bold;
}
#dialog-container #dialog #dialog-head #dialog-head-close {
  border-left: 1px solid #292929;
}
#dialog-container #dialog #dialog-head #dialog-head-close:active {
  background: #292929;
}
#dialog-container #dialog #dialog-body {
  padding: 1.5rem;
  line-height: 1.2;
}
#dialog-container #dialog #dialog-foot {
  display: flex;
  justify-content: end;
  padding: 0.5rem 0.25rem 0.5rem 0.25rem;
  border-top: 1px solid #292929;
}
#dialog-container #dialog #dialog-foot > button {
  flex: 1;
  margin: 0 0.25rem;
  padding: 1rem;
  background: none;
  border: 1px solid #eb5e28;
  color: #eb5e28;
}
#dialog-container #dialog #dialog-foot > button:active {
  background: #eb5e28;
  color: #090909;
}
body.a-none #g #head {
  display: none;
}
body.a-none #g #nav {
  display: none;
}
body.a-sober #g #head #head-default #title > a {
  filter: grayscale(100%);
}
body.a-sober #g #head #head-default #title > a > span {
  display: none;
}
body.a-sober #g #nav {
  display: block;
}
body.a-back #g #head #head-default #title,
body.a-back #g #head #head-default #user {
  display: none;
}
body.a-back #g #head #head-default #back {
  display: block;
}
body.a-back #g #nav {
  display: none;
}
