/*!***********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/index.scss ***!
  \***********************************************************************************************************/
:root {
  --primary-color: #4b9ae7;
  --primary-color01: #81abff;
  --outline: 4px solid rgba(210, 210, 210, 0.28);
  --btn-outline: 3.5px solid rgba(255, 255, 255, 0.44);
  --btn-outline-hover: 3.5px solid rgba(255, 255, 255, 0.64);
  --card-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.3);
}

@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "210L";
  src: url(../98f1ae15be6b46356d94.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  overflow: hidden;
  font-family: "210L", serif;
}

canvas {
  width: 100%;
  height: 100%;
}

.main_container {
  display: inline-block;
  position: relative;
  width: 100vw;
  overflow: hidden;
}

#map_identifier {
  top: 0;
  left: 0;
  position: absolute;
  color: white;
  font-size: x-large;
  background: rgba(23, 23, 23, 0.89);
  padding: 20px;
  border-radius: 10px;
  margin: 10px;
}

#login_screen {
  height: max(100%, 1500px);
  min-height: 100vh;
  background-size: cover;
  color: white;
  line-height: 1.5;
  opacity: 1;
  z-index: -2;
}
#login_screen .backdrop {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 0;
}

.game_button_container {
  margin: 10px;
}

.chat-popup {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  z-index: 19;
  padding: 20px;
}
.chat-popup h2 {
  color: black;
}
.chat-popup .form-container {
  display: flex;
  flex-direction: column;
  width: 30%;
  min-width: 400px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.chat-popup .form-container .text_input {
  padding: 12px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 1px;
  width: 100%;
  min-width: 300px;
  min-height: 45px;
  font-size: 0.9em;
  border: 0px;
  margin: 5px 0px;
  border: 2px solid black;
}
.chat-popup .form-container .text_input:focus {
  background: rgba(255, 255, 255, 0.98);
  outline: none;
}
.chat-popup .form-container .text_input::after {
  content: "";
  background: black;
  position: absolute;
  left: -2.5%;
  top: 0;
  width: 105%;
  height: 100%;
  z-index: -1;
}
.chat-popup .form-container .text_input::before {
  content: "";
  background: black;
  position: absolute;
  left: 0;
  top: -5%;
  width: 100%;
  height: 113%;
  z-index: -1;
}
.chat-popup .form-container .button_container {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 3px;
}
.chat-popup .form-container .button_container .custom_button {
  margin: 5px;
  font-size: 0.9em;
  font-family: "Press Start 2P", cursive;
  width: 30%;
  min-width: 130px;
  height: 40px;
  background: #4b9ae7;
  border: 0px;
  position: relative;
  outline: none;
}
.chat-popup .form-container .button_container .custom_button:hover {
  cursor: pointer;
}
.chat-popup .form-container .button_container .custom_button:active {
  top: 5px;
  box-shadow: -4px 2px 1px 1px grey, -4px -2px 1px 1px lightgray, 4px 0px 1px 1px lightgray;
  outline: none;
}
.chat-popup .form-container .button_container .custom_button::after {
  content: "";
  background: black;
  position: absolute;
  left: -2.5%;
  top: 0;
  width: 105%;
  height: 100%;
  z-index: -1;
}
.chat-popup .form-container .button_container .custom_button::before {
  content: "";
  background: black;
  position: absolute;
  left: 0;
  top: -5%;
  width: 100%;
  height: 113%;
  z-index: -1;
}
.chat-popup .form-container .button_container .cancel {
  background-color: #f3f9ff;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 8;
  display: none;
}

.popup-card {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}
.popup-card .popup-content {
  background-color: #1d1e22;
  padding: 40px;
  border: 4px solid #4bc4ff;
  border-radius: 20px;
  max-width: 80%;
  max-height: 80%;
  overflow-y: auto;
  text-align: center;
  font-size: 1.5em;
  color: #4bc4ff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}
.popup-card .close-btn {
  background-color: transparent;
  color: #4bc4ff;
  border: none;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
  transition: all 0.2s ease-in-out;
}
.popup-card .close-btn:hover {
  transform: scale(1.1);
}

.card {
  color: #111111;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  width: 400px;
  margin: auto;
  text-align: center;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 10px;
  transform: translate(-50%, -50%);
  z-index: 9;
  display: none;
}

#battle_banner {
  color: #111111;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: auto;
  text-align: center;
  background-color: white;
  position: absolute;
  top: 10px;
  left: calc(50% - 75px);
  z-index: 129;
  padding: 20px;
  padding-top: 10px;
  overflow: hidden;
  display: none;
  /* From https://css.glass */
  background: rgba(23, 23, 23, 0.89);
  border-radius: 4px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14.2px);
  -webkit-backdrop-filter: blur(14.2px);
  border: 1px solid rgba(23, 23, 23, 0.67);
  color: rgba(242, 242, 242, 0.93);
}

