/* 1. Use a more-intuitive box-sizing model */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url("https://fonts.googleapis.com/css?family=Raleway");
@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  /* 2. Remove default margin */
}
* {
  margin: 0;
  /* 3. Enable keyword animations */
}
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 5. Improve text rendering */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* 6. Improve media defaults */
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  /* 7. Inherit fonts for form controls */
}
input, button, textarea, select {
  font: inherit;
  /* 8. Avoid text overflows */
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  /* 9. Improve line wrapping */
}
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  /*
10. Create a root stacking context
*/
}
#root, #__next {
  isolation: isolate;
}
@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);


:root {
  --bg: #fff;
  --first-color: #e90715;
  --second-color: #b10f1a;
  --third-color: #b10f1a;
  --font: #000;
  --scrollbar-size: 0.375rem;
  --scrollbar-minlength: 1.5rem;
  --scrollbar-ff-width: thin;
  --scrollbar-track-color: rgba(255, 255, 255, 0.15);
  --scrollbar-color: rgba(0, 0, 0, 0.3);
  --scrollbar-color-hover: rgba(0, 0, 0, 0.4);
  --scrollbar-color-active: #000;
  --wave-height: 200px;
  --body-padding: 0;
  @media only screen and (min-width: 500px) {
    --body-padding: 3em;  }
  @media only screen and (min-width: 1500px) {
    --body-padding: 10em;  }
}
body {
  color: var(--font);
  font-family: 'Raleway', sans-serif !important;
}
html, body, #main-content {
  scroll-behavior: smooth;
  height: 100%;
}
body > #main-content {
  height: auto;
  min-height: 80vh;
}
::selection {
  /* WebKit/Blink Browsers */
  background: rgba(0, 78, 31, 0.5);
}
::-moz-selection {
  /* Gecko Browsers */
  background: rgba(0, 78, 31, 0.5);
}
a:not(.btn) {
  color: #1a1a1a !important;
}
a:not(.btn):hover {
  color: #000 !important;
}
input.invalid {
  box-shadow: 0 0 3px 3px rgba(255, 0, 0, 0.5) !important;
}
input.valid {
  box-shadow: 0 0 3px 3px rgba(0, 200, 0, 0.5) !important;
}
.input-group-append .input-group-text {
  background: #fff;
}
.btn-copy input[type=text] {
  position: absolute;
  top: -1000px;
  left: -1000px;
  height: 1px;
  width: 1px;
}
.form-control:focus {
  border-color: var(--first-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 78, 31, 0.5);
}
.custom-control-input:focus ~ .custom-control-label::before {
  border-color: #004e15 !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 78, 21, 0.5);
}
.custom-control-input:active ~ .custom-control-label::before {
  background-color: #fff;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label {
  border: 0;
  box-shadow: 0 0 0 0 transparent;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background: var(--first-color);
  border: 0;
  box-shadow: 0 0 0 0 transparent;
}
.modal-header, .modal-footer {
  border: 0;
}
table {
  border-collapse: collapse;
}
th, td {
  padding: 5px 10px;
  border: 1px solid #999;
}
th {
  background-color: #eee;
}
th[data-sort] {
  cursor: pointer;
}
tr.awesome {
  color: red;
}
.squircle {
  clip-path: url(#squircle);
}
.loading-cover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.25);
  display: grid;
  place-items: center;
  z-index: 99999;
}
.loading-cover .spinner-grow {
  scale: 2;
}
.alert {
  color: var(--font);
}
.alert a {
  color: inherit !important;
}
.alert.alert-success {
  background: rgba(125, 213, 146, 0.5) !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.alert.alert-warning {
  background: rgba(243, 231, 133, 0.5) !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.alert.alert-danger {
  background: rgba(220, 20, 60, 0.25) !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.alert.alert-discord {
  background: rgba(94, 106, 240, 0.5) !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.btn-pkmn {
  background: #e90715 !important;
  width: max-content;
  color: #000 !important;
  transition: all 0.5s ease-in-out !important;
  background: linear-gradient(to bottom, #d1f8a7, #a4f3dd);
}
.btn-pkmn:hover {
  filter: brightness(115%);
  scale: 1.05;
  box-shadow: 0 0 5px var(--first-color);
}
.btn-pkmn[disabled] {
  pointer-events: none;
  opacity: 0.65;
}
.btn-facebook {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #1877f2 !important;
  color: #fff !important;
}
.btn-facebook span {
  display: inline-block;
  width: 100%;
}
.btn-google {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #e8322b !important;
  color: #fff !important;
}
.btn-google span {
  display: inline-block;
  width: 100%;
}
.btn-discord {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #5e6af0 !important;
  color: #fff !important;
}
.btn-discord span {
  display: inline-block;
  width: 100%;
}
.invisilink {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.05em;
  text-align: center;
  background: linear-gradient(to right, var(--first-color), var(--second-color));
  color: #fff !important;
  font-weight: bolder;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 999;
  transition: all 0.2s ease-in-out;
  translate: 0 -100px;
}
.invisilink:focus {
  translate: 0;
}
.bg-mystery {
  background: #7851a9;
}
.hr-text {
  position: relative;
  margin: 3em 0;
  border-top: 2px solid var(--second-color);
}
.hr-text span {
  display: grid;
  place-items: center;
  background: var(--second-color);
  color: #fff;
  padding: 0.25em;
  margin: 0 auto;
  margin-top: -1.2em;
  width: max-content;
  border: 2px solid #fff;
  border-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.back-btn {
  position: fixed;
  top: 1em;
  left: 1em;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  z-index: 99999;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 1.1em;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(1rem);
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  margin: 0 1em;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.pagination .item {
  cursor: pointer;
  padding: 1em;
  user-select: none;
  transition: all 0.2s ease-in-out;
}
.pagination .item:not(.pagenum):hover {
  scale: 1.1;
}
.pagination .item.disabled {
  opacity: 0.35;
  pointer-events: none;
}
.pagination .pagenum {
  display: flex;
  align-items: center;
  font-weight: bolder;
  user-select: none;
  white-space: nowrap;
}
.pagination .pagenum input {
  display: none;
  max-width: 50px;
  margin-right: 0.5em;
}
.pagination .item:not(.pagenum) span {
  display: none;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .pagination .item:not(.pagenum) span {
    display: inline;
  }
}
.pagination .pageword {
  display: none;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .pagination .pageword {
    display: inline;
  }
}
.toast {
  position: absolute;
  bottom: 1em;
  left: 50%;
  text-align: center;
  translate: -50%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(1rem);
  color: #fff;
  white-space: nowrap;
  border-radius: 5px;
  padding: 0.5em 1em;
  box-shadow: 0 2px 15px #000;
  cursor: pointer;
  user-select: none;
  z-index: 99999;
  animation: fadeUp 0.5s ease-in-out;
}
.radial-progress {
  --w: 100px;
  position: relative;
  width: var(--w);
  aspect-ratio: 1;
}
.radial-progress .inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #0f4f31;
  font-weight: bolder;
}
.radial-progress .radial {
  --p: 0;
  --size: 100%;
  --thickness: -1px;
  --track: rgba(15, 79, 49, 0.2);
  --bar: #198754;
  position: absolute;
  inset: 0;
  margin: auto;
  width: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--bar) 0deg calc(var(--p) * 3.6deg), var(--track) calc(var(--p) * 3.6deg) 360deg);
  -webkit-mask: radial-gradient(circle, transparent 0 calc(50% - var(--thickness)), #000 calc(50% - var(--thickness) + 1px), #000 100%);
  mask: radial-gradient(circle, transparent 0 calc(50% - var(--thickness)), #000 calc(50% - var(--thickness) + 1px), #000 100%);
}
.anim-fadeup {
  opacity: 0;
}
input[type="range"] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: #ccc;
  border-radius: 999px;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #198754;
  border: 0;
  border-radius: 50%;
  margin-top: -6px;
}
input[type="range"]::-moz-range-track {
  height: 6px;
  background: #ccc;
  border-radius: 999px;
}
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #198754;
  border: 0;
  border-radius: 50%;
}
input[type="range"]::-moz-range-progress {
  height: 6px;
  background: #198754;
  border-radius: 999px;
}
.form-check-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.1em;
  height: 1.1em;
  border-radius: 0.25rem;
  border: 2px solid #ccc;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  margin-right: 0.5em !important;
}
.form-check-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: currentColor !important;
}
.form-check-input:checked {
  background-color: currentColor !important;
  border-color: currentColor !important;
}
.form-check-input:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.485 1.929 6 9.414 2.515 5.929.757 7.686 6 12.929l9.243-9.243z'/%3E%3C/svg%3E") center/contain no-repeat;
  background: white;
}
.form-switch {
  /* ----------------------------------------------
    Checkbox colour variations
---------------------------------------------- */
}
.form-switch .form-check-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23333333'/%3e%3c/svg%3e") !important;
  border: 1px solid rgba(0, 0, 0, 0.5) !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
  background-size: contain !important;
}
.form-switch .form-check-input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e") !important;
  background-position: right center !important;
  background-color: #198a56 !important;
  border-color: #198a56 !important;
}
[color="primary"] .form-check-input {
  color: var(--bs-primary);
}
[color="secondary"] .form-check-input {
  color: var(--bs-secondary);
}
[color="success"] .form-check-input {
  color: var(--bs-success);
}
[color="danger"] .form-check-input {
  color: var(--bs-danger);
}
[color="warning"] .form-check-input {
  color: var(--bs-warning);
}
[color="info"] .form-check-input {
  color: var(--bs-info);
}
[color="dark"] .form-check-input {
  color: var(--bs-dark);
}
[color="light"] .form-check-input {
  color: var(--bs-light);
  /* ----------------------------------------------
    Hover/Active tints (each colour theme)
---------------------------------------------- */
}
[color="primary"] .dropdown-item:hover, [color="primary"] .dropdown-item:focus {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="primary"] .dropdown-item:active, [color="primary"] .dropdown-item.active {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="secondary"] .dropdown-item:hover, [color="secondary"] .dropdown-item:focus {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="secondary"] .dropdown-item:active, [color="secondary"] .dropdown-item.active {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="success"] .dropdown-item:hover, [color="success"] .dropdown-item:focus {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="success"] .dropdown-item:active, [color="success"] .dropdown-item.active {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="danger"] .dropdown-item:hover, [color="danger"] .dropdown-item:focus {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="danger"] .dropdown-item:active, [color="danger"] .dropdown-item.active {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="warning"] .dropdown-item:hover, [color="warning"] .dropdown-item:focus {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="warning"] .dropdown-item:active, [color="warning"] .dropdown-item.active {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="info"] .dropdown-item:hover, [color="info"] .dropdown-item:focus {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="info"] .dropdown-item:active, [color="info"] .dropdown-item.active {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="dark"] .dropdown-item:hover, [color="dark"] .dropdown-item:focus {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="dark"] .dropdown-item:active, [color="dark"] .dropdown-item.active {
  background-color: rgba(0, 0, 0, ) !important;
}
[color="light"] .dropdown-item:hover, [color="light"] .dropdown-item:focus {
  background-color: rgba(0, 1, 0, ) !important;
}
[color="light"] .dropdown-item:active, [color="light"] .dropdown-item.active {
  background-color: rgba(0, 1, 0, ) !important;
}
.cookie-container {
  position: sticky;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.cookie-container div:first-of-type {
  width: 100%;
}
.cookie-container div:last-of-type {
  padding-left: 1.2em;
}
.header_background {
  position: fixed;
  mask-repeat: repeat-x;
  mask-image: url(https://pokemarkr.com/images/wave.png);
  mask-position: bottom left;
  mask-size: 80%;
  width: 100%;
  height: 10vw;
  min-height: 100px;
  z-index: 998;
  pointer-events: none;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .header_background {
    height: 8vw;
  }
}
#app {
  --main-col: transparent;
  --main-col2: #a4f3dd;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  min-width: 300px;
  color: var(--font);
  background: linear-gradient(to bottom, var(--main-col), var(--main-col2) 15%), var(--bg);
  background-size: 100% 100%, 150%;
  background-repeat: no-repeat !important;
  background-position: center;
}
@media only screen and (min-width: 1500px) {
  #app {
    background: linear-gradient(to bottom, var(--main-col), var(--main-col2) 30%), var(--bg);
    background-size: 100% 100%, 100%;
  }
}
#app .headernew {
  pointer-events: none;
  position: fixed;
  display: none;
  width: 100dvw;
  justify-content: center;
  backdrop-filter: blur(0.5em);
  z-index: 2;
  padding: 1em 0 2em 0;
  mask: linear-gradient(to bottom, #000 50%, transparent);
  height: 100px;
}
@media only screen and (min-width: 1500px) {
  #app .headernew {
    top: 0;
    display: flex;
  }
}
@media only screen and (min-width: 1500px) {
  #app .headernew {
    height: 170px;
    padding: 1em 0 4em 0;
    mask: linear-gradient(to bottom, #000 50%, transparent);
  }
}
#app .headernew:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mask: linear-gradient(to bottom, #000, transparent);
}
#app .body {
  flex: 1;
  height: 100vh;
  min-width: 300px;
  padding: var(--body-padding);
  padding-top: 5em;
  padding-bottom: 0;
  overflow: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media only screen and (min-width: 1500px) {
  #app .body {
    padding-top: 8em;
  }
}
.main-nav {
  user-select: none;
  position: fixed;
  top: 0;
  left: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 999;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0.25em;
  padding: 0 1em;
  width: 100dvw;
  height: 80px;
  background: rgba(23, 144, 83, 0.7);
  backdrop-filter: blur(0.1rem);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
@media only screen and (min-width: 1500px) {
  .main-nav {
    top: 3em;
  }
}
@media only screen and (min-width: 1500px) {
  .main-nav {
    gap: 0.5em;
    max-width: max-content;
    height: 58px;
    padding: 0 5px;
    outline: 3px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    backdrop-filter: blur(0.25rem);
  }
}
@media only screen and (min-width: 1500px) {
  .main-nav {
    scale: 1.1;
  }
}
.main-nav .logo {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 110px;
  width: 110px;
  translate: 0 15%;
  min-width: 80px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .5));
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 1500px) {
  .main-nav .logo {
    height: 150px;
    width: 150px;
    translate: 0 0;
  }
}
.main-nav .logo:hover {
  scale: 1.05;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .5)) brightness(110%);
}
.main-nav .sep {
  color: rgba(255, 255, 255, .5);
}
.main-nav .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.25em;
  color: #fff !important;
  text-decoration: none;
  padding: 0.5em;
  font-size: 0.9em;
  text-shadow: 0 2px 5px #000;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media only screen and (min-width: 1500px) {
  .main-nav .item {
    flex-direction: row;
    gap: 0.5em;
  }
}
@media only screen and (min-width: 1500px) {
  .main-nav .item {
    font-size: 1.23em;
    border-radius: 50px;
  }
}
.main-nav .item.av-item {
  anchor-name: --avitem;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1500px) {
  .main-nav .item.av-item {
    flex-direction: row;
  }
}
.main-nav .item img:not(.avatar) {
  max-width: 25px;
  filter: drop-shadow(0 2px 5px #000);
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 1500px) {
  .main-nav .item img:not(.avatar) {
    max-width: 20px;
  }
}
.main-nav .item .avatar {
  width: 26px;
  height: 26px;
  outline: 2px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 1500px) {
  .main-nav .item .avatar {
    scale: 1.5;
    margin-right: 10px;
    translate: 10px;
  }
}
.main-nav .item:hover {
  color: #fff !important;
  scale: 1.05;
  background: rgba(255, 255, 255, .15);
}
.main-nav .item:hover img:not(.avatar) {
  scale: 1.2;
}
.main-nav .item:hover .avatar {
  scale: 1.55;
}
.profile-dropdown {
  display: none;
  flex-direction: column;
  align-items: start;
  position: absolute;
  position-anchor: --avitem;
  top: anchor(bottom);
  right: anchor(right);
  background: #198754;
  width: max-content;
  padding: 0.25em;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.profile-dropdown .item {
  text-align: left;
  width: 100%;
  padding: 0.25em;
  font-size: 1em;
  text-decoration: none;
}
.disclaimer {
  margin: 3em 2em;
  font-size: 0.9em;
}
.login {
  margin: 0 auto;
  margin-top: 2em;
  width: calc(100dvw - 2em);
  max-width: 700px;
  padding: 1em;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid #fff;
  backdrop-filter: blur(1rem);
  border-radius: 1em;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  text-align: center;
  transition: all 0.25s ease-in-out;
}
@media only screen and (min-width: 1500px) {
  .login {
    width: 100dvw;
    max-width: 40dvw;
    padding: 2em;
  }
}
.login .login-signup {
  width: 100%;
}
.login .form-floating {
  margin: 0 auto;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .login .form-floating {
    width: 60%;
  }
}
.login .form-floating label {
  font-size: 0.8em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .login .form-floating label {
    font-size: 1em;
  }
}
.login .google-login {
  display: flex;
  align-items: center;
  width: max-content;
  margin: 0 auto;
  padding: 0.5em 1em;
  border: 0;
  border-radius: 0.5em;
  background: #131314;
  color: #fff !important;
  font-size: 1.2em;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.login .google-login * {
  transition: all 0.25s ease-in-out;
}
.login .google-login .fa {
  margin-right: 0.5em;
  font-size: 1.25em;
}
.login .google-login:hover {
  filter: brightness(1.5);
  color: #fff !important;
}
.login .google-login:hover span {
  scale: 1.02;
}
.welcome {
  margin: 0 auto;
  margin-top: 2em;
  width: calc(100dvw - 2em);
  max-width: 700px;
  padding: 1em;
  text-align: center;
  z-index: 1 !important;
}
@media only screen and (min-width: 1500px) {
  .welcome {
    width: 100dvw;
    max-width: 40dvw;
    padding: 2em;
  }
}
.welcome .username {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(1rem);
  border: 2px solid #fff;
  border-radius: 1em;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  text-align: center;
  font-size: 2em;
  width: max-content;
  margin: 0 auto;
  padding: 0.25em 0.5em;
  z-index: 1;
  transition: all 0.25s ease-in-out;
}
.welcome .avatar-container {
  position: relative;
  margin: 0 auto;
  height: 150px;
  aspect-ratio: 1;
}
.welcome .avatar-container .avatar {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: var(--url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  outline: 5px solid rgba(255, 255, 255, .7);
  border-radius: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: 100%;
  width: 100%;
}
.welcome .avatar-container .pokeball {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  scale: 3;
  z-index: 1;
  animation: pokeballDropIn 0.5s ease-in-out;
  filter: glow(0 0 5px #fff) drop-shadow(0 2px 5px #000);
}
.welcome .avatar-container .fx {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -30%;
  filter: saturate(0) brightness(200%);
  z-index: 2 !important;
}
.welcome .avatar-container .fx.pokeball_grow {
  animation: pokeball_grow 0.3s ease-in-out;
}
.welcome .welcome-go {
  background: #198a56;
  backdrop-filter: blur(1rem);
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 1em;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  text-align: center;
  color: #fff !important;
  font-size: 1.2em;
  text-shadow: 0 2px 5px #000;
  text-decoration: none;
  width: max-content;
  margin: 0 auto;
  padding: 0.5em;
  transition: all 0.25s ease-in-out;
}
.welcome .welcome-go:hover {
  filter: brightness(111%);
  scale: 1.2 !important;
  color: #fff !important;
}
.welcome .welcome-go:active {
  translate: 5px;
  filter: brightness(80%);
  scale: 0.9 !important;
}
.page-main #contents {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.page-main #contents b {
  font-size: 1.2em;
}
.page-main #contents .cont_link {
  cursor: pointer;
  text-decoration: underline !important;
}
.spinner-grow.text-danger, .spinner-grow.text-success {
  background-image: url(https://pokemarkr.com/images/assets/icons/standard.png);
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
}
.divider {
  position: relative;
  width: 100%;
  border-top: 2px solid #999;
  margin: 1em 0.5em;
  user-select: none;
}
.divider span {
  display: block;
  padding: 0.5em 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: bold;
  translate: -50% -50%;
  background: #fff;
}
.divider2 {
  display: flex;
  align-items: center;
  margin: 1em 0;
  width: 100%;
}
.divider2 * {
  flex: 1;
}
.divider2 span {
  display: block;
  padding: 0 1em;
  width: max-content;
  font-weight: bolder;
  font-size: 0.9rem;
  text-align: center;
  text-wrap: nowrap;
}
dialog::backdrop {
  background-image: linear-gradient(to bottom, #08a88d, #000);
  opacity: 0.75;
  transition: all 0.3s ease-in-out;
}
.body:has(dialog[open]) {
  filter: blur(0.15rem);
}
.not-your-dex {
  margin: 0 auto;
  margin-top: 2.5em;
  padding: 1em 5em !important;
  width: max-content;
  text-align: center;
}
.not-your-dex img {
  margin: 0 auto;
  filter: invert(1);
  width: 15%;
}
.not-your-dex .btn {
  scale: 1.1;
}
.index {
  position: relative;
  background: var(--bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mask-image: url(https://pokemarkr.com/images/wave.png);
  mask-repeat: repeat-x;
  mask-position: center;
  mask-size: 20% 100%;
  padding: 20dvw;
  padding-bottom: 2.5em;
  margin: 0 -10em;
  margin-top: -8em;
  margin-bottom: -4em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .index {
    padding: 5em;
    margin-bottom: -5em;
  }
}
.index:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(25, 135, 84, .5), #198754);
  z-index: -1;
}
.index .text {
  text-align: center;
  margin: 0 25dvw;
  padding-top: 5em;
  z-index: 1 !important;
}
.index .text img {
  max-width: 100%;
}
.index .text img.trackyourprogress {
  margin-top: -1em;
}
#award-container {
  position: fixed;
  top: 0;
  right: 0;
  height: max-content;
  width: 100%;
  min-width: 30vw;
  max-width: 30vw;
  padding: 0.25em;
  z-index: 9999;
}
#award-container .award {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  margin-bottom: 0.25em;
  user-select: none;
  animation: bounceIn 1s;
}
#award-container .award .icon {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 25%;
  height: 100%;
}
#award-container .award .text {
  color: #fff;
}
#award-container .award .text b {
  display: block;
  margin-bottom: 0.5em;
}
#award-container .award .close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.25em 0.35em;
  font-weight: bolder;
  transition: all 0.5s ease-in-out;
}
#award-container .award .close:after {
  content: "X";
}
#award-container .award .close:hover {
  color: #fff;
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 5dvw;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .news-header {
    margin: 0 2dvw;
  }
}
.news-header a {
  transition: all 0.2s ease-in-out;
}
.news-header a img {
  margin-bottom: -0.5em;
  width: 135px;
}
@media only screen and (min-width: 500px) {
  .news-header a img {
    width: 150px;
    margin-bottom: -0.25em;
  }
}
@media only screen and (min-width: 1500px) {
  .news-header a img {
    width: 200px;
    margin-bottom: -0.25em;
  }
}
.news-header a:hover {
  scale: 1.15;
}
.all-articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1em;
  row-gap: 1.5em;
  margin: 0 5dvw;
  margin-bottom: 2em !important;
}
@media only screen and (min-width: 500px) {
  .all-articles {
    margin: 0 -4dvw;
  }
}
@media only screen and (min-width: 1500px) {
  .all-articles {
    margin: 0;
  }
}
.all-articles .item {
  cursor: pointer;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 0.9em;
  aspect-ratio: 16/11;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
  outline: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  opacity: 0;
  user-select: none;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 500px) {
  .all-articles .item {
    min-width: calc(20dvw + 200px);
    max-width: 28%;
    max-height: 330px;
    font-size: 0.8em;
    aspect-ratio: 1/1.2;
  }
}
@media only screen and (min-width: 1500px) {
  .all-articles .item {
    min-width: 500px;
    max-height: 400px;
    aspect-ratio: 1;
    font-size: 1.15em;
  }
}
.all-articles .item.fade-in {
  animation: fadeUp 1s ease-in-out;
}
.all-articles .item:hover {
  background-size: 110%;
  filter: brightness(110%);
  scale: 1.05;
}
@media only screen and (min-width: 500px) {
  .all-articles .item:hover {
    background-size: cover;
  }
}
.all-articles .item:hover .content .inner {
  scale: 1.025;
  translate: 0 -10px;
}
.all-articles .item .content {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 2em;
  width: 100%;
  height: 100%;
  color: #fff;
  background: linear-gradient(to bottom, transparent, #000);
  transition: all 0.2s ease-in-out;
}
.all-articles .item .content .inner {
  transition: all 0.2s ease-in-out;
}
.all-articles .item .content .inner .badge {
  width: max-content;
  background: var(--second-color);
  border-radius: 10px;
  box-shadow: 0 2px 15px #000;
  letter-spacing: 2px;
  text-shadow: 0 0 5px #000, 0 2px 15px #000;
  margin-bottom: 1em;
}
.all-articles .item .content .inner b {
  display: block;
  font-size: 1.2em;
}
.all-articles.smaller .item {
  display: block;
  aspect-ratio: 16/9;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .all-articles.smaller .item {
    display: inline;
    width: 100px;
    aspect-ratio: 16/11;
  }
}
@media only screen and (min-width: 1500px) {
  .all-articles.smaller .item {
    font-size: 1em;
  }
}
.all-articles.smaller .item:nth-of-type(1n+4) {
  display: none;
}
.anim-fadeup {
  opacity: 0;
}
.article-view .article-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100dvw;
  height: auto;
  padding: 12em 0 6em 0;
  margin: 0 calc(var(--body-padding) * -1);
  margin-top: -5em;
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100' preserveAspectRatio='none'><path d='M0,0 H1200 V90 Q1050,95 900,90 Q750,85 600,90 Q450,95 300,90 Q150,85 0,90 Z' fill='black'/></svg>");
  mask-size: 500% 100%;
  mask-position: bottom 200px;
  mask-repeat: no-repeat;
  margin-bottom: -3em;
  pointer-events: none;
}
@media only screen and (min-width: 1500px) {
  .article-view .article-hero {
    padding: 9em 0 6em 0;
    margin-top: -10em;
  }
}
@media only screen and (min-width: 1500px) {
  .article-view .article-hero {
    mask-size: 120% 100%;
    mask-position: bottom;
  }
}
@media only screen and (min-width: 1500px) {
  .article-view .article-hero {
    margin-bottom: 0;
  }
}
.article-view .article-hero .hero {
  position: absolute;
  height: 100%;
  width: 100%;
  scale: 1.1;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(1rem);
  z-index: -1;
}
.article-view .article-hero .content {
  margin: 0 1em;
  text-align: center;
  color: #fff;
}
.article-view .article-hero .content .icon {
  max-height: 300px;
  border-radius: 10px;
  margin-bottom: 1em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .article-view .article-hero .content .icon {
    max-height: 350px;
  }
}
.article-view .article-share-btn {
  position: relative;
  z-index: 1;
  cursor: pointer;
  margin-top: -3em;
  margin-right: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  width: 35px;
  height: 35px;
  font-size: 1.2em;
  color: #fff;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.5);
  background: linear-gradient(40deg, var(--first-color), var(--second-color));
  padding: 0.5em;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .article-view .article-share-btn {
    margin-top: -6em;
  }
}
.article-view .article-share-btn:hover {
  scale: 1.1;
  filter: brightness(120%);
}
.article-view .split {
  display: block;
  margin: 0 5dvw;
}
@media only screen and (min-width: 1500px) {
  .article-view .split {
    display: flex;
    gap: 1em;
  }
}
@media only screen and (min-width: 500px) {
  .article-view .split {
    margin: 0;
  }
}
@media only screen and (min-width: 1500px) {
  .article-view .split {
    margin: 0;
  }
}
.article-view .split .article-body {
  opacity: 0;
  font-size: 1.1em;
  width: 100%;
}
.article-view .split .article-body blockquote {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1em;
  margin: 1em 0;
}
.article-view .split .article-body .thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  width: 100%;
}
.article-view .split .article-body .thumbs a {
  text-align: center;
}
.article-view .split .article-body .thumbs img {
  pointer-events: none;
  max-width: 100%;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .article-view .split .article-body .thumbs img {
    max-width: 45%;
  }
}
.article-view .split .article-body .in-article-preview {
  color: #fff !important;
}
.article-view .split .article-body .in-article-preview.active {
  cursor: pointer;
  scale: 1;
  padding: 0.25em 0.5em;
  border-radius: 50px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  background: #111214;
}
.article-view .split .article-body .in-article-preview:hover {
  scale: 1.01;
}
.article-view .split .article-body .tiktok-embed {
  margin: 0 auto;
}
.article-view .split .article-body .twitter-embed {
  margin-top: 1em;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: max-content;
}
.article-view .split .article-body .twitter-embed .twitter-tweet {
  display: none;
  margin: 0 auto;
}
.article-view .split .article-related {
  position: sticky;
  top: 10px;
  flex: 1;
  height: max-content;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .article-view .split .article-related {
    min-width: 25%;
    max-width: 25%;
    padding-left: 2em;
    border-left: 2px solid rgba(0, 0, 0, 0.25);
  }
}
.article-view .split .article-related .similar-articles {
  display: none;
  flex-direction: column;
  gap: 0.5em;
}
@media only screen and (min-width: 1500px) {
  .article-view .split .article-related .similar-articles {
    display: flex;
  }
}
.article-view .split .article-related .similar-articles .item {
  position: relative;
  height: 170px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: all 0.2s ease-in-out;
}
.article-view .split .article-related .similar-articles .item .inner {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 10%, #000);
  color: #fff;
  text-shadow: 0 2px 5px #000, 0 2px 5px #000, 0 2px 15px #000;
  padding: 0.5em 1em;
  width: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.article-view .split .article-related .similar-articles .item .inner small {
  opacity: 0.8;
  font-size: 0.8em;
}
.article-view .split .article-related .similar-articles .item:hover {
  scale: 1.1;
}
.article-view .article-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
}
.article-view .article-tags a {
  background: #fff;
  border: 4px solid #198754;
  border-radius: 20px;
  padding: 0.5em;
  font-weight: bolder;
  text-decoration: none;
  color: var(--font);
  transition: all 0.5s ease-in-out;
}
.article-view .article-tags a:hover {
  scale: 1.05;
  filter: brightness(120%);
}
.article-view .references {
  text-align: center;
}
.bmac-outer {
  display: inline-block;
  cursor: pointer;
  position: relative;
  background: linear-gradient(to bottom, #d52a36, #fff, #1da9d3) !important;
  color: #333 !important;
  font-weight: bolder;
  font-size: 1em;
  text-decoration: none;
  padding: 0.5em;
  padding-left: 3em;
  border-radius: 15px;
  box-shadow: 0 5px 15px #000;
  transition: all 0.2s ease-in-out;
}
.bmac-outer img {
  position: absolute;
  top: -60%;
  left: -10%;
  width: 90px !important;
  transition: all 0.2s ease-in-out;
  filter: drop-shadow(0 2px 15px #333);
}
.bmac-outer:hover {
  filter: brightness(115%);
  scale: 1.05;
}
.bmac-outer:hover img {
  scale: 1.1;
}
.article-info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: max-content;
  margin: 0 auto;
}
.article-info a {
  text-decoration: none;
}
.article-info .written-by {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5em;
  padding-right: 1em;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.article-info .written-by img {
  width: 15dvw;
  max-width: 65px;
  min-width: 50px;
  border-radius: 100%;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
  margin-right: 1em;
}
.article-share {
  display: none;
  margin-top: -3em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .article-share {
    margin-top: -2em;
  }
}
.article-share .article-socials {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.article-share .article-socials a {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  width: 50px;
  aspect-ratio: 1/1;
  color: #fff !important;
  font-size: 1.5em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  background: #555;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.article-share .article-socials a:hover {
  scale: 1.1;
  filter: brightness(130%);
}
.article-share .article-socials a.share-fb {
  background: #4267b2;
}
.article-share .article-socials a.share-x {
  background: #000;
}
.article-share .article-socials a.share-redd {
  background: #ff4500;
}
.article-share .article-socials a.share-whatsapp {
  background: #00e676;
}
.article-share .article-socials a.share-messenger {
  background: #009afe;
}
.article-next-prev {
  display: flex;
  justify-content: space-around;
}
.article-next-prev .sep {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 0.5em;
}
.article-next-prev .item {
  position: relative;
  cursor: pointer;
  display: flex;
  flex: 1;
  gap: 1em;
  transition: all 0.2s ease-in-out;
  padding: 1em;
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .article-next-prev .item {
    max-width: 25%;
  }
}
.article-next-prev .item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), #000);
  z-index: 1;
}
.article-next-prev .item .txt {
  z-index: 2;
}
.article-next-prev .item.prev {
  justify-content: flex-end;
}
.article-next-prev .item.next:hover {
  translate: -5px;
}
.article-next-prev .item.next:hover .fa {
  translate: -10px;
}
.article-next-prev .item.prev:hover {
  translate: 5px;
}
.article-next-prev .item.prev:hover .fa {
  translate: 10px;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1em;
  row-gap: 1em;
}
.socials .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  line-height: 2em;
  transition: all 0.2s ease-in-out;
}
.socials .item:hover .fab {
  scale: 1.15;
}
.socials .item .fab {
  display: grid;
  place-items: center;
  background: #aaa;
  color: #fff;
  font-size: 2em;
  text-decoration: 0 0 15px #000;
  max-width: 70px;
  padding: 0.5em;
  margin: 0 auto;
  aspect-ratio: 1;
  transition: all 0.2s ease-in-out;
}
.socials .item.twitter .fab {
  background: #000;
}
.socials .item.youtube .fab {
  background: red;
}
.socials .item.facebook .fab {
  background: #3b5997;
}
.socials .item.tiktok .fab {
  background: linear-gradient(to right, #76f8f4, #000 10%, #000 50%, #000 90%, #fe2c55);
}
.socials .item.discord .fab {
  background: #5865f2;
}
.socials .item.youtube .fab {
  background: red;
}
.socials .item.instagram .fab {
  background: linear-gradient(to right, #ee9e2e, #e8474a, #8340c6);
}
.terms-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  font-size: 0.9em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .terms-links {
    justify-content: space-around;
    flex-direction: row;
    gap: 0.5em;
  }
}
.fr-element.fr-view {
  margin: 0 1em;
  font-size: 1.1em;
}
.fr-element.fr-view blockquote {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1em;
  margin: 1em 0;
  color: #000;
}
.fr-element.fr-view .thumbs {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .fr-element.fr-view .thumbs {
    justify-content: center;
    flex-direction: row;
  }
}
.fr-element.fr-view .thumbs a {
  text-align: center;
}
.fr-element.fr-view .thumbs img {
  pointer-events: none;
  max-width: 100%;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .fr-element.fr-view .thumbs img {
    max-width: 50%;
  }
}
.fr-element.fr-view .tiktok-embed {
  margin: 0 auto;
}
.fr-element.fr-view .twitter-embed {
  margin-top: 1em;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: max-content;
}
.fr-element.fr-view .twitter-embed .twitter-tweet {
  display: none;
  margin: 0 auto;
}
.jumbo {
  transition: all 0.2s ease-in-out;
}
.jumbo:hover {
  scale: 1.1;
  box-shadow: 0 0 15px 15px var(--first-color);
}
.emojis {
  display: flex;
  justify-content: space-around;
}
.emojis .item {
  display: flex;
  flex-direction: column;
  user-select: none;
  cursor: pointer;
  font-size: 3.5em;
  transition: 0.2s ease-in-out;
}
.emojis .item:hover {
  scale: 1.2;
}
.emojis .item:active {
  scale: 1.1;
}
.emojis .item span {
  display: block;
  margin-top: -0.5em;
  font-size: 0.5em;
}
@keyframes growText {
  from {
    font-size: 0;
  }
  to {
    font-size: 0.5em;
  }
}
dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  overflow: initial;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(0.5rem);
  border: #198a56 solid 5px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  animation: bounceIn 0.5s ease;
  height: max-content;
  width: max-content;
  min-width: 90dvw !important;
  z-index: 9999;
  border: rgba(25, 135, 84, 0.75) solid 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
@media only screen and (min-width: 1500px) {
  dialog {
    width: initial;
    min-width: 30dvw !important;
  }
}
dialog:not([open]) {
  display: none !important;
}
dialog:focus {
  outline: none;
}
dialog .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -0.8em;
  margin-bottom: 0.2em;
  padding: 0.5em;
  padding-bottom: 0;
  background: #198a56;
  color: #fff;
  border-radius: 7.5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
dialog .heading .close {
  margin-top: -0.3em;
}
dialog.d-regular .text, dialog.d-warning .text, dialog.d-danger .text {
  font-size: 1.1em;
  margin-top: 1em;
}
dialog.d-regular .btn, dialog.d-warning .btn, dialog.d-danger .btn {
  font-size: 1.15em;
}
dialog.d-warning {
  border: #daa520 solid 5px;
}
dialog.d-warning .heading {
  background: #daa520;
  color: #000;
}
dialog.d-danger {
  border: #dc3545 solid 5px;
}
dialog.d-danger .heading {
  background: #dc3545;
  color: #fff;
  text-shadow: 0 0 5px #000;
}
#checklist_settings {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: initial;
  min-width: 90dvw !important;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #checklist_settings {
    min-width: 40dvw !important;
  }
}
#checklist_settings .heading {
  user-select: none;
}
#checklist_settings .heading .icon {
  margin: -0.5em -0.25em;
  margin-right: 1em;
  translate: 0 -0.3em;
  background: #fff;
  width: 40px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
