@charset "UTF-8";
/* Please ❤ this if you like it! */
/* Follow Me https://codepen.io/designfenix */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400..700&display=swap");
body {
  background-image: linear-gradient(68.4deg, rgba(248, 182, 204, 0.8) 0.5%, rgba(192, 198, 230, 0.8) 49%, rgba(225, 246, 240, 0.8) 99.8%);
  display: flex;
  min-height: 100vh;
}
@media (min-width: 375px) {
  body {
    align-items: center;
  }
}

.iphone-x {
  position: relative;
  margin: 0px auto;
  width: 100%;
  height: 100vh;
  background-color: #fbfbfb;
  border-radius: 0;
  box-shadow: 0px 0px 0px 11px #f1f1f1, 0px 0px 0px 13px #eeeeee, 0px 0px 0px 20px #ececec, 0 55px 40px rgba(0, 0, 0, 0.1);
}
@media (min-width: 375px) {
  .iphone-x {
    margin: 40px auto;
    border-radius: 40px;
    height: 780px;
    width: 360px;
      background: transparent;
  }
}
/*.iphone-x:before, .iphone-x:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}*/
.iphone-x:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  bottom: 7px;
  width: 140px;
  height: 4px;
  background-color: #f1f1f1;
  border-radius: 10px;
}
/*.iphone-x:before {
  top: 0px;
  width: 56%;
  height: 30px;
  background-color: #f1f1f1;
  border-radius: 0px 0px 40px 40px;
  z-index: 2;
}*/
.iphone-x i,
.iphone-x b,
.iphone-x s,
.iphone-x .content {
  position: absolute;
  display: block;
  color: transparent;
}
.iphone-x i {
  top: 0px;
  left: 50%;
  transform: translate(-50%, 6px);
  height: 8px;
  width: 15%;
  background-color: #dfdfdf;
  border-radius: 8px;
  box-shadow: inset 0px -3px 3px 0px rgba(255, 255, 255, 0.2);
  z-index: 3;
}
.iphone-x b {
  left: 10%;
  top: 0px;
  transform: translate(180px, 4px);
  width: 12px;
  height: 12px;
  background-color: #d5d5d5;
  border-radius: 12px;
  box-shadow: inset 0px -3px 2px 0px rgba(255, 255, 255, 0.2);
  z-index: 3;
}
.iphone-x b:after {
  content: "";
  position: absolute;
  background-color: #adadad;
  width: 6px;
  height: 6px;
  top: 2px;
  left: 2px;
  top: 3px;
  left: 3px;
  display: block;
  border-radius: 4px;
  box-shadow: inset 0px -2px 2px rgba(0, 0, 0, 0.2);
}
.iphone-x .content {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  z-index: 1;
  color: red;
  background: #fbfbfb;
  position: relative;
  border-radius: 0;
}
@media (min-width: 375px) {
  .iphone-x .content {
    border-radius: 40px;
  }
}
.iphone-x .content::-webkit-scrollbar *,
.autocomplete-container::-webkit-scrollbar *,
.chat-messages::-webkit-scrollbar * {
  background: transparent;
}
.iphone-x .content::-webkit-scrollbar,
.autocomplete-container::-webkit-scrollbar,
.chat-messages::-webkit-scrollbar {
  width: 10px;
  height: 18px;
  background-color: transparent;
}
.iphone-x .content::-webkit-scrollbar-thumb,
.autocomplete-container::-webkit-scrollbar-thumb,
.chat-messages::-webkit-scrollbar-thumb {
  height: 6px;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 7px;
  -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}
.iphone-x .content::-webkit-scrollbar-button,
.autocomplete-container::-webkit-scrollbar-button,
.chat-messages::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.iphone-x .content::-webkit-scrollbar-track,
.autocomplete-container::-webkit-scrollbar-track,
.chat-messages::-webkit-scrollbar-track {
  display: none;
}
.iphone-x .content::-webkit-scrollbar-track-piece,
.autocomplete-container::-webkit-scrollbar-track-piece,
.chat-messages::-webkit-scrollbar-track-piece {
  display: none;
}
.iphone-x .content::-webkit-scrollbar-corner,
.autocomplete-container::-webkit-scrollbar-corner,
.chat-messages::-webkit-scrollbar-corner {
  background-color: transparent;
}

