@import url('https://fonts.googleapis.com/css2?family=Chewy&display=swap');

body, a, p, span, div, button, li, h1, h2, h3, h4, h5, h6, input {
	font-family: "Chewy", system-ui;
}

body {
  margin: 0px;
  overflow: hidden;
	background: #000;
}

#canvas-background {
position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -2;
	transition: all 0.5s;
}

#backOverlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: #0009;
}

#gameCanvas {
  position: absolute;
  top: 0;
  left: 0;
	background: url('/img/ground5.jpg');
	background-repeat: repeat;
  background-size: 500px 500px;
  background-position: center center;
}

.saveScorePage, #highscoresPage, #instructionsPage, #campaignLevelsPage, #informationPage {
	background: url('/img/ground5.jpg');
	background-repeat: repeat;
  background-size: 500px 500px;
  background-position: center center;
	overflow-y: auto;
}

#highscoresPage, #instructionsPage, #campaignLevelsPage, #informationPage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#instructionsPage p, #informationPage p {
  color: #fff;
  padding: 10px;
  margin: 0px;
  width: calc(100% - 20px);
  max-width: 850px;
}

#startScreen {
  width: 100%;
  height: 100vh;
  justify-content: center;
  display: flex;
  align-items: center;
  z-index: 999999999;
  position: relative;
  background: #0000008f;
	flex-direction: column;
	transition: all 0.5s;
}

#homepage #startScreen, #campaignIntroPage #startScreen, #survivalMode #startScreen {
  background: transparent;
}

h1 {
  color: #fff;
  text-shadow: 1px 1px 5px #000;
  font-size: 100px;
	margin: 0px 0px 35px 0px;
}

#scoreArea, #timeArea {
  position: fixed;
  top: 10px;
  left: 20px;
  z-index: 99999;
  color: #fff;
  text-shadow: 0px 0px 3px #000;
  font-size: 25px;
} 

#scorePlace, #localHighscore, #secondsLeft {
  display: inline;
}

button, #submitScore {
  font-size: 25px;
  cursor: pointer;
  padding: 7px 12px;
  margin: 10px;
  border-radius: 15px;
  background: #0a4c14;
  color: #fff;
}

.swal2-styled.swal2-confirm {
  background-color: #0a4c14 !important;
}

.swal2-styled.swal2-deny {
  background-color: #1b932e !important;
}

.column1 {
  display: flex;
  justify-content: center;
}

form {
  text-align: center;
	max-width: 100% !important;
}

label, input {
  font-size: 30px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

#score {
  background: none;
  border: none;
}

#scoreDisplay {
  display: inline-block;
}

main {
  max-width: 100%;
}

#name {
  max-width: 90% !important;
  width: 90%;
	text-align: center;
}

h2 {
  color: #fff;
  font-size: 40px;
  margin-top: 0px;
}

#highscoresPage button, #instructionsPage button, #campaignLevelsPage button, #informationPage button {
  margin: 50px 0px;
}

td, th {
  color: #fff;
  font-size: 25px;
  padding: 5px;
  border: 1px solid #fff;
}

#localBest {
  color: #fff;
  font-size: 25px;
  margin-bottom: 35px;
  text-decoration: underline;
}

#rapidFiringCapacityArea {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 99999;
  color: #fff;
  text-shadow: 0px 0px 3px #000;
  font-size: 25px;
}

#rapidFiringCapacity {
width: 100%;
  height: 15px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 5px;
  border: 1px solid #fff;
}

#actualCapacity {
  width: 100%;
  height: 100%;
  background: #0f0;
  left: 0%;
  position: relative;
}

#bombsArea {
  position: fixed;
  bottom: 10px;
  left: 20px;
  z-index: 99999;
	text-align: center;
}

#fireBomb {
  font-size: 20px;
  padding: 2px 5px;
  background: #2c2929;
  color: #fff;
}

#bomb1, #bomb2, #bomb3 {
	cursor: pointer;
}

.bombImg {
  width: 35px;
  height: auto;
  padding: 0px 5px 0px 5px;
}

#explosion {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 9999999999;
  transition: all 0.5s ease;
  opacity: 0;
  display: none;
}

#death {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #370909;
  top: 0;
  left: 0;
  z-index: 99999999;
  transition: all 0.75s ease;
  opacity: 0;
  display: none;
}

#pauseScreen {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #000000ad;
  top: 0;
  left: 0;
  z-index: 99999999;
  transition: all 0.5s ease;
  opacity: 0;
  display: none;
}

#pauseMessage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#pauseButton {
  position: fixed;
  z-index: 99999;
  bottom: 20px;
  right: 20px;
  font-size: 20px;
  padding: 7px 10px;
}

