@font-face {
  font-family: f;
  src: url("/media/games/trivia-war/fonts/Pacify Angry.ttf");
}
#full-area {
  width: 100%;
  height: 100vh;
  position: absolute;
  user-select: none;
  background: url("/media/games/trivia-war/images/background.png") white;
  background-size: cover;
  background-position: bottom center;
  overflow: hidden;
}
#full-area *::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, and Opera */
}
#full-area #background-opacity {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #00000033;
}
#full-area #background-anim {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  background: url("/media/games/trivia-war/images/background.png");
  background-size: cover;
  background-position: center center;
}
#full-area #background-anim div {
  background: url("/media/games/trivia-war/images/anim-background.png");
  background-size: contain;
  background-position: center center;
  width: 100%;
  height: 9999999999px;
  transform: translate(0px, 0px);
}
#full-area #game-area {
  width: 1280px;
  height: 720px;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: f;
  overflow: hidden;
}
#full-area #game-area #menu {
  position: absolute;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  padding: 30px 0;
  z-index: 999;
}
#full-area #game-area #menu #menu-container {
  width: 584px;
  height: 110px;
  background: url("/media/games/trivia-war/images/menu/menu-container.png");
  background-size: cover;
  display: flex;
}
#full-area #game-area #menu #menu-container p {
  font-size: 50px;
  color: white;
  text-align: center;
  width: 63%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding-top: 7px;
  color: white;
  text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.452);
}
#full-area #game-area #menu #menu-container #quiz-points-value {
  width: 35%;
  margin-left: -1%;
  color: #38ff12;
}
#full-area #game-area #menu #menu-icons {
  display: flex;
}
#full-area #game-area #menu #menu-icons div {
  cursor: pointer;
  transition: 0.2s;
}
#full-area #game-area #menu #menu-icons div:active {
  transform: scale(0.95);
  opacity: 0.9;
}
#full-area #game-area #menu #menu-icons img {
  height: 113px;
  margin: 0 15px;
}
#full-area #game-area #q-mark-anim {
  display: flex;
  justify-content: space-around;
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(-100%);
  height: 120px;
  z-index: 0;
}
#full-area #game-area #q-mark-anim div {
  height: 100%;
}
#full-area #game-area #q-mark-anim div img {
  height: 100%;
  animation: logoAnim 2.5s infinite ease;
}
#full-area #game-area #q-mark-anim div:nth-child(1) {
  transform: translate(0px, -30px) scale(1.2) rotate(-30deg);
}
#full-area #game-area #q-mark-anim div:nth-child(2) {
  transform: translate(0px, -30px) scale(0.9) rotate(40deg);
}
#full-area #game-area #q-mark-anim div:nth-child(3) {
  transform: translate(0px, -20px) scale(0.8) rotate(-10deg);
}
#full-area #game-area #q-mark-anim div:nth-child(4) {
  transform: translate(0px, -20px) scale(1) rotate(-50deg);
}
#full-area #game-area #q-mark-anim div:nth-child(5) {
  transform: translate(0px, -20px) scale(1.2) rotate(20deg);
}
#full-area #game-area #preAlexa-loader {
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area #preAlexa-loader div {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
}
#full-area #game-area #preAlexa-loader div img {
  width: 200px;
  animation: infiniteRotate 2s linear infinite;
  display: inline-block;
}
#full-area #game-area #micro-character {
  position: absolute;
  margin: 5px 10px;
  z-index: 99999;
}
#full-area #game-area #micro-character img {
  width: 100px;
  height: auto;
}
#full-area #game-area #micro-character #micro-msg {
  width: 300px;
  height: 119%;
  position: absolute;
  top: 55%;
  left: 60%;
  margin-top: -20px;
  background: url("/media/games/trivia-war/images/msg-container.png");
  background-size: cover;
  transform: scale(1.35);
  transform-origin: top left;
  opacity: 0;
}
#full-area #game-area #micro-character #micro-msg #micro-msg-title {
  height: 30%;
  width: 90%;
  text-align: center;
  font-size: 30px;
  padding: 10px 20px;
  margin-left: 10%;
  color: lime;
  text-shadow: 0 2.5px 0 rgba(0, 0, 0, 0.452);
  display: none;
}
#full-area #game-area #micro-character #micro-msg hr {
  height: 1px;
  width: 30%;
  background-color: lime;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  margin-top: 10px;
  margin-left: 4.5%;
  margin-bottom: -35px;
  display: none;
}
#full-area #game-area #micro-character #micro-msg #micro-msg-text {
  color: white;
  font-size: 23px;
  line-height: 25px;
  padding: 10px 20px;
  text-align: center;
  width: 90%;
  margin-left: 10%;
  height: 90%;
  margin-top: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.452);
  letter-spacing: 1px;
}
#full-area #game-area #logo-section {
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area #logo-section #logo {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 540px;
  margin-top: -15px;
}
#full-area #game-area #logo-section #logo img {
  width: 100%;
  animation: logoAnim 1.5s infinite;
}
#full-area #game-area #players-section {
  width: 100%;
  height: 100%;
  position: absolute;
}
#full-area #game-area #players-section #choose-players-title {
  width: 40%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 20px;
  opacity: 0;
}
#full-area #game-area #players-section #choose-players-title img {
  width: 100%;
}
#full-area #game-area #players-section #players-list {
  display: flex;
  justify-content: space-around;
  width: 80%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 20px;
}
#full-area #game-area #players-section #players-list .player-container {
  width: 20%;
  cursor: pointer;
  transition: 0.2s;
}
#full-area #game-area #players-section #players-list .player-container img {
  transition: 0.2s;
  width: 100%;
}
#full-area #game-area #players-section #players-list .player-container:hover img {
  filter: brightness(1.1);
}
#full-area #game-area #players-section #players-list .locked {
  filter: grayscale(1);
  opacity: 0.4;
}
#full-area #game-area #players-section #how-many-players {
  width: 60%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
}
#full-area #game-area #players-section #how-many-players img {
  width: 100%;
}
#full-area #game-area #home-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #home-section #home-btns {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 20px;
}
#full-area #game-area #home-section #home-btns #choose-quiz-btn {
  height: 400px;
  margin: 0 50px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