#app {
  padding: 50px 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url(../assets/background/header-bg.png) no-repeat;
  background-size: 100%;
  background-position: 110px 0%;
}
#app header {
  padding: 0 15px;
}
#app header h1 {
  color: #383838;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 1.5rem;
  line-height: 1.7rem;
  font-weight: 700;
}
#app header h2 {
    color: #383838;
    font-family: "Noto Sans KR", sans-serif;
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}
#app header h2 img{
    height: 1rem;
    margin-left: 4px;
}
#app div .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  outline: none;
  background: #fbfbfb;
  height: 45px;
  width: 45px;
  border-radius: 13.3333333333px;
  box-shadow: 0 8px 16px #e9e9e9;
    cursor: pointer;
}
#app div .menu svg {
  color: #383838;
}
#app .poke-detail {
  position: absolute;
  top: 0%;
  left: 100%;
  width: calc(100% + 11px);
  font-size: 0;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  min-height: 100%;
  bottom: 0;
  overflow-x: hidden;
  background: #fbfbfb;
  z-index: 10;
  /*comentar despues*/
}
#app .poke-detail.chat__opened{
    width: 100%;
}
#app .poke-detail::-webkit-scrollbar * {
  background: transparent;
}
#app .poke-detail::-webkit-scrollbar {
  width: 10px;
  height: 18px;
  background-color: transparent;
}
#app .poke-detail::-webkit-scrollbar-thumb {
  height: 6px;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 7px;
  -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}
#app .poke-detail::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
#app .poke-detail::-webkit-scrollbar-track {
  display: none;
}
#app .poke-detail::-webkit-scrollbar-track-piece {
  display: none;
}
#app .poke-detail::-webkit-scrollbar-corner {
  background-color: transparent;
}
#app .poke-detail__header {
  padding: 50px 10px;
  background-size: cover;
  background-position: center bottom;
}
#app .poke-detail__header svg.bg {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.8);
  z-index: 0;
}
#app .poke-detail__header[data-type=grass] {
  background-image: url(../assets/background/grass.jpg);
}
#app .poke-detail__header[data-type=fire] {
  background-image: url(../assets/background/fire.jpg);
}
#app .poke-detail__header[data-type=water] {
  background-image: url(../assets/background/water.jpg);
}
#app .poke-detail__header[data-type=fighting] {
  background-image: url(../assets/background/fighting.jpg);
}
#app .poke-detail__header[data-type=normal] {
  background-image: url(../assets/background/normal.jpg);
}
#app .poke-detail__header[data-type=ghost] {
  background-image: url(../assets/background/ghost.jpg);
}
#app .poke-detail__header[data-type=bug] {
  background-image: url(../assets/background/bug.jpg);
}
#app .poke-detail__header[data-type=ground] {
  background-image: url(../assets/background/ground.jpg);
}
#app .poke-detail__header[data-type=rock] {
  background-image: url(../assets/background/rock.jpg);
}
#app .poke-detail__header[data-type=electric] {
  background-image: url(../assets/background/electric.jpg);
}
#app .poke-detail__header[data-type=fairy] {
  background-image: url(../assets/background/fairy.jpg);
}
#app .poke-detail__header[data-type=ice] {
  background-image: url(../assets/background/ice.jpg);
}
#app .poke-detail__header[data-type=psychic] {
  background-image: url(../assets/background/psychic.jpg);
}
#app .poke-detail__header[data-type=dragon] {
  background-image: url(../assets/background/dragon.jpg);
}
#app .poke-detail__header[data-type=poison] {
  background-image: url(../assets/background/poison.jpg);
}
#app .poke-detail__header__arrow {
  border: 0;
  outline: none;
  background: #fbfbfb;
  width: 40px;
  height: 40px;
  display: flex;
  line-height: 100%;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #383838;
  position: relative;
  z-index: 4;
  float: left;
}
#app .poke-detail__header__image {
  display: flex;
    flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