.swal2-container {
  z-index: 9999999999 !important;
}

#campaignIntroPage #currentLevelArea {
	font-size: 15px;
}

#campaignIntroPage #currentLevel {
	display: inline;
    margin-left: 5px;
}

#campaignLevelsPage td {
  padding: 15px !important;
  text-align: center;
  cursor: pointer;
 /* background: #000a; */
	background: #9b4343ab;
  color: #fffa;
	pointer-events: none;
}

.campaignModeLevel p {
color: #fff;	
font-size: 30px;
	 text-align: center;
	 margin-bottom: 0px !important;
}

.campaignModeLevel p.note {
  font-size: 20px;
  margin-top: 0px !important;
	 margin-bottom: 20px !important;
}

#scorePlaceGreen, #scorePlaceYellow, #scorePlaceRed {
  float: right;
  margin-left: 7px;
}

#copyright {
  position: absolute;
  bottom: 10px;
  width: 100%;
  color: #fff !important;
  text-align: center;
  font-size: 13px;
  z-index: 999999999;
	transition: all 0.5s;
}

#informationPage #copyright, #instructionsPage #copyright, #highscoresPage #copyright, #campaignLevelsPage #copyright, .saveScorePage #copyright {
  position: relative;
}

#copyright a {
  color: #b7b7b7 !important;
text-decoration: none;
}

/*-------------------------------------------BUTTONS EFFECT start----------------------------------------------------------*/


.effectButt span, .effectButt2 span, .effectButt3 span, .effectButt4 span   {
  transition: .2s;
  position: relative;
  background: inherit;
	 padding: 0px 3px;
}

.effectButt span::before, .effectButt2 span::before, .effectButt3 span::before, .effectButt4 span::before {
  position: absolute;
  content: "";
  background: inherit;
}

.effectButt:hover, .effectButt:focus, .effectButt2:hover, .effectButt2:focus, .effectButt4:hover, .effectButt4:focus {
  background: #0a4c14;
}

.effectButt3:hover, .effectButt3:focus {
  background: #021905;
}

 .effectButt:hover span::before, .effectButt:focus span::before {
  animation: chitchat2 linear both 1s;
} 

 .effectButt2:hover span::before, .effectButt2:focus span::before, .effectButt3:hover span::before, .effectButt3:focus span::before,
#donate-button:hover .effectButt2 span::before, #donate-button:focus .effectButt2 span::before {
  animation: chitchat2_2 linear both 1s;
} 

 .effectButt4:hover span::before, .effectButt4:focus span::before {
  animation: chitchat2_3 linear both 1s;
} 

.effectButt span::before {
	animation-name: chitchat;
animation-duration: 4s;
animation-timing-function: linear;
animation-delay: 1s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-fill-mode: both;
animation-play-state: running;
}

.effectButt2 span::before, .effectButt3 span::before {
	animation-name: chitchat_2;
animation-duration: 4s;
animation-timing-function: linear;
animation-delay: 1s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-fill-mode: both;
animation-play-state: running;
}

.effectButt4 span::before {
	animation-name: chitchat_3;
animation-duration: 4s;
animation-timing-function: linear;
animation-delay: 1s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-fill-mode: both;
animation-play-state: running;
}

.delayEffect1 span::before {
animation-delay: 2s;
}

.delayEffect2 span::before {
animation-delay: 3s;
}

.delayEffect3 span::before {
animation-delay: 4s;
}

@keyframes chitchat {
	
	 0% {
    content: "";
  }
	
  0.2% {
    content: "#";
  }
	
	1% {
    content: "{#.";
  }

  2% {
    content: "^{-!";
  }

  3% {
    content: "-!#$#$";
  }

  4% {
    content: "#$_:0";
  }

  5% {
    content: "№:0{+";
  }

  6% {
    content: "#{+.@%";
  }

  7% {
    content: "@}@%-?";
  }

  8% {
    content: "?{4@%@%";
  }

  9% {
    content: "=.,^!{4@%";
  }

  10% {
    content: "@}-??2@%";
  }

  11% {
    content: "\;1}2@%]";
  }

  12% {
    content: "?{@}-?%:%";
    right: 0;
  }

  13% {
    content: "|{f[4";
    right: 0;
  }

  14% {
    content: "{4%0%";
    right: 0;
  }

  15% {
    content: "'1_0<";
    right: 0;
  }

  16% {
    content: "{0%";
    right: 0;
  }

  17% {
    content: "]>'";
    right: 0;
  }

 18% {
    content: "4";
    right: 0;
  }

  19% {
    content: "2";
    right: 0;
  }
	
	 20% {
    content: "";
    right: 0;
  }

  100% {
    content: "";
    right: 0;
  }
}





