@import url(https://use.typekit.net/ovw7oca.css);
@charset "UTF-8";
/**
 * Mixins and functions for breakpoints. Any screen break point is a mobile first so {direction} by default is "top"
 * ex: @include breakpoint({screen} {direction}){}
 * ex: @include breakpoint(small){}
 * ex: @include breakpoint(small top){}
 * ex: @include breakpoint(medium down){}
 */
main {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

article {
  width: 100%;
}

.background__hazard {
  height: 30px;
  color: white;
  padding: 5px;
  background-image: repeating-linear-gradient(-55deg, #000, #626262 20px, #ffb101 20px, #f9d013 40px);
}

.admin__item-illustration {
  width: 172px;
  height: 172px;
  max-width: unset;
}

.card-counter {
  box-shadow: 2px 2px 10px #DADADA;
  margin: 5px;
  padding: 20px 10px;
  background-color: #fff;
  height: 100px;
  border-radius: 5px;
  transition: 0.3s linear all;
  position: relative;
}
.card-counter svg {
  height: 100%;
  opacity: 0.2;
}

.card-counter:hover {
  box-shadow: 4px 4px 20px #DADADA;
  transition: 0.3s linear all;
}

.card-counter.primary {
  background-color: #007bff;
  color: #FFF;
}

.card-counter.danger {
  background-color: #ef5350;
  color: #FFF;
}

.card-counter.success {
  background-color: #66bb6a;
  color: #FFF;
}

.card-counter.info {
  background-color: #26c6da;
  color: #FFF;
}

.card-counter .count-numbers {
  position: absolute;
  right: 35px;
  top: 20px;
  font-size: 42px;
  display: block;
}

.card-counter .count-name {
  position: absolute;
  right: 35px;
  top: 65px;
  font-style: italic;
  text-transform: capitalize;
  opacity: 0.5;
  display: block;
  font-size: 18px;
}

.content {
  margin-top: 16px;
}

.activity {
  position: relative;
  margin: 50px auto 160px;
  max-width: 100vw;
  padding: 32px 0 150px 0;
}
@media screen and (min-width: 64em) {
  .activity {
    width: 1000px;
    padding: 50px 50px 150px 50px;
    border: solid 1px white;
    border-radius: 43px;
  }
}
.activity__title {
  font-weight: bold;
  color: white;
  font-size: 31px;
  text-align: left;
  padding: 0 16px;
  margin-bottom: 6px;
}
.activity__intro {
  font-size: 20px;
  color: white;
  padding: 0 16px;
}
.activity__table {
  width: 100%;
  border-collapse: collapse;
  border-style: hidden;
  margin-top: 32px;
}
@media screen and (min-width: 64em) {
  .activity__table {
    margin-top: 75px;
  }
}
.activity__table th {
  font-family: roboto-slab, serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  border: 2px solid white;
  padding: 20px;
  color: white;
}
.activity__table td {
  font-size: 20px;
}
@media screen and (min-width: 64em) {
  .activity__table td {
    border: 2px solid white;
    padding: 20px;
    color: white;
  }
}
.activity__table thead {
  display: none;
}
@media screen and (min-width: 64em) {
  .activity__table thead {
    display: table-row-group;
  }
}
.activity__table tbody {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 64em) {
  .activity__table tbody {
    display: table-row-group;
  }
}
.activity__table tr {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fcf5e9;
  background-image: url("/img/background.png");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: inset 5px 5px 6px rgba(0, 0, 0, 0.1607843137);
  margin-bottom: 16px;
  padding: 16px;
}
@media screen and (min-width: 64em) {
  .activity__table tr {
    display: table-row;
    background-color: transparent;
    background-image: none;
    box-shadow: none;
  }
}
.activity__label {
  font-size: 20px;
  font-weight: bold;
  margin-right: 10px;
}
@media screen and (min-width: 64em) {
  .activity__label {
    display: none;
  }
}
.activity__remove {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  background-image: url("/img/remove.svg");
  background-size: 42px;
  background-repeat: no-repeat;
  padding-top: 40px;
}
.activity__remove span {
  font-weight: 400;
}
@media screen and (min-width: 64em) {
  .activity__remove {
    position: relative;
    right: 0;
    top: 0;
    background-image: url("/img/remove_white.svg");
    background-position: 45% 50%;
  }
}
.activity__amount {
  font-family: roboto-slab, serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(50%);
  z-index: 1;
  font-size: 100px;
  color: #E86C00;
}
.activity__amount--decreased-font-size {
  font-size: 70px;
}
.activity__amount-background {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(50%);
  width: 200px;
  height: 250px;
}

.barchart__svg {
  display: block;
  background: white 0% 0% no-repeat padding-box;
  box-shadow: inset 5px 5px 6px rgba(0, 0, 0, 0.1607843137);
  color: black;
  margin: 0 auto;
  max-width: 755px;
  max-height: 400px;
  width: calc(100vw - 32px);
  height: 75vw;
  border-radius: 10px;
}
@media screen and (min-width: 64em) {
  .barchart__svg {
    border-radius: 43px;
    padding-top: 16px;
  }
}
.barchart__svg text {
  font-family: roboto-slab, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
}
@media screen and (min-width: 40em) {
  .barchart__svg text {
    font-size: 16px;
  }
}
.barchart__svg g g:first-child .domain {
  color: white;
}
.barchart__svg line {
  color: white;
}
.barchart__bar {
  position: relative;
  fill: black;
}
.barchart__icon {
  height: 50px;
}
.barchart__icon--1 {
  height: 25.2px;
  width: 25.2px;
  transform: translateX(-12.6px);
}
@media screen and (min-width: 64em) {
  .barchart__icon--1 {
    height: 51px;
    width: 51px;
    transform: translateX(-25.5px);
  }
}
.barchart__icon--2 {
  height: 24px;
  width: 26.4px;
  transform: translateX(-13.2px);
}
@media screen and (min-width: 64em) {
  .barchart__icon--2 {
    height: 48.6px;
    width: 52.8px;
    transform: translateX(-26.4px);
  }
}
.barchart__icon--3 {
  height: 33px;
  width: 36px;
  transform: translateX(-18px);
}
@media screen and (min-width: 64em) {
  .barchart__icon--3 {
    height: 66.6px;
    width: 71.4px;
    transform: translateX(-35.7px);
  }
}
.barchart__icon--4 {
  height: 34.8px;
  width: 51px;
  transform: translateX(-25.5px);
}
@media screen and (min-width: 64em) {
  .barchart__icon--4 {
    height: 70.2px;
    width: 101.4px;
    transform: translateX(-50.7px);
  }
}
.barchart__icon--5 {
  height: 27px;
  width: 19.8px;
  transform: translateX(-9.9px);
}
@media screen and (min-width: 64em) {
  .barchart__icon--5 {
    height: 54.6px;
    width: 40.2px;
    transform: translateX(-20.1px);
  }
}
.barchart__icon--6 {
  height: 30px;
  width: 21.6px;
  transform: translateX(-10.8px);
}
@media screen and (min-width: 64em) {
  .barchart__icon--6 {
    height: 60px;
    width: 43.8px;
    transform: translateX(-21.9px);
  }
}
.barchart__grid {
  fill: none;
  shape-rendering: crispEdges;
  stroke: #ccc;
  stroke-width: 1px;
}
.barchart text {
  font-size: 16px;
}

.country {
  position: relative;
}
.country__svg {
  width: 800px;
  max-width: 90vw;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media screen and (min-width: 64em) {
  .country__svg {
    padding-bottom: 200px;
  }
}
.country__buttons {
  display: flex;
  justify-content: center;
}
.country__button {
  height: 44px;
  width: 185px;
  border-radius: 22px;
  box-shadow: inset 5px 5px 6px rgba(0, 0, 0, 0.1607843137);
  font-size: 20px;
  font-weight: bold;
  color: white;
  background: #f4b680 0% 0% no-repeat padding-box;
  border: none;
  cursor: pointer;
}
.country__button:not(:first-child) {
  margin-left: 32px;
}
.country__button--active {
  background: white 0% 0% no-repeat padding-box;
  color: black;
}
.country__details {
  padding-left: 0;
  width: 370px;
  margin-left: 0;
}
@media screen and (min-width: 40em) {
  .country__details {
    max-width: calc(100vw - 110px);
  }
}
@media screen and (min-width: 64em) {
  .country__details {
    position: absolute;
    margin-top: 110px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 90em) {
  .country__details {
    margin-left: 43px;
  }
}
.country__details-title--mobile-only {
  font-family: roboto-slab, serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (min-width: 40em) {
  .country__details-title--mobile-only {
    display: none;
  }
}
.country__details-text {
  flex-basis: 75%;
}
@media screen and (min-width: 40em) {
  .country__details-text {
    flex-basis: unset;
  }
}
.country__details-text-berry-type {
  font-family: roboto-slab, serif;
  font-weight: 700;
  font-style: normal;
  display: block;
  font-size: 18px;
}
@media screen and (min-width: 40em) {
  .country__details-text-berry-type {
    display: initial;
  }
}
@media screen and (min-width: 64em) {
  .country__details-text-berry-type {
    font-size: 25px;
  }
}
.country__details-text-amount {
  font-family: roboto-slab, serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}
@media screen and (min-width: 64em) {
  .country__details-text-amount {
    font-size: 25px;
  }
}
.country__details-item {
  font-family: roboto-slab, serif;
  font-weight: 700;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  flex-direction: row-reverse;
  border-bottom: 1px solid white;
  padding: 20px 0;
  width: 90%;
}
.country__details-item:hover {
  cursor: pointer;
  opacity: 0.85;
}
@media screen and (min-width: 40em) {
  .country__details-item {
    width: unset;
    flex-direction: row;
    padding: 6px 0;
  }
}
@media screen and (min-width: 64em) {
  .country__details-item {
    font-size: 25px;
    border-bottom: solid 1px white;
  }
}
.country__details-item:first-child {
  border-top: 1px solid white;
  margin-top: 20px;
}
@media screen and (min-width: 40em) {
  .country__details-item:first-child {
    border-top: none;
    margin: 0;
  }
}
.country__details-icon {
  display: block;
  width: 53px;
  height: 53px;
  background-repeat: no-repeat;
  background-size: contain;
  flex-basis: 25%;
}
@media screen and (min-width: 40em) {
  .country__details-icon {
    margin-right: -60px;
    flex-basis: unset;
  }
}
.country__details-icon--1 {
  background-image: url("/img/items/1.svg");
}
.country__details-icon--2 {
  background-image: url("/img/items/2.svg");
}
.country__details-icon--3 {
  background-image: url("/img/items/3.svg");
}
.country__details-icon--4 {
  background-image: url("/img/items/4.svg");
  height: 53px;
  width: 76px;
  margin-right: -80px;
}
.country__details-icon--5 {
  background-image: url("/img/items/5.svg");
  margin-right: -71px;
}
.country__details-icon--6 {
  background-image: url("/img/items/6.svg");
  margin-left: 10px;
}
@media screen and (min-width: 75em) {
  .country__overview {
    position: absolute;
    top: 340px;
    left: calc(50% + 50px);
    margin-right: -100px;
  }
}
.country__overview-top {
  margin-bottom: 16px;
}
@media screen and (min-width: 40em) {
  .country__overview-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 64em) {
  .country__overview-top {
    display: block;
  }
}
.country__overview-title {
  font-family: roboto-slab, serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-align: left;
  font-size: 32px;
  margin-bottom: 5px;
}
@media screen and (min-width: 75em) {
  .country__overview-title {
    font-size: 55px;
  }
}
.country__overview-subtitle {
  font-family: roboto-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  font-size: 20px;
}
@media screen and (min-width: 75em) {
  .country__overview-subtitle {
    font-size: 37px;
  }
}
.country__overview-info {
  font-family: roboto-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  font-size: 16px;
  color: #ffd700;
  margin-top: 8px;
  font-style: italic;
}
@media screen and (min-width: 75em) {
  .country__overview-info {
    font-size: 20px;
  }
}
.country__overview-columns {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 40em) {
  .country__overview-columns {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 75em) {
  .country__overview-columns {
    justify-content: flex-start;
  }
}
.country__overview-column {
  position: relative;
}
@media screen and (min-width: 64em) {
  .country__overview-column {
    padding-right: 8px;
  }
}
.country__overview-column--selects {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 16px;
}
@media screen and (min-width: 40em) {
  .country__overview-column--selects {
    padding-left: 8px;
    padding-right: 0;
  }
}
.country__list {
  background-color: #fcf5e9;
  background-image: url("/img/background.png");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: inset 5px 5px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 43px;
  color: black;
  margin: 0 auto 32px;
  padding: 32px;
  width: calc(100vw - 32px);
  margin-top: 16px;
}
@media screen and (min-width: 40em) {
  .country__list {
    margin-top: 0;
    max-width: 330px;
  }
}
.country__list-item {
  display: flex;
}
.country__list-amount {
  font-weight: bold;
  width: 70px;
  margin-right: 10px;
  flex-shrink: 0;
}
.country__list-name {
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.country__list-name:hover {
  color: #f39c12;
  transform: translateX(2px);
}
.country__list-name:after {
  content: " ℹ️";
  opacity: 0;
  transition: opacity 0.2s ease;
  font-size: 12px;
}
.country__list-name:hover:after {
  opacity: 0.7;
}
.country__tooltip {
  position: absolute;
  background-color: #fcf5e9;
  background-image: url("/img/background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #333;
  padding: 0;
  border-radius: 20px;
  font-size: 13px;
  width: 320px;
  z-index: 9999;
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.1607843137), 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
  animation: tooltipFadeIn 0.3s ease-out;
  pointer-events: auto;
}
@media screen and (max-width: 63.9375em) {
  .country__tooltip {
    width: calc(100vw - 40px);
    max-width: 320px;
  }
}
.country__tooltip--top-left {
  right: 100%;
  top: 0;
}
.country__tooltip--top-right {
  left: 100%;
  top: 0;
}
.country__tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  filter: drop-shadow(-2px 0 3px rgba(0, 0, 0, 0.1));
}
.country__tooltip-arrow--left {
  left: -12px;
  top: 30px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid #fcf5e9;
}
.country__tooltip-arrow--right {
  right: -12px;
  top: 30px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid #fcf5e9;
}
.country__tooltip-arrow--top {
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #fcf5e9;
}
@media screen and (max-width: 63.9375em) {
  .country__tooltip-arrow--top {
    left: calc(50% + var(--arrow-offset, 0px));
  }
}
.country__tooltip-arrow--bottom {
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #fcf5e9;
}
@media screen and (max-width: 63.9375em) {
  .country__tooltip-arrow--bottom {
    left: calc(50% + var(--arrow-offset, 0px));
  }
}
.country__tooltip-content {
  padding: 20px;
  line-height: 1.3;
  max-height: 400px;
  overflow-y: auto;
}
@media screen and (max-width: 63.9375em) {
  .country__tooltip-content {
    padding: 15px;
    max-height: 300px;
  }
}
.country__tooltip-header {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.country__tooltip-title {
  font-weight: bold;
  margin: 0;
  font-size: 16px;
  color: #2c3e50;
}
.country__tooltip-list {
  max-height: 250px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}
@media screen and (max-width: 63.9375em) {
  .country__tooltip-list {
    max-height: 200px;
  }
}
.country__tooltip-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.country__tooltip-item:last-child {
  margin-bottom: 0;
}
.country__tooltip-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.country__tooltip-item-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  opacity: 0.8;
}
.country__tooltip-date {
  font-weight: bold;
  font-size: 12px;
  color: #2980b9;
}
.country__tooltip-location {
  color: #e67e22;
  font-weight: 600;
}
.country__tooltip-type {
  color: #8e44ad;
  font-style: italic;
  font-weight: 500;
}
.country__tooltip-amount {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 11px;
  box-shadow: 0 2px 4px rgba(39, 174, 96, 0.3);
}
.country__tooltip-more {
  text-align: center;
  padding: 10px;
  color: #7f8c8d;
  font-style: italic;
  font-size: 11px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 16px 16px;
}
.country__tooltip-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  font-style: italic;
  color: #7f8c8d;
}
.country__tooltip-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top: 2px solid #f39c12;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px;
}
.country__tooltip-empty {
  text-align: center;
  padding: 25px;
  color: #95a5a6;
}
.country__tooltip-empty-icon {
  font-size: 20px;
  margin-bottom: 8px;
}
@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.country__select {
  width: 235px;
  height: 44px;
  border-radius: 22px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: inset 3px 3px 4px rgba(0, 0, 0, 0.1607843137);
  font-weight: bold;
  font-size: 20px;
  padding: 0 16px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTkuNDE5IiBoZWlnaHQ9IjIxLjY3MiIgdmlld0JveD0iMCAwIDE5LjQxOSAyMS42NzIiPg0KICA8ZGVmcz4NCiAgICA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+DQogICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlXzg1IiBkYXRhLW5hbWU9IlJlY3RhbmdsZSA4NSIgd2lkdGg9IjIxLjY3MiIgaGVpZ2h0PSIxOS40MTkiIGZpbGw9IiNlODZjMDAiLz4NCiAgICA8L2NsaXBQYXRoPg0KICA8L2RlZnM+DQogIDxnIGlkPSJHcm91cF8zNDciIGRhdGEtbmFtZT0iR3JvdXAgMzQ3IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxOS40MTkpIHJvdGF0ZSg5MCkiPg0KICAgIDxnIGlkPSJHcm91cF8yMDgiIGRhdGEtbmFtZT0iR3JvdXAgMjA4IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBjbGlwLXBhdGg9InVybCgjY2xpcC1wYXRoKSI+DQogICAgICA8cGF0aCBpZD0iUGF0aF81MDAxIiBkYXRhLW5hbWU9IlBhdGggNTAwMSIgZD0iTTEuNjYyLDE5LjQxOSwwLDE3LjY0OSw2LjA2MSw5Ljk3OC4wNTUsMS42NjMsMS43NywwbDguNDIyLDcuMTM0YTMuMjc0LDMuMjc0LDAsMCwxLDEuNTU1LDIuNjgzLDQuMDEyLDQuMDEyLDAsMCwxLS43LDIuMDM4Wm05LjkyNCwwLTEuNjYzLTEuNzcsNi4wNjItNy42NzFMOS45NzcsMS42NjMsMTEuNjk0LDBsOC4zNjgsNy4xMzRjMS4xOC45NjYsMS42MSwxLjcxNywxLjYxLDIuNjgzYTMuNjE0LDMuNjE0LDAsMCwxLS43NTEsMi4wMzhaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIiBmaWxsPSIjZTg2YzAwIi8+DQogICAgPC9nPg0KICA8L2c+DQo8L3N2Zz4NCg==");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 15px;
}
.country__select:not(:last-child) {
  margin-bottom: 16px;
}

.highlight {
  fill: #FFFFFF !important;
}

.http-error__404 {
  background-color: #135853;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 100px 0;
}

.error-wrapper {
  background-color: white;
  height: 345px;
  width: 345px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 70px 0 40px;
  text-align: center;
}
.error-wrapper h1 {
  font-size: 87px;
  line-height: 87px;
  color: #E86C00;
  font-family: "roboto-slab";
  font-weight: 900;
  margin: 0;
}
.error-wrapper p {
  margin: 0;
  display: block;
}
.error-wrapper button {
  background-color: #8BB747;
  border-radius: 21px;
  border: none;
  color: white;
  margin-top: 25px;
  font-weight: 600;
  font-size: 20px;
  padding: 12px 15px;
  line-height: 20px;
}
.error-wrapper .error__type {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  font-family: "roboto-slab";
}
.error-wrapper .error__name {
  font-size: 30px;
  line-height: 43px;
  font-weight: 700;
  font-family: "roboto-slab";
}
.error-wrapper .error__description {
  font-size: 20px;
  line-height: 27px;
  font-weight: 500;
  font-family: "roboto-condensed";
  max-width: 250px;
}

.group-select {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  padding: 0 16px;
  flex-direction: column;
}
@media screen and (min-width: 64em) {
  .group-select {
    flex-direction: row;
  }
}
.group-select__label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  width: 185px;
  border: none;
  cursor: pointer;
  color: white;
}
.group-select__label:not(.group-select__label--active) {
  height: 32px;
}
.group-select__label:not(.group-select__label--active)::after {
  content: "»";
  font-weight: 500;
  margin-left: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  padding-bottom: 6px;
  color: white;
}
.group-select__label:not(.group-select__label--active) span {
  border-bottom: 2px solid transparent;
}
.group-select__label:not(.group-select__label--active):hover span {
  border-bottom: 2px solid white;
}
.group-select__label:not(:first-child) {
  margin-top: 32px;
}
@media screen and (min-width: 64em) {
  .group-select__label:not(:first-child) {
    margin-left: 32px;
    margin-top: 0;
  }
}
.group-select__label--disabled {
  flex-direction: column;
  color: lightgray;
}
.group-select__label--disabled:after {
  display: none;
}
.group-select__label--disabled span {
  color: lightgray;
}
.group-select__label--disabled:not(.group-select__label--active):hover {
  cursor: default;
}
.group-select__label--disabled:not(.group-select__label--active):hover span {
  border-bottom: 2px solid transparent;
}
.group-select__label--active {
  background-color: white;
  box-shadow: inset 5px 5px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 22px;
}
.group-select__label--active span {
  color: black;
}
.group-select__notice {
  position: absolute;
  top: 100%;
  text-align: center;
  line-height: 16px;
  font-size: 14px;
}
.group-select__name {
  font-size: 20px;
  font-weight: bold;
  color: white;
  line-height: 26px;
}
.group-select__input {
  opacity: 0;
  position: absolute;
}
.group-select__button {
  background: #f4b680 0% 0% no-repeat padding-box;
}
.group-select__button--active {
  background: white 0% 0% no-repeat padding-box;
  color: black;
}

.login__form-wrapper {
  background-color: white;
  height: 345px;
  width: 345px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 70px 0 40px;
}
.login__form-wrapper h1 {
  font-family: roboto-slab, serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: 92px;
}
.login__form-wrapper form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 28px;
}
.login__form-wrapper form input[type=email], .login__form-wrapper form input[type=password] {
  border: none;
}
.login__form-wrapper form input[type=email] {
  width: 250px;
}
.login__form-wrapper form label {
  font-size: 20px;
  font-family: roboto-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 18px;
}
.login__form-wrapper form button {
  background-color: #8BB747;
  border-radius: 21px;
  border: none;
  color: white;
  margin-top: 25px;
  font-weight: 600;
  font-size: 20px;
  padding: 12px 15px;
  line-height: 20px;
}
.login__form-item {
  border-bottom: 1px solid black;
}
.login__form-error {
  margin: 0;
  color: rgb(255, 89, 0);
  position: absolute;
  top: 132px;
}
.login__form-error p {
  margin: 0;
  font-size: 14px;
  text-align: center;
}
.login__form-img {
  position: absolute;
  top: -125px;
  left: 45%;
  transform: translateX(-50%);
  width: 243px;
}
.login__links {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: white;
  width: 280px;
  text-align: center;
}
.login__links a {
  color: white;
  font-weight: 400;
}

.main--statistics {
  background-color: #E86C00;
}
.main--admin-myuser-pickings {
  background-color: #135853;
}
.main--admin-myuser-edit {
  background-color: #135853;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 100px 0 0 0;
}
.main--privacyStatement {
  background-color: #135853;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 100px 0 0 0;
}
.main--login {
  background-color: #135853;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 100px 0 0 0;
}
.main--register {
  background-color: #135853;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 100px 0 0 0;
}
.main--password-request {
  background-color: #135853;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 100px 0 0 0;
}
.main--password-reset {
  background-color: #135853;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 100px 0 0 0;
}

.my-page {
  padding-top: 50px;
  padding-bottom: 100px;
}
.my-page__title {
  font-family: roboto-slab, serif;
  font-style: normal;
  color: white;
  text-align: center;
  font-weight: 400;
  margin-bottom: 32px;
  width: calc(100vw - 32px);
}
@media screen and (min-width: 40em) {
  .my-page__title {
    width: unset;
  }
}
.my-page__bottom-title {
  font-family: roboto-slab, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 31px;
  color: white;
  text-align: center;
  padding-top: 70px;
  margin-bottom: -70px;
}
@media screen and (min-width: 40em) {
  .my-page__bottom-title {
    margin-bottom: unset;
  }
}

.privacy {
  max-width: 1000px;
  margin: 0 auto;
}
.privacy * {
  color: white !important;
}

.register-user__form-wrapper h1 {
  color: white;
  font-family: roboto-slab, serif;
  font-weight: 700;
  font-style: normal;
  font-size: 31px;
  line-height: 39px;
  margin-bottom: 31px;
}
.register-user__form-wrapper p {
  color: white;
  text-align: center;
}
.register-user__form-wrapper button {
  background-color: #8BB747;
  box-shadow: none;
  color: white;
  margin-top: 16px;
  font-size: 20px;
  width: 130px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 22px;
  border: none;
  padding: 12px 22px;
}
.register-user__form-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  margin-bottom: 18px;
}
@media screen and (min-width: 64em) {
  .register-user__form-item {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
}
.register-user__form-item label {
  color: white;
  font-weight: 500;
  position: unset;
  right: 336px;
  text-align: right;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  line-height: 20px;
  white-space: nowrap;
  margin-bottom: 6px;
}
@media screen and (min-width: 64em) {
  .register-user__form-item label {
    position: absolute;
    margin-bottom: unset;
  }
}
.register-user__form-item input[type=text], .register-user__form-item input[type=password], .register-user__form-item input[type=email], .register-user__form-item select {
  background-color: white;
  width: 326px;
  height: 44px;
  border-radius: 22px;
  border: none;
  box-shadow: inset 5px 5px 6px rgba(0, 0, 0, 0.1607843137);
  padding: 0 22px;
  font-size: 20px;
  line-height: 20px;
}
.register-user__form-item input[type=checkbox] {
  height: 24px;
  width: 24px;
  margin-right: 302px;
}
.register-user__form-error {
  color: rgb(255, 89, 0);
  background-color: white;
  padding: 10px 20px;
  margin: 0 0 21px 0;
  border-radius: 22px;
  border: 1px solid rgb(255, 89, 0);
}
.register-user__form-error p {
  text-align: center;
  color: rgb(255, 89, 0);
}

.header__menu hr {
  width: 100%;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.register {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 64em) {
  .register {
    width: unset;
    margin: unset;
  }
}
.register__title {
  font-size: 31px;
  font-weight: bold;
  margin: 0 0 32px;
  color: white;
  text-align: center;
}
@media screen and (min-width: 64em) {
  .register__title {
    text-align: left;
  }
}
.register__label {
  margin-bottom: 16px;
  margin-right: 10px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 64em) {
  .register__label {
    justify-content: flex-start;
  }
}
.register__label span {
  display: inline-block;
  width: 100px;
  text-align: right;
  margin-right: 10px;
  color: white;
}
@media screen and (min-width: 64em) {
  .register__label span {
    margin-left: -110px;
  }
}
.register__input {
  width: 205px;
  height: 44px;
  border-radius: 22px;
  border: none;
  box-shadow: inset 5px 5px 6px rgba(0, 0, 0, 0.1607843137);
  padding: 0 17px 0 10px;
}
.register__input--select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOS40IDIxLjciIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDE5LjQgMjEuNyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0ibS4wMTkgMS43IDEuOC0xLjcgNy42IDYuMSA4LjMtNiAxLjcgMS43LTcuMSA4LjRjLS42LjktMS42IDEuNS0yLjcgMS42LS43IDAtMS40LS4zLTItLjdsLTcuNi05LjR6bTAgOS45IDEuOC0xLjcgNy42IDYuMSA4LjMtNiAxLjcgMS43LTcuMSA4LjRjLTEgMS4yLTEuNyAxLjYtMi43IDEuNi0uNyAwLTEuNS0uMy0yLS44bC03LjYtOS4zeiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 15px;
}
.register__input--submit {
  background-color: #8BB747;
  box-shadow: none;
  color: white;
  margin-top: 16px;
  font-size: 20px;
  width: 130px;
  font-weight: bold;
  margin-left: auto;
  margin-right: 10px;
}
@media screen and (min-width: 64em) {
  .register__input--submit {
    margin-left: 0;
  }
}

.statistics {
  position: relative;
  padding-top: 32px;
  color: white;
}

.strike {
  display: block;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

.strike > span {
  position: relative;
  display: inline-block;
}

.strike > span:before,
.strike > span:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9999px;
  height: 1px;
  background: black;
}

.strike > span:before {
  right: 100%;
  margin-right: 15px;
}

.strike > span:after {
  left: 100%;
  margin-left: 15px;
}

.toplist {
  max-height: 625px;
  max-width: 330px;
  width: 100%;
  background-color: #fcf5e9;
  background-image: url("/img/background.png");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: inset 5px 5px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 43px;
  color: black;
  padding: 32px;
  margin: 32px auto;
}
@media screen and (min-width: 64em) {
  .toplist {
    margin-top: 0;
    transform: rotate(4deg);
    right: 0;
    top: 68px;
    position: absolute;
  }
  .toplist__group--1 {
    right: -150px;
  }
}
.toplist__group--1:after {
  content: "";
  position: absolute;
  background-image: url("/img/toplist_berries.svg");
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0px;
  right: 0px;
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 64em) {
  .toplist__group--1:after {
    bottom: -70px;
    right: -70px;
    width: 170px;
    height: 190px;
  }
}
.toplist__group--2:after {
  content: "";
  position: absolute;
  background-image: url(/img/seaweed_complete.png);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 28px;
  right: -3px;
  width: 74px;
  height: 100px;
  animation: scew 10s infinite;
}
@media screen and (min-width: 64em) {
  .toplist__group--2:after {
    bottom: 0px;
    right: -110px;
    width: 170px;
    height: 190px;
  }
}
.toplist__container {
  position: relative;
  max-width: 100vw;
  padding: 0 16px;
  margin: 32px auto 0;
}
@media screen and (min-width: 64em) {
  .toplist__container {
    height: 625px;
    width: 700px;
  }
}
.toplist__list {
  padding: 0;
}
.toplist__list-item {
  display: flex;
}
.toplist__list-amount {
  font-weight: bold;
  width: 70px;
  margin-right: 10px;
  flex-shrink: 0;
}
.toplist__list-name {
  text-align: left;
}
.toplist__name, .toplist__amount {
  font-family: roboto-slab, serif;
  font-weight: 400;
  font-style: normal;
  color: #135853;
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
}
.toplist__title {
  font-size: 31px;
  font-weight: bold;
  margin: 0 0 32px;
  color: white;
  text-align: center;
}
@media screen and (min-width: 64em) {
  .toplist__title {
    text-align: left;
  }
}
.toplist__title--bottom {
  margin-bottom: 6px;
}
.toplist__line {
  width: calc(100vw - 32px);
  margin: 32px 0;
}
@media screen and (min-width: 64em) {
  .toplist__line {
    width: 300px;
    margin: 75px 0 50px -50px;
  }
}
.toplist__link {
  color: white;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  position: relative;
  display: block;
}
.toplist__link:hover {
  color: white;
  text-decoration: underline;
}
.toplist__link::after {
  content: "»";
  font-weight: 500;
  margin-left: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: white;
  position: absolute;
  bottom: -7px;
}
@media screen and (min-width: 64em) {
  .toplist__link::after {
    bottom: -10px;
  }
  .toplist__link {
    display: unset;
  }
}
.toplist__notice {
  width: 220px;
  font-size: 14px;
}

.sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0, 0, 0, 0.175);
}
@media screen and (min-width: 40em) {
  .sidebar {
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.175);
  }
}
.sidebar__dev-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
}