#app .poke-detail__header__image img {
  max-width: 100%;
  cursor: pointer;
}
#app .poke-detail__header__name {
  text-align: center;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fbfbfb;
  text-transform: capitalize;
  position: relative;
  z-index: 3;
    margin: 0 auto;
    width: 65%;
}
#app .poke-detail__header__number {
  float: right;
  padding: 8px 16px;
  font-family: "Noto Sans KR", sans-serif;
  color: #383838;
  background: #fbfbfb;
  z-index: 3;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  margin-top: 0.2rem;
}
#app .poke-detail__header__types {
  display: flex;
  justify-content: center;
  align-items: center;
    position: absolute;
    margin: 0 auto;
    width: calc(100% - 20px);
    top: 10px;
}
#app .poke-detail__header__types li {
  margin: 0 10px;
  padding: 8px 16px;
  font-family: "Noto Sans KR", sans-serif;
  color: #383838;
  background: rgba(255, 255, 255, 0.6);
  z-index: 3;
  border-radius: 13.3333333333px;
  font-size: 0.8rem;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  text-transform: capitalize;
}
#app .poke-detail__content {
  border-radius: 40px;
  margin-top: -30px;
  padding: 30px 10px;
  background: #fbfbfb;
  position: relative;
  z-index: 2;
  min-height: 50vh;
}
@media (min-width: 375px) {
  #app .poke-detail__content {
    min-height: auto;
  }
}
#app .poke-detail__content__resume {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}
#app .poke-detail__content__resume__item {
  padding: 0.8rem;
  color: #383838;
  font-family: "Noto Sans KR", sans-serif;
  background: #fbfbfb;
  border-right: 1px solid #d5d5d5;
}
#app .poke-detail__content__resume__item:last-child {
  border: 0;
}
#app .poke-detail__content__resume__item .value {
  text-align: center;
  font-size: 1.1rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #ebebeb;
  text-transform: capitalize;
}
#app .poke-detail__content__resume__item .description {
  color: #b8b8b8;
  text-align: center;
  font-size: 0.8rem;
  padding-top: 0.2rem;
}
#app .poke-detail__content__stats {
  padding: 25px 0;
  margin: 15px 0;
}
#app .poke-detail__content__stats__title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #383838;
  font-family: "Noto Sans KR", sans-serif;
}
#app .poke-detail__content__stats__progressbar__label {
  padding: 10px 0 5px 5px;
  font-family: "Noto Sans KR", sans-serif;
  color: #383838;
  font-size: 0.8rem;
}
#app .poke-detail__content__stats__progressbar__progress {
  background: #e2e2e2;
  height: 15px;
  position: relative;
  border-radius: 40px;
}
#app .poke-detail__content__stats__progressbar__progress__bar {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  min-width: 2rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#app .poke-detail__content__stats__progressbar__progress__bar span {
  font-size: 0.8rem;
  color: #fbfbfb;
  font-weight: 600;
  font-family: "Noto Sans KR", sans-serif;
  padding: 5px;
  line-height: 100%;
  background: #383838;
  border-radius: 8px;
}
#app .poke-detail__content__stats__progressbar__progress__bar--hp {
  background: linear-gradient(to right, #d31027, #ea384d);
}
#app .poke-detail__content__stats__progressbar__progress__bar--attack {
  background: linear-gradient(to right, #f46b45, #eea849);
}
#app .poke-detail__content__stats__progressbar__progress__bar--defense {
  background: linear-gradient(to right, #f7971e, #ffd200);
}
#app .poke-detail__content__stats__progressbar__progress__bar--s-attack {
  background: linear-gradient(to right, #95c4ff, #6ddcff);
}
#app .poke-detail__content__stats__progressbar__progress__bar--s-defense {
  background: linear-gradient(to right, #1d976c, #93f9b9);
}
#app .poke-detail__content__stats__progressbar__progress__bar--speed {
  background: linear-gradient(to right, #8e2de2, #4a00e0);
}
#app .poke-detail__content__sw-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: stretch;
}
#app .poke-detail__content__sw-container__weakness, #app .poke-detail__content__sw-container__strong {
  font-family: "Noto Sans KR", sans-serif;
  color: #383838;
  padding-bottom: 20px;
}
#app .poke-detail__content__sw-container__weakness h4, #app .poke-detail__content__sw-container__strong h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 20px 0;
}
#app .poke-detail__content__sw-container__weakness ul li, #app .poke-detail__content__sw-container__strong ul li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  padding: 10px 20px;
  background: #bbbbbb;
  text-transform: capitalize;
  border-radius: 20px;
  color: #fbfbfb;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=normal], #app .poke-detail__content__sw-container__strong ul li[data-type=normal] {
  background: #a8a77a;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=fire], #app .poke-detail__content__sw-container__strong ul li[data-type=fire] {
  background: #ee8130;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=water], #app .poke-detail__content__sw-container__strong ul li[data-type=water] {
  background: #6390f0;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=electric], #app .poke-detail__content__sw-container__strong ul li[data-type=electric] {
  background: #f7d02c;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=grass], #app .poke-detail__content__sw-container__strong ul li[data-type=grass] {
  background: #7ac74c;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=ice], #app .poke-detail__content__sw-container__strong ul li[data-type=ice] {
  background: #96d9d6;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=fighting], #app .poke-detail__content__sw-container__strong ul li[data-type=fighting] {
  background: #c22e28;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=poison], #app .poke-detail__content__sw-container__strong ul li[data-type=poison] {
  background: #a33ea1;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=ground], #app .poke-detail__content__sw-container__strong ul li[data-type=ground] {
  background: #e2bf65;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=flying], #app .poke-detail__content__sw-container__strong ul li[data-type=flying] {
  background: #a98ff3;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=psychic], #app .poke-detail__content__sw-container__strong ul li[data-type=psychic] {
  background: #f95587;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=bug], #app .poke-detail__content__sw-container__strong ul li[data-type=bug] {
  background: #a6b91a;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=rock], #app .poke-detail__content__sw-container__strong ul li[data-type=rock] {
  background: #b6a136;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=ghost], #app .poke-detail__content__sw-container__strong ul li[data-type=ghost] {
  background: #735797;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=dragon], #app .poke-detail__content__sw-container__strong ul li[data-type=dragon] {
  background: #6f35fc;
}
#app .poke-detail__content__sw-container__weakness ul li[data-type=fairy], #app .poke-detail__content__sw-container__strong ul li[data-type=fairy] {
  background: #d685ad;
}
#app #search-filter-form {
  position: sticky;
  top: 0px;
  z-index: 4;
  padding: 0 10px;
  padding-top: 40px;
    display: flex;
    align-items: center;
}
#app #search-filter-form .form-search {
    width: 100%;
}
#app #search-filter-form .form-search .input-group {
  border-radius: 40px;
  background: #fbfbfb;
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  padding: 10px 20px;
    width: calc(100% - 30px);
}
#app #search-filter-form .form-search .input-group input {
  flex: 1;
  outline: none;
  border: 0;
  background: transparent;
  font-size: 0.9rem;
  color: #383838;
  font-family: "Noto Sans KR", sans-serif;
}
#app #search-filter-form .form-search .input-group button {
  margin-left: auto;
  background: #fbfbfb;
  border-radius: 20px;
  border: 0;
  color: #383838;
  cursor: pointer;
  outline: none;
  width: 32px;
  height: 32px;
  transition: ease all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#app #search-filter-form .form-search .input-group button:hover {
  background: #e2e2e2;
}
#app #poke-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 30px;
  justify-items: stretch;
  align-items: stretch;
  padding-top: 20px;
  padding-left: 10px;
}
#app #poke-list .load {
  color: #383838;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#app .card {
  display: flex;
  background: #fbfbfb;
  padding: 10px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  transition: ease all 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02), 0 4px 8px rgba(0, 0, 0, 0.02), 0 8px 16px rgba(0, 0, 0, 0.02), 0 16px 32px rgba(0, 0, 0, 0.02), 0 32px 64px rgba(0, 0, 0, 0.02);
  opacity: 0;
  transform: translatey(50px);
}
#app .card.hide {
  display: none;
}
#app .card--active {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 6;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  padding-top: 40px;
}
#app .card__particle {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-animation: rotate360 15s linear both infinite;
          animation: rotate360 15s linear both infinite;
  transform-origin: center;
}
#app .card__particle:before, #app .card__particle:after {
  content: "";
  position: absolute;
  right: -25%;
  top: -25%;
  height: 90%;
  width: 90%;
  border-radius: 60%;
  filter: blur(60px);
  opacity: 0.2;
  z-index: 0;
  transition: ease all 0.5s;
}
#app .card__particle:after {
  bottom: -25%;
  left: -25%;
  top: auto;
  right: auto;
}
#app .card[data-type=fairy] .card__particle:before {
  background-color: #e69fb0;
}
#app .card[data-type=fairy] .card__particle:after {
  background-color: #ff8cd0;
}
#app .card[data-type=psychic] .card__particle:before {
  background-color: #9600f4;
}
#app .card[data-type=psychic] .card__particle:after {
  background-color: #64f4c0;
}
#app .card[data-type=fighting] .card__particle:before {
  background-color: #ffb46b;
}
#app .card[data-type=fighting] .card__particle:after {
  background-color: #bd6f22;
}
#app .card[data-type=ground] .card__particle:before, #app .card[data-type=rock] .card__particle:before {
  background-color: #d2820e;
}
#app .card[data-type=ground] .card__particle:after, #app .card[data-type=rock] .card__particle:after {
  background-color: #382203;
}
#app .card[data-type=electric] .card__particle:before {
  background-color: #ffd100;
}
#app .card[data-type=electric] .card__particle:after {
  background-color: #b29200;
}
#app .card[data-type=normal] .card__particle:before {
  background-color: #f4eeb8;
}
#app .card[data-type=normal] .card__particle:after {
  background-color: #c9cc99;
}
#app .card[data-type=grass] .card__particle:before {
  background-color: #67fc34;
}
#app .card[data-type=grass] .card__particle:after {
  background-color: #20fca3;
}
#app .card[data-type=dragon] .card__particle:before {
  background-color: #fa6c14;
}
#app .card[data-type=dragon] .card__particle:after {
  background-color: #ffac13;
}
#app .card[data-type=fire] .card__particle:before {
  background-color: #ff2e16;
}
#app .card[data-type=fire] .card__particle:after {
  background-color: #ff5c16;
}
#app .card[data-type=water] .card__particle:before {
  background-color: #08e3ff;
}
#app .card[data-type=water] .card__particle:after {
  background-color: #008aff;
}
#app .card[data-type=poison] .card__particle:before, #app .card[data-type=ghost] .card__particle:before {
  background-color: #d49cfb;
}
#app .card[data-type=poison] .card__particle:after, #app .card[data-type=ghost] .card__particle:after {
  background-color: #40a595;
}
#app .card[data-type=ice] .card__particle:before {
  background-color: #00ecf4;
}
#app .card[data-type=ice] .card__particle:after {
  background-color: #0270f4;
}
#app .card[data-type=bug] .card__particle:before {
  background-color: #77dc55;
}
#app .card[data-type=bug] .card__particle:after {
  background-color: #f5ee83;
}
#app .card:hover {
  background: white;
  cursor: pointer;
}
#app .card:hover .card__particle:before, #app .card:hover .card__particle:after {
  opacity: 0.4;
}
#app .card:hover .card__image {
  transform: scale(1.05);
}
#app .card__image {
  z-index: 1;
  margin-top: -5px;
  transition: ease all 0.3s;
}
#app .card__image img {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
  max-width: 100%;
}
#app .card__name {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  color: #383838;
  text-transform: capitalize;
  mix-blend-mode: color-burn;
  z-index: 3;
  text-align: center;
  position: relative;
}
#app .card__number {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 8px 16px;
  font-family: "Noto Sans KR", sans-serif;
  color: #383838;
  background: rgba(255, 255, 255, 0.6);
  z-index: 3;
  border-radius: 13.3333333333px;
  font-size: 0.7rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