.multiPageDialog {
  color: #111111;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: auto;
  text-align: center;
  background-color: white;
  position: absolute;
  top: calc(50% - 300px);
  left: calc(50% - 250px);
  z-index: 129;
  width: 500px;
  height: 380px;
  padding: 20px;
  overflow: hidden;
  display: block;
  /* From https://css.glass */
  background: rgba(23, 23, 23, 0.89);
  border-radius: 4px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14.2px);
  -webkit-backdrop-filter: blur(14.2px);
  border: 1px solid rgba(23, 23, 23, 0.67);
  color: rgba(242, 242, 242, 0.93);
}
.multiPageDialog .contentContainer {
  float: left;
  overflow: scroll;
  width: 500px;
  height: 350px;
  transition: 0.8s all ease;
}
.multiPageDialog .page {
  width: 460px;
  height: 350px;
  margin: 0px 0px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.buttonContainer {
  display: flex;
  flex-direction: row;
}
.buttonContainer .pageBtn {
  margin-right: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  width: 45px;
  padding: 3px;
  border: var(--btn-outline);
  border-radius: 4px;
}
.buttonContainer .pageBtn:hover {
  border: var(--btn-outline-hover);
  transition: all 0.3s ease;
}

.loader {
  position: absolute;
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  z-index: -1;
}

#joyDiv {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  margin-bottom: 20px;
  z-index: 9;
}

#overlappingDiv {
  background-color: black;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
img {
  width: min(100%, 400px);
  object-fit: cover;
}

#loading_container {
  text-align: center;
}
#loading_container img {
  width: min(100%, 200px);
  object-fit: cover;
}

.landing-container {
  margin: 0px auto;
  padding: 30px 0px;
  background-color: unset;
  max-width: 800px;
}

#settingSection {
  position: absolute;
  opacity: 1;
  top: 0;
  right: 0;
  z-index: 9;
  text-align: right;
}

#buttonSection {
  display: none;
  padding: 10px;
  background: rgba(23, 23, 23, 0.89);
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14.2px);
  -webkit-backdrop-filter: blur(14.2px);
  border: 1px solid rgba(23, 23, 23, 0.67);
  color: rgba(242, 242, 242, 0.93);
}

.fixed_container {
  border: 1px solid black;
  width: 100%;
  height: 100%;
  position: relative;
}

#profileCard {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  width: 400px;
  margin: auto;
  text-align: center;
  background-color: white;
  position: absolute;
  top: calc(50% - 300px);
  left: calc(50% - 200px);
  z-index: 9;
  display: none;
}
#profileCard #profileName {
  font-size: 14px;
}

#nftListBox {
  margin-top: min(20px, 1%);
  text-align: center;
}
#nftListBox img {
  margin: 6px;
}