#checklist_settings .section-title {
  display: flex;
  align-items: center;
  width: 100% !important;
  margin-top: 1em;
}
#checklist_settings .section-title hr {
  flex: 1;
}
#checklist_settings .section-title span {
  display: block;
  padding: 0 1em;
  font-weight: bolder;
  white-space: nowrap;
}
#checklist_settings .dialog_inner {
  height: max-content;
  overflow: auto;
  margin: -1em;
  margin-top: 0;
  padding: 1em;
  text-align: center;
}
#checklist_settings .dialog_inner .dex-settings {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #checklist_settings .dialog_inner .dex-settings {
    flex-direction: row;
  }
}
#checklist_settings .dialog_inner .dex-settings .btn-group {
  flex: 1;
}
#checklist_settings .dialog_inner .dex-settings .btn-group .btn {
  flex: 1;
}
#checklist_settings .dialog_inner .btn {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 0.5em;
}
#checklist_settings .dialog_inner .btn img {
  width: 20px;
  height: 20px;
}
#checklist_settings .dialog_inner .btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.5em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #checklist_settings .dialog_inner .btns {
    flex-direction: row;
  }
}
#checklist_settings .dialog_inner .btns hr {
  width: 100%;
}
#checklist_settings .dialog_inner .btns .has-mt {
  flex: 0 0 calc(50% - 0.25em);
  background: #212529;
  color: #fff;
}
#checklist_settings .dialog_inner .btns .has-mt:hover {
  filter: brightness(90%);
}
#checklist_settings .dialog_inner .btns .has-mt[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
#checklist_settings .dialog_inner .btns #gender-toggle {
  color: #fff;
}
#checklist_settings .dialog_inner .btn-group {
  display: flex;
  justify-content: center;
}
#checklist_settings .dialog_inner .btn-group .btn {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #checklist_settings .dialog_inner .btn-group .btn {
    flex: 0 0 25%;
  }
}
#checklist_settings .dialog_inner .btn-group .btn img {
  scale: 1.25;
}
#checklist_settings .dialog_inner .btn-group .btn.selected {
  background: #1a9f5c;
  color: #000;
}
#checklist_settings .dialog_inner .btn-group .btn.selected img {
  filter: invert(1);
}
#checklist_settings .dialog_inner .btns-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5em;
}
#checklist_settings .dialog_inner .btns-bottom span {
  display: none;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #checklist_settings .dialog_inner .btns-bottom span {
    display: block;
  }
}
#checklist_settings .dialog_inner .btns-bottom .btn {
  display: flex;
  justify-content: center;
  min-width: 20%;
  width: 100%;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #checklist_settings .dialog_inner .btns-bottom .btn {
    width: initial;
  }
}
#checklist_settings .dialog_inner .btns-bottom .btn.btn-warning, #checklist_settings .dialog_inner .btns-bottom .btn.btn-danger, #checklist_settings .dialog_inner .btns-bottom .btn.btn-change-dex, #checklist_settings .dialog_inner .btns-bottom .btn.btn-copy-dex {
  min-width: auto;
  max-width: calc(50% - 0.5em);
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #checklist_settings .dialog_inner .btns-bottom .btn.btn-warning, #checklist_settings .dialog_inner .btns-bottom .btn.btn-danger, #checklist_settings .dialog_inner .btns-bottom .btn.btn-change-dex, #checklist_settings .dialog_inner .btns-bottom .btn.btn-copy-dex {
    padding: 0 1em;
  }
}
#checklist_settings .dialog_inner .btns-bottom .btn.btn-warning {
  background: #d39f1f;
}
#checklist_settings .dialog_inner multi-select {
  width: 100%;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #checklist_settings .dialog_inner multi-select {
    width: 25%;
  }
}
#checklist_settings .dialog_inner multi-select .dropdown-menu.show {
  background: var(--bs-body-color);
}
#checklist_settings .dialog_inner multi-select .dropdown-item {
  color: #fff !important;
}
#checklist_settings .dialog_inner multi-select .dropdown-item img {
  object-fit: contain;
}
#view_pkmn {
  display: flex;
  flex-direction: column;
  padding: 0.15em;
  width: 55dvw;
  max-height: calc(1px + 85dvh);
  background: rgba(255, 255, 255, 0.7);
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #view_pkmn {
    max-height: calc(1px + 80dvh);
  }
}
#view_pkmn:focus {
  outline: none;
}
#view_pkmn .header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  background: #999;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
#view_pkmn .header .progress {
  position: absolute;
  height: 100%;
  background: #1a9f5c;
  z-index: 0;
  transition: all 0.3s ease-in-out;
}
#view_pkmn .header .text {
  display: flex;
  align-items: center;
  flex: 1;
  color: #fff;
  font-size: 1.1em;
  font-weight: bolder;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  padding: 0.5em;
  z-index: 1;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #view_pkmn .header .text {
    font-size: 1.4em;
  }
}
#view_pkmn .header .text .icon {
  display: none;
  width: 20px;
  scale: 5;
  margin-top: -1.5em;
  margin-left: 1em;
  margin-right: 2.2em;
  user-select: none;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #view_pkmn .header .text .icon {
    display: block;
  }
}
#view_pkmn .header .close {
  margin-right: 0.5em;
}
#view_pkmn .dialog-inner {
  height: max-content;
  overflow: auto;
}
#view_pkmn .dialog-inner .content {
  padding: 1em;
}
#view_pkmn .dialog-inner .exclusive {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.5em;
}
#view_pkmn .dialog-inner .exclusive img {
  width: 25px;
  height: 25px;
  border-radius: 100%;
}
#view_pkmn .checklist-legend {
  position: absolute;
  bottom: -3em;
  left: -1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #view_pkmn .checklist-legend {
    bottom: -3.5em;
  }
}
#view_pkmn .checklist-legend .legend {
  align-items: center;
}
#view_pkmn .checklist-legend .legend:first-of-type {
  display: none;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #view_pkmn .checklist-legend .legend:first-of-type {
    display: flex;
  }
}
#view_pkmn .checklist-legend .legend:last-of-type {
  flex: 1;
  text-align: right !important;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #view_pkmn .checklist-legend .legend:last-of-type {
    flex: initial;
  }
}
#view_pkmn:has(.boxview) .header {
  background: #198a56;
}
.contained-games {
  margin-top: 0.5em;
}
.contained-games .inner .item {
  display: flex;
  align-items: center;
  gap: 1em;
}
#award_view {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
#award_view .awards-container {
  height: max-content;
  overflow: auto;
  margin: 0 -1em;
  padding: 1em;
  padding-bottom: 0;
}
#award_view .awards-container .inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.5em;
  row-gap: 1em;
}
#award_view .awards-container .inner .item {
  user-select: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1em;
  padding: 0.5em 1em;
  padding-left: 0.5em;
  color: #fff;
  background: var(--bg);
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  outline: 3px solid rgba(255, 255, 255, .5);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
#award_view .awards-container .inner .item.locked .award-icon {
  filter: saturate(0) contrast(150%) brightness(25%);
}
#award_view .awards-container .inner .item.locked:after {
  filter: saturate(0) contrast(150%) brightness(25%);
}
#award_view .awards-container .inner .item .text, #award_view .awards-container .inner .item .award-icon {
  z-index: 1;
}
#award_view .awards-container .inner .item .award-icon {
  background: var(--img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 70px;
  aspect-ratio: 1;
}
#award_view .awards-container .inner .item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  background: rgba(0, 0, 0, .2);
  border-radius: 15px;
  margin: -0.25em -0.75em;
  padding: 0.5em 1em;
  font-size: 1.1em;
  text-shadow: 0 2px 5px #000, 0 2px 5px #000;
}
#award_view .awards-container .inner .item .text small {
  margin-top: 0.5em;
  color: #000;
  font-size: 0.7em;
  text-shadow: 0 2px 5px transparent;
}
#award_view .awards-container .inner .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--col), rgba(32, 160, 92, 0.5));
  backdrop-filter: blur(0.2rem);
  pointer-events: none;
  z-index: 0;
}
#which_platform .btn {
  display: flex;
  gap: 1em;
  align-items: center;
}
#which_platform .btn img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
#change_dex .change-dex-type, #change_dex .change-dex-platform {
  display: flex;
  justify-content: center;
  gap: 0.25em;
}
#change_dex .change-dex-type .btn, #change_dex .change-dex-platform .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
#change_dex .change-dex-type .btn .game-folder, #change_dex .change-dex-platform .btn .game-folder {
  min-width: 40px;
  width: 40px;
}
#change_dex .change-dex-type .btn .game-folder img, #change_dex .change-dex-platform .btn .game-folder img {
  scale: 2;
}
#change_dex .change-dex-type .btn {
  max-width: 50%;
}
#change_dex .change-dex-platform .btn {
  max-width: 50%;
}
#change_dex .change-dex-platform img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.25)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.25));
}
#game_select_modal {
  width: 30dvw;
  overflow: auto;
}
@media only screen and (min-width: 500px) {
  #game_select_modal {
    min-width: 400px !important;
    width: 40dvw;
  }
}
@media only screen and (min-width: 1500px) {
  #game_select_modal {
    width: 30dvw;
  }
}
#game_select_modal .items {
  display: flex;
  flex-direction: column;
  margin-top: 1em;
  overflow: auto;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  #game_select_modal .items {
    padding: 0 1em;
  }
}
#game_select_modal .items .carousel-item {
  transition: transform 0.2s ease-in-out;
}
#game_select_modal .items .carousel-item .item {
  display: flex;
  align-items: center;
  gap: 2em;
  cursor: pointer;
  padding: 1em;
  border-radius: 0.5em;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