@keyframes chitchat2 {
  0% {
    content: "#";
  }

 5% {
    content: "{#.";
  }

  10% {
    content: "^{-!";
  }

  15% {
    content: "-!#$#$";
  }

  20% {
    content: "#$_:0";
  }

  25% {
    content: "№:0{+";
  }

  30% {
    content: "#{+.@%";
  }

  35% {
    content: "@}@%-?";
  }

  40% {
    content: "?{4@%@%";
  }

  45% {
    content: "=.,^!{4@%";
  }

  50% {
    content: "@}-??2@%";
  }

  55% {
    content: "\;1}2@%]";
  }

  60% {
    content: "?{@}-?%:%";
    right: 0;
  }

  65% {
    content: "|{f[4";
    right: 0;
  }

  70% {
    content: "{4%0%";
    right: 0;
  }

  75% {
    content: "'1_0<";
    right: 0;
  }

  80% {
    content: "{0%";
    right: 0;
  }

  85% {
    content: "]>'";
    right: 0;
  }

  90% {
    content: "4";
    right: 0;
  }

  95% {
    content: "2";
    right: 0;
  } 
	
	  100% {
    content: "";
    right: 0;
  }
}




@keyframes chitchat_2 {
	
	 0% {
    content: "";
  }
	
  0.2% {
    content: "#";
  }
	
	1% {
    content: "{#.";
  }

  2% {
    content: "^{-!";
  }

  3% {
    content: "-!#$";
  }

  4% {
    content: "#$_0";
  }

  5% {
    content: ":0{";
  }

  6% {
    content: "#{+.";
  }

  7% {
    content: "@%-";
  }

  8% {
    content: "?{%8";
  }

  9% {
    content: "=.!{";
  }

  10% {
    content: "@}??";
  }

  11% {
    content: "\;}2";
  }

  12% {
    content: "?{@-";
    right: 0;
  }

  13% {
    content: "{f[";
    right: 0;
  }

  14% {
    content: "{%0";
    right: 0;
  }

  15% {
    content: "'1_0";
    right: 0;
  }

  16% {
    content: "{0%";
    right: 0;
  }

  17% {
    content: "]>'";
    right: 0;
  }

 18% {
    content: "4";
    right: 0;
  }

  19% {
    content: "2";
    right: 0;
  }
	
	 20% {
    content: "";
    right: 0;
  }

  100% {
    content: "";
    right: 0;
  }
}



@keyframes chitchat2_2 {
  0% {
    content: "#";
  }

 5% {
    content: "{.";
  }

  10% {
    content: "^-!";
  }

  15% {
    content: "-!$#";
  }

  20% {
    content: "#$2:";
  }

  25% {
    content: "№:{4";
  }

  30% {
    content: "#+4@";
  }

  35% {
    content: "@}-5";
  }

  40% {
    content: "?@%2";
  }

  45% {
    content: "=.8^";
  }

  50% {
    content: "@?22";
  }

  55% {
    content: ";2@";
  }

  60% {
    content: "?{1@";
    right: 0;
  }

  65% {
    content: "|f$[";
    right: 0;
  }

  70% {
    content: "{4%";
    right: 0;
  }

  75% {
    content: "'1_0";
    right: 0;
  }

  80% {
    content: "{0%";
    right: 0;
  }

  85% {
    content: "]>'";
    right: 0;
  }

  90% {
    content: "4";
    right: 0;
  }

  95% {
    content: "2";
    right: 0;
  } 
	
	  100% {
    content: "";
    right: 0;
  }
}


@keyframes chitchat_3 {
	
	 0% {
    content: "";
  }
	
  0.2% {
    content: "#";
  }
	
	1% {
    content: "{#";
  }

  2% {
    content: "^{-";
  }

  3% {
    content: "-!#";
  }

  4% {
    content: "#$_";
  }

  5% {
    content: ":0";
  }

  6% {
    content: "#{+";
  }

  7% {
    content: "@%";
  }

  8% {
    content: "?{%";
  }

  9% {
    content: "=.!";
  }

  10% {
    content: "@}?";
  }

  11% {
    content: "\;}";
  }

  12% {
    content: "?{@";
    right: 0;
  }

  13% {
    content: "{f";
    right: 0;
  }

  14% {
    content: "{%";
    right: 0;
  }

  15% {
    content: "'1_";
    right: 0;
  }

  16% {
    content: "{0";
    right: 0;
  }

  17% {
    content: "]>";
    right: 0;
  }

 18% {
    content: "4";
    right: 0;
  }

  19% {
    content: "2";
    right: 0;
  }
	
	 20% {
    content: "";
    right: 0;
  }

  100% {
    content: "";
    right: 0;
  }
}