.battleNameTag {
  background-color: white;
  display: flex;
  flex-direction: column;
  max-width: 400px;
  position: absolute;
  left: 50px;
  border: 6px rgb(29, 0, 128) solid;
  padding: 12px;
  border-radius: 2px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /* Text container */
  /* Image container */
  /* Responsive image */
}
.battleNameTag .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.battleNameTag .text {
  padding-right: 20px;
  font-size: 23px;
  font-weight: bold;
  text-shadow: 2px 2px 5px #000;
}
.battleNameTag .image {
  padding-left: 20px;
}
.battleNameTag .image img {
  height: 30px;
  width: 30px;
}
.battleNameTag .health_container {
  margin-top: 3px;
  border-radius: 2px;
  background-color: rgb(29, 0, 73);
  padding: 3px 7px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
.battleNameTag .hp_desc {
  font-size: 12px;
  font-weight: 700;
  color: rgb(233, 175, 0);
  padding-right: 10px;
}
.battleNameTag .health_bar {
  position: relative;
  width: 250px;
}
.battleNameTag .health_bar_outer {
  top: 0;
  left: 0;
  height: 14px;
  width: 100%;
  border-radius: 2px;
  background-color: #ccc;
}
.battleNameTag .health_bar_inner {
  top: 0;
  left: 0;
  height: 14px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  background-color: green;
}
.battleNameTag .effect_box {
  background-color: #ccc;
  display: flex;
}
.battleNameTag .effect_box .effect_img_container {
  width: 30px;
  height: 30px;
  margin: 5px;
}
.battleNameTag .effect_box .tooltip {
  background: rgba(255, 255, 255, 0.757);
  display: flex;
  flex-direction: column;
  position: absolute;
  text-align: left;
  display: flex;
  flex-direction: column;
  top: 73px;
  right: 0px;
  padding: 10px;
  z-index: 6;
}
.battleNameTag #playerHealthBar {
  position: absolute;
}
.battleNameTag #enemyHealthBar {
  position: absolute;
}

.loading_screen {
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  background-color: black;
}
.loading_screen img {
  width: 150px;
  z-index: 1002;
  position: fixed;
  top: calc(50% - 20px);
  left: calc(50% - 75px);
  display: none;
}

.battle_skill_box {
  background-color: white;
  height: 180px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 4px black solid;
  display: flex;
}