#full-area #game-area #home-section #home-btns #choose-quiz-btn:active {
  transform: scale(0.99);
  opacity: 0.9;
}
#full-area #game-area #home-section #home-btns #choose-quiz-btn img {
  height: 100%;
}
#full-area #game-area #home-section #home-btns #choose-quiz-btn div {
  height: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  margin-top: -50px;
}
#full-area #game-area #home-section #home-btns #choose-quiz-btn div img {
  height: 100%;
  animation: logoAnim 2s infinite;
}
#full-area #game-area #home-section #home-btns #choose-quiz-btn p {
  color: white;
  text-transform: uppercase;
  font-size: 50px;
  width: 100%;
  text-align: center;
  transform: translateY(-100%);
  height: 105px;
  margin-top: -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 89%;
  margin-left: 5%;
}
#full-area #game-area #home-section #home-alexa-msg {
  width: 800px;
  height: 96px;
  background: url("/media/games/trivia-war/images/home/home-alexa-container.png");
  background-size: cover;
  position: absolute;
  top: 85%;
  left: 50%;
  margin-left: -400px;
  animation: transY 2.5s infinite ease-out;
}
#full-area #game-area #home-section #home-alexa-msg p {
  color: white;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  width: 100%;
  letter-spacing: 2px;
  text-align: center;
  line-height: 30px;
}
#full-area #game-area #upsell-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #upsell-section #upsell-anim {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0);
  opacity: 0;
}
#full-area #game-area #upsell-section #upsell-container {
  width: 934px;
  height: 490px;
  background: url("/media/games/trivia-war/images/upsell.png");
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: 10px;
}
#full-area #game-area #upsell-section #upsell-container h1 {
  text-align: center;
  width: 70%;
  left: 15%;
  line-height: 45px;
  height: 96px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  margin-left: -5px;
  position: absolute;
  font-weight: bold;
}
#full-area #game-area #upsell-section #upsell-container h2 {
  color: white;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -5px;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
}
#full-area #game-area #upsell-section #upsell-container h3 {
  color: white;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 240px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -5px;
}
#full-area #game-area #upsell-section #upsell-container h3 span {
  margin-left: 8px;
  color: lime;
}
#full-area #game-area #upsell-section #upsell-container div {
  color: white;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 380px;
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -5px;
  text-transform: uppercase;
  width: 450px;
  border-radius: 200px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: 0.1s;
  line-height: 40px;
  padding: 0 10px;
}
#full-area #game-area #upsell-section #upsell-container div:active {
  background: rgba(255, 255, 255, 0.055);
}
#full-area #game-area #categories-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #categories-section #choose-category, #full-area #game-area #categories-section #select-or-say-category {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  margin-top: 20px;
}
#full-area #game-area #categories-section #choose-category img, #full-area #game-area #categories-section #select-or-say-category img {
  width: 100%;
}
#full-area #game-area #categories-section #select-or-say-category {
  position: relative;
}
#full-area #game-area #categories-section #select-or-say-category {
  margin-top: -130px;
}
#full-area #game-area #categories-section #categories-list {
  display: flex;
  justify-content: left;
  margin-top: 40px;
  height: 500px;
  overflow: hidden;
  overflow-x: scroll;
  scroll-behavior: smooth;
  padding-left: 50px;
  padding-right: 50px;
  margin-top: -5px;
  transform: scale(0.9);
  width: 112%;
  margin-left: -5%;
}
#full-area #game-area #categories-section #categories-list .category-option {
  min-width: 450px;
  height: 345px;
  background: url("/media/games/trivia-war/images/categories/cat-container.png");
  background-size: cover;
  margin: 10px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