#game_select_modal .items .carousel-item .item span {
  font-size: 1.1em;
  line-height: 1.2em;
}
#game_select_modal .items .carousel-item .item span small {
  font-weight: bolder;
  font-size: 0.8em;
  color: rgba(0, 0, 0, 0.6);
}
#game_select_modal .items .carousel-item .item:hover {
  background: rgba(26, 159, 92, 0.25);
}
#game_select_modal .items .carousel-item .item:hover img {
  scale: 1.05;
}
.game-folder {
  min-width: 70px;
  width: 70px;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 6px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.1);
  display: grid;
  place-items: center;
  gap: 6px;
  overflow: hidden;
}
.game-folder > img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  corner-shape: squircle;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.game-folder:has(> img:only-child) {
  padding: 0.5em;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.game-folder:has(> img:nth-child(2)):not(:has(> img:nth-child(3))) {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
.game-folder:has(> img:nth-child(3)):not(:has(> img:nth-child(4))) {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.game-folder:has(> img:nth-child(3)):not(:has(> img:nth-child(4))) {
  grid-column: 1 / -1;
  width: calc((150px - 12px - 6px) / 2);
}
.game-folder:has(> img:nth-child(3)):not(:has(> img:nth-child(4))) > img:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
  align-self: center;
  width: 50%;
}
.game-folder:has(> img:nth-child(4)) {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.protip {
  margin: 1em;
  margin-top: 2em;
}
.protip i.fa-times {
  margin-top: 0.25em;
}
.dex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  margin-top: 1em;
}
.dex.expanded {
  gap: 1em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .dex.expanded {
    gap: 1.5em;
    row-gap: 2em;
  }
}
.dex .item-group {
  display: block;
  background: #1a9f5c;
  color: #fff;
  padding: 1em 0.5em;
  margin-right: -1em;
  border-radius: 9px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  writing-mode: tb-rl;
  rotate: 180deg;
}
.dex .item-group small {
  opacity: 0.8;
}
.dex .item {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  margin: 10px;
  padding: 1em 0;
  background: rgba(255, 255, 255, 0.5);
  border: 4px solid rgba(26, 159, 92, .25);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  backdrop-filter: blur(10rem);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  user-select: none;
  overflow: hidden;
}
.dex .item * {
  z-index: 1;
}
.dex .item.completed {
  background: rgba(26, 159, 92, 0.2);
  border: 4px solid #1a9f5c;
}
.dex .item.completed .pkmn {
  filter: saturate(100%);
}
.dex .item .completed {
  display: none;
  position: absolute;
  top: -1px;
  right: 0;
  place-items: center;
  background: #1a9f5c;
  font-weight: bolder;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-bottom-left-radius: 15px;
  padding: 0.5em;
  width: max-content;
  aspect-ratio: 1;
  z-index: 999 !important;
}
.dex .item.disabled {
  position: relative;
  background: rgba(0, 0, 0, 0.65);
  pointer-events: none;
  border-color: rgba(85, 85, 85, 0.5);
}
.dex .item.disabled .blurred {
  filter: grayscale(1) blur(1rem);
}
.dex .item.disabled .pkmn {
  filter: grayscale(1) contrast(0.5) brightness(0.5);
}
.dex .item.disabled .name small {
  color: #fff;
  opacity: 0.5;
}
.dex .item.disabled:after {
  content: "UNAVAILABLE";
  font-size: 1.2em;
  font-weight: bolder;
  position: absolute;
  opacity: 0.5;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: -30deg;
  z-index: 2;
}
.dex .item .blurred {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  scale: 5;
  opacity: 0.3;
  filter: blur(1rem);
}
.dex .item .exclusive {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5em;
  position: absolute;
  top: 0;
  left: -2.5px;
  text-align: center;
  width: max-content;
  color: #fff;
  border-radius: 50px;
  padding: 0.2em 0.5em;
  font-size: 0.8em;
  z-index: 1000;
}
.dex .item .exclusive img {
  height: 30px;
  width: 30px;
  border-radius: 50px;
  aspect-ratio: 1/1;
}
.dex .item .pkmn {
  width: 100px;
  height: 100px;
  margin-bottom: 0.5em;
  object-fit: contain;
  filter: grayscale(40%) contrast(30%) brightness(70%) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
  transition: all 0.3s ease-in-out;
}
.dex .item .pkmn.large-icon {
  scale: 1.5;
  translate: 0 10px;
}
.dex .item .name {
  font-weight: bold;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.dex .item .name small {
  color: #444;
  font-size: 0.75em;
  font-weight: bolder;
  background: rgba(209, 248, 236, .75);
  backdrop-filter: blur(2rem);
  border-radius: 15px;
  padding: 0.25em;
  opacity: 0.7;
}
.dex .item .progress {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #1a9f5c;
  z-index: 998 !important;
  border-bottom-left-radius: 0;
  transition: width 0.3s ease-in-out;
}
.dex .item:hover {
  scale: 1.05;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.3);
  filter: brightness(110%);
}
.dex .item:hover .pkmn {
  scale: 1.05;
}
.dex .item:hover .pkmn.large-icon {
  scale: 1.6;
}
.dex .item:hover.completed {
  background: rgba(26, 159, 92, 0.2);
}
.dex .item-expanded {
  position: relative;
  cursor: pointer;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5rem);
  border: 4px solid rgba(26, 159, 92, .2);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: all 0.25s ease-in-out;
  overflow: hidden;
  aspect-ratio: 4.5 / 5;
  flex: 0 0 calc(50% - 2em);
  max-width: clamp(200px, 30dvw, 250px);
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .dex .item-expanded {
    aspect-ratio: 5 / 4.5;
  }
}
@media only screen and (min-width: 500px) {
  .dex .item-expanded {
    flex: 0 0 30%;
  }
}
@media only screen and (min-width: 1500px) {
  .dex .item-expanded {
    flex: 0 0 calc(10dvw + 40px);
  }
}
.dex .item-expanded .pkmn-name {
  position: absolute;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  color: #000;
  padding: 0.25em;
  z-index: 2;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .dex .item-expanded .pkmn-name {
    padding: 0.5em 1em;
  }
}
.dex .item-expanded .exclusive {
  display: flex;
  align-items: center;
  gap: 0.5em;
  position: absolute;
  bottom: 2px;
  left: 0;
  text-align: center;
  width: max-content;
  color: #fff;
  border-radius: 50px;
  padding: 0.2em 0.5em;
  font-size: 0.8em;
  z-index: 2;
}
.dex .item-expanded .exclusive img {
  border-radius: 10px;
  height: 30px;
  width: 30px;
  aspect-ratio: 1/1;
  outline: 2px solid #fff;
}
.dex .item-expanded.disabled .pkmn-name {
  filter: grayscale(1) contrast(0.5) brightness(0.5);
}
.dex .item-expanded .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  translate: -50% -50%;
  z-index: 0;
}
.dex .item-expanded .bg.fx_shiny, .dex .item-expanded .bg.fx_mega, .dex .item-expanded .bg.fx_alpha, .dex .item-expanded .bg.fx_dynamax, .dex .item-expanded .bg.fx_gigantamax, .dex .item-expanded .bg.fx_eternamax {
  opacity: 0.3;
}
.dex .item-expanded .bg.fx_stellar {
  scale: 1.2;
  opacity: 0.4;
}
.dex .item-expanded .blurred {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  scale: 5;
  opacity: 0.3;
  filter: blur(1rem);
}
.dex .item-expanded:not(.disabled) .blurred {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  scale: 5;
  opacity: 0.3;
  filter: blur(1rem);
}
.dex .item-expanded .pkmn {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  scale: 0.8;
  translate: 0 10px;
  filter: drop-shadow(0 2px 10px #000);
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .dex .item-expanded .pkmn {
    height: 100%;
    width: initial;
  }
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .dex .item-expanded .pkmn {
    translate: 0 0;
  }
}
.dex .item-expanded .pkmn.large-icon {
  scale: 1;
}
.dex .item-expanded .pkmn.alpha {
  scale: 1.5;
}
.dex .item-expanded:not(.checked):not(.registeredOnly):not(.notOT):not(.mysteryGift) .pkmn {
  filter: drop-shadow(0 2px 10px #000) grayscale(50%) contrast(20%) brightness(70%);
}
.dex .item-expanded[data-dex=go] .pkmn {
  scale: 1.5;
  translate: 0 -0.25rem;
}
.dex .item-expanded .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dex .item-expanded .bottom span {
  position: absolute;
  bottom: 0;
  left: 0;
  flex: 1;
  font-weight: bold;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.2em);
  color: #fff;
  border-top-right-radius: 10px;
  padding: 0.25em 0.5em;
  z-index: 2;
}
.dex .item-expanded .bottom .icns {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(0.2em);
  z-index: 2;
  padding: 0.5em;
  border-top-left-radius: 10px;
}
.dex .item-expanded .bottom .icns .icn {
  width: 25px;
  filter: drop-shadow(0 0 5px #000);
}
.dex .item-expanded .separate {
  display: block;
  position: absolute;
  top: 0.5em;
  left: 50%;
  translate: -50%;
  color: #000;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(0.2em);
  padding: 0.25em 0.5em;
  font-size: 0.75em;
  font-weight: bolder;
  text-wrap: nowrap;
  border-radius: 5px;
  z-index: 5 !important;
}
.dex .item-expanded[data-alpha*="true"] .pkmn {
  scale: 1;
  translate: 0 -1px;
}
.dex .item-expanded[data-alpha*="true"]:hover .pkmn {
  scale: 1.1;
}
.dex .item-expanded:hover {
  scale: 1.02;
}
.dex .item-expanded:hover:not(.checked):not(.registeredOnly):not(.notOT):not(.mysteryGift) {
  background: rgba(255, 255, 255, 0.35);
}
.dex .item-expanded:hover .pkmn {
  scale: 0.9;
}
.dex .item-expanded:hover .pkmn.large-icon {
  scale: 1.1;
}
.dex .item-expanded.disabled {
  position: relative;
  background: rgba(153, 153, 153, 0.5);
  pointer-events: none;
  opacity: 0.5 !important;
}
.dex .item-expanded.disabled:after {
  content: "UNAVAILABLE";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  font-size: 1.5em;
  font-weight: bolder;
  rotate: -20deg;
  color: rgba(0, 0, 0, 0.7);
}
.dex .item-expanded.disabled .pkmn, .dex .item-expanded.disabled .bg {
  filter: grayscale(1) contrast(0.5) brightness(0.5);
}
.dex .item-expanded.noncollectable {
  position: relative;
  pointer-events: none;
}
.dex .item-expanded.checked {
  background: rgba(26, 159, 92, 0.5);
  outline: 4px solid #1a9f5c;
}
.dex .item-expanded.checked .completed {
  display: grid;
}
.dex .item-expanded.registeredOnly {
  background: rgba(218, 165, 32, 0.35);
  outline: 4px solid #daa520;
}
.dex .item-expanded.registeredOnly .completed {
  display: grid;
  background: #daa520;
}
.dex .item-expanded.notOT {
  background: rgba(0, 153, 255, 0.5);
  outline: 4px solid #09f;
}
.dex .item-expanded.notOT .completed {
  display: grid;
  background: #09f;
}
.dex .item-expanded.mysteryGift {
  background: rgba(120, 81, 169, 0.5);
  outline: 4px solid #7851a9;
}
.dex .item-expanded.mysteryGift .completed {
  display: grid;
  background: #7851a9;
}
.dex .item-expanded .completed {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  place-items: center;
  background: #1a9f5c;
  font-weight: bolder;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-bottom-left-radius: 15px;
  padding: 0.5em;
  width: max-content;
  aspect-ratio: 1;
  z-index: 999 !important;
}
.checklist-legend {
  margin: 1em;
  margin-top: 2em;
}
.checklist-legend .legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25em;
}
.checklist-legend .legend .badge {
  display: flex;
  align-items: center;
}
.checklist-legend .legend .badge img {
  margin-right: 5px;
}
.go-grid multi-select .btn {
  background: rgba(0, 0, 0, 0.75);
  font-size: 1.15rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.go-grid multi-select .dropdown-menu {
  background: #12a6a8;
  grid-template-rows: repeat(10, auto) !important;
  position: absolute;
  left: 50%;
  translate: -50%;
  width: 100dvw;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .go-grid multi-select .dropdown-menu {
    grid-template-rows: repeat(3, auto) !important;
  }
}
.go-grid multi-select .dropdown-menu .dropdown-item {
  color: #fff;
  font-size: 1.3rem;
}
.go-grid multi-select .dropdown-menu .dropdown-item:hover {
  color: #fff;
}
.go-grid .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  padding: 0.25em;
  padding-bottom: 1em;
  margin: 0 0.5em;
  margin-bottom: 0.5em;
  border-radius: 5px;
  font-size: 1.15rem;
  background: linear-gradient(to bottom, #c0dbd6 90%, transparent);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .go-grid .menu {
    margin: 0.5;
  }
}
.go-grid .menu.sticky {
  position: sticky;
  top: 0;
  margin: -0.8em -0.9em !important;
  margin-bottom: 1em !important;
  z-index: 10;
}
.go-grid .menu .opt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: calc(40% - 2px);
  flex: 1 1 calc(25% - 5px);
  padding: 0.25em 1em;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bolder;
  font-size: 0.7em;
  background: #198754;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  color: #fff !important;
  filter: grayscale(1);
  text-decoration: none;
  user-select: none;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .go-grid .menu .opt {
    min-width: initial;
    max-width: calc(25% - 2px);
  }
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .go-grid .menu .opt {
    padding: 0.25em;
  }
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .go-grid .menu .opt {
    font-size: 0.9em;
  }
}
.go-grid .menu .opt * {
  transition: all 0.2s ease-in-out;
}
.go-grid .menu .opt img {
  height: 18px;
  margin-right: 0.5em;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .go-grid .menu .opt img {
    height: 25px;
  }
}
.go-grid .menu .opt img.game {
  border-radius: 3px;
}
.go-grid .menu .opt:hover {
  scale: 1.05;
}
.go-grid .menu .opt:not(.selected):hover {
  filter: grayscale(0.5);
  font-weight: bold;
}
.go-grid .menu .opt:not(.selected):hover img {
  scale: 1.1;
}
.go-grid .menu .opt.selected {
  color: #fff !important;
  font-weight: bold;
  filter: grayscale(0);
}
.go-grid .menu .opt.selected img {
  scale: 1.1;
}
.go-grid .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin: -1em;
  padding: 1em;
  padding-top: 0.5em;
}
.go-grid .grid .item {
  position: relative;
  cursor: pointer;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border: 4px solid rgba(102, 102, 102, .2);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  user-select: none;
  transition: all 0.25s ease-in-out;
  overflow: hidden;
  flex: 1;
  min-width: calc(50% - 10px) !important;
  max-width: 25%;
  aspect-ratio: 4.5 / 5;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .go-grid .grid .item {
    min-width: 200px !important;
  }
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .go-grid .grid .item {
    aspect-ratio: 5 / 4.5;
  }
}
.go-grid .grid .item .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  translate: -50% -50%;
  z-index: 0;
}
.go-grid .grid .item .bg.fx_shiny, .go-grid .grid .item .bg.fx_mega, .go-grid .grid .item .bg.fx_alpha, .go-grid .grid .item .bg.fx_dynamax, .go-grid .grid .item .bg.fx_gigantamax, .go-grid .grid .item .bg.fx_eternamax {
  opacity: 0.3;
}
.go-grid .grid .item .bg.fx_stellar {
  scale: 1.2;
  opacity: 0.4;
}
.go-grid .grid .item:not(.disabled) .blurred {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  scale: 5;
  opacity: 0.3;
  filter: blur(1rem);
}
.go-grid .grid .item .pkmn {
  position: relative;
  height: 100px;
  margin: 1.5em 0;
  translate: 0 -1.5em;
  filter: drop-shadow(0 2px 10px #000);
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .go-grid .grid .item .pkmn {
    height: 150px;
  }
}
.go-grid .grid .item .pkmn.large-icon {
  translate: 0 10px;
  scale: 1.5;
}
.go-grid .grid .item:not(.checked):not(.registeredOnly):not(.notOT):not(.mysteryGift):not(.noncollectable) .pkmn {
  filter: drop-shadow(0 2px 10px #000) grayscale(90%) contrast(20%) brightness(70%);
}
.go-grid .grid .item[data-dex=go] .pkmn {
  scale: 1.25;
  translate: 0 -0.25rem;
}
.go-grid .grid .item .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
.go-grid .grid .item .bottom span {
  position: absolute;
  bottom: 0;
  left: 0;
  flex: 1;
  font-weight: bold;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.2em);
  color: #fff;
  border-top-right-radius: 10px;
  padding: 0.25em 0.5em;
  z-index: 2;
}
.go-grid .grid .item .bottom .icns {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(0.2em);
  z-index: 2;
  padding: 0.5em;
  border-top-left-radius: 10px;
}
.go-grid .grid .item .bottom .icns .icn {
  width: 25px;
  filter: drop-shadow(0 0 5px #000);
}
.go-grid .grid .item .separate {
  display: block;
  position: absolute;
  top: 0.5em;
  left: 50%;
  translate: -50%;
  color: #000;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(0.2em);
  padding: 0.25em 0.5em;
  font-size: 0.75em;
  font-weight: bolder;
  text-wrap: nowrap;
  border-radius: 5px;
  z-index: 5 !important;
}
.go-grid .grid .item .exclusive {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5em;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(19, 134, 147, 0.8);
  backdrop-filter: blur(0.2em);
  color: #fff;
  border-bottom-right-radius: 10px;
  font-size: 0.8em;
  z-index: 2;
}
.go-grid .grid .item .exclusive img:not(.icon) {
  width: 30px;
  aspect-ratio: 1;
  filter: brightness(200%) saturate(0);
}
.go-grid .grid .item .exclusive .icon {
  width: 30px;
  aspect-ratio: 1;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.go-grid .grid .item[data-alpha*="true"] .pkmn {
  scale: 1.2;
  translate: 0 -2em;
}
.go-grid .grid .item[data-alpha*="true"]:hover .pkmn {
  scale: 1.25;
}
.go-grid .grid .item:hover {
  filter: brightness(110%);
  scale: 1.02;
}
.go-grid .grid .item:hover:not(.checked):not(.registeredOnly):not(.notOT):not(.mysteryGift) {
  background: rgba(255, 255, 255, 0.4);
}
.go-grid .grid .item:hover .pkmn {
  scale: 1.05;
}
.go-grid .grid .item:hover .pkmn.large-icon {
  scale: 1.6;
}
.go-grid .grid .item.disabled {
  position: relative;
  background: rgba(153, 153, 153, 0.5);
  pointer-events: none;
  opacity: 0.5 !important;
}
.go-grid .grid .item.disabled:after {
  content: "UNAVAILABLE";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  font-size: 1.5em;
  font-weight: bolder;
  rotate: -20deg;
  color: rgba(0, 0, 0, 0.7);
}
.go-grid .grid .item.disabled .pkmn, .go-grid .grid .item.disabled .bg {
  filter: grayscale(1) contrast(0.5) brightness(0.5);
}
.go-grid .grid .item.noncollectable {
  position: relative;
  pointer-events: none;
}
.go-grid .grid .item.checked {
  background: rgba(26, 159, 92, 0.5);
  outline: 4px solid #1a9f5c;
}
.go-grid .grid .item.checked .completed {
  display: grid;
}
.go-grid .grid .item.registeredOnly {
  background: rgba(218, 165, 32, 0.35);
  outline: 4px solid #daa520;
}
.go-grid .grid .item.registeredOnly .completed {
  display: grid;
  background: #daa520;
}
.go-grid .grid .item.notOT {
  background: rgba(0, 153, 255, 0.5);
  outline: 4px solid #09f;
}
.go-grid .grid .item.notOT .completed {
  display: grid;
  background: #09f;
}
.go-grid .grid .item.mysteryGift {
  background: rgba(120, 81, 169, 0.5);
  outline: 4px solid #7851a9;
}
.go-grid .grid .item.mysteryGift .completed {
  display: grid;
  background: #7851a9;
}
.go-grid .grid .item .completed {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  place-items: center;
  background: #1a9f5c;
  font-weight: bolder;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-bottom-left-radius: 15px;
  padding: 0.5em;
  width: max-content;
  aspect-ratio: 1;
  z-index: 999 !important;
}
.go-grid .divider span {
  background: #c0dbd6;
}
.filter-tags {
  margin-top: 2em;
}
.filter-tags .badge {
  font-size: 0.75rem;
}
.filter-tags .badge b {
  background: #fff;
  color: #198754;
  font-weight: bolder;
  border: 2px solid #198754;
  border-radius: 10px;
  margin-left: -0.75em;
  padding: 0.25em;
}
.filter-tags .badge .fa-times {
  cursor: pointer;
  margin-left: 0.3em;
  font-size: 0.55rem;
}
.included-games {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75em;
  margin: 1em;
}
.included-games .game {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: #000;
  padding: 0.25em 1em;
  padding-left: 0.25em;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.included-games .game .blurred {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(2rem);
  z-index: 1;
}
.included-games .game .icon {
  width: 40px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: all 0.2s ease-in-out;
  z-index: 2;
}
.included-games .game div {
  z-index: 2;
}
.included-games .game:hover {
  filter: brightness(115%);
  scale: 1.02;
}
.included-games .game:hover .icon {
  scale: 1.02;
}
.game-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  margin: 1em;
  margin-top: 2em;
  color: #0f4f31;
  user-select: none;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .game-info {
    border-radius: 100px;
    padding-left: 1em;
    margin: 1em 2em;
    margin-top: 3em;
  }
}
@media only screen and (min-width: 500px) {
  .game-info {
    line-height: 20px;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1500px) {
  .game-info {
    line-height: 24px;
  }
}
.game-info .spinner-grow {
  margin: 0 1em !important;
}
.game-info .gibg {
  display: flex;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5));
  border: 0;
  outline: 3px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(0.5rem);
  border-radius: 50px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.game-info .info {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
  padding: 0.5em;
  flex: 1;
  gap: 1em;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .game-info .info {
    flex-direction: row;
    padding: 0.75em;
    padding-right: 1em;
    max-width: max-content !important;
  }
}
@media only screen and (min-width: 1500px) {
  .game-info .info {
    flex: none;
  }
}
.game-info .info div {
  width: 100%;
}
.game-info .info .game-folder {
  background: rgba(0, 0, 0, .25);
  backdrop-filter: blur(3rem);
  corner-shape: squircle;
  border-radius: 15px;
  width: 30px;
}
@media only screen and (min-width: 1500px) {
  .game-info .info .game-folder {
    width: 55px;
  }
}
.game-info .info .game-folder img {
  corner-shape: squircle;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}
.game-info .info .dex-text {
  text-align: center;
}
@media only screen and (min-width: 1500px) {
  .game-info .info .dex-text {
    text-align: left;
  }
}
.game-info .info .dex-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
  background: rgba(255, 255, 255, .5);
  color: #333;
}
.game-info .info .dex-text .badge img {
  width: 25px;
  scale: 1.2;
}
.game-info .info b {
  font-size: 1.1rem;
}
@media only screen and (min-width: 1500px) {
  .game-info .info b {
    font-size: 1.8rem;
  }
}
.game-info .info small {
  opacity: 0.8;
  font-size: 0.85rem;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .game-info .info small {
    font-size: 1.1rem;
  }
}
.game-info .info:hover {
  translate: 0 -2px;
  filter: brightness(115%) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}
.game-info .info:hover img {
  scale: 1.02;
}
.game-info .dex-user {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.5em;
  text-align: center;
  flex: 1;
  gap: 0.75em;
  border: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5));
  outline: 3px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(0.5rem);
  border-radius: 50px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  color: #0f4f31;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .game-info .dex-user {
    flex-direction: row;
    padding: 0.75em;
    padding-right: 1em;
    max-width: max-content !important;
  }
}
@media only screen and (min-width: 1500px) {
  .game-info .dex-user {
    flex: none;
  }
}
.game-info .dex-user a {
  text-decoration: none;
}
.game-info .dex-user b {
  color: #0f4f31;
  font-size: 1.1rem;
}
@media only screen and (min-width: 1500px) {
  .game-info .dex-user b {
    font-size: 1.8rem;
  }
}
.game-info .dex-user .badge {
  display: inline-block;
  margin-bottom: 0.5em;
  background: rgba(255, 255, 255, .5);
  color: #333;
}
.game-info .dex-user .avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  transition: all 0.2s ease-in-out;
}
.game-info .dex-user:hover {
  translate: 0 -2px;
  filter: brightness(115%) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}