.custom_button_1 {
  background-color: black;
  color: white;
  border-radius: 5px;
  padding: 10px 15px;
  position: relative;
  box-shadow: 4px 4px 3px 3px #7F80E8;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.custom_button_1 > span.bg {
  background: black;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.custom_button_1:hover {
  color: purple;
}

.custom_button_1:hover > span.bg {
  transition: all 0.3s ease-in-out;
}

.option {
  background-color: black;
  color: white;
}

.app_bar {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: min(15px, 0.5%) 3.5vw;
  background: rgba(63, 52, 52, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.2px solid rgba(220, 220, 220, 0.88);
}
.app_bar .logo {
  width: min(100px, 8%);
}
.app_bar .icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.app_bar .icons .twitter {
  width: 40px;
}
.app_bar .icons .discord {
  width: 70px;
}
.app_bar .icons .connect_button {
  font-size: 14px;
  margin-left: 25px;
  background-color: rgba(0, 0, 240, 0.7);
  outline: var(--btn-outline);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  border-radius: 7px;
  padding: 10px 22px;
  border: none;
}
.app_bar .icons .connect_button:hover {
  background-color: rgba(0, 0, 240, 0.9);
  color: rgb(255, 255, 255);
  transition: all 0.3s;
  outline: var(--btn-outline-hover);
}

.modal-right {
  display: none;
}

.login_main_container {
  height: calc(100vh - 85px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.main_box {
  width: 80%;
  height: 80%;
  background: rgba(2, 2, 2, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid rgba(160, 160, 160, 0.88);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main_box .connect_text {
  font-size: 24px;
  text-align: center;
  line-height: 45px;
}

.connect_modal_box {
  width: 60%;
  height: max(60%, 350px);
  background: rgba(133, 122, 122, 0.8);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 15px;
  outline: var(--outline);
  color: rgba(255, 255, 255, 0.85);
  padding: 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.connect_modal_box .connect_text {
  font-size: 20px;
  width: 100%;
  text-align: center;
  margin-top: min(15px, 1%);
}
.connect_modal_box .options-list-section-header {
  display: none;
}
.connect_modal_box .chain_containers {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 70%;
  width: 100%;
}
@media (max-width: 900px) {
  .connect_modal_box .chain_containers {
    flex-direction: column;
  }
}
.connect_modal_box .chain_containers .one_chain {
  width: 31%;
  height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
  font-size: 13px;
  background: rgba(52, 52, 52, 0.9);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  outline: var(--outline);
  margin: 0px 1.5%;
  border-radius: 6px;
}
.connect_modal_box .chain_containers .one_chain .list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.connect_modal_box .chain_containers .one_chain .one_collection {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  border: none;
  background: rgba(0, 0, 0, 0);
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 10px;
  width: 95%;
  border-radius: 6px;
  outline: none;
}
.connect_modal_box .chain_containers .one_chain .one_collection:hover {
  background: rgba(250, 250, 250, 0.15);
  outline: none;
  cursor: pointer;
}
.connect_modal_box .chain_containers .one_chain .one_collection:focus {
  outline: 2px solid rgba(240, 240, 240, 0.2);
}
.connect_modal_box .chain_containers .one_chain .one_collection .collection_name {
  margin-left: 12px;
  width: 90%;
  text-align: left;
}
.connect_modal_box .chain_containers .one_chain .one_collection .img_outer {
  background: white;
  border-radius: 6px;
  padding: 7px;
  width: 45px;
}
.connect_modal_box .chain_containers .one_chain .single-wallet {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  border: none;
  background: rgba(0, 0, 0, 0);
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 10px;
  width: 95%;
  border-radius: 6px;
  outline: none;
}
.connect_modal_box .chain_containers .one_chain .single-wallet:hover {
  background-color: rgba(250, 250, 250, 0.15);
  outline: none;
  cursor: pointer;
}
.connect_modal_box .chain_containers .one_chain .single-wallet:focus {
  outline: 2px solid rgba(240, 240, 240, 0.2);
}
.connect_modal_box .chain_containers .one_chain .single-wallet .content {
  margin-left: 12px;
  width: 90%;
  text-align: left;
}
.connect_modal_box .chain_containers .one_chain .single-wallet .icon {
  background: white;
  border-radius: 6px;
  padding: 7px;
  width: 45px;
}
.connect_modal_box .chain_containers .one_chain .logo {
  width: 40px;
}
.connect_modal_box .input_container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: min(30px, 2%);
}
.connect_modal_box .input_container input {
  width: 50%;
}
.connect_modal_box .input_container button {
  margin-left: 20px;
}
.connect_modal_box .input_container:focus {
  outline: none;
}
@media (max-width: 900px) {
  .connect_modal_box .input_container {
    flex-direction: column;
  }
}

.nft_choose_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nft_choose_container .back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 13px 20px;
  border-radius: 6px;
  background-color: rgba(250, 250, 250, 0.15);
}
.nft_choose_container .back:hover {
  background-color: rgba(250, 250, 250, 0.3);
}
.nft_choose_container .nft_outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nft_choose_container .nft_outer .title {
  font-size: 22px;
  padding: 10px 0px;
}
.nft_choose_container .nft_outer .img_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: min(15px, 1%);
  text-align: center;
}
.nft_choose_container .nft_outer .img_container img {
  width: 130px;
  margin: 6px;
}
.nft_choose_container .nft_outer .img_container img:hover {
  outline: var(--outline);
}

.web_custom_button {
  font-size: 14px;
  background-color: rgba(20, 20, 20, 0.9);
  outline: var(--btn-outline);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  border-radius: 7px;
  padding: 14px 30px;
  border: none;
  margin-top: min(30px, 2%);
}
.web_custom_button:hover {
  background-color: rgb(20, 20, 20);
  color: rgb(255, 255, 255);
  transition: all 0.3s;
  outline: var(--btn-outline-hover);
}

.mt20 {
  margin-top: min(20px, 1%);
}

#attackType {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33%;
  border-left: 4px black solid;
}

#dialogBox {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  padding: 12px;
  display: none;
  cursor: pointer;
}

#attacksBox {
  width: 66.66%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#modal_container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#battle_skills {
  display: none;
  flex-direction: column;
  color: black;
  box-shadow: var(--card-shadow);
  padding: 25px 20px 5px 20px;
  text-align: center;
  font-family: Pretendard;
  position: fixed;
  bottom: 8vh;
  right: 5vw;
  z-index: 5;
  background: rgba(0, 0, 0, 0.1333333333);
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}
#battle_skills .battle_skills_container {
  display: flex;
  flex-direction: row;
  position: relative;
}
#battle_skills .battle_skills_container .battle_one_skill {
  width: 65px;
  height: 65px;
  border-radius: 100px;
  margin: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 255, 255, 0.4);
  color: black;
  position: relative;
  background: rgba(52, 152, 219, 0.5333333333);
  box-shadow: 4px 4px 1px 4px rebeccapurple;
}
#battle_skills .battle_skills_container .battle_one_skill:hover {
  background: #3498db;
}
#battle_skills .battle_skills_container .a0 {
  margin-top: 30px;
}
#battle_skills .battle_skills_container .a2 {
  margin-top: 20px;
}
#battle_skills .battle_skills_container .d0 {
  margin-top: 30px;
}
#battle_skills .battle_skills_container .d2 {
  margin-top: 20px;
}
#battle_skills .battle_skills_container .battle_skill_hover_tooltip {
  background: rgb(0, 0, 0);
  color: rgb(242, 242, 242);
  border-radius: 5px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  text-align: left;
  display: flex;
  flex-direction: column;
  top: -250px;
  left: -200px;
  padding: 10px;
  min-width: 250px;
  min-height: 200px;
  z-index: 6;
  font-weight: 500;
}
/*!************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/modals.scss ***!
  \************************************************************************************************************/
