@keyframes rotationccw {
  0% {
    transform: rotate(360deg); }
  100% {
    transform: rotate(0deg); } }

@keyframes rotationcw {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@font-face {
  font-family: 'Polsyh';
  src: url("../fonts/polsyh/polsyh.ttf") format("truetype"); }

@font-face {
  font-family: 'Cantarell OTF';
  src: url("../fonts/cantarell/cantarell.otf") format("opentype");
  font-style: normal; }

.button-help-container {
  height: 2rem;
  width: 2rem; }

.button-help {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 50%; }

.loader-center {
  position: absolute;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 0.8rem solid #e4e4e4;
  border-color: #e4e4e4 transparent #e4e4e4 transparent;
  animation: rotationcw 1.2s linear infinite; }

.loader-container {
  width: 2rem;
  height: 2rem;
  transform: scale(1, 1);
  transition: all .5s ease-in-out; }
  .loader-container.loaded {
    transform: scale(0, 0); }

.loader {
  position: absolute;
  top: -.4rem;
  left: -.4rem;
  z-index: 1;
  width: 0;
  height: 0;
  border-radius: 50%;
  border: 1.4rem solid #e4e4e4;
  border-color: #e4e4e4 transparent #e4e4e4 transparent;
  animation: rotationcw 1.2s linear infinite; }

.mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  transition: opacity .2s ease-in-out; }
  .mask.loaded {
    opacity: 0;
    pointer-events: none; }

.image {
  height: inherit;
  width: inherit;
  overflow: hidden;
  object-fit: cover;
  object-position: 50% 50%;
  transition: all .1s linear; }