.game-info .dex-user:hover img {
  scale: 1.02;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}
.game-info .flex1 {
  flex: 1;
  display: none;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .game-info .flex1 {
    display: block;
  }
}
.game-info .stats {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .game-info .stats {
    justify-content: flex-end;
    max-width: max-content !important;
  }
}
.game-info .stats b {
  font-size: 1.2em;
}
.game-info .stats .inner-stats {
  margin: 0 1em;
  text-align: left;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .game-info .stats .inner-stats {
    text-align: center;
  }
}
.game-info .stats .radial-progress {
  scale: 0.7;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .game-info .stats .radial-progress {
    scale: 0.8;
  }
}
.game-info .stats .spinner-grow {
  margin: 1em 2em !important;
}
.search-filters {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 1em 2em;
}
.search-filters #filter-articles, .search-filters #pkmn-filter {
  background-color: rgba(255, 255, 255, 0.5);
  background-image: url(https://pokemarkr.com/images/assets/icons/search-green.png);
  background-repeat: no-repeat;
  background-position: 5px center;
  background-size: 30px;
  padding-left: 2.5em !important;
  border-radius: 2rem;
  backdrop-filter: blur(1rem);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  color: #1a9f5c !important;
  font-weight: bold !important;
  filter: grayscale(1);
  transition: all 0.2s ease-in-out;
  anchor-name: --pkmn-filter;
}
.search-filters #filter-articles:hover, .search-filters #pkmn-filter:hover {
  filter: grayscale(0.7);
}
.search-filters #filter-articles:focus, .search-filters #pkmn-filter:focus {
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid #1a9f5c;
  padding: 0 2em;
  filter: grayscale(0);
}
.search-filters .clear-search {
  position: absolute;
  position-anchor: --pkmn-filter;
  position-area: center right;
  left: -1.5em;
  display: none;
  cursor: pointer;
  z-index: 1;
}
.search-filters .clear-search:hover {
  color: #777;
}
.search-filters .filter-btn, .search-filters .settings-btn {
  cursor: pointer;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #1a9f5c;
  outline: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  padding-bottom: 0.5em;
  transition: all 0.2s ease-in-out;
}
.search-filters .filter-btn i, .search-filters .settings-btn i {
  scale: 1.5;
}
.search-filters .filter-btn:hover, .search-filters .settings-btn:hover {
  filter: brightness(120%);
}
.top-nav {
  padding: 0 1em;
  width: auto;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .top-nav {
    padding: 0;
    margin: 1.5em;
  }
}
.top-nav .btn-group {
  display: none;
  max-width: 15%;
  margin-left: 1em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .top-nav .btn-group {
    display: flex;
    gap: 0.25em;
  }
}
.top-nav .btn-group .btn {
  outline: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 50px;
}
.top-nav .btn-group .btn.disabled {
  opacity: 0.4;
}
.text-right:has(#boxSize) {
  position: relative;
  display: none;
  justify-content: flex-end;
  gap: 1em;
  width: max-content;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .text-right:has(#boxSize) {
    display: flex;
  }
}
.text-right:has(#boxSize) #boxSize {
  anchor-name: --boxSize;
}
.text-right:has(#boxSize) #range-pop {
  position-anchor: --boxSize;
  position-area: top center;
  position-try-fallbacks: flip-block, flip-inline;
  background: #fff;
  border: 5px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  padding: 0 0.25em;
}
.boxes {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
  gap: 1em;
  margin: 1em;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 500px) {
  .boxes {
    --boxcount: 3;
    --boxcount-clamped: clamp(1, var(--boxcount), 3);
    grid-template-columns: repeat(var(--boxcount-clamped), 1fr);
  }
}
@media only screen and (min-width: 1500px) {
  .boxes {
    --boxcount: 5;
    grid-template-columns: repeat(var(--boxcount), 1fr);
  }
}
.boxes .box {
  opacity: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.25em;
  aspect-ratio: 1;
  background: #198855;
  border: 5px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: all 0.2s ease-in-out;
}
.boxes .box .title {
  padding: 0.5em;
  color: #fff;
  border-radius: 10px;
  font-weight: bolder;
  text-align: center;
  width: 100%;
}
.boxes .box .inner {
  position: relative;
  display: grid;
  justify-content: center;
  align-items: start;
  grid-template-columns: repeat(6, 1fr);
  align-content: start;
  flex: 1;
  gap: 0.15em;
  width: 100%;
  padding: 0.25em;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.boxes .box .inner .box-item {
  position: relative;
  padding: 0.25em;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}
.boxes .box .inner .box-item .bg:not(.fx_shiny) {
  opacity: 0.25;
}
.boxes .box .inner .box-item .bg.fx_shiny {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15px;
  aspect-ratio: 1;
  z-index: 1;
  filter: drop-shadow(0 2px 5px #000);
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .boxes .box .inner .box-item .bg.fx_shiny {
    width: 20px;
  }
}
.boxes .box .inner .box-item.completed {
  background: rgba(255, 255, 255, 0.4);
}
.boxes .box .inner .box-item.unavailable {
  filter: grayscale(100%) contrast(0%) brightness(0%);
  opacity: 0.25;
}
.boxes .box .inner .box-item .img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  translate: -50% -50%;
  background-image: var(--img);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 0;
}
.boxes .box .inner .box-item .img.large-icon {
  scale: 1.5;
}
.boxes .box .inner .box-item .img.disabled {
  filter: grayscale(90%) contrast(20%) brightness(70%);
}
.boxes .box:hover {
  translate: 0 -5px;
  scale: 1.02;
  filter: brightness(115%);
  box-shadow: 0 2px 5px #000;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, calc(50% - 10px));
  justify-content: center;
  align-items: stretch;
  gap: 1em;
  row-gap: 1.5em;
  margin: 1em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, 200px);
  }
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .games-grid {
    margin: 0;
  }
}
.games-grid .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  position: relative;
  cursor: pointer;
  width: 100%;
  line-height: 20px;
  padding: 0.25em;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3rem);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.games-grid .item .blurred {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  scale: 2;
  background-image: var(--img);
  background-position: center;
  background-size: cover;
  filter: blur(2rem);
  opacity: 0.5;
  z-index: -1;
}
.games-grid .item .icon {
  position: relative;
  background-image: var(--img);
  background-color: #fff;
  background-position: center;
  background-size: cover;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 15px;
  z-index: 0;
  transition: all 0.2s ease-in-out;
}
.games-grid .item .icon .parents {
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: flex;
  flex-direction: row;
  gap: 3px;
  z-index: 1;
}
.games-grid .item .icon .parents .parent-icon {
  width: 40px;
  height: auto;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background-position: center;
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 0.26) 0px 3px 6px, rgba(0, 0, 0, 0.5) 0px 3px 6px;
}
.games-grid .item .name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1em;
  flex: 1;
  z-index: 0;
  transition: all 0.2s ease-in-out;
}
.games-grid .item .name .badge {
  width: max-content;
}
.games-grid .item:hover {
  scale: 1.05;
}
.games-grid .item:hover .icon {
  scale: 1.025;
  filter: brightness(115%);
}
.game-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1em;
  margin-top: -1em;
}
.game-view .game-icon {
  width: 100%;
  max-width: 80dvw;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  margin-bottom: 1em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .game-view .game-icon {
    max-width: 20dvw;
  }
}
.game-view .release-date {
  opacity: 0.75;
  font-weight: bolder;
}
.game-view .platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.game-view .platforms .platform {
  opacity: 0;
  display: flex;
  align-items: center;
  margin: 0.5em;
  padding: 0.25em 0.5em;
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  font-weight: bolder;
  font-size: 0.85rem;
  user-select: none;
}
.game-view .platforms .platform img {
  width: 20px;
  height: 20px;
  scale: 2;
  margin-right: 0.75em;
}
.game-view .description {
  cursor: pointer;
  margin: 1em;
  margin-top: 2em;
  max-width: 800px;
  max-height: 200px;
  overflow: hidden;
  line-height: 1.5em;
  text-align: center;
  mask: linear-gradient(to bottom, #000 60%, rgba(0, 0, 0, 0) 100%);
  transition: all 0.3s ease-in-out;
}
.game-view .description.expanded {
  cursor: default;
  max-height: none;
  mask: none;
}
.game-view .my-dexes {
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3rem);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 20px;
  padding: 2dvw;
  text-align: center;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .game-view .my-dexes {
    padding: 1em 2dvw;
  }
}
.game-view .my-dexes .inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .game-view .my-dexes .inner {
    flex-direction: row;
  }
}
.game-view .my-dexes .inner .item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1em;
  flex: 1;
  background: rgba(0, 0, 0, 0.1);
  outline: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  padding: 0.5em;
  text-align: left;
  text-decoration: none;
  overflow: hidden;
  user-select: none;
  transition: all 0.2s ease-in-out;
}
.game-view .my-dexes .inner .item.disabled {
  pointer-events: none;
  opacity: 0.9;
  background: linear-gradient(to bottom, rgba(220, 20, 60, 0.35), rgba(204, 204, 204, 0.75)) !important;
}
.game-view .my-dexes .inner .item.new {
  background: linear-gradient(to bottom, rgba(32, 160, 92, 0.35), rgba(204, 204, 204, 0.75));
}
.game-view .my-dexes .inner .item:not(.new) {
  position: relative;
  background: var(--bg);
  background-size: cover;
  background-position: center;
  flex-direction: column;
  text-align: center;
  min-width: 200px;
  max-width: 200px;
  color: #fff !important;
  text-shadow: 0 0 5px #000, 0 2px 5px #000;
}
.game-view .my-dexes .inner .item:not(.new) * {
  z-index: 1;
}
.game-view .my-dexes .inner .item:not(.new):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(32, 160, 92, 0.5), #20a05c);
  backdrop-filter: blur(0.2rem);
  pointer-events: none;
}
.game-view .my-dexes .inner .item:not(.new) .name b {
  font-size: 1.25em;
}
.game-view .my-dexes .inner .item .prog {
  width: max-content;
  padding: 0;
}
.game-view .my-dexes .inner .item .prog .radial-progress {
  width: 70px;
  margin: 0 auto;
}
.game-view .my-dexes .inner .item .prog .radial-progress .inner {
  color: #fff !important;
  translate: 0 -2px;
}
.game-view .my-dexes .inner .item .prog .radial-progress .radial {
  --bar: #fff !important;
  --track: rgba(15, 79, 49, 0.4);
}
.game-view .my-dexes .inner .item .name {
  flex: 1;
  font-weight: bolder;
}
.game-view .my-dexes .inner .item .name small {
  font-size: 0.75em;
  opacity: 0.8;
}
.game-view .my-dexes .inner .item i {
  display: flex;
  align-self: stretch;
  align-items: center;
  background: #1a9f5c;
  color: #fff;
  padding: 0 1em;
  padding-right: 1.5em;
  margin: -1em;
  margin-left: 0;
}
.game-view .my-dexes .inner .item span, .game-view .my-dexes .inner .item i, .game-view .my-dexes .inner .item .game-folder, .game-view .my-dexes .inner .item img {
  transition: all 0.2s ease-in-out;
}
.game-view .my-dexes .inner .item:hover {
  scale: 1.05;
}
.game-view .my-dexes .inner .item:hover .game-folder {
  scale: 1.05;
}
.game-view .my-dexes .inner .item:hover .game-folder img {
  scale: 1.05;
}
.game-view .my-dexes .inner .item:hover i {
  scale: 1.2;
}
.game-view .game-series {
  margin-top: 2em;
  width: 100%;
}
.account {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5em;
  text-align: center;
}
.account .dp {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-image: var(--dp);
  background-size: cover;
  background-position: center;
  margin-bottom: 1em;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  z-index: 2;
}
.account .username {
  padding: 0.5em 0.75em;
  margin-top: -3em;
  font-family: "Press Start 2P", system-ui;
  font-size: 1em;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(5px);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  z-index: 2;
}
.account .member-details {
  padding: 0.5em;
  padding-top: 6em;
  background-image: linear-gradient(to bottom, rgba(27, 163, 95, 0.5), #1ba35f), var(--bgp);
  outline: 4px solid rgba(255, 255, 255, 0.35);
  background-position: right center;
  margin-top: -6em;
  width: 100dvw;
  max-width: calc(100dvw - 3em);
  background-size: cover;
  background-repeat: no-repeat;
  backdrop-filter: blur(1px);
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  z-index: 1;
}
@media only screen and (min-width: 500px) {
  .account .member-details {
    max-width: calc(100dvw - 20dvw);
  }
}
@media only screen and (min-width: 1500px) {
  .account .member-details {
    max-width: calc(100dvw - 40dvw);
  }
}
.account .member-details .details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 1em;
}
.account .member-details .details .item {
  user-select: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 1em;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  text-shadow: 0 2px 5px #000, 0 2px 5px #000;
}
.account .member-details .details .item i {
  font-style: normal;
  text-shadow: 0 1px 2px #000;
}
.account .badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
  flex: 1;
}
.account .badges .role-badge {
  cursor: default;
  user-select: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .25), inset 0 -1px 0 rgba(0, 0, 0, .15);
  outline: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}