.battle_modal {
  display: none;
  position: fixed;
  top: calc(50% - max(200px, 35%));
  left: calc(50% - max(200px, 40%));
  width: max(400px, 80%);
  height: max(400px, 70%);
  z-index: 5;
  border-radius: 4px;
  background-color: rgba(23, 23, 23, 0.89);
  padding: 25px 25px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  color: rgba(242, 242, 242, 0.93);
  text-align: center;
}
.battle_modal .battle_modal_content {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#multipleActionCard {
  display: none;
  z-index: 2;
  height: auto;
  padding-top: 100px;
}
#multipleActionCard .action_box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
#multipleActionCard .action_box .right_arrow {
  font-size: 2em;
}
#multipleActionCard .action_box .one_action_box {
  width: 90px;
  height: 90px;
  margin: 6px;
  padding: 5px;
  outline: 3px solid rgba(242, 242, 242, 0.5);
  transition: 0.3s ease;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
}
#multipleActionCard .action_box .one_action_box:hover {
  background-color: rgba(0, 0, 0, 0.1);
  outline: 2px solid rgba(0, 0, 0, 0.2);
}

#skill_box_temp {
  display: none;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  text-align: center;
  font-family: Pretendard;
  z-index: 5;
}
#skill_box_temp .title {
  font-weight: 700;
  font-size: 1.2em;
}
#skill_box_temp .attack_skill_box,
#skill_box_temp .defense_skill_box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
#skill_box_temp .attack_skill_box .one_atk_skill_box,
#skill_box_temp .defense_skill_box .one_atk_skill_box {
  width: 90px;
  height: 90px;
  margin: 6px;
  padding: 5px;
  outline: 3px solid rgba(242, 242, 242, 0.5);
  transition: 0.3s ease;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
}
#skill_box_temp .attack_skill_box .one_atk_skill_box:hover,
#skill_box_temp .defense_skill_box .one_atk_skill_box:hover {
  background-color: rgba(0, 0, 0, 0.1);
  outline: 2px solid rgba(0, 0, 0, 0.2);
}
#skill_box_temp .attack_skill_box .skill_hover_tooltip,
#skill_box_temp .defense_skill_box .skill_hover_tooltip {
  background: rgb(0, 0, 0);
  color: rgb(242, 242, 242);
  border-radius: 5px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  text-align: left;
  display: flex;
  flex-direction: column;
  top: 97px;
  left: 0px;
  padding: 10px;
  min-width: 250px;
  min-height: 200px;
  z-index: 4;
  font-weight: 500;
}

