@font-face {
    font-family: pokefont;
    src: url('./PokemonSolid.ttf');
    font-weight: normal;
    font-style: normal;
}

html, body {
    height: 100%;
    margin: 0;
    min-height: 75rem;
    padding-top: 4.5rem;
}


:root {
    --poke-font: pokefont;
}

body {
    background-color: #333333 !important;
}

.poke-img {
    max-width: 400px !important;
}

.margin-10 {
    margin: 10px;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-top-40 {
  margin-top: 40px !important;
}

.infoText {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.infoText span{
  margin-bottom: 10px;
}

.cursor-pointer {
    cursor: pointer;
}

.max-width-button {
    max-width: 400px !important;
}

.hover-effect {
    outline: 0px solid #ffffff;
    transition: outline 0.5s ease 0s;
}

.hover-effect:hover {
    outline: 5px solid #000000;
}

.pokefont {
    font-family: var(--poke-font);
}

.git-img {
    object-fit: cover;
    width: 18px;
    margin-right: 8px;
}

.d-non {
    display: none;
}

.padding-3 {
    padding: 3px;
}

.no-copy {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.overflow-hidden {
    overflow: hidden;
}

.scale-up-ver-center {
	-webkit-animation: scale-up-ver-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-ver-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.scale-out-vertical {
	-webkit-animation: scale-out-vertical 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: scale-out-vertical 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes scale-out-vertical {
    0% {
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: scaleY(0);
              transform: scaleY(0);
      opacity: 1;
    }
  }
  @keyframes scale-out-vertical {
    0% {
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: scaleY(0);
              transform: scaleY(0);
      opacity: 1;
    }
  }
  

@-webkit-keyframes scale-up-ver-center {
    0% {
      -webkit-transform: scaleY(0.4);
              transform: scaleY(0.4);
    }
    100% {
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
    }
  }
  @keyframes scale-up-ver-center {
    0% {
      -webkit-transform: scaleY(0.4);
              transform: scaleY(0.4);
    }
    100% {
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
    }
  }

.big-view-pokemon {
  overflow: auto;
    top: 15%;
    bottom: 10%;
    left: 10%;
    right: 10%;
    position: absolute;
    z-index: 999;
    background-color: white;
    border-radius: 10px !important;
    position: fixed;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.big-view-pokemon img{
    width: 500px;
    object-fit: cover;
}

  .container-spinner {
    --uib-size: 40px;
    --uib-color: rgb(255, 255, 255);
    --uib-speed: 2s;
    --uib-bg-opacity: 0;
    height: var(--uib-size);
    width: var(--uib-size);
    transform-origin: center;
    animation: rotate var(--uib-speed) linear infinite;
    will-change: transform;
    overflow: visible;
  }

  .car {
    fill: none;
    stroke: var(--uib-color);
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: stretch calc(var(--uib-speed) * 0.75) ease-in-out infinite;
    will-change: stroke-dasharray, stroke-dashoffset;
    transition: stroke 0.5s ease;
  }

  .track {
    fill: none;
    stroke: var(--uib-color);
    opacity: var(--uib-bg-opacity);
    transition: stroke 0.5s ease;
  }

.dropdown-item {
    padding: 10px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

#suggestions.show {
    display: block;
}

  @keyframes rotate {
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes stretch {
    0% {
      stroke-dasharray: 0, 150;
      stroke-dashoffset: 0;
    }
    50% {
      stroke-dasharray: 75, 150;
      stroke-dashoffset: -25;
    }
    100% {
      stroke-dashoffset: -100;
    }
  }

  .welcome-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(44 44 44 / 98%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.5s ease-in-out;
}

.welcome-message.hidden {
    transform: translateY(-100%);
}

.tracking-in-expand {
	-webkit-animation: tracking-in-expand 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand 0.9s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 750px) {
  .row-cols-4>* {
    flex: 0 0 auto;
    width: 100% !important;
}
.big-view-pokemon {
  top: 120px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: auto;
}

.big-view-pokemon img{
  width: 350px;
  object-fit: cover;
}

.BigViewDetials {
  flex-direction: column;
}

.infoText {
  align-items: center;
}

}

/* DOTS */
#animationCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Send to back */
}
