@charset "UTF-8";
@font-face {
  font-family: f;
  src: url("/media/games/piranha-tower/fonts/Hexenkötel.otf");
}
@font-face {
  font-family: f2;
  src: url("/media/games/piranha-tower/fonts/Supercell-Magic-Regular.ttf");
}
body {
  padding: 0;
  margin: 0;
}

#full-area {
  width: 100%;
  height: 100vh;
  position: absolute;
  overflow: hidden;
  user-select: none;
}
#full-area #game-area {
  position: absolute;
  width: 1280px;
  height: 720px;
  background: url("/media/games/piranha-tower/images/background-gif-v2.gif");
  background-size: 130%;
  background-repeat: no-repeat;
  background-position: center center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #menu {
  height: 20%;
  width: 100%;
  background: url("/media/games/piranha-tower/images/navbar/backer.jpg");
}
#full-area #game-area .sand {
  width: 100%;
  height: 20%;
  background: url("/media/games/piranha-tower/images/sand.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  top: 100%;
  transform: translateY(-100%);
  position: absolute;
  z-index: 70;
}
#full-area #game-area #content {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  padding: 20px;
  z-index: 999;
}
#full-area #game-area #content #home-section #logo {
  height: 430px;
  justify-content: center;
  display: flex;
  margin-top: 0px;
  animation: logoAnim 1.3s infinite;
}
#full-area #game-area #content #home-section #best-level {
  position: absolute;
  top: 84%;
  left: 3%;
  font-size: 35px;
  font-family: f;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 40px;
  display: none;
  opacity: 0;
}
#full-area #game-area #content #home-section #best-level span {
  font-size: 60px;
  margin-left: 5px;
}
#full-area #game-area #content #home-section #home-btns {
  width: 60%;
  margin-left: 20%;
  z-index: 9999999;
  justify-content: space-around;
  display: flex;
  margin-top: 20px;
}
#full-area #game-area #content #home-section #home-btns img {
  width: 300px;
  cursor: pointer;
}
#full-area #game-area #content #home-section #home-btns .disabled {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(1);
}
#full-area #game-area #content #comment {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 999999999;
  left: 0;
  top: 0;
}
#full-area #game-area #content #comment div {
  animation: scale 1.5s infinite;
  width: 100%;
  height: 100%;
}
#full-area #game-area #content #comment h1 {
  width: 90%;
  text-align: center;
  color: white;
  font-family: f2;
  font-size: 70px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 4px 4px rgba(0, 0, 0, 0.536);
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  line-height: 120px;
  text-shadow: 4px 4px rgba(255, 255, 255, 0.258);
}
#full-area #game-area #content #comment h1 span {
  color: orangered;
}
#full-area #game-area #content #gameComment {
  position: absolute;
  width: 100%;
  height: 25%;
  z-index: 999999999;
  left: 0;
  top: 0;
}
#full-area #game-area #content #gameComment div {
  animation: scale 1.5s infinite;
  width: 100%;
  height: 100%;
}
#full-area #game-area #content #gameComment h1 {
  width: 50%;
  text-align: center;
  color: white;
  font-family: f2;
  font-size: 35px;
  line-height: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  /* 👇 center on screen */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  text-shadow: 4px 4px rgba(255, 255, 255, 0.258);
}
#full-area #game-area #content #gameComment h1 span {
  color: orangered;
}
#full-area #game-area #content #play-section {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#full-area #game-area #content #play-section #game-navbar {
  height: 20%;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-100%);
  display: flex;
  justify-content: space-around;
  z-index: 73;
}
#full-area #game-area #content #play-section #game-navbar #shop {
  width: 60%;
  height: 125%;
  top: -42%;
  position: relative;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
}
#full-area #game-area #content #play-section #game-navbar #shop::-webkit-scrollbar {
  display: none;
}
#full-area #game-area #content #play-section #game-navbar #shop .toBuy {
  min-width: 113px;
  height: 110px;
  background: url("/media/games/piranha-tower/images/weapon-holder-grayscale.png");
  background-size: contain;
  margin: 0 2.5%;
  margin-top: 15px;
  cursor: pointer;
}
#full-area #game-area #content #play-section #game-navbar #shop .toBuy h2 {
  color: white;
  position: absolute;
  top: 10px;
  margin-left: 100px;
  transform: translateX(-50%);
  font-size: 23px;
  font-weight: 900;
  text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
  letter-spacing: -1px;
}
#full-area #game-area #content #play-section #game-navbar #shop .toBuy h2 span {
  margin-left: 3px;
}
#full-area #game-area #content #play-section #game-navbar #shop .toBuy #locked {
  position: absolute;
  width: 50px;
  margin-top: -15px;
  margin-left: -10px;
  opacity: 0;
}
#full-area #game-area #content #play-section #game-navbar #shop .toBuy .grayscale {
  width: 100%;
  height: 100%;
  position: relative;
}
#full-area #game-area #content #play-section #game-navbar #shop .toBuy #weaponToBuy {
  width: 60%;
  height: 80%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-bottom: 20px;
}
#full-area #game-area #content #play-section #game-navbar #shop .toBuy #weaponName {
  position: relative;
  z-index: 2;
  max-width: 110%;
  min-width: 110%;
  width: 110%;
  background: rgba(135, 207, 235, 0.784);
  text-align: center;
  border-radius: 3px;
  border: 1px solid white;
  font-family: f;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 18px;
  text-wrap: nowrap;
  margin-left: -5%;
  margin-top: -47px;
}
#full-area #game-area #content #play-section #game-navbar #shop .toBuy #price {
  display: flex;
  position: relative;
  width: 90px;
  height: 51px;
  left: 50%;
  top: 100%;
  margin-top: -57%;
  transform: translate(-50%, -100%);
  justify-content: center;
  background: url("/media/games/piranha-tower/images/tooth-holder.png");
  background-size: contain;
}
#full-area #game-area #content #play-section #game-navbar #shop .toBuy #price p {
  position: relative;
  z-index: 2;
  font-size: 25px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-family: f;
  text-shadow: 2px 1px 0px black;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  margin-top: -2px;
}
#full-area #game-area #content #play-section #game-navbar #shop .toBuy #price img {
  position: relative;
  height: 40%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0px;
  margin-top: -2px;
}
#full-area #game-area #content #play-section #game-navbar #shop .lvl0 .grayscale {
  filter: grayscale(1);
}
#full-area #game-area #content #play-section #game-navbar #shop .lvl0 #locked {
  opacity: 1;
}
#full-area #game-area #content #play-section #game-navbar .oneElem {
  position: relative;
  width: 10%;
}
#full-area #game-area #content #play-section #game-navbar .oneElem #level {
  font-size: 45px;
  font-family: f;
  font-weight: 700;
  text-align: center;
  width: 140%;
  margin-left: -20%;
  text-wrap: nowrap;
  margin-top: -10px;
  opacity: 0;
}
#full-area #game-area #content #play-section #game-navbar #tooth {
  height: 80%;
  position: relative;
  top: -15%;
  margin-top: -15px;
}
#full-area #game-area #content #play-section #game-navbar #tooth img {
  height: 70%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #content #play-section #game-navbar #tooth div {
  display: flex;
  position: relative;
  height: 70%;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
}
#full-area #game-area #content #play-section #game-navbar #tooth div p {
  position: relative;
  z-index: 2;
  font-size: 32px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-family: f;
  text-shadow: 2px 1px 0px black;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  margin-top: 0px;
  margin-left: -5px;
}
#full-area #game-area #content #play-section #game-navbar #tooth div img {
  position: relative;
  height: 45%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -5px;
  margin-top: -5px;
}
#full-area #game-area #content #play-section #game-navbar #nextRound-btn {
  width: 20%;
  background: url("/media/games/piranha-tower/images/empty-btn.png");
  background-size: cover;
  height: 100px;
  top: -25%;
  position: relative;
  cursor: pointer;
}
#full-area #game-area #content #play-section #game-navbar #nextRound-btn p {
  width: 100%;
  text-align: center;
  font-size: 35px;
  font-family: f;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 0px black;
}
#full-area #game-area #content #play-section #game-navbar #health {
  height: 90%;
  position: relative;
  top: 7%;
  width: 10%;
}
#full-area #game-area #content #play-section #game-navbar #health img {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #content #play-section #game-navbar #timer {
  height: 90%;
  position: relative;
  top: 7%;
  width: 10%;
}
#full-area #game-area #content #play-section #game-navbar #timer img {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #content #play-section #game-navbar #timer p {
  position: relative;
  z-index: 2;
  font-size: 45px;
  width: 100%;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ec1b24;
  font-weight: bold;
  font-family: f;
  padding-top: 2px;
  margin-left: -1px;
  text-shadow: 1px 1px 0px black;
}
#full-area #game-area #content #play-section #tower {
  position: absolute;
  left: 100%;
  top: 13px;
  transform: translateX(-100%);
  width: 120px;
}
#full-area #game-area #content #play-section #tower img {
  width: 100%;
  position: relative;
}
#full-area #game-area #content #play-section #tower #tower-health {
  width: 70%;
  height: 20px;
  left: 13%;
  background: #ad1810;
  top: 100%;
  position: absolute;
  z-index: 2;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.293);
}
#full-area #game-area #content #play-section #tower #tower-health div {
  width: 100%;
  background: #6bff00;
  height: 100%;
}
#full-area #game-area #content #play-section #piranha-info {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0000004d;
  z-index: 99999999999999999;
  display: none;
}
#full-area #game-area #content #play-section #piranha-info .content {
  width: 60%;
  background: #0000009b;
  backdrop-filter: blur(10px);
  height: auto;
  position: absolute;
  height: 370px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid white;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.411);
  font-family: f;
  color: white;
  display: flex;
  padding: 1% 2%;
}
#full-area #game-area #content #play-section #piranha-info #piranha-name {
  width: 50%;
  padding: 20px 10px;
  align-items: center;
}
#full-area #game-area #content #play-section #piranha-info #piranha-name h1 {
  text-align: center;
  font-size: 50px;
  line-height: 50px;
  margin-top: 10px;
  text-wrap: nowrap;
  text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
}
#full-area #game-area #content #play-section #piranha-info #piranha-name h1 span {
  text-transform: uppercase;
}
#full-area #game-area #content #play-section #piranha-info #piranha-name img {
  background: rgba(135, 207, 235, 0.486);
  max-width: 100%;
  padding: 5px 20%;
  border-radius: 10px;
  max-height: 55%;
  display: flex;
  margin: 0 auto;
  margin-top: 30px;
  min-height: 170px;
  border: 3px solid white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.336);
}
#full-area #game-area #content #play-section #piranha-info #piranha-weakness,
#full-area #game-area #content #play-section #piranha-info #piranha-strength {
  width: 24%;
  height: 96%;
  background: #000;
  padding: 10px 2%;
  border-radius: 10px;
  margin: 1%;
  background: rgba(0, 255, 0, 0.603);
  overflow: hidden;
  overflow-y: auto;
  padding: 5px 3%;
  text-transform: capitalize;
  border: 3px solid white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.336);
  /* Track */
  /* Handle */
}
#full-area #game-area #content #play-section #piranha-info #piranha-weakness::-webkit-scrollbar,
#full-area #game-area #content #play-section #piranha-info #piranha-strength::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  height: 7px;
  border-radius: 100px;
}
#full-area #game-area #content #play-section #piranha-info #piranha-weakness::-webkit-scrollbar-track,
#full-area #game-area #content #play-section #piranha-info #piranha-strength::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.305);
  height: 7px;
  border-radius: 100px;
}
#full-area #game-area #content #play-section #piranha-info #piranha-weakness::-webkit-scrollbar-thumb,
#full-area #game-area #content #play-section #piranha-info #piranha-strength::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 100px;
}
#full-area #game-area #content #play-section #piranha-info #piranha-weakness h2,
#full-area #game-area #content #play-section #piranha-info #piranha-strength h2 {
  font-size: 30px;
  text-align: center;
}
#full-area #game-area #content #play-section #piranha-info #piranha-weakness div img,
#full-area #game-area #content #play-section #piranha-info #piranha-strength div img {
  width: 70%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  animation: logoAnim 1.3s infinite;
}
#full-area #game-area #content #play-section #piranha-info #piranha-weakness div p,
#full-area #game-area #content #play-section #piranha-info #piranha-strength div p {
  text-align: center;
  font-size: 20px;
}
#full-area #game-area #content #play-section #piranha-info #piranha-strength {
  background: rgba(255, 0, 0, 0.646);
}
#full-area #game-area #content #play-section #lands {
  width: 100%;
  height: 81%;
  position: absolute;
  z-index: 1;
  margin-top: 0px;
  background: url("/media/games/piranha-tower/images/wall-1.png"), linear-gradient(rgba(0, 0, 0, 0.051) 70%, rgba(0, 0, 0, 0.421));
  background-size: cover;
}
#full-area #game-area #content #play-section #lands .land {
  height: 70%;
  width: 15%;
  margin-left: 8%;
}
#full-area #game-area #content #play-section #lands .land:nth-child(1), #full-area #game-area #content #play-section #lands .land:nth-child(3) {
  top: 100%;
  position: relative;
  transform: translateY(-100%) rotateX(180deg);
}
#full-area #game-area #content #play-section #projectiles {
  position: absolute;
  z-index: 40;
  height: 100%;
  width: 100%;
}
#full-area #game-area #content #play-section #projectiles .projectile {
  position: absolute;
  width: 30px;
  height: 15px;
  transform: translateX(145px) translateY(200px);
}
#full-area #game-area #content #play-section #projectiles .projectile img {
  width: 100%;
  transform: rotate(0deg);
}
#full-area #game-area #content #play-section #weapons {
  position: absolute;
  z-index: 40;
  height: 100%;
  width: 100%;
}
#full-area #game-area #content #play-section #weapons .weapon {
  position: absolute;
  width: 7%;
  transform: translateX(445px) translateY(200px);
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.105);
}
#full-area #game-area #content #play-section #weapons .weapon img {
  width: 100%;
  transform: rotate(0deg);
}
#full-area #game-area #content #play-section #piranhas {
  background: #000;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  z-index: 41;
}
#full-area #game-area #content #play-section #piranhas .piranha {
  width: 6%;
  transform: translateY(300px);
  position: absolute;
  z-index: 10;
}
#full-area #game-area #content #play-section #piranhas .piranha #healthBar {
  width: 100%;
  height: 20px;
  background: #ad1810;
  top: -25px;
  position: absolute;
  z-index: 2;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.293);
}
#full-area #game-area #content #play-section #piranhas .piranha #healthBar div {
  width: 100%;
  background: #6bff00;
  height: 100%;
}
#full-area #game-area #content #play-section #piranhas .piranha img {
  width: 100%;
  transform: rotate(-90deg);
}
#full-area #game-area #content #end-section {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #00000046;
  z-index: 2;
  top: 0;
  left: 0;
  z-index: 99999;
}
#full-area #game-area #content #end-section .content {
  width: 700px;
  height: 464px;
  background: url("/media/games/piranha-tower/images/game-over-container.png");
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #content #end-section .content .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
#full-area #game-area #content #end-section .content #gameOver {
  width: 60%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 40px;
}
#full-area #game-area #content #end-section .content p {
  font-size: 50px;
  font-family: f;
  width: 100%;
  text-align: center;
  color: #30190a;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