#full-area #game-area #categories-section #categories-list .category-option p {
  text-align: center;
  font-size: 42px;
  color: white;
  top: 254px;
  position: relative;
  height: 51px;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -5px;
  letter-spacing: 2px;
}
#full-area #game-area #categories-section #categories-list .category-option div {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0.9);
  background: url("/media/games/trivia-war/images/category.png");
  background-size: cover;
}
#full-area #game-area #categories-section #categories-list .category-option img {
  height: auto;
  width: 75%;
  animation: logoAnim 2s infinite;
  position: absolute;
  margin-left: -37.5%;
  margin-top: 20px;
  left: 50%;
}
#full-area #game-area #categories-section #categories-list .category-option:active {
  transform: scale(0.95);
  opacity: 0.9;
}
#full-area #game-area #categories-section #arrow-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 99;
  margin-top: -20px;
}
#full-area #game-area #categories-section #arrow-btn:active {
  transform: translateX(-50%) scale(0.98);
  opacity: 0.95;
}
#full-area #game-area #subcategories-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #subcategories-section #selected-category {
  width: 300px;
  height: 230px;
  background: url("/media/games/trivia-war/images/category.png");
  background-size: cover;
  margin-top: 30px;
  left: 50%;
  margin-left: -150px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
#full-area #game-area #subcategories-section #selected-category:active {
  transform: scale(0.97);
  opacity: 0.9;
}
#full-area #game-area #subcategories-section #selected-category div {
  transform: scale(0.95);
}
#full-area #game-area #subcategories-section #selected-category img {
  width: 80%;
  position: relative;
  left: 50%;
  margin-left: -40%;
  margin-top: 10px;
  height: auto;
  animation: logoAnim 2s infinite;
}
#full-area #game-area #subcategories-section #selected-category p {
  display: flex;
  justify-content: center;
  width: 100%;
  color: white;
  font-size: 30px;
  height: 47px;
  text-wrap: nowrap;
  align-items: center;
  text-transform: capitalize;
  position: absolute;
  top: 170px;
}
#full-area #game-area #subcategories-section #arrow-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#full-area #game-area #subcategories-section #arrow-btn:active {
  transform: translateX(-50%) scale(0.98);
  opacity: 0.95;
}
#full-area #game-area #subcategories-section #list-subcategories {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: 380px;
  overflow: hidden;
  overflow-y: scroll;
  justify-content: center;
  margin-top: 10px;
  scroll-behavior: smooth;
  transform: scale(0.95);
  margin-top: 0px;
}
#full-area #game-area #subcategories-section #list-subcategories div {
  width: 370px;
  height: 95px;
  background: url("/media/games/trivia-war/images/play/normal.png");
  background-size: cover;
  cursor: pointer;
  transition: 0.2s;
}
#full-area #game-area #subcategories-section #list-subcategories div:active {
  transform: scale(0.98);
  opacity: 0.9;
}
#full-area #game-area #subcategories-section #list-subcategories div p {
  height: 100%;
  width: 91%;
  margin-left: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  color: white;
  font-size: 30px;
  margin-top: -3px;
  text-align: center;
  line-height: 30px;
  padding: 0 3px;
  letter-spacing: 1px;
  padding-top: 6px;
}
#full-area #game-area #play-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #play-section #choosen-cat {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  transform: scale(0);
  opacity: 0;
  margin-top: -40px;
}
#full-area #game-area #play-section #choosen-cat #selected-category-2 {
  width: 265px;
  height: 200px;
  background: url("/media/games/trivia-war/images/category.png");
  background-size: cover;
  margin-top: 0px;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.6);
  position: relative;
  transition: 0.2s;
}
#full-area #game-area #play-section #choosen-cat #selected-category-2 div {
  transform: scale(0.95);
}
#full-area #game-area #play-section #choosen-cat #selected-category-2 img {
  width: 80%;
  margin-top: 3%;
  left: 50%;
  position: relative;
  margin-left: -40%;
  height: auto;
  animation: logoAnim 2s infinite;
}
#full-area #game-area #play-section #choosen-cat #selected-category-2 p {
  display: flex;
  justify-content: center;
  width: 100%;
  color: white;
  font-size: 30px;
  height: 47px;
  text-wrap: nowrap;
  align-items: center;
  text-transform: capitalize;
  margin-top: -5px;
}
#full-area #game-area #play-section #quiz-question {
  width: 1020px;
  height: 310px;
  background: url("/media/games/trivia-war/images/play/q-container.png");
  background-size: cover;
  position: relative;
  left: 50%;
  margin-left: -500px;
  margin-top: 60px;
  transform: scale(0.67);
  opacity: 0;
}
#full-area #game-area #play-section #quiz-question h6 {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 40px;
  top: 40px;
  margin-left: -5px;
}
#full-area #game-area #play-section #quiz-question p {
  color: #7c3602;
  font-size: 50px;
  text-wrap: wrap;
  text-align: center;
  width: 90%;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5%;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.203);
  line-height: 100%;
  padding: 0 10px;
  height: 65%;
  position: absolute;
  top: 100%;
  transform: translateY(calc(-100% - 20px));
}
#full-area #game-area #play-section #quiz-players {
  display: flex;
  width: 90%;
  margin-left: 5%;
  position: absolute;
  top: 100%;
  transform: translateY(calc(-100% - 75px)) scale(0.9);
  height: 130px;
  justify-content: space-between;
}
#full-area #game-area #play-section #quiz-players .quiz-player {
  height: 100%;
  width: 223px;
  background: url("/media/games/trivia-war/images/p1-container.png");
  background-size: cover;
  position: relative;
  cursor: pointer;
}
#full-area #game-area #play-section #quiz-players .quiz-player .quiz-player-score {
  color: #002f5d;
  font-size: 35px;
  width: 82px;
  text-align: center;
  position: absolute;
  left: 100px;
  margin-top: 3px;
}
#full-area #game-area #play-section #quiz-players .quiz-player .quiz-player-name {
  color: white;
  text-align: center;
  width: 100%;
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 60px;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.452);
}
#full-area #game-area #play-section #quiz-players .disabled {
  filter: grayscale(1);
  opacity: 0.4;
}
#full-area #game-area #play-section #quiz-players #quiz-player-2 {
  background: url("/media/games/trivia-war/images/p2-container.png");
  background-size: cover;
}
#full-area #game-area #play-section #quiz-players #quiz-player-3 {
  background: url("/media/games/trivia-war/images/p3-container.png");
  background-size: cover;
}
#full-area #game-area #play-section #quiz-players #quiz-player-4 {
  background: url("/media/games/trivia-war/images/p4-container.png");
  background-size: cover;
}
#full-area #game-area #play-section #quiz-header {
  width: auto;
  height: 100px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 10px;
  left: 100%;
  transform: translateX(-100%) scale(0.9);
}
#full-area #game-area #play-section #quiz-header #quiz-header-title {
  height: 100%;
}
#full-area #game-area #play-section #quiz-header #quiz-header-title img {
  height: 100%;
}
#full-area #game-area #play-section #quiz-header #quiz-selected-category {
  background: url("/media/games/trivia-war/images/current-category.png");
  background-size: cover;
  height: 100%;
  width: 470px;
  margin-left: 40px;
  margin-right: -40px;
  position: relative;
}
#full-area #game-area #play-section #quiz-header #quiz-selected-category img {
  height: 70%;
  margin: 12px 15px;
  transform: scale(0.9);
}
#full-area #game-area #play-section #quiz-header #quiz-selected-category p {
  position: absolute;
  top: 50%;
  left: 120px;
  font-size: 50px;
  width: 72%;
  text-align: center;
  transform: translateY(-50%);
  color: #002f5d;
  text-transform: capitalize;
}
#full-area #game-area #play-section #quiz-answers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  width: 85%;
  margin-left: 7.5%;
  margin-top: -65px;
  transform: scale(0.75);
  transition: 0.3s;
}
#full-area #game-area #play-section #quiz-answers .quiz-answer {
  width: 400px;
  height: 105px;
  background: url("/media/games/trivia-war/images/play/normal.png");
  background-size: cover;
  position: relative;
  transition: 0.3s background, 0.1s all;
  opacity: 0;
  margin: 0 40px;
  margin-bottom: 20px;
  text-transform: capitalize;
  cursor: pointer;
}
#full-area #game-area #play-section #quiz-answers .quiz-answer h1 {
  color: #002f5d;
  position: absolute;
  transform: translateX(-100%);
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: -10px;
  font-size: 60px;
}
#full-area #game-area #play-section #quiz-answers .quiz-answer p {
  color: white;
  text-shadow: 2px 2px 0 black;
  font-size: 43px;
  height: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  overflow: hidden;
  margin-top: 0px;
  line-height: 80%;
}
#full-area #game-area #play-section #quiz-answers .quiz-answer:nth-child(3) {
  position: relative;
  left: 50%;
  margin-left: -225px;
  margin-top: -10px;
}
#full-area #game-area #play-section #quiz-answers .quiz-answer:active {
  transform: scale(0.98);
  opacity: 0.9;
}
#full-area #game-area #play-section #quiz-answers .correct {
  background: url("/media/games/trivia-war/images/play/correct.png");
  background-size: cover;
}
#full-area #game-area #play-section #quiz-answers .incorrect {
  background: url("/media/games/trivia-war/images/play/wrong.png");
  background-size: cover;
}
#full-area #game-area #leaderboard-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #leaderboard-section h1 {
  color: white;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 5px;
  height: 107px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -5px;
}
#full-area #game-area #leaderboard-section #leaderboard-anim {
  width: 100%;
  height: 100%;
  transform: scale(0);
  opacity: 0;
}
#full-area #game-area #leaderboard-section #leaderboard-container {
  position: absolute;
  width: 800px;
  height: 500px;
  background: url("/media/games/trivia-war/images/leaderboard/container.png");
  background-size: cover;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) scale(0.9);
  padding-top: 150px;
}
#full-area #game-area #leaderboard-section #leaderboard-container #players-list {
  overflow: hidden;
  height: 285px;
  margin-top: 10px;
  overflow-y: scroll;
}
#full-area #game-area #leaderboard-section #leaderboard-container #players-list .player {
  width: 75%;
  height: 90px;
  background: url("/media/games/trivia-war/images/leaderboard/player.png");
  background-size: cover;
  display: flex;
  justify-content: space-between;
  margin: 7px auto;
  margin-bottom: 0;
}
#full-area #game-area #leaderboard-section #leaderboard-container #players-list .player:nth-child(1) {
  margin-top: 0;
}
#full-area #game-area #leaderboard-section #leaderboard-container #players-list .player p {
  color: white;
  font-size: 30px;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#full-area #game-area #leaderboard-section #leaderboard-container #players-list .player #player-rank {
  width: 15%;
  font-size: 50px;
}
#full-area #game-area #leaderboard-section #leaderboard-container #players-list .player #player-name {
  width: 65%;
  justify-content: left;
  padding: 0 25px;
  overflow: hidden;
  text-wrap: nowrap;
}
#full-area #game-area #leaderboard-section #leaderboard-container #players-list .player #player-score {
  width: 20%;
  justify-content: right;
  padding-right: 35px;
}
#full-area #game-area #leaderboard-section #arrow-btn {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  margin: -20px 0px;
  width: auto;
  z-index: 9;
  transition: 0.1s;
  opacity: 0;
}
#full-area #game-area #leaderboard-section #arrow-btn:active {
  transform: translateX(-50%) scale(0.98);
  opacity: 0.95;
}
#full-area #game-area #leaderboard-section #back-btn {
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
  margin: -20px 20px;
  width: 220px;
  z-index: 9;
  opacity: 0;
  transition: 0.1s;
}
#full-area #game-area #leaderboard-section #back-btn img {
  width: 100%;
}
#full-area #game-area #leaderboard-section #back-btn p {
  color: white;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