#app .card__types {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
#app .card__types li {
    margin: 0 2px;
    padding: 8px 10px;
  font-family: "Noto Sans KR", sans-serif;
  color: #383838;
  background: rgba(255, 255, 255, 0.6);
  z-index: 3;
  border-radius: 13.3333333333px;
  font-size: 0.8rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  text-transform: capitalize;
}

@-webkit-keyframes smoothMove {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-50%, 25%);
  }
  75% {
    transform: translate(25%, 50%);
  }
}

@keyframes smoothMove {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-50%, 25%);
  }
  75% {
    transform: translate(25%, 50%);
  }
}
@-webkit-keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#audio-top {
  position: fixed;
  top: 65px;
  left: 10px;
}

/*Dev*/
#dev, #notification {
    font-family: "Noto Sans KR", sans-serif;
    position: fixed;
    font-size: 14px;
    padding: 1em;
    color: #383838;
    background-color: white;
    border-radius: 25px;
    align-items: center;
}

#dev {
    bottom: 10px;
    left: 10px;
}

#notification {
    bottom: 10px;
    right: 10px;
}

#dev b, #notification b {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #383838;
    transition: ease all 0.3s;
}

#dev b a, #notification b a {
    font-weight: bold;
    color: #383838;
    cursor: pointer;
}

