@charset "UTF-8";
@font-face {
  font-family: "Exo 2";
  src: url("/assets/fonts/Exo2/Exo2-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Exo 2";
  src: url("/assets/fonts/Exo2/Exo2-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Exo 2";
  src: url("/assets/fonts/Exo2/Exo2-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Exo 2";
  src: url("/assets/fonts/Exo2/Exo2-Bold.ttf") format("truetype");
  font-weight: 700;
}
.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.p-sticky {
  position: sticky;
  top: 0;
}

.p-static {
  position: static;
}

.p-inherit {
  position: inherit;
}

.p-initial {
  position: initial;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-scroll {
  overflow: scroll;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-none {
  display: none !important;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.m-0 {
  margin: 0rem;
}

.gap-0 {
  gap: 0rem;
}

.p-0 {
  padding: 0rem;
}

.mt-0 {
  margin-top: 0rem;
}

.mr-0 {
  margin-right: 0rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.ml-0 {
  margin-left: 0rem;
}

.pt-0 {
  padding-top: 0rem;
}

.pr-0 {
  padding-right: 0rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pl-0 {
  padding-left: 0rem;
}

.mx-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}

.my-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.px-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}

.py-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.m-1 {
  margin: 0.5rem;
}

.gap-1 {
  gap: 0.5rem;
}

.p-1 {
  padding: 0.5rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mr-1 {
  margin-right: 0.5rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.ml-1 {
  margin-left: 0.5rem;
}

.pt-1 {
  padding-top: 0.5rem;
}

.pr-1 {
  padding-right: 0.5rem;
}

.pb-1 {
  padding-bottom: 0.5rem;
}

.pl-1 {
  padding-left: 0.5rem;
}

.mx-1 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.my-1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.px-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.m-2 {
  margin: 1rem;
}

.gap-2 {
  gap: 1rem;
}

.p-2 {
  padding: 1rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mr-2 {
  margin-right: 1rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.ml-2 {
  margin-left: 1rem;
}

.pt-2 {
  padding-top: 1rem;
}

.pr-2 {
  padding-right: 1rem;
}

.pb-2 {
  padding-bottom: 1rem;
}

.pl-2 {
  padding-left: 1rem;
}

.mx-2 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.my-2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.m-3 {
  margin: 1.5rem;
}

.gap-3 {
  gap: 1.5rem;
}

.p-3 {
  padding: 1.5rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mr-3 {
  margin-right: 1.5rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.ml-3 {
  margin-left: 1.5rem;
}

.pt-3 {
  padding-top: 1.5rem;
}

.pr-3 {
  padding-right: 1.5rem;
}

.pb-3 {
  padding-bottom: 1.5rem;
}

.pl-3 {
  padding-left: 1.5rem;
}

.mx-3 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.my-3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.m-4 {
  margin: 2rem;
}

.gap-4 {
  gap: 2rem;
}

.p-4 {
  padding: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mr-4 {
  margin-right: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.ml-4 {
  margin-left: 2rem;
}

.pt-4 {
  padding-top: 2rem;
}

.pr-4 {
  padding-right: 2rem;
}

.pb-4 {
  padding-bottom: 2rem;
}

.pl-4 {
  padding-left: 2rem;
}

.mx-4 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.my-4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.px-4 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.m-5 {
  margin: 3rem;
}

.gap-5 {
  gap: 3rem;
}

.p-5 {
  padding: 3rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mr-5 {
  margin-right: 3rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.ml-5 {
  margin-left: 3rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pr-5 {
  padding-right: 3rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.pl-5 {
  padding-left: 3rem;
}

.mx-5 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0;
  }
}
@media (min-width: 993px) {
  .container {
    max-width: calc(100% - 10px);
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

ul {
  padding-left: 0;
  list-style: none;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

html:root {
  --bg-color: #f1f1f1;
  --text-color: #333;
  --text-invert-color: #fff;
  --inveter-bg: #fff;
  --inverter-mini-card: #f8f9fa;
  --bg-glass: rgba(255, 255, 255, 0.2);
  --border-color: #2a2a2a;
  --filter: invert(0);
  --filter-dark-image: invert(0) brightness(1);
  --filter-hover: invert(1);
  --icon-audio: url(../../assets/icons/audio-dark-icon.svg);
  --shader: rgba(255, 255, 255, 0.5);
  --shader-hover: rgba(0, 0, 0, 0.5);
}
html.dark-mode {
  --bg-color: #2a2a2a;
  --text-color: #fff;
  --text-invert-color: #333;
  --inveter-bg: #222222;
  --inverter-mini-card: #000;
  --bg-glass: rgba(0, 0, 0, 0.2);
  --border-color: #f1f1f1;
  --filter: invert(1);
  --filter-dark-image: invert(1) brightness(2);
  --filter-hover: invert(0);
  --icon-audio: url(../../assets/icons/audio-white-icon.svg);
  --shader: rgba(0, 0, 0, 0.5);
  --shader-hover: rgba(255, 255, 255, 0.5);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Exo 2", sans-serif;
  color: var(--text-color);
  position: relative;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  height: 0px !important;
  width: 0px !important;
}
body::before, body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}
body::before {
  background: url("../../assets/images/background/bg-poke.webp");
}
body::after {
  background: -webkit-gradient(linear, left bottom, left top, from(#a900d6), color-stop(#00b59c), to(#a900d6));
  background: linear-gradient(0deg, #a900d6, #00b59c, #a900d6);
  background-size: 600% 600%;
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  mix-blend-mode: soft-light;
  opacity: 0.8;
}

.team-poke {
  position: fixed;
  right: 0;
  top: 10%;
  background: var(--bg-glass);
  border-radius: 6px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 0;
  z-index: 5;
}
.team-poke .pokemon-team {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.team-poke .pokemon-team i {
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 55px;
  height: 55px;
}
@media (max-width: 768px) {
  .team-poke .pokemon-team i {
    width: 45px;
    height: 45px;
  }
}
.team-poke .pokemon-team i img.ball-icon {
  position: absolute;
  width: 25px;
  height: 25px;
  top: -4px;
  right: -4px;
}
@media (max-width: 768px) {
  .team-poke .pokemon-team i img.ball-icon {
    width: 20px;
    height: 20px;
    top: -3px;
    right: -3px;
  }
}
.team-poke .pokemon-team i img.pokemon-icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-filter 0.2s ease;
  transition: -webkit-filter 0.2s ease;
  transition: filter 0.2s ease;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}
.team-poke .pokemon-team i:hover img.pokemon-icon {
  -webkit-animation: borderRGB 1.5s infinite linear;
          animation: borderRGB 1.5s infinite linear;
}

section .title-section h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
section .title-section p {
  color: #fff;
}

#shadowManeira {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: var(--bg-glass);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: none;
}
#shadowManeira.show {
  display: block;
}

.popup-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.95);
          transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  z-index: 1001;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 6px;
  background-color: var(--bg-color);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--text-color);
  text-shadow: 1px 1px 2px #000;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
}
.popup-alert.show {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.popup-alert.alert {
  border: 2px solid yellow;
}
.popup-alert.error {
  border: 2px solid red;
}
.popup-alert.success {
  border: 2px solid yellowgreen;
}
.popup-alert h3,
.popup-alert p {
  margin-top: 0;
}
.popup-alert button {
  margin-top: 1rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 5px 15px;
}
.popup-alert button.success {
  background-color: yellowgreen;
}

.context-menu {
  position: fixed;
  display: none;
  z-index: 9999;
}
.context-menu .close-this {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  cursor: pointer;
}
.context-menu .close-this img {
  width: 20px;
  height: 20px;
}
.context-menu ul {
  margin: 0;
  background: transparent;
  border: 1px solid #444;
  border-radius: 4px;
  overflow: hidden;
  min-width: 160px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  padding: 3px;
  position: relative;
}
.context-menu ul::before {
  content: "";
  border-radius: 6px;
  -webkit-backdrop-filter: blur(12px) saturate(160%);
          backdrop-filter: blur(12px) saturate(160%);
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--bg-glass);
}
.context-menu ul li {
  padding: 10px 15px;
  color: var(--text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background-color: var(--bg-color);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.context-menu ul li:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.context-menu ul li:last-child {
  border-bottom: none;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.context-menu ul li i {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-style: normal;
}
.context-menu ul li i img {
  width: 15px;
  height: 15px;
  -webkit-filter: var(--filter);
          filter: var(--filter);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.context-menu ul li:hover {
  background: var(--border-color);
  color: var(--text-invert-color);
}
.context-menu ul li:hover i img {
  -webkit-filter: var(--filter-hover);
          filter: var(--filter-hover);
}

.bg-glass:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
          backdrop-filter: blur(12px) saturate(160%);
  background-color: var(--bg-glass);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 0;
}

body.type-grass {
  background: -webkit-gradient(linear, left bottom, left top, from(#56ab2f), color-stop(#a8e063), to(#56ab2f));
  background: linear-gradient(0deg, #56ab2f, #a8e063, #56ab2f);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-fire {
  background: -webkit-gradient(linear, left bottom, left top, from(#ff4e50), color-stop(#f9d423), to(#ff4e50));
  background: linear-gradient(0deg, #ff4e50, #f9d423, #ff4e50);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-water {
  background: -webkit-gradient(linear, left bottom, left top, from(#2193b0), color-stop(#6dd5ed), to(#2193b0));
  background: linear-gradient(0deg, #2193b0, #6dd5ed, #2193b0);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-bug {
  background: -webkit-gradient(linear, left bottom, left top, from(#a8e063), color-stop(#56ab2f), to(#a8e063));
  background: linear-gradient(0deg, #a8e063, #56ab2f, #a8e063);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-normal {
  background: -webkit-gradient(linear, left bottom, left top, from(#d7d2cc), color-stop(#b0bec5), to(#d7d2cc));
  background: linear-gradient(0deg, #d7d2cc, #b0bec5, #d7d2cc);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-steel {
  background: -webkit-gradient(linear, left bottom, left top, from(#bdc3c7), color-stop(#2c3e50), to(#bdc3c7));
  background: linear-gradient(0deg, #bdc3c7, #2c3e50, #bdc3c7);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-poison {
  background: -webkit-gradient(linear, left bottom, left top, from(#a044ff), color-stop(#6a3093), to(#a044ff));
  background: linear-gradient(0deg, #a044ff, #6a3093, #a044ff);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-ground {
  background: -webkit-gradient(linear, left bottom, left top, from(#bc8f63), color-stop(#dfa579), to(#c79081));
  background: linear-gradient(0deg, #bc8f63, #dfa579, #c79081);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-fighting {
  background: -webkit-gradient(linear, left bottom, left top, from(#cb2d3e), color-stop(#ef473a), to(#cb2d3e));
  background: linear-gradient(0deg, #cb2d3e, #ef473a, #cb2d3e);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-rock {
  background: -webkit-gradient(linear, left bottom, left top, from(#bfa755), color-stop(#decba4), to(#3e5151));
  background: linear-gradient(0deg, #bfa755, #decba4, #3e5151);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-electric {
  background: -webkit-gradient(linear, left bottom, left top, from(#f7971e), color-stop(#ffd200), to(#f7971e));
  background: linear-gradient(0deg, #f7971e, #ffd200, #f7971e);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-ghost {
  background: -webkit-gradient(linear, left bottom, left top, from(#360033), color-stop(#0b8793), to(#360033));
  background: linear-gradient(0deg, #360033, #0b8793, #360033);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-psychic {
  background: -webkit-gradient(linear, left bottom, left top, from(#ff6a00), color-stop(#ee0979), to(#ff6a00));
  background: linear-gradient(0deg, #ff6a00, #ee0979, #ff6a00);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-ice {
  background: -webkit-gradient(linear, left bottom, left top, from(#74ebd5), color-stop(#9face6), to(#74ebd5));
  background: linear-gradient(0deg, #74ebd5, #9face6, #74ebd5);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-dragon {
  background: -webkit-gradient(linear, left bottom, left top, from(#20002c), color-stop(#5c6bc0), to(#20002c));
  background: linear-gradient(0deg, #20002c, #5c6bc0, #20002c);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-fairy {
  background: -webkit-gradient(linear, left bottom, left top, from(#ff9a9e), color-stop(#fad0c4), to(#ff9a9e));
  background: linear-gradient(0deg, #ff9a9e, #fad0c4, #ff9a9e);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-dark {
  background: -webkit-gradient(linear, left bottom, left top, from(#0e0f0f), color-stop(#3e464b), to(#0e0f0f));
  background: linear-gradient(0deg, #0e0f0f, #3e464b, #0e0f0f);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

body.type-flying {
  background: -webkit-gradient(linear, left bottom, left top, from(#89f7fe), color-stop(#66a6ff), to(#89f7fe));
  background: linear-gradient(0deg, #89f7fe, #66a6ff, #89f7fe);
  -webkit-animation: gradientShift 10s ease-in-out infinite;
          animation: gradientShift 10s ease-in-out infinite;
  background-size: 600% 600%;
}

@-webkit-keyframes gradientShift {
  0% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 50% 100%;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 50% 100%;
  }
}
@-webkit-keyframes bounceFromTop {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  10% {
    -webkit-transform: translate(-50%, -30px);
            transform: translate(-50%, -30px);
  }
  30% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@keyframes bounceFromTop {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  10% {
    -webkit-transform: translate(-50%, -30px);
            transform: translate(-50%, -30px);
  }
  30% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes borderRGB {
  0% {
    -webkit-filter: drop-shadow(-1px 0 0 red) drop-shadow(1px 0 0 red) drop-shadow(0 -1px 0 red) drop-shadow(0 1px 0 red);
            filter: drop-shadow(-1px 0 0 red) drop-shadow(1px 0 0 red) drop-shadow(0 -1px 0 red) drop-shadow(0 1px 0 red);
  }
  25% {
    -webkit-filter: drop-shadow(-1px 0 0 orange) drop-shadow(1px 0 0 orange) drop-shadow(0 -1px 0 orange) drop-shadow(0 1px 0 orange);
            filter: drop-shadow(-1px 0 0 orange) drop-shadow(1px 0 0 orange) drop-shadow(0 -1px 0 orange) drop-shadow(0 1px 0 orange);
  }
  50% {
    -webkit-filter: drop-shadow(-1px 0 0 lime) drop-shadow(1px 0 0 lime) drop-shadow(0 -1px 0 lime) drop-shadow(0 1px 0 lime);
            filter: drop-shadow(-1px 0 0 lime) drop-shadow(1px 0 0 lime) drop-shadow(0 -1px 0 lime) drop-shadow(0 1px 0 lime);
  }
  75% {
    -webkit-filter: drop-shadow(-1px 0 0 cyan) drop-shadow(1px 0 0 cyan) drop-shadow(0 -1px 0 cyan) drop-shadow(0 1px 0 cyan);
            filter: drop-shadow(-1px 0 0 cyan) drop-shadow(1px 0 0 cyan) drop-shadow(0 -1px 0 cyan) drop-shadow(0 1px 0 cyan);
  }
  100% {
    -webkit-filter: drop-shadow(-1px 0 0 magenta) drop-shadow(1px 0 0 magenta) drop-shadow(0 -1px 0 magenta) drop-shadow(0 1px 0 magenta);
            filter: drop-shadow(-1px 0 0 magenta) drop-shadow(1px 0 0 magenta) drop-shadow(0 -1px 0 magenta) drop-shadow(0 1px 0 magenta);
  }
}
@keyframes borderRGB {
  0% {
    -webkit-filter: drop-shadow(-1px 0 0 red) drop-shadow(1px 0 0 red) drop-shadow(0 -1px 0 red) drop-shadow(0 1px 0 red);
            filter: drop-shadow(-1px 0 0 red) drop-shadow(1px 0 0 red) drop-shadow(0 -1px 0 red) drop-shadow(0 1px 0 red);
  }
  25% {
    -webkit-filter: drop-shadow(-1px 0 0 orange) drop-shadow(1px 0 0 orange) drop-shadow(0 -1px 0 orange) drop-shadow(0 1px 0 orange);
            filter: drop-shadow(-1px 0 0 orange) drop-shadow(1px 0 0 orange) drop-shadow(0 -1px 0 orange) drop-shadow(0 1px 0 orange);
  }
  50% {
    -webkit-filter: drop-shadow(-1px 0 0 lime) drop-shadow(1px 0 0 lime) drop-shadow(0 -1px 0 lime) drop-shadow(0 1px 0 lime);
            filter: drop-shadow(-1px 0 0 lime) drop-shadow(1px 0 0 lime) drop-shadow(0 -1px 0 lime) drop-shadow(0 1px 0 lime);
  }
  75% {
    -webkit-filter: drop-shadow(-1px 0 0 cyan) drop-shadow(1px 0 0 cyan) drop-shadow(0 -1px 0 cyan) drop-shadow(0 1px 0 cyan);
            filter: drop-shadow(-1px 0 0 cyan) drop-shadow(1px 0 0 cyan) drop-shadow(0 -1px 0 cyan) drop-shadow(0 1px 0 cyan);
  }
  100% {
    -webkit-filter: drop-shadow(-1px 0 0 magenta) drop-shadow(1px 0 0 magenta) drop-shadow(0 -1px 0 magenta) drop-shadow(0 1px 0 magenta);
            filter: drop-shadow(-1px 0 0 magenta) drop-shadow(1px 0 0 magenta) drop-shadow(0 -1px 0 magenta) drop-shadow(0 1px 0 magenta);
  }
}
.float-navigation {
  position: fixed;
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
  padding: 10px 5px;
  -webkit-transition: padding 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: padding 0.2s ease-in-out, top 0.2s ease-in-out;
}
.float-navigation:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(12px) saturate(160%);
          backdrop-filter: blur(12px) saturate(160%);
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: border-radius 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: border-radius 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: border-radius 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: border-radius 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}
.float-navigation.minimized {
  padding: 5px;
  top: -1px;
}
.float-navigation.minimized:before {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.float-navigation.minimized nav ul.main .item-menu .content-item-menu {
  width: 45px;
  height: 45px;
}
.float-navigation.minimized nav ul.main .item-menu .sub-item {
  top: calc(100% + 10px);
}
.float-navigation nav {
  position: relative;
}
.float-navigation nav ul.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  gap: 1rem;
  position: relative;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .float-navigation nav ul.main {
    gap: 5px;
  }
}
.float-navigation nav ul.main .item-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.float-navigation nav ul.main .item-menu.logo-main img {
  width: 51px;
  height: 51px;
}
.float-navigation nav ul.main .item-menu .content-item-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--shader);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid var(--bg-color);
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.float-navigation nav ul.main .item-menu .content-item-menu:hover {
  background: var(--shader-hover);
}
@media (max-width: 567px) {
  .float-navigation nav ul.main .item-menu .content-item-menu {
    width: 45px;
    height: 45px;
  }
}
.float-navigation nav ul.main .item-menu .content-item-menu img {
  display: block;
  -webkit-filter: var(--filter-dark-image);
          filter: var(--filter-dark-image);
}
.float-navigation nav ul.main .item-menu .content-item-menu img.icon-no-filter {
  -webkit-filter: none;
          filter: none;
}
.float-navigation nav ul.main .item-menu .sub-item {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 10px 5px;
  width: calc(100% + 10px);
  z-index: 100;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(12px) saturate(160%);
          backdrop-filter: blur(12px) saturate(160%);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.float-navigation nav ul.main .item-menu .sub-item.active {
  display: block;
}
.float-navigation nav ul.main .item-menu .sub-item .content-sub-item {
  max-height: 300px;
  overflow: auto;
  padding: 5px;
}
.float-navigation nav ul.main .item-menu .sub-item .content-sub-item::-webkit-scrollbar-track {
  background: var(--bg-color);
  border-radius: 3px;
}
.float-navigation nav ul.main .item-menu .sub-item .content-sub-item::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
.float-navigation nav ul.main .item-menu .sub-item .content-sub-item::-webkit-scrollbar {
  width: 5px;
}
.float-navigation nav ul.main .item-menu .sub-item .content-sub-item .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.float-navigation nav ul.main .item-menu .sub-item .content-sub-item .search-form input {
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  background: var(--bg-color);
  outline: none;
  width: 100%;
  color: var(--text-color);
}
.float-navigation nav ul.main .item-menu .sub-item .content-sub-item .search-form button {
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.float-navigation nav ul.main .item-menu .sub-item .content-sub-item .search-form button img {
  width: 32px;
  height: 32px;
}
.float-navigation nav ul.main .item-menu .sub-item .content-sub-item .search-form button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 {
  position: relative;
  margin-bottom: 20px;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 > span {
  z-index: 1;
  position: sticky;
  top: -5px;
  background-color: var(--border-color);
  color: var(--text-invert-color);
  margin-bottom: 10px;
  width: 100%;
  border-radius: 8px;
  padding: 5px;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  -webkit-box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 .content-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin-bottom: 32px;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 .content-list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 .content-list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 .content-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 5px 10px;
  border-radius: 9px;
  line-height: 0;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
  text-transform: capitalize;
  font-weight: bold;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  background-color: var(--border-color);
  color: var(--text-invert-color);
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 .content-list a span {
  font-size: 0.9rem;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 .content-list a i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 .content-list a i img {
  width: 30px;
  height: auto;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .grass a {
  background-color: #7ec850;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .fire a {
  background-color: #ff7043;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .water a {
  background-color: #42a5f5;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .bug a {
  background-color: #a2bf4c;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .normal a {
  background-color: #b0bec5;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .steel a {
  background-color: #90a4ae;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .poison a {
  background-color: #ab47bc;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .ground a {
  background-color: #bc8f63;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .fighting a {
  background-color: #e53935;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .rock a {
  background-color: #bfa755;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .electric a {
  background-color: #ffd600;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .ghost a {
  background-color: #7e57c2;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .psychic a {
  background-color: #ec407a;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .ice a {
  background-color: #4dd0e1;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .dragon a {
  background-color: #5c6bc0;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .fairy a {
  background-color: #f48fb1;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .dark a {
  background-color: #37474f;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .flying a {
  background-color: #81d4fa;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .stellar a {
  background-color: #ccc;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=types] .unknown a {
  background-color: #2a2a2a;
  color: #fff;
}
.float-navigation nav ul.main .item-menu .sub-item .item-level-1 [data-recebe=regions] a i img {
  -webkit-filter: var(--filter-hover);
          filter: var(--filter-hover);
}

.float-logo {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.float-logo span {
  display: none;
}

footer {
  background: var(--bg-glass);
  border-radius: 0;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
footer p {
  color: var(--bg-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.pokemons-card {
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  color: var(--text-color);
  background-clip: padding-box;
  -webkit-filter: drop-shadow(3px 4px 2px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(3px 4px 2px rgba(0, 0, 0, 0.2));
}
.pokemons-card.loading .poke-img {
  -webkit-filter: blur(2px);
          filter: blur(2px);
  opacity: 0.7;
}
.pokemons-card.loading .poke-img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url(../../assets/icons/load.svg);
  background-position: center;
  background-size: 120px;
  background-repeat: no-repeat;
  z-index: 1;
  top: 0;
  left: 0;
}
.pokemons-card.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.pokemons-card .content-card {
  border-radius: 4px;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-filter 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-filter 0.2s ease;
  transition: transform 0.2s ease, filter 0.2s ease;
  transition: transform 0.2s ease, filter 0.2s ease, -webkit-transform 0.2s ease, -webkit-filter 0.2s ease;
  z-index: 1;
  padding: 1px 0;
}
.pokemons-card .content-card .poke-type {
  left: 8px;
  top: 8px;
  gap: 5px;
  z-index: 2;
}
.pokemons-card .content-card .poke-type i img {
  width: 20px;
  height: 20px;
  -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
          filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
}
.pokemons-card .content-card .poke-icon {
  right: -4px;
  top: 4px;
  z-index: 2;
  overflow: hidden;
}
@media (max-width: 567px) {
  .pokemons-card .content-card .poke-icon {
    right: -10px;
  }
}
.pokemons-card .content-card .poke-icon::before {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../../assets/icons/pokeball-open-icon.webp);
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.pokemons-card .content-card .poke-icon img {
  top: calc(50% - 12px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
}
.pokemons-card .content-card .poke-img {
  background-color: var(--inveter-bg);
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin: 3px;
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  -webkit-box-shadow: inset 0px 1px 3px 2px rgba(0, 0, 0, 0.6);
          box-shadow: inset 0px 1px 3px 2px rgba(0, 0, 0, 0.6);
}
.pokemons-card .content-card .poke-img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/background/bg-animated-card.webp);
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.pokemons-card .content-card .poke-img .content-pokemon-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pokemons-card .content-card .poke-img .content-pokemon-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/icons/badge-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 150px;
  opacity: 1;
}
.pokemons-card .content-card .poke-img img {
  max-width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0));
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-filter 0.2s ease, -webkit-transform 0.2s ease;
  transition: -webkit-filter 0.2s ease, -webkit-transform 0.2s ease;
  transition: filter 0.2s ease, transform 0.2s ease;
  transition: filter 0.2s ease, transform 0.2s ease, -webkit-filter 0.2s ease, -webkit-transform 0.2s ease;
}
.pokemons-card .content-card .body-card {
  padding: 0 10px;
  border: 1px solid;
  background: var(--bg-color);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-color: transparent;
  margin: 3px;
  margin-bottom: 2px;
  background-clip: padding-box;
  -webkit-box-shadow: inset 0px 1px 3px 2px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0px 1px 3px 2px rgba(0, 0, 0, 0.2);
}
.pokemons-card .content-card .body-card .poke-id {
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0.5rem 0;
}
.pokemons-card .content-card .body-card .poke-name {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0.5rem 0;
  text-transform: capitalize;
  height: 45px;
}
.pokemons-card .content-card:hover {
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  z-index: 2;
}
.pokemons-card .content-card:hover .poke-img {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(0, 0, 0, 0.2);
}
.pokemons-card .content-card:hover .poke-img::before {
  opacity: 0.5;
}
.pokemons-card .content-card:hover .poke-img .content-pokemon-image::after {
  opacity: 0;
}
.pokemons-card .content-card:hover .poke-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.6));
}
@media (max-width: 1024px) {
  .pokemons-card .content-card {
    -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    z-index: 2;
  }
  .pokemons-card .content-card .poke-img {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 0, 0, 0.2);
  }
  .pokemons-card .content-card .poke-img::before {
    opacity: 0.5;
    background-image: none;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .pokemons-card .content-card .poke-img .content-pokemon-image:after {
    opacity: 0;
  }
}
.pokemons-card.shiny .content-card .poke-img {
  background-color: rgba(255, 255, 255, 0.2);
}
.pokemons-card.shiny .content-card .poke-img::before {
  background-image: url(../../assets/images/background/bg-animated-card.webp);
  background-color: transparent;
  opacity: 0.5;
}
.pokemons-card.shiny .content-card .poke-img .content-pokemon-image:after {
  display: none;
}

.pokemons-card.grass .content-card {
  background: -webkit-gradient(linear, left top, right top, from(#56ab2f), to(#a8e063));
  background: linear-gradient(to right, #56ab2f, #a8e063);
}

.pokemons-card.fire .content-card {
  background: -webkit-gradient(linear, right top, left top, from(#ff4e50), to(#f9d423));
  background: linear-gradient(to left, #ff4e50, #f9d423);
}

.pokemons-card.water .content-card {
  background: -webkit-gradient(linear, left top, right top, from(#2193b0), to(#6dd5ed));
  background: linear-gradient(to right, #2193b0, #6dd5ed);
}

.pokemons-card.bug .content-card {
  background: -webkit-gradient(linear, right top, left top, from(#a8e063), to(#56ab2f));
  background: linear-gradient(to left, #a8e063, #56ab2f);
}

.pokemons-card.normal .content-card {
  background: -webkit-gradient(linear, left top, right top, from(#d7d2cc), to(#b0bec5));
  background: linear-gradient(to right, #d7d2cc, #b0bec5);
}

.pokemons-card.steel .content-card {
  background: -webkit-gradient(linear, right top, left top, from(#bdc3c7), to(#2c3e50));
  background: linear-gradient(to left, #bdc3c7, #2c3e50);
}

.pokemons-card.poison .content-card {
  background: -webkit-gradient(linear, left top, right top, from(#a044ff), to(#6a3093));
  background: linear-gradient(to right, #a044ff, #6a3093);
}

.pokemons-card.ground .content-card {
  background: -webkit-gradient(linear, right top, left top, from(#bc8f63), to(#dfa579));
  background: linear-gradient(to left, #bc8f63, #dfa579);
}

.pokemons-card.fighting .content-card {
  background: -webkit-gradient(linear, left top, right top, from(#cb2d3e), to(#ef473a));
  background: linear-gradient(to right, #cb2d3e, #ef473a);
}

.pokemons-card.rock .content-card {
  background: -webkit-gradient(linear, right top, left top, from(#bfa755), to(#decba4));
  background: linear-gradient(to left, #bfa755, #decba4);
}

.pokemons-card.electric .content-card {
  background: -webkit-gradient(linear, left top, right top, from(#f7971e), to(#ffd200));
  background: linear-gradient(to right, #f7971e, #ffd200);
}

.pokemons-card.ghost .content-card {
  background: -webkit-gradient(linear, right top, left top, from(#360033), to(#0b8793));
  background: linear-gradient(to left, #360033, #0b8793);
}

.pokemons-card.psychic .content-card {
  background: -webkit-gradient(linear, left top, right top, from(#ff6a00), to(#ee0979));
  background: linear-gradient(to right, #ff6a00, #ee0979);
}

.pokemons-card.ice .content-card {
  background: -webkit-gradient(linear, right top, left top, from(#74ebd5), to(#9face6));
  background: linear-gradient(to left, #74ebd5, #9face6);
}

.pokemons-card.dragon .content-card {
  background: -webkit-gradient(linear, left top, right top, from(#20002c), to(#5c6bc0));
  background: linear-gradient(to right, #20002c, #5c6bc0);
}

.pokemons-card.fairy .content-card {
  background: -webkit-gradient(linear, right top, left top, from(#ff9a9e), to(#fad0c4));
  background: linear-gradient(to left, #ff9a9e, #fad0c4);
}

.pokemons-card.dark .content-card {
  background: -webkit-gradient(linear, left top, right top, from(#0e0f0f), to(#3e464b));
  background: linear-gradient(to right, #0e0f0f, #3e464b);
}

.pokemons-card.flying .content-card {
  background: -webkit-gradient(linear, right top, left top, from(#89f7fe), to(#66a6ff));
  background: linear-gradient(to left, #89f7fe, #66a6ff);
}

.pokemons-card.shiny .content-card {
  background: linear-gradient(135deg, #fff8c6 0%, #f2c94c 20%, #d4af37 40%, #f2c94c 60%, #b8860b 80%, #fff8c6 100%);
}

.site-main {
  padding: 128px 0;
}
@media (max-width: 768px) {
  .site-main {
    padding: 105px 0;
  }
}

.content-catalog .catalog-header {
  position: relative;
  padding: 5px;
  margin-bottom: 10px;
}
.content-catalog .catalog-header h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.content-catalog .catalog-header .content-applied {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.content-catalog .catalog-header .content-applied .active-filters {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 10px;
}
.content-catalog .catalog-header .content-applied .active-filters > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.content-catalog .catalog-header .content-applied .active-filters > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.content-catalog .catalog-header .content-applied .active-filters > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.content-catalog .catalog-header .content-applied .active-filters > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
@media (max-width: 1024px) {
  .content-catalog .catalog-header .content-applied .active-filters {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.content-catalog .catalog-header .content-applied .active-filters .filter-group {
  margin-bottom: 0.75rem;
}
.content-catalog .catalog-header .content-applied .active-filters .filter-group .filter-group-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}
.content-catalog .catalog-header .content-applied .active-filters .filter-group .active-filter {
  display: inline-block;
  margin: 0 0.5rem 0.5rem 0;
  padding: 0.4rem 0.8rem;
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}
.content-catalog .catalog-header .content-applied .active-filters .filter-group .active-filter:hover {
  background: #ff5555;
  opacity: 0.8;
}
.content-catalog .catalog-header .content-applied .active-filters .filter-group .active-filter::after {
  content: "✕";
  margin-left: 0.5rem;
  font-weight: bold;
}
.content-catalog .show-hidden-filters {
  display: none;
  position: relative;
  padding: 5px;
  margin: 10px 0;
  text-align: center;
}
@media (max-width: 1024px) {
  .content-catalog .show-hidden-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.content-catalog .show-hidden-filters::before {
  content: "";
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--bg-glass);
}
.content-catalog .show-hidden-filters h3 {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  width: 300px;
  max-width: 100%;
  padding: 10px;
  background-color: var(--bg-color);
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.content-catalog .show-hidden-filters h3 i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
}
.content-catalog .show-hidden-filters h3 i img {
  -webkit-filter: var(--filter-dark-image);
          filter: var(--filter-dark-image);
}
.content-catalog .show-hidden-filters-float {
  position: fixed;
  top: 10%;
  z-index: 10;
  left: -50px;
  -webkit-transition: left 0.2s ease-in-out;
  transition: left 0.2s ease-in-out;
  display: none;
}
@media (max-width: 1024px) {
  .content-catalog .show-hidden-filters-float {
    display: block;
  }
}
.content-catalog .show-hidden-filters-float.show {
  left: 0px;
}
.content-catalog .show-hidden-filters-float i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--bg-color);
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  width: 45px;
  height: 45px;
  border-left: 0px;
}
.content-catalog .show-hidden-filters-float i img {
  -webkit-filter: var(--filter-dark-image);
          filter: var(--filter-dark-image);
}
.content-catalog .catalog-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.content-catalog .catalog-body .filter,
.content-catalog .catalog-body .content-grid {
  position: relative;
  padding: 5px;
}
.content-catalog .catalog-body .filter {
  width: 300px;
  padding: 5px;
}
.content-catalog .catalog-body .filter .close-filter {
  display: none;
  position: fixed;
  top: 0;
  right: 5px;
  background-color: red;
  color: #fff;
  font-weight: bold;
  font-size: 25px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
}
@media (max-width: 1024px) {
  .content-catalog .catalog-body .filter {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 5px;
    padding-right: 20px;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  .content-catalog .catalog-body .filter::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-radius: 3px;
  }
  .content-catalog .catalog-body .filter::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
  }
  .content-catalog .catalog-body .filter::-webkit-scrollbar {
    width: 5px;
  }
  .content-catalog .catalog-body .filter.show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  .content-catalog .catalog-body .filter .close-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.content-catalog .catalog-body .filter .item-filter {
  margin-bottom: 10px;
  background-color: var(--bg-color);
  border: 3px solid var(--border-color);
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding-right: 4px;
  padding-bottom: 10px;
}
.content-catalog .catalog-body .filter .item-filter .head-filter {
  padding: 5px 10px;
  padding-right: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 5px;
}
.content-catalog .catalog-body .filter .item-filter .head-filter .title-filter {
  padding: 10px 5px;
}
.content-catalog .catalog-body .filter .item-filter .head-filter .title-filter span {
  color: var(--text-color);
  font-weight: 600;
}
.content-catalog .catalog-body .filter .item-filter .head-filter .filter-input {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  font-size: 0.875rem;
  background: #fff;
  outline: none;
  width: 100%;
  color: #333;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
}
.content-catalog .catalog-body .filter .content-list {
  max-height: 200px;
  overflow: auto;
  padding: 5px 10px;
  padding-right: 3px !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 5px;
}
.content-catalog .catalog-body .filter .content-list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.content-catalog .catalog-body .filter .content-list::-webkit-scrollbar-track {
  background: var(--bg-color);
  border-radius: 3px;
}
.content-catalog .catalog-body .filter .content-list::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
.content-catalog .catalog-body .filter .content-list::-webkit-scrollbar {
  width: 5px;
}
.content-catalog .catalog-body .filter .content-list .item-option.selected {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.content-catalog .catalog-body .filter .content-list .item-option input[type=checkbox] {
  display: none;
}
.content-catalog .catalog-body .filter .content-list .item-option label {
  padding: 8px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: var(--border-color);
  color: var(--text-invert-color);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-weight: 600;
  text-transform: capitalize;
  height: 50px;
  position: relative;
}
.content-catalog .catalog-body .filter .content-list .item-option label.grass {
  background-color: #7ec850;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.fire {
  background-color: #ff7043;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.water {
  background-color: #42a5f5;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.bug {
  background-color: #a2bf4c;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.normal {
  background-color: #b0bec5;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.steel {
  background-color: #90a4ae;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.poison {
  background-color: #ab47bc;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.ground {
  background-color: #bc8f63;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.fighting {
  background-color: #e53935;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.rock {
  background-color: #bfa755;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.electric {
  background-color: #ffd600;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.ghost {
  background-color: #7e57c2;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.psychic {
  background-color: #ec407a;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.ice {
  background-color: #4dd0e1;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.dragon {
  background-color: #5c6bc0;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.fairy {
  background-color: #f48fb1;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.dark {
  background-color: #37474f;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.flying {
  background-color: #81d4fa;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.stellar {
  background-color: #ccc;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.unknown {
  background-color: #2a2a2a;
  color: #fff;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-1 {
  background-image: url(../../assets/images/regions/kanto.webp);
  background-position: center -24%;
  background-size: 100% auto;
  font-size: 0;
  height: 55px;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-1 i {
  display: none;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-2 {
  background-image: url(../../assets/images/regions/johto.webp);
  background-position: center -24%;
  background-size: 100% auto;
  font-size: 0;
  height: 55px;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-2 i {
  display: none;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-3 {
  background-image: url(../../assets/images/regions/hoenn.webp);
  background-position: center -24%;
  background-size: 100% auto;
  font-size: 0;
  height: 55px;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-3 i {
  display: none;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-4 {
  background-image: url(../../assets/images/regions/sinnoh.webp);
  background-position: center -24%;
  background-size: 100% auto;
  font-size: 0;
  height: 55px;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-4 i {
  display: none;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-5 {
  background-image: url(../../assets/images/regions/unova.webp);
  background-position: center -24%;
  background-size: 100% auto;
  font-size: 0;
  height: 55px;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-5 i {
  display: none;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-6 {
  background-image: url(../../assets/images/regions/kalos.webp);
  background-position: center -24%;
  background-size: 100% auto;
  font-size: 0;
  height: 55px;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-6 i {
  display: none;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-7 {
  background-image: url(../../assets/images/regions/alola.webp);
  background-position: center -24%;
  background-size: 100% auto;
  font-size: 0;
  height: 55px;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-7 i {
  display: none;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-8 {
  background-image: url(../../assets/images/regions/galar.webp);
  background-position: center -24%;
  background-size: 100% auto;
  font-size: 0;
  height: 55px;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-8 i {
  display: none;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-9 {
  background-image: url(../../assets/images/regions/hisui.webp);
  background-position: center -24%;
  background-size: 100% auto;
  font-size: 0;
  height: 55px;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-9 i {
  display: none;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-10 {
  background-image: url(../../assets/images/regions/paldea.webp);
  background-position: center -24%;
  background-size: 100% auto;
  font-size: 0;
  height: 55px;
}
.content-catalog .catalog-body .filter .content-list .item-option label.regions-10 i {
  display: none;
}
.content-catalog .catalog-body .filter .content-list .item-option label.black {
  background-color: #2a2a2a;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
.content-catalog .catalog-body .filter .content-list .item-option label.blue {
  background-color: #42a5f5;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
.content-catalog .catalog-body .filter .content-list .item-option label.brown {
  background-color: #8d6e63;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
.content-catalog .catalog-body .filter .content-list .item-option label.gray {
  background-color: #b0bec5;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
.content-catalog .catalog-body .filter .content-list .item-option label.green {
  background-color: #7ec850;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
.content-catalog .catalog-body .filter .content-list .item-option label.pink {
  background-color: #f48fb1;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
.content-catalog .catalog-body .filter .content-list .item-option label.purple {
  background-color: #ab47bc;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
.content-catalog .catalog-body .filter .content-list .item-option label.red {
  background-color: #e53935;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
.content-catalog .catalog-body .filter .content-list .item-option label.white {
  background-color: #f5f5f5;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
.content-catalog .catalog-body .filter .content-list .item-option label.yellow {
  background-color: #ffd600;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
.content-catalog .catalog-body .filter .content-list .item-option label i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 30px;
  height: 30px;
}
.content-catalog .catalog-body .filter .content-list .item-option label i img {
  width: 100%;
  height: auto;
}
.content-catalog .catalog-body .filter .content-list .item-option label img {
  margin-right: 15px;
  width: 30px;
}
.content-catalog .catalog-body .filter .content-list .item-option input[type=checkbox]:checked + label {
  color: white;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
  font-weight: bold;
  border: 2px solid rgb(92, 138, 0);
}
.content-catalog .catalog-body .filter .content-list .item-option input[type=checkbox]:checked + label:before {
  content: "✔️";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .content-catalog .catalog-body .filter .item-filter[data-item=regions] .content-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.content-catalog .catalog-body .filter button[type=submit] {
  background-color: var(--bg-color);
  color: var(--text-color);
  border: 2px solid var(--border-color);
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  position: sticky;
  bottom: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.content-catalog .catalog-body .filter button[type=submit] i {
  margin-left: 15px;
}
.content-catalog .catalog-body .content-grid {
  width: 100%;
}
.content-catalog .catalog-body .content-grid #scroll-sentinel {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  height: 0px;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: transparent;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.content-catalog .catalog-body .content-grid #scroll-sentinel.loading {
  opacity: 0.5;
  pointer-events: none;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.content-catalog .catalog-body .content-grid #scroll-sentinel.loading::before {
  content: "Loading...";
  font-size: 1.2rem;
  color: #fff;
}
.content-catalog .catalog-body .content-grid .alert-error {
  display: none;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.content-catalog .catalog-body .content-grid .alert-error.show {
  display: block;
}
.content-catalog .catalog-body .content-grid .alert-error h3 {
  color: #e50000;
}
.content-catalog .catalog-body .content-grid .alert-error ul {
  list-style-type: disc;
}
.content-catalog .catalog-body .content-grid .grid-pokemon {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 10px;
  width: 100%;
}
.content-catalog .catalog-body .content-grid .grid-pokemon > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.content-catalog .catalog-body .content-grid .grid-pokemon > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.content-catalog .catalog-body .content-grid .grid-pokemon > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.content-catalog .catalog-body .content-grid .grid-pokemon > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
@media (max-width: 1024px) {
  .content-catalog .catalog-body .content-grid .grid-pokemon {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .content-catalog .catalog-body .content-grid .grid-pokemon {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .content-catalog .catalog-body .content-grid .grid-pokemon {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.content-catalog .catalog-body .content-grid .grid-pokemon .pokemons-card {
  padding: 5px 0;
}
.content-catalog .catalog-body .content-grid .grid-pokemon .pokemons-card .content-card .poke-icon {
  overflow: hidden;
}
.content-catalog .catalog-body .content-grid .grid-pokemon .pokemons-card .content-card .poke-icon img {
  top: calc(50% - 10px);
  width: 70px;
  height: auto;
}
.content-catalog .catalog-footer {
  position: relative;
  padding: 5px;
}
.content-catalog .catalog-footer::before {
  content: "";
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--bg-glass);
}