#full-area #game-area #leaderboard-section #back-btn:active {
  transform: translateY(-100%) scale(0.98);
  opacity: 0.95;
}
#full-area #game-area #game-over-section {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#full-area #game-area #game-over-section #game-over-container {
  width: 800px;
  height: 542px;
  background: url("/media/games/trivia-war/images/end-section.png");
  background-size: cover;
  left: 50%;
  top: 0px;
  position: relative;
  margin-left: -400px;
  margin-top: 30px;
}
#full-area #game-area #game-over-section #game-over-container h1 {
  font-size: 50px;
  color: #130236;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 140px;
  text-transform: uppercase;
  height: 130px;
  overflow: hidden;
  font-weight: 600;
  display: none;
}
#full-area #game-area #game-over-section #players-end-rank div {
  display: flex;
  width: 100%;
  width: 66%;
  position: relative;
  left: 26%;
  top: 170px;
  height: 81px;
  justify-content: space-between;
}
#full-area #game-area #game-over-section #players-end-rank div p {
  font-size: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#full-area #game-area #game-over-section #players-end-rank div .quiz-end-player-name {
  width: 60%;
  text-wrap: nowrap;
}
#full-area #game-area #game-over-section #players-end-rank div .quiz-end-player-score {
  width: 30%;
}
#full-area #game-area #game-over-section #players-end-rank div:nth-child(2) .quiz-end-player-score {
  padding-top: 10px;
}
#full-area #game-area #game-over-section #players-end-rank div:nth-child(3) .quiz-end-player-score {
  padding-top: 20px;
}
#full-area #game-area #game-over-section #players-end-rank div:nth-child(4) .quiz-end-player-score {
  padding-top: 5px;
}
#full-area #game-area #game-over-section #end-btns {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 80px;
  width: 350px;
  display: flex;
  justify-content: center;
}
#full-area #game-area #game-over-section #end-btns div {
  transition: 0.2s;
  cursor: pointer;
}
#full-area #game-area #game-over-section #end-btns div:hover {
  filter: brightness(1.1);
}