#dev b:hover, #notification b:hover {
    text-decoration: underline;
}

#dev b a:hover, #notification b a:hover {
    color: #ef5350;
}

#dev i, #notification i {
    margin-right: 5px;
}

#dev span, #notification span {
    display: none;
    transition: ease all 0.3s;
}

#dev b:hover span, #notification b:hover span {
    display: inline-block;
}

@media (max-width: 480px) {
    #dev, #notification {
        top: 10px;
        bottom: auto;
        display: block;
        position: absolute;
        z-index: 2;
        font-size: 12px;
        padding: 0.5em;
    }

    #dev {
        left: 10px;
    }

    #notification {
        right: 10px;
    }

    #dev i, #notification i {
        display: inline-block;
    }

    #dev svg, #notification svg {
        width: 12px;
        height: 12px;
    }
}

.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy-load.loaded {
    opacity: 1;
}

.chat-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #ff6f61;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#app .poke-detail__header[data-type=normal] .chat-button {
    background: #a8a77a;
}
#app .poke-detail__header[data-type=fire] .chat-button {
    background: #ee8130;
}
#app .poke-detail__header[data-type=water] .chat-button {
    background: #6390f0;
}
#app .poke-detail__header[data-type=electric] .chat-button {
    background: #f7d02c;
}
#app .poke-detail__header[data-type=grass] .chat-button {
    background: #7ac74c;
}
#app .poke-detail__header[data-type=ice] .chat-button {
    background: #96d9d6;
}
#app .poke-detail__header[data-type=fighting] .chat-button {
    background: #c22e28;
}
#app .poke-detail__header[data-type=poison] .chat-button {
    background: #a33ea1;
}
#app .poke-detail__header[data-type=ground] .chat-button {
    background: #e2bf65;
}
#app .poke-detail__header[data-type=flying] .chat-button {
    background: #a98ff3;
}
#app .poke-detail__header[data-type=psychic] .chat-button {
    background: #f95587;
}
#app .poke-detail__header[data-type=bug] .chat-button {
    background: #a6b91a;
}
#app .poke-detail__header[data-type=rock] .chat-button {
    background: #b6a136;
}
#app .poke-detail__header[data-type=ghost] .chat-button {
    background: #735797;
}
#app .poke-detail__header[data-type=dragon] .chat-button {
    background: #6f35fc;
}
#app .poke-detail__header[data-type=fairy] .chat-button {
    background: #d685ad;
}