.button {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  cursor: pointer;
  transform: scale(1, 1);
  transition: transform .1s ease-in-out, background-color .2s ease-in-out;
  background-color: #e4e4e4; }
  .button:hover {
    transform: scale(1.1, 1.1); }
  .button.collapse {
    transform: scale(0, 0); }
  .button > svg {
    transform: translateZ(0);
    transition: color .1s ease-in-out;
    color: #686868;
    height: 2rem;
    width: 2rem; }
  .button.active {
    transform: scale(1.1, 1.1);
    background-color: #686868; }
    .button.active > svg {
      transform: translateZ(0);
      color: #e4e4e4; }
  .button.dark {
    background-color: #686868; }
    .button.dark > svg {
      transform: translateZ(0);
      color: #e4e4e4; }
  .button.light {
    background-color: #e4e4e4; }
    .button.light > svg {
      transform: translateZ(0);
      color: #686868; }

#header {
  height: 8rem;
  background-color: #e4e4e4;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  overflow: hidden; }
  #header:hover {
    height: 11rem; }

.header-logo {
  height: 8rem;
  color: #686868;
  user-select: none;
  width: 100%; }
  .header-logo > svg {
    transform: translateZ(0);
    height: inherit;
    width: inherit; }

.header-foldable {
  position: relative;
  height: 3rem;
  width: 100%; }

.header-left {
  position: absolute;
  z-index: 20;
  left: 0;
  top: 0;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1rem; }

.header-update-container {
  margin-left: 1rem;
  height: 2rem;
  width: 2rem;
  border-radius: 1rem;
  background-color: #686868;
  overflow: hidden;
  transition: width .1s ease-in-out;
  display: flex;
  align-items: center; }
  .header-update-container.information > .header-update-labels {
    opacity: 1; }

.header-update-vector {
  height: 2rem;
  width: 2rem; }
  .header-update-vector > svg {
    transform: translateZ(0);
    color: #e4e4e4;
    height: 2rem;
    width: 2rem; }

.header-update-labels {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity .1s ease-in-out; }

.header-update-line {
  height: .9rem;
  line-height: .9rem;
  font-size: .8rem;
  color: #e4e4e4;
  text-wrap: nowrap; }

.header-github-container {
  position: relative;
  height: 2rem;
  width: 2rem; }
  .header-github-container:hover > .header-github-tooltip {
    transform: scale(1, 1) translate(-50%); }

.header-github-logo {
  height: 100%;
  width: 100%;
  cursor: pointer;
  transform: scale(1, 1);
  transition: transform .1s ease-in-out; }
  .header-github-logo:hover {
    transform: scale(1.1, 1.1); }
  .header-github-logo > svg {
    transform: translateZ(0);
    height: inherit;
    width: inherit; }

.header-github-tooltip {
  position: absolute;
  top: -1.8rem;
  left: 50%;
  padding: .2rem .3rem;
  white-space: nowrap;
  background-color: #686868;
  color: #e4e4e4;
  border-radius: 0.3rem;
  font-size: .8rem;
  transform: scale(0, 0) translate(-50%);
  transform-origin: 0 50%;
  transition: transform .1s ease-in-out; }

.header-center {
  position: absolute;
  z-index: 18;
  top: 0;
  left: 50%;
  height: 3rem;
  line-height: 3rem;
  transform: translateX(-50%);
  font-style: italic;
  opacity: 1;
  transition: opacity .1s ease-in-out; }
  .header-center > a {
    font-weight: bold;
    font-style: normal; }
  .header-center.hidden {
    opacity: 0; }

.header-right {
  position: absolute;
  z-index: 19;
  right: 0;
  margin-right: 1rem;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem; }

.header-language {
  position: relative; }
  .header-language:hover > .header-language-tooltip {
    transform: scale(1, 1) translate(-50%); }
  .header-language:hover > .header-language-flag {
    outline-width: .3rem; }

.header-language-tooltip {
  position: absolute;
  top: -2rem;
  left: 50%;
  padding: .2rem .3rem;
  background-color: #686868;
  color: #e4e4e4;
  border-radius: 0.3rem;
  white-space: nowrap;
  font-size: .8rem;
  transform: scale(0, 0) translate(-50%);
  transform-origin: 0 50%;
  transition: transform .1s ease-in-out; }

.header-language-flag {
  height: 1.6rem;
  outline-color: #fafafa;
  outline-style: solid;
  outline-width: 0;
  border-radius: 0.3rem;
  background-color: #fafafa;
  transition: all .1s ease-in-out;
  cursor: pointer;
  overflow: hidden; }
  .header-language-flag.active {
    outline-width: .3rem; }
  .header-language-flag > svg {
    transform: translateZ(0);
    height: 1.6rem;
    width: inherit; }

#module-lookup {
  width: 500px; }

.lookup-container {
  position: relative;
  z-index: 100;
  top: calc(50px - 1.4em);
  background-color: #e4e4e4;
  border-radius: 4px;
  height: fit-content;
  overflow: hidden;
  width: 100%;
  transition: box-shadow .1s linear; }
  .lookup-container:hover, .lookup-container.active {
    box-shadow: 0 0 3px #686868; }

.lookup-input {
  padding: 5px 10px;
  height: 30px;
  line-height: 30px;
  cursor: text;
  color: #575757; }
  .lookup-input:focus-visible, .lookup-input:hover {
    outline: none; }

.lookup-result-container {
  display: flex;
  flex-direction: column;
  height: 0px;
  font-size: 13px;
  color: #fafafa;
  transition: height .1s ease-out;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .lookup-result-container::-webkit-scrollbar {
    display: none; }

.lookup-result-group {
  margin: 10px 10px 0 10px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .1s ease-in-out; }
  .lookup-result-group:first-child {
    margin-top: 0; }
  .lookup-result-group:last-child {
    margin-bottom: 10px; }
  .lookup-result-group.collapse {
    transform: scale(0, 0); }

.lookup-result-level {
  padding: 5px 10px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.lookup-result {
  position: relative;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-shrink: 0;
  overflow: hidden;
  transition: all .1s linear; }
  .lookup-result:first-child > .lookup-image-container {
    border-top-right-radius: 4px; }

.lookup-image-container {
  position: relative;
  height: 50px;
  width: 50px;
  flex-shrink: 0;
  overflow: hidden; }
  .lookup-image-container::before {
    opacity: 0; }
  .lookup-image-container.loading::before {
    content: ''; }

.lookup-label {
  margin: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 5px; }

.panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all .1s linear; }

#first-panel {
  flex: 35%;
  margin: 1rem 0 1rem 1rem; }

#second-panel {
  flex: 35%;
  margin: 1rem 0; }

#third-panel {
  flex: 30%;
  margin: 1rem 1rem 1rem 0; }

.sub-panel {
  position: relative;
  border-radius: 0.3rem;
  transition: all .1s linear;
  overflow: hidden; }
  .sub-panel.unselectable {
    user-select: none; }

#taxonomy {
  overflow: visible;
  max-height: calc(100% - 9rem);
  min-height: calc(100% - 12rem);
  flex: 1;
  background-color: #686868; }

#information {
  flex: 40%;
  color: #fafafa;
  display: flex;
  flex-direction: column;
  overflow: hidden; }
  #information.resizing {
    user-select: none; }

#cartography {
  flex: 60%;
  background-color: #e4e4e4;
  overflow: visible; }

#photography {
  flex: 40%;
  display: flex; }

#statistics {
  flex: 60%;
  background-color: #686868; }

#panel-container {
  flex-shrink: 0;
  background-color: #686868;
  display: flex;
  flex-direction: column;
  overflow: hidden; }