#full-area #game-area #content #end-section .content p span {
  color: #d8bc62;
}
#full-area #game-area #content #end-section .content #end-btns {
  width: 90%;
  margin-left: 5%;
  justify-content: space-around;
  display: flex;
}
#full-area #game-area #content #end-section .content #end-btns img {
  width: 40%;
  cursor: pointer;
}

.end {
  animation: end 1s ease-out;
  animation-fill-mode: forwards;
}

@keyframes end {
  0% {
    opacity: 1;
    top: 10px;
    transform: translateY(-90%) scale(1) rotate(0deg);
    -webkit-transform: translateY(-90%) scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    top: 250px;
    transform: translateY(-90%) scale(0.3) rotate(180deg);
    -webkit-transform: translateY(-90%) scale(0.3) rotate(180deg);
  }
}
@keyframes btnAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes logoAnim {
  0% {
    transform: scale(1) rotate(-5deg);
  }
  50% {
    transform: scale(0.96) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(-5deg);
  }
}
.centered-content {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 50%;
  height: 50%;
  font-family: f;
  color: white;
  transform: translate(-50%, -50%) scale(0);
  /* Start scaled down */
  font-size: 100px;
  padding: 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid white;
  border-radius: 10px;
  z-index: 99999999999999999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.274);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
  /* Smooth scaling transition */
  background: #0000009b;
  backdrop-filter: blur(10px);
  border: 3px solid white;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.411);
}