@keyframes chitchat2_3 {
  0% {
    content: "#";
  }

 5% {
    content: "{";
  }

  10% {
    content: "^-";
  }

  15% {
    content: "-!$";
  }

  20% {
    content: "#$2";
  }

  25% {
    content: "№:{";
  }

  30% {
    content: "#+4";
  }

  35% {
    content: "@}-";
  }

  40% {
    content: "?@2";
  }

  45% {
    content: "=.8";
  }

  50% {
    content: "@?2";
  }

  55% {
    content: ";2";
  }

  60% {
    content: "?{1";
    right: 0;
  }

  65% {
    content: "|f$";
    right: 0;
  }

  70% {
    content: "{4";
    right: 0;
  }

  75% {
    content: "'1_";
    right: 0;
  }

  80% {
    content: "{0";
    right: 0;
  }

  85% {
    content: "]'";
    right: 0;
  }

  90% {
    content: "4";
    right: 0;
  }

  95% {
    content: "2";
    right: 0;
  } 
	
	  100% {
    content: "";
    right: 0;
  }
}

/*-------------------------------------------BUTTONS EFFECT end----------------------------------------------------------*/

/*-------------------------------------------LOGO EFFECT start----------------------------------------------------------*/



.melting-text {
    color: #fff;
    position: relative;
    animation: melt 3s infinite ease-in-out;
    background: linear-gradient(90deg, #000, #000, #000);
    -webkit-background-clip: text;
    color: transparent;
	text-shadow: 1px 1px 1px #fff !important;
}

.melting-text::before,
.melting-text::after {
    content: 'Virusblast';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000, #000, #000);
    -webkit-background-clip: text;
    color: transparent;
    z-index: -1;
    transform: scaleY(1);
    opacity: 0.5;
    animation: drip 7s infinite ease-in-out;
}

.melting-text::after {
    filter: blur(5px);
    opacity: 0.3;
}

/* Keyframes for melting effect */
@keyframes melt {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes drip {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.5;
    }
    50% {
        transform: scaleY(1.25);
        opacity: 0.7;
    }
}


/*-------------------------------------------LOGO EFFECT end----------------------------------------------------------*/

/*-------------------------------------------VIDEO PLAY BUTTON start----------------------------------------------------------*/


.glow-on-hover {
    width: 120px;
    height: 120px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 50%;
	font-size: 65px;
display: flex;
  justify-content: center;
  align-items: center;
	margin: 35px 0px 0px 0px;
	padding: 0px 0px 0px 15px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    /* opacity: 0; */
	opacity: 1;
    transition: opacity .3s ease-in-out;
    border-radius: 50%;
}

/* .glow-on-hover:active {
    color: #000
} */

 .glow-on-hover:hover {
    color: #000
}

/* .glow-on-hover:active:after {
    background: transparent;
} */

.glow-on-hover:hover:after {
    background: transparent;
} 

/* .glow-on-hover:hover:before {
    opacity: 1;
} */

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 50%;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/*-------------------------------------------VIDEO PLAY BUTTON end----------------------------------------------------------*/

.hideBeforeGame {
	opacity: 0;
	transition: all 0.5s;
}


#donate-button {
  margin-top: 0px;
	position: relative;
} 

#donate-button img {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}

#videoSpace {
  position: fixed;
  z-index: 999999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  margin: 0px !important;
  transition: all 0.5s ease;
  opacity: 0;
  background: #fffd !important;
  display: none;
  justify-content: center;
  align-items: center;
}

#closeVideo {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  background: #000;
  padding: 3px 12px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
	z-index: 99999999;
}

 .scrolling_text {
    width: 100%;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
	 align-items: center;
  height: 100vh;
}

 .scrolling_text .text {
    font-size: 500px;
    font-weight: 600;
    color: #fff;
    animation: animate_text 120s linear infinite; /* The animation property */
	 margin-right: 110px;
}


 .scrolling_text .text span {
    margin: 0 6px;
}

@keyframes animate_text {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-100%, 0, 0);
    }
}

tr:nth-child(2n) {
  background: #606060ab;
}

th {
  background: #338648ab;
}

#quitButton {
  position: fixed;
  z-index: 99999;
  top: 75px;
  left: 10px;
  font-size: 15px;
  padding: 2px 10px;
}

.quitPlaceHigher {
	top: 40px !important;
}

.quitPlaceLower {
	top: 140px !important;
}

.cc-floating.cc-theme-classic {
	z-index: 9999999999;
}