@keyframes logoAnim {
  0% {
    transform: scale(1) rotate(-5deg);
  }
  50% {
    transform: scale(0.96) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(-5deg);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes choosenCatAnim {
  0% {
    transform: translate(-50%, -50%) scale(1.6);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
  }
}
@keyframes transY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes infiniteRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 960px) and (max-height: 480px) {
  #full-area #game-area #categories-section {
    z-index: -1;
  }
  #full-area #game-area #categories-section #categories-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 150px;
    height: 530px;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  #full-area #game-area #categories-section #categories-list .category-option {
    width: 260px;
    height: 240px;
    min-width: 0;
    min-height: 0;
  }
  #full-area #game-area #categories-section #categories-list .category-option p {
    font-size: 27px;
    top: 174px;
  }
  #full-area #game-area #categories-section #arrow-btn {
    display: none;
    z-index: 20;
  }
}
@media (max-width: 600px) {
  #full-area #game-area #players-section #choose-players-title {
    margin-top: 100px;
    width: 70%;
  }
  #full-area #game-area #players-section #players-list {
    display: flex;
    flex-wrap: wrap;
    transform: translateX(-50%) scale(0.9);
  }
  #full-area #game-area #players-section #players-list .player-container {
    width: 34%;
  }
  #full-area #game-area #players-section #how-many-players {
    width: 80%;
  }
  #full-area #game-area #logo-section #logo {
    width: 650px;
  }
  #full-area #game-area #menu #menu-container {
    width: 600px;
    transform: scale(0.9);
    margin-left: -50px;
  }
  #full-area #game-area #menu #menu-icons {
    position: absolute;
    transform: scale(0.9);
    margin-left: 510px;
    width: 100px;
  }
  #full-area #game-area #menu #menu-icons div {
    margin: 0;
    margin-right: -30px;
  }
  #full-area #game-area #home-section #home-btns {
    margin-top: -5px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  #full-area #game-area #micro-character {
    display: none;
    visibility: hidden;
  }
  #full-area #game-area #categories-section #choose-category {
    width: 80%;
    margin-top: 100px;
  }
  #full-area #game-area #categories-section #choose-category img {
    width: 100%;
  }
  #full-area #game-area #categories-section #select-or-say-category {
    width: 80%;
    margin-top: 80px;
  }
  #full-area #game-area #categories-section #select-or-say-category img {
    width: 100%;
  }
  #full-area #game-area #categories-section #categories-list {
    margin-top: 170px;
    height: 440px;
    display: flex;
    transform: scale(1.2);
    margin-left: 90px;
    padding-right: 250px;
  }
  #full-area #game-area #categories-section #arrow-btn {
    display: none;
    z-index: 20;
  }
  #full-area #game-area #subcategories-section #selected-category {
    margin-top: 100px;
  }
  #full-area #game-area #subcategories-section #list-subcategories {
    margin-top: 50px;
    height: 670px;
  }
  #full-area #game-area #play-section #quiz-header #quiz-header-title {
    visibility: hidden;
  }
  #full-area #game-area #play-section #quiz-question {
    top: 50px;
  }
  #full-area #game-area #play-section #quiz-answers {
    transform: scale(1.1);
    margin-left: 200px;
    margin-top: 50px;
  }
  #full-area #game-area #play-section #quiz-answers .quiz-answer:nth-child(3) {
    margin-left: 40px;
    left: 0;
  }
  #full-area #game-area #play-section #quiz-players {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    justify-content: center;
    margin-top: -150px;
  }
  #full-area #game-area #play-section #quiz-players .quiz-player {
    transform: scale(1);
    margin: 10px;
  }
  #full-area #game-area #game-over-section #game-over-container {
    margin-top: 250px;
  }
  #full-area #game-area #game-over-section #game-over-btns {
    width: 100%;
    margin-left: -100px;
    margin-top: -120px;
    transform: translate(-50%, -50%) scale(0.5);
  }
  #full-area #game-area #leaderboard-section #leaderboard-container {
    margin-top: -80px;
    zoom: 90%;
    transform: translate(-50%, -50%) scale(1.05);
  }
  #full-area #game-area #leaderboard-section #arrow-btn {
    top: 70%;
  }
  #full-area #game-area #leaderboard-section #back-btn {
    display: none;
  }
}

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