#logoTextWrapper {
  display: flex;
  /* Aligns children (logo and gameStats) horizontally */
  align-items: center;
  /* Centers children vertically */
  justify-content: center;
  /* Centers children horizontally */
  margin: 0 auto;
  /* Center the wrapper */
}

#gameStats {
  background-color: rgba(0, 0, 0, 0.7);
  /* Black background with 70% opacity */
  color: white;
  /* White text color */
  font-family: f;
  display: none;
  border-radius: 15px;
  /* Rounded corners */
  font-size: 95px;
  padding: 15px 45px;
  /* More padding on top and bottom, less on left and right */
  margin-left: 20px;
  height: 490px;
  /* Space between logo and gameStats container */
  background: #0000009b;
  backdrop-filter: blur(10px);
  border: 3px solid white;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.411);
}

#gameStats p {
  margin: 10px 0;
  /* Spacing between paragraphs */
}

@media (width: 960px) and (height: 480px) {
  #full-area #game-area {
    width: 960px;
    height: 480px;
  }
  #full-area #game-area #content #gameComment {
    position: absolute;
    top: 0;
    left: 75%;
    transform: translateX(-50%);
    z-index: 999999999;
    text-align: center;
    top: 20%;
    left: 50%;
  }
  #full-area #game-area #content #gameComment h1 {
    font-family: f2;
    font-size: 35px;
    line-height: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    text-shadow: 4px 4px rgba(255, 255, 255, 0.258);
  }
  #full-area #game-area #content #gameComment h1 span {
    color: orangered;
  }
  #full-area #game-area #content #comment {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 999999999;
    left: 0;
    top: 0;
  }
  #full-area #game-area #content #comment div {
    animation: scale 1.5s infinite;
    width: 100%;
    height: 100%;
  }
  #full-area #game-area #content #comment h1 {
    width: 90%;
    text-align: center;
    color: white;
    font-family: f2;
    font-size: 70px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 4px 4px rgba(0, 0, 0, 0.536);
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    line-height: 120px;
    text-shadow: 4px 4px rgba(255, 255, 255, 0.258);
  }
  #full-area #game-area #content #comment h1 span {
    color: orangered;
  }
  #full-area #game-area #content #popup-section p {
    font-size: 20px;
    margin-top: 30px;
  }
  #full-area #game-area #content #home-section #logo {
    height: 450px;
    max-height: 270px;
    margin-top: -10px;
    margin-left: 20px;
  }
  #full-area #game-area #content #home-section #result {
    position: absolute;
    display: flex;
    font-family: f;
    left: 50%;
    transform: translateX(-50%) translateY(-55px);
    display: none;
  }
  #full-area #game-area #content #home-section #result p {
    font-size: 27px;
  }
  #full-area #game-area #content #home-section #result img {
    height: 27px;
    margin-top: 8px;
    margin-left: 10px;
  }
  #full-area #game-area #content #home-section #best-level {
    position: absolute;
    top: 83%;
    left: 3%;
    font-size: 25px;
    font-family: f;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 30px;
    opacity: 0;
  }
  #full-area #game-area #content #home-section #best-level span {
    font-size: 40px;
    margin-left: 5px;
  }
  #full-area #game-area #content #home-section #home-btns {
    max-width: 50%;
    margin-left: 23%;
    z-index: 9999999;
    justify-content: space-around;
    display: flex;
    position: absolute;
    top: 98%;
    transform: translateY(-150%);
  }
  #full-area #game-area #content #home-section #home-btns img {
    max-width: 200px;
    cursor: pointer;
  }
  #full-area #game-area #content #play-section {
    transform: none;
  }
  #full-area #game-area #content #play-section #tower {
    width: 92px;
  }
  #full-area #game-area #content #play-section #tower #tower-health {
    width: 65%;
    height: 15px;
    left: 18%;
  }
  #full-area #game-area #content #play-section #piranha-info .content {
    width: 55%;
    height: 250px;
  }
  #full-area #game-area #content #play-section #piranha-info #piranha-name {
    width: 50%;
    padding: 5px 10px;
  }
  #full-area #game-area #content #play-section #piranha-info #piranha-name h1 {
    font-size: 35px;
    line-height: 35px;
    margin-top: 10px;
  }
  #full-area #game-area #content #play-section #piranha-info #piranha-name img {
    min-height: 115px;
  }
  #full-area #game-area #content #play-section #piranha-info #piranha-weakness,