.chat-button:hover {
    background-color: #ff8566;
    transform: translateY(-2px);
}

.chat-button:active {
    background-color: #ff4f4f;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chat-button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 111, 97, 0.5);
}

.chat-window {
    position: absolute;
    width: calc(100% - 40px);
    height: 50%;
    bottom: 0;
    background-color: #fbfbfb;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: -30px;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chat-header h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.close-chat {
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    display: flex;
    align-items: center;
    max-width: 75%;
    padding: 10px;
    border-radius: 10px;
}

.message.pokemon {
    background-color: #e0f7fa;
    align-self: flex-start;
}

.message.user {
    background-color: #fff176;
    align-self: flex-end;
}

.message img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.message span {
    display: inline-block;
    /*max-width: calc(100% - 50px); !* Adjust based on image width *!
    word-wrap: break-word;*/
    font-weight: 600;
    color: #383838;
    font-size: 0.8rem;
    line-height: 1rem;
}

.chat-input {
    display: flex;
    align-items: center;
    position: relative;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #ddd;
    margin: 0 5px;
}

.chat-input button {
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}
.chat-input .mic-button{
    padding: 5px;
    border-radius: 10px;
}
.chat-input .mic-button:disabled,
.chat-input .mic-button[disabled]{
    pointer-events: none;
    opacity: 0.3;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: #383838;
    font-weight: 600;
    font-size: 0.8rem;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #09f;
    animation: spin 1s ease infinite;
    margin-right: 10px;
}

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

.card__type__wrapper{
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.card__type {
    display: inline-block;
    background-color: #ef5350;
    color: white;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 25px;
    margin-right: 5px;
    transition: background-color 0.3s;
    font-size: 14px;
}

.card__type:hover {
    background-color: #d32f2f;
}

.card__type__wrapper p{
    font-size: 10px;
    color: #383838;
}

@keyframes slide-out {
    100% {
        transform: translateX(-100%);
    }
}

@keyframes slide-in {
    100% {
        transform: translateX(0);
    }
}

.hide-content {
    animation: slide-out 0.4s forwards;
    display: none !important;
}

.show-content {
    animation: slide-in 0.3s forwards;
    visibility: visible !important;
    overflow-x: hidden !important;
}

#app .poke-detail.show-content {
    left: 0;
}

.autocomplete-container {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: "Noto Sans KR", sans-serif;
    margin-top: 5px;
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-size: 14px;
    color: #383838;
}

.autocomplete-item:hover {
    background-color: #f7f7f7;
    color: #ef5350;
    font-weight: bold;
}

.autocomplete-item:active {
    background-color: #ef5350;
    color: white;
}

.autocomplete-item + .autocomplete-item {
    border-top: 1px solid #ddd;
}