#selectTypeBtn {
  width: 100%;
  border-radius: 6px;
  padding: 13px 0px;
  border: none;
  background-color: rgba(204, 213, 223, 0.6666666667);
  font-weight: 700;
  margin-top: 15px;
}
#selectTypeBtn:hover {
  background-color: rgba(179, 191, 205, 0.6666666667);
}
#selectTypeBtn:focus {
  border: none;
  outline: 3px solid rgba(0, 0, 0, 0.1);
}
/*!**********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./style/game.scss ***!
  \**********************************************************************************************************/
#game_screen {
  z-index: 2;
}

.battle_enter {
  width: 100vw;
  height: 100vh;
  z-index: -3;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 1s ease-out;
}
.battle_enter img {
  width: 100%;
  height: 100%;
}
.battle_enter .container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding-top: 10vh;
}
.battle_enter .container .title {
  font-size: 3em;
  color: aquamarine;
}

.char_container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 3vh;
}
.char_container .char {
  margin: 0px 1vw;
  width: 44vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.char_container .char .desc_row {
  margin-top: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.528);
}
.char_container .char .desc_row .desc_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px 15px;
  font-size: 14px;
}
.char_container .char .desc_row .desc_item .opp_label {
  color: cornflowerblue;
  font-size: 25px;
}
.char_container .char .desc_row .desc_item .label {
  color: lightblue;
  font-size: 25px;
}
.char_container .char .desc_row .desc_item .skill_label {
  color: lightblue;
  font-size: 15px;
}
.char_container .char .desc_row .desc_item .op_skill_label {
  color: cornflowerblue;
  font-size: 15px;
}
.char_container .char .desc_row .desc_item .skill_img_container {
  color: white;
  margin-top: 5px;
  width: 60px;
}
.char_container .char .desc_row .desc_item .value {
  color: white;
  margin-top: 18px;
  font-size: 20px;
}
.char_container .img_container {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: flex-end;
}
.char_container .img_container img {
  width: 200px;
  height: 200px;
}

#readyButtonContainer {
  display: none;
}

.game_skill_btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
  color: #2f3746;
}
.game_skill_btn img {
  width: 35%;
  margin-right: 10px;
}
.game_skill_btn .skill_button_desc {
  text-align: left;
}
.game_skill_btn .skill_button_desc .skill_desc {
  font-size: 14px;
}
.game_skill_btn .skill_button_desc .skill_desc p {
  margin: 0px;
  margin-top: 5px;
}
.game_skill_btn .skill_button_desc .skill_desc .skill_name {
  font-size: 16px;
}

#attacksBox button {
  background-color: #eef2f7;
}
#attacksBox button:hover {
  background-color: #e2e8ef;
  width: 100%;
  height: 100%;
}
#attacksBox button:focus {
  outline: none;
  box-shadow: none;
}
#attacksBox button:active {
  outline: none;
  box-shadow: none;
}

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