#full-area #game-area #content #play-section #piranha-info #piranha-strength {
    padding: 10px 2%;
  }
  #full-area #game-area #content #play-section #piranha-info #piranha-weakness h2,
#full-area #game-area #content #play-section #piranha-info #piranha-strength h2 {
    font-size: 20px;
  }
  #full-area #game-area #content #play-section #piranha-info #piranha-weakness div img,
#full-area #game-area #content #play-section #piranha-info #piranha-strength div img {
    width: 60%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  #full-area #game-area #content #play-section #piranha-info #piranha-weakness div p,
#full-area #game-area #content #play-section #piranha-info #piranha-strength div p {
    text-align: center;
    font-size: 15px;
    text-wrap: nowrap;
  }
  #full-area #game-area #content #play-section #piranha-info #piranha-strength {
    background: rgba(255, 0, 0, 0.646);
  }
  #full-area #game-area #content #play-section #projectiles .projectile {
    width: 20px;
    height: auto;
  }
  #full-area #game-area #content #play-section #weapons .weapon {
    width: 6%;
  }
  #full-area #game-area #content #play-section #piranhas .piranha {
    width: 5.5%;
  }
  #full-area #game-area #content #play-section #piranhas .piranha #healthBar {
    height: 15px;
  }
  #full-area #game-area #content #play-section #game-navbar {
    height: 20%;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(-100%);
    display: flex;
    justify-content: space-around;
    z-index: 73;
  }
  #full-area #game-area #content #play-section #game-navbar #shop {
    width: 60%;
    height: 160%;
    top: -65%;
  }
  #full-area #game-area #content #play-section #game-navbar #shop .toBuy {
    min-width: 113px;
    height: 110px;
    margin: 0 -1.5%;
    margin-top: 10px;
    transform: scale(0.65);
  }
  #full-area #game-area #content #play-section #game-navbar #shop .toBuy h2 {
    top: 0px;
  }
  #full-area #game-area #content #play-section #game-navbar #shop .toBuy #locked {
    position: absolute;
    width: 50px;
    margin-top: -15px;
    margin-left: -10px;
  }
  #full-area #game-area #content #play-section #game-navbar .oneElem {
    position: relative;
    width: 10%;
  }
  #full-area #game-area #content #play-section #game-navbar .oneElem #level {
    font-size: 32px;
    font-family: f;
    font-weight: 700;
    text-align: center;
    width: 140%;
    margin-left: -20%;
    text-wrap: nowrap;
    margin-top: -10px;
    opacity: 0;
  }
  #full-area #game-area #content #play-section #game-navbar #tooth {
    margin-top: -7px;
  }
  #full-area #game-area #content #play-section #game-navbar #tooth div p {
    font-size: 22px;
    margin-top: -3px;
  }
  #full-area #game-area #content #play-section #game-navbar #tooth div img {
    margin-left: -10px;
    margin-top: -3px;
  }
  #full-area #game-area #content #play-section #game-navbar #nextRound-btn {
    width: 19%;
    background: url("/media/games/piranha-tower/images/empty-btn.png");
    background-size: cover;
    height: 65px;
    top: 13%;
    position: relative;
    cursor: pointer;
  }
  #full-area #game-area #content #play-section #game-navbar #nextRound-btn p {
    width: 100%;
    text-align: center;
    font-size: 25px;
    font-family: f;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 0px black;
    margin-top: 2px;
  }
  #full-area #game-area #content #play-section #game-navbar #health {
    height: 90%;
    position: relative;
    top: 7%;
    width: 10%;
  }
  #full-area #game-area #content #play-section #game-navbar #health img {
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #full-area #game-area #content #play-section #game-navbar #timer {
    height: 90%;
    position: relative;
    top: 7%;
    width: 10%;
  }
  #full-area #game-area #content #play-section #game-navbar #timer img {
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #full-area #game-area #content #play-section #game-navbar #timer p {
    font-size: 30px;
  }
  #full-area #game-area #content #end-section .content {
    transform: translate(-50%, -50%) scale(0.7);
  }

  .centered-content {
    top: 42%;
    left: 50%;
    width: 45%;
    height: 57%;
    font-size: 60px;
    padding: 20px;
  }

  #logoTextWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  #gameStats {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-family: f;
    display: none;
    border-radius: 15px;
    font-size: 40px;
    padding: 15px 45px;
    margin-left: 20px;
    height: 250px;
  }

  #gameStats p {
    margin: 10px 0;
  }
}

/*# sourceMappingURL=style.css.map */