.panel-button-container {
  height: 2em;
  display: flex;
  margin: 0 20px;
  column-gap: 10px; }

.panel-button {
  background-color: #e4e4e4;
  padding: 0 1em;
  border-radius: 4px;
  line-height: 2em;
  text-align: center;
  width: 100%;
  cursor: pointer; }

.panel-resizer-container {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  z-index: 200;
  background-color: #e4e4e4;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .5s ease-in-out;
  transform: scale(1, 1);
  overflow: hidden; }
  .panel-resizer-container.collapse {
    transform: scale(0, 0); }

.panel-resizer {
  height: 1rem;
  width: 1rem;
  border-radius: 1rem;
  background-color: #686868;
  cursor: pointer; }

.panel-information {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #686868;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease-in-out; }
  .panel-information.active {
    opacity: 1;
    pointer-events: all; }

.taxonomy-mask {
  justify-content: end;
  align-items: start; }

.taxonomy-levels {
  height: calc(100% - (3rem + 2 * 2rem));
  margin: 2rem calc(2rem - 1rem);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease-in-out; }

.taxonomy-level-main {
  flex: 5; }

.taxonomy-level {
  flex: 4;
  display: flex;
  align-items: center;
  color: #575757;
  border-radius: 0.3rem;
  flex-direction: column;
  overflow: hidden;
  transition: all .2s ease-in-out; }
  .taxonomy-level.active {
    padding: 2rem 0; }
  .taxonomy-level.smooshed {
    flex: 0;
    margin: 0;
    min-height: 0;
    transition: all .2s ease-in-out; }
  .taxonomy-level.collapse {
    transform: scale(0, 0);
    transition: all .2s ease-in-out; }

.taxonomy-type-container {
  height: 2.5rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
  color: #fafafa;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 4px;
  transition: all .2s ease-in-out;
  transform-origin: 50% 50%;
  clip-path: polygon(100% 0, 100% calc(100% - 15px), 50% 100%, 0 calc(100% - 15px), 0 0); }
  .taxonomy-type-container > .taxonomy-type-label {
    height: 1rem;
    margin: .3rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .taxonomy-type-container.collapse {
    transform: scale(0, 0); }

.taxonomy-entry-container {
  display: flex;
  justify-content: center;
  height: calc(100% - 3.5rem);
  width: 100%; }

.taxonomy-entry {
  position: relative;
  height: 100%;
  width: 100%;
  flex: 1;
  aspect-ratio: 1/1;
  color: #575757;
  margin: 0 1rem;
  cursor: pointer;
  border-radius: 0.3rem;
  pointer-events: all;
  overflow: hidden;
  transform-origin: 50% 50%;
  transition: flex .1s linear, transform .2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .taxonomy-entry.smooshed {
    flex: 0;
    margin: 0; }
  .taxonomy-entry.collapse {
    transform: scale(0, 0); }
  .taxonomy-entry.placeholder {
    cursor: default;
    pointer-events: none; }
  .taxonomy-entry.active > .taxonomy-entry-label {
    color: #e4e4e4; }

.taxonomy-entry-mask {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
  opacity: 0;
  background: #686868;
  border-radius: 0.3rem;
  transition: opacity .1s linear;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .taxonomy-entry-mask.inactive {
    opacity: .7; }

.taxonomy-image-container {
  position: relative;
  height: inherit;
  width: inherit;
  background-color: #575757;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  overflow: hidden;
  pointer-events: none; }
  .taxonomy-image-container::before {
    opacity: 0; }
  .taxonomy-image-container.loading::before {
    content: ''; }

.taxonomy-entry-status {
  position: absolute;
  z-index: 1;
  top: .5rem;
  right: .5rem;
  border-radius: 50%;
  height: 1.5vw;
  width: 1.5vw;
  pointer-events: none; }
  .taxonomy-entry-status > svg {
    transform: translateZ(0);
    height: inherit;
    width: inherit; }

.taxonomy-entry-label {
  position: absolute;
  bottom: 0;
  width: calc(100% - .8rem);
  padding: 0 .4rem;
  font-size: .9rem;
  line-height: 1.6rem;
  text-align: center;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
  background-color: #e4e4e4;
  transition: color .2s ease-in-out, background .2s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  pointer-events: none; }

.taxonomy-entry-statistics {
  position: absolute;
  top: 0;
  left: 0;
  border-bottom-right-radius: 0.3rem;
  border-top-left-radius: 0.3rem;
  background-color: #e4e4e4;
  font-size: .8rem;
  line-height: 1.2rem;
  padding: 0 .4rem;
  pointer-events: none;
  text-wrap: nowrap;
  overflow: hidden;
  transition: all .2s ease-in-out; }

.taxonomy-ancestry-container {
  height: 2rem;
  margin: 1rem 1rem 0 1rem;
  display: flex;
  align-items: center; }

.taxonomy-button-help-container {
  position: relative; }

.taxonomy-ancestry {
  width: calc(100% - 3rem);
  margin-right: 1rem;
  display: flex;
  justify-content: start;
  flex-wrap: nowrap;
  transition: transform .1s ease-out;
  user-select: none; }

.taxonomy-ancestor {
  position: relative;
  color: #fafafa;
  margin-right: -5px;
  transition: all .1s ease-out;
  transform: scale(1, 1); }
  .taxonomy-ancestor:first-child > .taxonomy-ancestor-label {
    text-align: left;
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
    clip-path: polygon(calc(100% - .8rem) 0%, 100% 50%, calc(100% - .8rem) 100%, 0% 100%, 0% 0%); }
  .taxonomy-ancestor.small > .taxonomy-ancestor-label {
    padding: 0; }
    .taxonomy-ancestor.small > .taxonomy-ancestor-label:hover + .taxonomy-ancestor-tooltip {
      transform: translate(-50%, 0) scale(1, 1); }
  .taxonomy-ancestor.collapse {
    transform: scale(0, 0); }

.taxonomy-ancestor-label {
  font-size: 1rem;
  height: 2rem;
  width: 0;
  line-height: 2rem;
  border-radius: 0.3rem;
  text-align: center;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  clip-path: polygon(calc(100% - .8rem) 0%, 100% 50%, calc(100% - .8rem) 100%, 0% 100%, 0.8rem 50%, 0% 0%);
  cursor: pointer;
  overflow: hidden;
  transition: all .2s ease-out; }

.taxonomy-ancestor-tooltip {
  position: absolute;
  font-size: 1rem;
  top: 2.3rem;
  z-index: 2;
  line-height: 1.5rem;
  padding: 0 .3rem;
  left: 50%;
  white-space: nowrap;
  border-radius: 0.3rem;
  overflow: hidden;
  transform-origin: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  transition: all .1s linear; }

.information-mask {
  background-color: #686868; }

.description-container {
  flex: 1;
  background-color: #686868;
  transition: all .2s ease-in-out;
  display: flex;
  flex-direction: column;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .description-container.overflow > .description-content {
    height: unset; }
  .description-container::-webkit-scrollbar {
    display: none; }

.description-content {
  margin: 1rem;
  opacity: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all .2s ease-in-out; }
  .description-content.hidden {
    opacity: 0; }

.description-links {
  position: absolute;
  margin: .5rem;
  top: 0;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  justify-content: space-evenly;
  gap: .5rem; }

.description-links-mask {
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0;
  background-color: #575757;
  width: 5.5rem;
  height: 3rem;
  border-bottom-left-radius: 1.5rem; }
  .description-links-mask.large {
    width: 8rem; }

.description-title {
  font-weight: bold;
  font-size: 1.6rem;
  max-width: calc(100% - 8rem); }
  .description-title:first-letter {
    text-transform: uppercase; }

.description-button {
  cursor: pointer; }
  .description-button > svg {
    transform: translateZ(0);
    height: 2rem;
    width: 2rem; }

.description-scientific {
  font-style: italic;
  font-size: 1.2rem; }

.description-vernacular {
  margin-top: 1rem;
  font-weight: bold; }

.description-vernaculars:first-letter {
  text-transform: uppercase; }

.description-summary {
  margin-top: 1rem;
  margin-bottom: 1rem; }

.description-statuses-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: auto; }

.description-statuses {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(6%);
  max-width: 2rem;
  cursor: pointer; }
  .description-statuses:hover > .description-statuses-tooltip {
    transform: scale(1, 1) translate(-50%); }

.description-statuses-tooltip {
  position: absolute;
  z-index: 1;
  top: -3rem;
  left: 50%;
  padding: .2rem .3rem;
  text-align: center;
  white-space: nowrap;
  border-radius: 0.3rem;
  font-size: .8rem;
  pointer-events: none;
  cursor: default;
  transform: scale(0, 0) translate(-50%);
  transform-origin: 0 50%;
  transition: transform .1s ease-in-out; }

.description-statuses-total {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 4rem;
  border-radius: 4rem;
  background-color: #e4e4e4;
  border: solid 0.2rem #e4e4e4;
  overflow: hidden; }

.description-statuses-name {
  margin-top: .5rem;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: .8rem; }

.description-statuses-amount {
  transition: height .2s ease-in-out; }

.search-button {
  position: absolute;
  right: 0;
  z-index: 10;
  margin: .5rem; }

.search-container {
  flex: 0;
  background-color: #e4e4e4;
  height: 3rem;
  transition: height .2s ease-in-out; }
  .search-container.collapse {
    height: 0; }

.search-input {
  margin: .5rem 1rem;
  height: 2rem;
  line-height: 2rem;
  cursor: text;
  color: black;
  pointer-events: none;
  user-select: none; }
  .search-input:focus-visible, .search-input:hover {
    outline: none; }
  .search-input.active {
    pointer-events: all;
    user-select: all; }

.search-result-container {
  display: flex;
  flex-direction: column;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem; }

.search-result-group {
  transition: transform .1s ease-in-out; }
  .search-result-group.collapse {
    transform: scale(0, 0); }

.search-result-level {
  padding: .5rem .5rem;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  text-transform: uppercase;
  font-weight: bold; }

.search-result {
  position: relative;
  height: 5rem;
  cursor: pointer;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-shrink: 0;
  overflow: hidden;
  transition: all .1s linear; }
  .search-result:first-child > .search-image-container {
    border-top-right-radius: 4px; }
  .search-result:hover > .search-label {
    transform: scale(1.1, 1.1); }

.search-image-container {
  position: relative;
  height: 5rem;
  width: 5rem;
  flex-shrink: 0;
  overflow: hidden;
  pointer-events: none; }
  .search-image-container::before {
    opacity: 0; }
  .search-image-container.loading::before {
    content: ''; }

.search-label {
  margin: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 5px;
  pointer-events: none;
  transform-origin: 0%;
  transition: all .2s ease-in-out; }

.search-loader {
  position: absolute;
  right: 3rem;
  top: 0.5rem;
  z-index: 30;
  pointer-events: none;
  width: .6rem;
  height: .6rem;
  border-radius: 50%;
  border: 0.7rem solid #686868;
  border-color: #686868 transparent #686868 transparent;
  animation: rotationcw 1.2s linear infinite;
  opacity: 0;
  transition: opacity .2s ease-in-out; }
  .search-loader.loading {
    opacity: 1; }

#map {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  overflow: hidden; }

.cartography-button {
  border-radius: 50%; }
  .cartography-button.dark {
    background-color: #686868; }
    .cartography-button.dark > svg {
      transform: translateZ(0);
      color: #e4e4e4; }
  .cartography-button.light {
    background-color: #e4e4e4; }
    .cartography-button.light > svg {
      transform: translateZ(0);
      color: #686868; }

.cartography-button-display-container {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 1rem;
  height: 2rem;
  width: 3.4rem;
  border-radius: 2rem;
  display: flex;
  justify-content: start;
  align-items: center;
  cursor: pointer;
  transform: scale(1, 1);
  transition: background .1s ease-in-out, transform .2s ease-in-out; }
  .cartography-button-display-container.dark:not(.active) {
    background-color: #686868; }
  .cartography-button-display-container.dark > .cartography-button-display-slider {
    background-color: #e4e4e4; }
  .cartography-button-display-container.dark.deactivated {
    background-color: #8d8d8d;
    cursor: default; }
    .cartography-button-display-container.dark.deactivated > .cartography-button-display-slider {
      background-color: #c4c4c4; }
  .cartography-button-display-container.light:not(.active) {
    background-color: #e4e4e4; }
  .cartography-button-display-container.light > .cartography-button-display-slider {
    background-color: #686868; }
  .cartography-button-display-container.light.deactivated {
    background-color: #c4c4c4;
    cursor: default; }
    .cartography-button-display-container.light.deactivated > .cartography-button-display-slider {
      background-color: #8d8d8d; }
  .cartography-button-display-container.active > .cartography-button-display-slider {
    transform: translateX(100%); }
  .cartography-button-display-container.collapse {
    transform: scale(0, 0); }

.cartography-button-display-slider {
  height: 1.4rem;
  width: 1.4rem;
  border-radius: 1.4rem;
  transition: transform .1s ease-in-out;
  margin: .3rem; }
  .cartography-button-display-slider > svg {
    transform: translateZ(0);
    height: 1.4rem;
    width: 1.4rem; }

.cartography-button-help-container {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1rem; }
  .cartography-button-help-container.dark > .button-help {
    background-color: #686868; }
    .cartography-button-help-container.dark > .button-help > svg {
      transform: translateZ(0);
      color: #e4e4e4; }
  .cartography-button-help-container.dark > .loader-container > .loader {
    border: 1.4rem solid #686868;
    border-color: #686868 transparent #686868 transparent; }
  .cartography-button-help-container.light > .button-help {
    background-color: #e4e4e4; }
    .cartography-button-help-container.light > .button-help > svg {
      transform: translateZ(0);
      color: #686868; }
  .cartography-button-help-container.light > .loader-container > .loader {
    border: 1.4rem solid #e4e4e4;
    border-color: #e4e4e4 transparent #e4e4e4 transparent; }

.cartography-center {
  position: absolute;
  top: 0;
  left: 0;
  margin: 1rem; }
  .cartography-center > svg {
    transform: translateZ(0);
    color: #686868; }

.cartography-basemap {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 1rem;
  height: 2rem;
  line-height: 2rem;
  padding: 0 .4rem;
  border-radius: 0.3rem;
  background-color: #e4e4e4;
  color: #686868;
  cursor: pointer;
  user-select: none;
  transform: scale(1, 1);
  transition: all .1s ease-in-out; }
  .cartography-basemap:hover {
    transform: scale(1.1, 1.1); }
  .cartography-basemap.collapse {
    transform: scale(0, 0); }
  .cartography-basemap.dark {
    background-color: #686868;
    color: #e4e4e4; }
  .cartography-basemap.light {
    background-color: #e4e4e4;
    color: #686868; }

.cartography-mask {
  justify-content: start;
  align-items: start; }

.cartography-loader {
  margin: 1rem; }

.statistics-button-help-container {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1rem; }

.statistics-chart {
  height: calc(100% - 4rem);
  width: calc(100% - 4rem);
  margin: 2rem;
  display: flex;
  justify-content: center;
  transform: scale(1, 1);
  transition: transform .2s ease-in-out; }
  .statistics-chart.collapse {
    transform: scale(0, 0); }

.statistics-mask {
  justify-content: end;
  align-items: start; }

.statistics-loader {
  margin: 1rem; }

svg .statistics-parent {
  color: #686868; }

svg .statistics-parent-label {
  font-weight: bold;
  color: #e4e4e4; }

.photography-container {
  flex: 1;
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #686868;
  overflow: hidden;
  user-select: none;
  transition: all .2s ease-in-out; }
  .photography-container::before {
    opacity: 0; }
  .photography-container.loading::before {
    content: ''; }
  .photography-container.smooshed {
    flex: 0; }
  .photography-container > a {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    background-color: #e4e4e4;
    border-top-right-radius: 0.3rem;
    border-top-left-radius: 0.3rem;
    display: flex;
    transform-origin: 50% 100%;
    transform: translate(-50%) scale(0, 0);
    transition: transform .1s ease-in-out; }
  .photography-container:hover > a {
    transform: translate(-50%) scale(1, 1); }

.photography-license {
  color: #686868;
  font-size: 1rem;
  height: 1rem;
  line-height: 1rem;
  text-transform: uppercase;
  margin: .2rem .1rem .2rem .4rem; }

.photography-link {
  height: 1.4rem;
  width: 1.4rem;
  margin-right: .2rem; }
  .photography-link > svg {
    transform: translateZ(0);
    fill: #686868;
    height: inherit;
    width: inherit; }

.photography-mask {
  background-color: #686868; }

.photo-mask {
  position: absolute;
  opacity: 1;
  background-color: #686868;
  height: inherit;
  width: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity .2s; }
  .photo-mask.loaded {
    opacity: 0; }

.photography-arrow {
  position: absolute;
  z-index: 101;
  top: calc(50% - 1rem); }

.photography-arrow-left {
  left: .5rem; }

.photography-arrow-right {
  right: .5rem; }

.photo {
  height: inherit;
  width: inherit;
  overflow: hidden;
  object-fit: cover; }

.photo-loader {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: rotationcw 1.2s linear infinite; }

.photo-svg {
  height: inherit;
  width: inherit; }
  .photo-svg > svg {
    transform: translateZ(0);
    height: inherit;
    width: inherit;
    fill: #e4e4e4; }

.helper-container {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #686868;
  border-radius: 0.3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease-in-out; }
  .helper-container.active {
    opacity: 1;
    pointer-events: all; }

.helper-content {
  height: calc(100% - 4rem);
  width: calc(100% - 4rem);
  padding: 2rem;
  color: #e4e4e4;
  border-radius: 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: visible;
  opacity: 1;
  transition: opacity .2s ease-in-out; }
  .helper-content.hidden {
    opacity: 0; }

.helper-element > a {
  font-weight: bold;
  color: #e9d9c5; }

.helper-title {
  margin: 0 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2rem;
  text-align: center; }

.helper-paragraph > a {
  font-weight: bold;
  color: #e9d9c5; }

.helper-label {
  font-style: italic;
  text-align: center; }

.helper-list {
  margin: 0;
  padding-left: 1rem; }

.helper-list-element > a {
  font-weight: bold;
  color: #e9d9c5; }

.helper-buttons {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 1rem; }

.helper-button-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: .5rem;
  min-width: min-content; }

.helper-button {
  background-color: #e4e4e4;
  color: #686868;
  user-select: none; }
  .helper-button.dark {
    background-color: #686868;
    color: #e4e4e4; }
  .helper-button.light {
    background-color: #e4e4e4;
    color: #686868; }

.helper-button-label {
  text-align: center;
  max-width: 10rem; }

.helper-button-standard {
  height: 2rem;
  line-height: 2rem;
  padding: 0 .4rem;
  border-radius: 0.3rem;
  margin: 0 auto;
  min-width: max-content; }

.helper-button-slider-container {
  height: 2rem;
  width: 3.4rem;
  border-radius: 2rem;
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: #e4e4e4; }

.helper-button-slider {
  background-color: #686868;
  height: 1.4rem;
  width: 1.4rem;
  border-radius: 1.4rem;
  margin: .3rem; }

.helper-button-vector {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background-color: #e4e4e4; }
  .helper-button-vector > svg {
    transform: translateZ(0);
    color: #686868;
    height: 2rem;
    width: 2rem; }

.helper-vector {
  display: flex;
  justify-content: center; }
  .helper-vector > svg {
    transform: translateZ(0);
    color: #e4e4e4;
    height: inherit;
    width: inherit; }

.helper-taxonomy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 25rem;
  aspect-ratio: 4/5;
  margin: 0 auto;
  user-select: none; }

.helper-taxonomy-ancestry {
  height: 2rem;
  display: flex;
  margin-right: -5px; }

.helper-taxonomy-ancestor:first-child > .helper-taxonomy-ancestor-label {
  text-align: left;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
  clip-path: polygon(calc(100% - .6rem) 0%, 100% 50%, calc(100% - .6rem) 100%, 0% 100%, 0% 0%);
  padding-left: .5rem; }

.helper-taxonomy-ancestor-label {
  font-size: 1rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 0.3rem;
  color: #686868;
  background-color: #e4e4e4;
  padding: 0 1rem;
  text-align: center;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  clip-path: polygon(calc(100% - .6rem) 0%, 100% 50%, calc(100% - .6rem) 100%, 0% 100%, 0.6rem 50%, 0% 0%);
  overflow: hidden; }

.helper-taxonomy-container {
  display: flex;
  flex-direction: column;
  height: calc(100% - 3rem);
  gap: 1rem; }

.helper-taxonomy-level {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 1rem; }

.helper-taxonomy-entry {
  flex: 1;
  height: calc(100% - 1rem);
  color: #686868;
  background-color: #e4e4e4;
  border-radius: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: .5rem; }

.helper-taxonomy-placeholder {
  opacity: 0;
  user-select: none;
  pointer-events: none; }

.helper-color-container {
  display: flex;
  flex-direction: column;
  justify-content: center; }

.helper-color-current {
  border-radius: 0.3rem;
  background-color: #e4e4e4;
  color: #686868;
  padding: .2rem .3rem;
  white-space: nowrap;
  font-size: .8rem;
  margin: 0 auto .5rem auto;
  transition: all .1s ease-in-out; }
  .helper-color-current.hovering {
    color: #e4e4e4; }

.helper-color-scale {
  display: flex;
  width: 100%;
  height: 2rem; }

.helper-color {
  position: relative;
  height: 2rem;
  flex: 1;
  cursor: pointer; }
  .helper-color:first-child {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem; }
  .helper-color:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem; }

.helper-color-tooltip {
  position: absolute;
  z-index: 4;
  top: -1.6rem;
  left: 50%;
  padding: .2rem .3rem;
  white-space: nowrap;
  border-radius: 0.3rem;
  font-size: .8rem;
  transform: scale(0, 0) translate(-50%);
  transform-origin: 0 50%;
  transition: transform .1s ease-in-out; }

html, body {
  margin: 0; }

#application {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  background-color: #e4e4e4;
  gap: 1rem; }

#application-mask {
  background-color: #686868;
  z-index: 200; }

#content-container {
  height: 100%;
  display: flex; }

.click-mask {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.stateofmatter {
  background-color: #8d3f4d;
  outline-color: #8d3f4d; }

.kingdom {
  background-color: #8d3f5a;
  outline-color: #8d3f5a; }

.phylum {
  background-color: #8d3f66;
  outline-color: #8d3f66; }

.subphylum {
  background-color: #8d4073;
  outline-color: #8d4073; }

.superclass {
  background-color: #8d4080;
  outline-color: #8d4080; }

.class {
  background-color: #8e408c;
  outline-color: #8e408c; }

.subclass {
  background-color: #83408e;
  outline-color: #83408e; }

.infraclass {
  background-color: #76408e;
  outline-color: #76408e; }

.subterclass {
  background-color: #6a418e;
  outline-color: #6a418e; }

.superorder {
  background-color: #5e418e;
  outline-color: #5e418e; }

.order {
  background-color: #52418e;
  outline-color: #52418e; }

.suborder {
  background-color: #45418e;
  outline-color: #45418e; }

.infraorder {
  background-color: #414a8e;
  outline-color: #414a8e; }

.parvorder {
  background-color: #42568f;
  outline-color: #42568f; }

.zoosection {
  background-color: #42638f;
  outline-color: #42638f; }

.zoosubsection {
  background-color: #426f8f;
  outline-color: #426f8f; }

.superfamily {
  background-color: #427c8f;
  outline-color: #427c8f; }

.epifamily {
  background-color: #42888f;
  outline-color: #42888f; }

.family {
  background-color: #438f8a;
  outline-color: #438f8a; }

.subfamily {
  background-color: #438f7e;
  outline-color: #438f7e; }

.supertribe {
  background-color: #438f72;
  outline-color: #438f72; }

.tribe {
  background-color: #439065;
  outline-color: #439065; }

.subtribe {
  background-color: #439059;
  outline-color: #439059; }

.genus {
  background-color: #44904d;
  outline-color: #44904d; }

.genushybrid {
  background-color: #469044;
  outline-color: #469044; }

.subgenus {
  background-color: #539044;
  outline-color: #539044; }

.section {
  background-color: #5f9044;
  outline-color: #5f9044; }

.subsection {
  background-color: #6c9045;
  outline-color: #6c9045; }

.complex {
  background-color: #789045;
  outline-color: #789045; }

.species {
  background-color: #849045;
  outline-color: #849045; }

.hybrid {
  background-color: #909145;
  outline-color: #909145; }

.subspecies {
  background-color: #918545;
  outline-color: #918545; }

.infrahybrid {
  background-color: #916146;
  outline-color: #916146; }

.variety {
  background-color: #917946;
  outline-color: #917946; }

.form {
  background-color: #916d46;
  outline-color: #916d46; }

svg.stateofmatter {
  color: #8d3f4d; }

svg.kingdom {
  color: #8d3f5a; }

svg.phylum {
  color: #8d3f66; }

svg.subphylum {
  color: #8d4073; }

svg.superclass {
  color: #8d4080; }

svg.class {
  color: #8e408c; }

svg.subclass {
  color: #83408e; }

svg.infraclass {
  color: #76408e; }

svg.subterclass {
  color: #6a418e; }

svg.superorder {
  color: #5e418e; }

svg.order {
  color: #52418e; }

svg.suborder {
  color: #45418e; }

svg.infraorder {
  color: #414a8e; }

svg.parvorder {
  color: #42568f; }

svg.zoosection {
  color: #42638f; }

svg.zoosubsection {
  color: #426f8f; }

svg.superfamily {
  color: #427c8f; }

svg.epifamily {
  color: #42888f; }

svg.family {
  color: #438f8a; }

svg.subfamily {
  color: #438f7e; }

svg.supertribe {
  color: #438f72; }

svg.tribe {
  color: #439065; }

svg.subtribe {
  color: #439059; }

svg.genus {
  color: #44904d; }

svg.genushybrid {
  color: #469044; }

svg.subgenus {
  color: #539044; }

svg.section {
  color: #5f9044; }

svg.subsection {
  color: #6c9045; }

svg.complex {
  color: #789045; }

svg.species {
  color: #849045; }

svg.hybrid {
  color: #909145; }

svg.subspecies {
  color: #918545; }

svg.infrahybrid {
  color: #916146; }

svg.variety {
  color: #917946; }

svg.form {
  color: #916d46; }

.status-ex {
  background-color: #383838;
  color: #c58b8b; }

.status-ew {
  background-color: #383838;
  color: lightgray; }

.status-cr {
  background-color: #833d3d;
  color: #e4bebe; }

.status-en {
  background-color: #995d3d;
  color: #e9d6c2; }

.status-vu {
  background-color: #a38b42;
  color: #e9e9c9; }

.status-nt {
  background-color: #1a7575;
  color: #b6dab6; }

.status-lc {
  background-color: #277a7a;
  color: lightgray; }

.status-dd {
  background-color: #949494;
  color: white; }

.status-ne {
  background-color: #949494;
  color: white; }

.status-un {
  background-color: #949494;
  color: white; }

:root {
  font-family: 'Cantarell OTF';
  font-size: 1rem;
  color: #575757; }

a {
  color: inherit;
  text-decoration: none; }

.no-scrollbar {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .no-scrollbar::-webkit-scrollbar {
    display: none; }

/*# sourceMappingURL=style.css.map */