.account .badges .role-badge:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
}
.account .badges .role-badge span {
  position: relative;
  font-size: 1.2em;
  text-shadow: 0 0 2px #000;
  z-index: 1;
}
.account .account-opts {
  gap: 0.25em;
  padding: 0.25em;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  margin: -0.5em initial;
  margin-top: -2em;
  margin-bottom: 0.5em;
  width: 100%;
  scale: 1.1;
}
.account .account-opts .btn {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  flex: 1;
  font-size: clamp(0.9em, 100dvw, 1.1em);
}
@media only screen and (min-width: 1500px) {
  .account .account-opts .btn {
    justify-content: center;
    flex-direction: row;
  }
}
.account .account-opts .btn i, .account .account-opts .btn img {
  margin: 0;
  margin-bottom: 0.25em;
}
@media only screen and (min-width: 1500px) {
  .account .account-opts .btn i, .account .account-opts .btn img {
    margin: 0;
    margin-right: 1em;
  }
}
.account .account-opts .btn img {
  height: 22px;
  width: auto;
}
.account .account-opts .btn span {
  font-size: 0.6em;
}
@media only screen and (min-width: 1500px) {
  .account .account-opts .btn span {
    font-size: 1em;
  }
}
.account .awards, .account .my-dexes, .account .settings {
  flex: 1;
}
.account .awards .heading, .account .my-dexes .heading, .account .settings .heading {
  background: #20a05c;
  color: #fff;
  padding: 0.5em;
  font-size: 1.2em;
  font-weight: bolder;
  border-radius: 10px;
}
.account .view .split {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1em;
  width: 100dvw;
  max-width: calc(100dvw - 3em);
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .account .view .split {
    flex-direction: row;
  }
}
@media only screen and (min-width: 500px) {
  .account .view .split {
    max-width: calc(100dvw - 20dvw);
  }
}
@media only screen and (min-width: 1500px) {
  .account .view .split {
    max-width: calc(100dvw - 40dvw);
  }
}
.account .view .split .split-item {
  width: 100%;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.account .view .split .split-item p {
  padding: 1em;
}
.account .view .awards {
  padding: 0.05em;
}
.account .view .awards .awards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
  row-gap: 1em;
  margin: 0.5em;
  margin-bottom: 0.75em;
}
.account .view .awards .awards-container .item {
  user-select: none;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 0.5em;
  padding: 0.5em;
  color: #fff;
  background: var(--bg);
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  outline: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  min-width: calc(50% - 1em);
  max-width: 25%;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .account .view .awards .awards-container .item {
    min-width: calc(25% - 1em);
    max-width: 25%;
  }
}
.account .view .awards .awards-container .item.locked .award-icon {
  filter: saturate(0) contrast(150%) brightness(25%);
}
.account .view .awards .awards-container .item.locked:after {
  filter: saturate(0) contrast(150%) brightness(25%);
}
.account .view .awards .awards-container .item .text, .account .view .awards .awards-container .item .award-icon {
  z-index: 1;
}
.account .view .awards .awards-container .item .award-icon {
  background: var(--img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100px;
  aspect-ratio: 1;
}
.account .view .awards .awards-container .item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .2);
  border-radius: 15px;
  margin: -0.25em -0.75em;
  padding: 0.25em;
  width: 100%;
  font-size: 1.1em;
  text-shadow: 0 2px 5px #000, 0 2px 5px #000;
}
.account .view .awards .awards-container .item .text small {
  margin-top: 0.5em;
  color: #000;
  font-size: 0.7em;
  text-shadow: 0 2px 5px transparent;
}
.account .view .awards .awards-container .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(32, 160, 92, 0.5), #20a05c);
  backdrop-filter: blur(0.2rem);
  pointer-events: none;
  z-index: 0;
}
.account .view .awards .awards-container .item:hover {
  scale: 1.05;
  filter: brightness(115%);
}
.account .view .full-awards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1em;
  padding: 0.5em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .account .view .full-awards {
    flex-direction: row;
  }
}
.account .view .full-awards .item {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1em;
  flex: 1;
  padding: 0.5em;
  background: var(--bg);
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(3rem);
  color: #fff;
  font-size: 1.2em;
  text-shadow: 0 0 5px #000, 0 2px 5px #000;
  outline: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  overflow: hidden;
  user-select: none;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .account .view .full-awards .item {
    min-width: calc(50% - 1em);
    max-width: 50%;
  }
}
.account .view .full-awards .item * {
  z-index: 1;
}
.account .view .full-awards .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(32, 160, 92, 0.5), #20a05c);
  backdrop-filter: blur(0.2rem);
  pointer-events: none;
  z-index: 0;
}
.account .view .full-awards .item:hover {
  scale: 1.02;
  filter: brightness(115%);
}
.account .view .full-awards .item b {
  flex: 1;
  text-align: left;
}
.account .view .full-awards .item .count {
  display: grid;
  place-items: center;
  width: 70px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.35);
  border: 3px solid rgba(32, 160, 92, .5);
  border-radius: 15px;
  padding: 0.5em;
}
.account .view .full-awards .item.completed {
  outline: 3px solid #20a05c;
}
.account .view .full-awards .item.completed:after {
  background: linear-gradient(to bottom, rgba(32, 160, 92, 0.75), #20a05c);
}
.account .view .full-awards .item.completed .count {
  background: #20a05c;
  border: 3px solid rgba(0, 0, 0, .25);
}
.account .view .my-dexes {
  padding: 0.05em;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .account .view .my-dexes {
    min-width: 30dvw;
  }
}
.account .view .my-dexes .inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.5em;
  padding: 0.5em;
  padding-right: 0.75em;
}
.account .view .my-dexes .inner .item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1em;
  flex: 1;
  background: rgba(0, 0, 0, 0.1);
  border: 0;
  outline: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  padding: 0.5em;
  text-align: left;
  text-decoration: none;
  overflow: hidden;
  user-select: none;
  transition: all 0.2s ease-in-out;
  position: relative;
  background: var(--bg);
  background-size: cover;
  background-position: center;
}
.account .view .my-dexes .inner .item * {
  color: #fff;
  text-shadow: 0 0 5px #000, 0 2px 5px #000;
  z-index: 1;
}
.account .view .my-dexes .inner .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(32, 160, 92, 0.5), #20a05c);
  backdrop-filter: blur(0.2rem);
  pointer-events: none;
}
.account .view .my-dexes .inner .item .prog {
  width: max-content;
  padding: 0;
}
.account .view .my-dexes .inner .item .prog .radial-progress {
  width: 70px;
  margin: 0 auto;
}
.account .view .my-dexes .inner .item .prog .radial-progress .radial {
  --bar: #fff !important;
  --track: rgba(15, 79, 49, 0.4);
}
.account .view .my-dexes .inner .item .name {
  flex: 1;
  font-size: 1.2em;
  font-weight: bolder;
}
.account .view .my-dexes .inner .item .name small {
  font-size: 0.75em;
  opacity: 0.8;
}
.account .view .my-dexes .inner .item i {
  display: flex;
  align-self: stretch;
  align-items: center;
  background: #1a9f5c;
  color: #fff;
  padding: 0 1em;
  padding-right: 1.5em;
  margin: -1em;
  margin-left: 0;
}
.account .view .my-dexes .inner .item span, .account .view .my-dexes .inner .item i, .account .view .my-dexes .inner .item .game-folder, .account .view .my-dexes .inner .item img {
  transition: all 0.2s ease-in-out;
}
.account .view .my-dexes .inner .item:hover {
  scale: 1.025;
  filter: brightness(115%);
}
.account .view .my-dexes .inner .item:hover .game-folder {
  scale: 1.05;
}
.account .view .my-dexes .inner .item:hover .game-folder img {
  scale: 1.05;
}
.account .view .my-dexes .inner .item:hover i {
  scale: 1.2;
}
.account .toggle-settings {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 500px), (min-width: 1500px) {
  .account .toggle-settings {
    flex-direction: row;
    justify-content: space-around;
  }
}
.account .toggle-settings .form-switch {
  margin: 1em;
  scale: 1.2;
}
.account .toggle-settings .form-check-input {
  width: 40px;
}
.account .toggle-settings [for] {
  margin-left: 0.5em;
}
.account #settings {
  margin: 0.5em;
}
.account #settings .accordion-header button {
  background: #212529 !important;
  color: #fff;
  font-size: 0.5em;
  font-weight: bolder;
  border-radius: 10px;
}
.account #settings .accordion-header button i {
  margin-right: 0.5em;
}
.account #settings .accordion-header#settings-deleteaccount-heading button {
  background: crimson !important;
}
.account #settings .accordion-button::after {
  filter: invert(1);
}
.account #settings .accordion-body {
  text-align: left;
}
.account #settings #settings-editprofile #change-avatar {
  position: relative;
  cursor: pointer;
  display: grid;
  place-items: end;
  width: 100px;
  aspect-ratio: 1;
  background: var(--avatar);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  outline: 2px solid rgba(255, 255, 255, .7);
  border-radius: 100%;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
}
.account #settings #settings-editprofile #change-avatar .fa-pencil-alt {
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 100%;
  padding: 0.5em;
  margin-top: -1em;
  margin-left: -1em;
  z-index: 1;
}
.account #settings #settings-editprofile #change-avatar:hover {
  scale: 1.1;
}
.account #settings #settings-editprofile #change-avatar:hover:after {
  content: "Change Avatar";
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 100%;
  z-index: 0;
}
.account #settings #settings-manageconnections .connection-google i {
  display: inline grid;
  place-items: center;
  padding: 0.5em;
  margin-right: 0.5em;
  width: max-content;
  border-radius: 100%;
  background: #e8322b;
  color: #fff;
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes grow {
  0% {
    height: 0;
    width: 0;
  }
  100% {
    height: 5px;
    width: 5px;
  }
}
@keyframes pokeballDropIn {
  0% {
    translate: -50% -100%;
    opacity: 0;
  }
  100% {
    translate: -50% -50%;
    opacity: 1;
  }
}
@keyframes pokeball_grow {
  0% {
    scale: 1;
  }
  100% {
    scale: 3;
  }
}
@keyframes avatar_white {
  0% {
    filter: saturate(0) brightness(200%);
  }
  100% {
    filter: saturate(100%) brightness(100%);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeUp {
  0% {
    translate: 0 20px;
    opacity: 0;
  }
  100% {
    translate: 0;
    opacity: 1;
  }
}
@keyframes dropIn {
  0% {
    translate: 0 -100px;
    opacity: 0;
  }
  100% {
    translate: 0;
    opacity: 1;
  }
}
@keyframes border_glow {
  0% {
    box-shadow: 0 0 0 0 var(--first-color);
  }
  50% {
    box-shadow: 0 0 5px 5px var(--second-color);
  }
  100% {
    box-shadow: 0 0 10px 10px rgba(255, 0, 0, 0);
  }
}
.border-glow {
  animation: border_glow 1s ease-in-out infinite;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px #e90715;
  }
  100% {
    box-shadow: 0 0 0 20px rgba(233, 7, 21, 0);
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.sqlbuilder {
  margin: 0 1em;
}
.sqlbuilder .pkmn {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 1em;
}
.sqlbuilder .pkmn div:first-of-type {
  flex: 1;
}
.sqlbuilder .pkmn .img img {
  width: 100%;
  max-width: 100px;
}
.sqlbuilder .form-entry .form {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 1em;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.sqlbuilder .form-entry .form .different-forms {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1em;
}
