@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap');


html {
  scrollbar-face-color: #646464;
  scrollbar-base-color: #646464;
  scrollbar-3dlight-color: #646464;
  scrollbar-highlight-color: #646464;
  scrollbar-track-color: #000;
  scrollbar-arrow-color: #000;
  scrollbar-shadow-color: #646464;
  scrollbar-dark-shadow-color: #646464;
}

::-webkit-scrollbar { width: 8px; height: 3px;}
::-webkit-scrollbar-button {  background-color: #666; }
::-webkit-scrollbar-track {  background-color: #646464;}
::-webkit-scrollbar-track-piece { background-color: #000;}
::-webkit-scrollbar-thumb { height: 50px; background-color: #666; border-radius: 3px;}
::-webkit-scrollbar-corner { background-color: #646464;}}
::-webkit-resizer { background-color: #666;}

body {
  margin: 0ps auto;
  background-color: rgb(16, 28, 65);
  font-family: 'Rajdhani', sans-serif;
  background-image: url('img/bg2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

body *,button {
  font-family: 'Rajdhani', sans-serif;
}

#welcome-box {
  width: 600px;
  background-color: rgba(0, 0, 0, 0.8);
  color: rgb(228, 228, 228);
  padding: 60px 0px;
    margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

}

#welcome-box h1 {
  text-align: center;
  font-size: 50px; 
}

#welcome-box p {
  margin: 5px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 15px;
  font-size: 22px;
  text-align: center;
  padding-top: 10px;
    padding-bottom: 10px;
    display: none; 
}

button.connect {
  display: block;
  margin: 0px auto;
  font-size: 18px;
  margin-top: 25px;
  line-height: 24px;
  color: white;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  padding: 5px 10px;
  background-color: rgb(201 107 15);
  border: 2px solid transparent;
}

button.connect:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid rgb(201 107 15);
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

#working-please-wait {
  display: none;
}

h2 {
  text-align: center;
}

#wallet-connect{
  display:none;
}

#wallet-connected {
  display: none;
  padding-top: 30px; 
}

#your-assets {
  width: 95%;
  min-height: 50px;
  margin: 0px auto;
  color: white;
  text-align: center;
  overflow-y: scroll;
  max-height: 270px;
}

#your-assets-top-grad{
  position:absolute;
  margin-bottom:-50px;
  width:100%;
  height:15px;

  z-index:77;
  pointer-events: none;
}

#your-assets-bottom-grad{
  position:absolute;
  margin-top:-15px;
  width:100%;
  height:15px;
  pointer-events: none;
}

#burn-slot {
  display: inline-block;
  width: 140px;
  height: 140px;
  background-color: white;
  color: white;
  margin-top: 50px;
  margin-left: 0px;
  text-align: center;
  border: 4px solid white;
  border-radius: 10px;
  box-shadow: inset 0px 0px 150px black;

  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

h1.slot {
  position: absolute;
  margin-top: -32px;
  margin-left: -10px;
  font-size: 21px;
  text-align: center;
  white-space: -moz-pre-wrap;
  white-space: -o-pre-wrap;
  white-space: unset;
  word-break: unset;
  font-size: 18px !important;
}

#improve-slot {
  display: inline-block;
  width: 140px;
  height: 140px;
  background-color: white;
  color: white;
  margin-top: 50px;
  margin-left: 42px;
  text-align: center;
  border: 4px solid white;
  border-radius: 10px;
  box-shadow: inset 0px 0px 150px black;

  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

#asset-box {
  position:relative;
  display: inline-block;
  margin: 5px;
  border-radius: 10px;
  width: 100px;
  height: auto;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.185);

  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

#asset-box:hover {
  cursor: grab;
  box-shadow: 0px 0px 25px white;

  border: 2px solid rgb(0, 225, 255);

  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}

#slots-container {
  width: 100%;
  margin: 0px auto;
  text-align: center;
}

div.void {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('img/void.png');
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.2);

  -webkit-animation: 2s linear voidRotate infinite;
  animation: 2s linear voidRotate infinite;

  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  opacity: 0;
}

@keyframes voidRotate {
  0% {
    transform: rotate(0deg) scale(1.2)
  }

  50% {
    transform: rotate(360deg) scale(1.5)
  }

  100% {
    transform: rotate(720deg) scale(1.2)
  }
}

#negative-popup {
  position: absolute;
  width: 600px;
  left: calc(50% - 300px);
  top: 100px;
  border: 2px solid red;

  color: white;
  background-color: rgba(255, 0, 0, 0.322);

  backdrop-filter: blur(10px);

  font-size: 24px;
  padding: 10px;

  display: none;
}

#positive-popup {
  position: absolute;
  width: 600px;
  left: calc(50% - 300px);
  top: 100px;
  border: 2px solid rgb(0, 255, 34);

  color: white;
  background-color: rgba(9, 255, 0, 0.322);

  backdrop-filter: blur(10px);

  font-size: 24px;
  padding: 10px;

  display: none;
}



#multi-wallet-popup {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999999;
}

#multi-wallet-container {
  display: block;
  position: absolute;
  width: 400px;
  left: calc(50% - 200px);
  top: calc(50% - 25%);
  background-color: #4a3a5c;
  color: white;
  box-shadow: 0px 25px 25px black;
}

#multi-wallet-container-close {
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  padding-left: 10px;
  color: gray;
  text-align: center;
  float: right;
  font-size: 20px;
  padding-right: 10px;
  margin-right: 15px;
  margin-top: 15px;
}

#multi-wallet-container-close:hover {
  color: white;
  cursor: pointer;
}

#multi-wallet-container h1 {
  padding: 25px;
  text-align: center;
  font-size: 28px;
}

#multi-wallet-container img {
  width: 32px;
  margin-left: 25px;
  float: left;
}

#multi-wallet-container div.wallet-option {
  display: block;
  width: 100%;
  color: white;
  padding-top: 5px;
}

#multi-wallet-container div.wallet-option:hover {
  background-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

#multi-wallet-container div.wallet-option p {
  display: inline-block;
  padding-left: 50px;
  font-size: 18px;
  margin-top: 5px;
}

#multi-wallet-container span {
  padding: 5px;
  color: #7ab9c3;
  float: right;
  margin-right: 25px;
}

#wallet-option-container {
  width: 100%;
}

#wallet-options-toggle-more {
  color: white;
  padding: 5px;
  float: right;
}

#wallet-options-toggle-more:hover {
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

#more-wallet-options {
  display: none;
  width: 100%;
}

#more-wallet-options hr {
  border: none;
  width: 90%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

#coinbase-wallet-connect-img {
  background-image: url('./img/coinbase-wallet.png');
  width: 30px;
  height: 30px;
  left: 4px;
  top: 3px;
  display: block;
  background-size: 100%;
  position: absolute;
}

#fractal-wallet-connect-img {
  background-image: url('https://www.fractal.is/favicon.ico');
  width: 30px;
  height: 30px;
  left: 4px;
  top: 3px;
  display: block;
  background-size: 100%;
  position: absolute;
}

#wallet-connect-img {
  position: absolute;
  left: 6px;
  top: 5px;
  display: inline-block;
  width: 27px;
  height: 36px;
  background-image: url('./img/phantom-wallet.png');
  background-size: 25px;
  background-repeat: no-repeat;
}


span#wallet_address_text {
  background-color: transparent;
  padding: 3px 5px;
  border-radius: 3px !important;
  margin-left: 4px;
}


#fractal-wallet-connect-bttn {
  display: block;
  border: none;
  color: white;
  background-color: rgba(0, 0, 0, 0);
  text-align: right;
  padding: 0;
  margin-left: auto;
  margin-right: -25px;
}

#fractal-wallet-connect {
  overflow: hidden;
}


#logo {
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

span.earnable{
  display:block;
  position:absolute;
  background-color:greenyellow;
  color:black;
  font-weight:bolder;
  z-index:5;
  margin-top:-95px;
  margin-left:50px;
  border-radius:5px;
  padding-left:5px;
  padding-right:5px;
  font-size:12px;
}

span.non-earnable{
  display:block;
  position:absolute;
  background-color:rgb(255, 93, 93);
  color:black;
  font-weight:bolder;
  z-index:5;
  margin-top:-95px;
  margin-left:25px;
  border-radius:5px;
  padding-left:5px;
  padding-right:5px;
  font-size:12px;
}

span.color-shader-applied{
  display:block;
  position:absolute;
  background-color:black;
  color:white;
  text-shadow: 0px 0px 1px black, 0px 0px 1px black, 0px 0px 1px black;
  font-weight:bolder;
  z-index:5;
  margin-top:-95px;
  right: 5px;
  border-radius:5px;
  padding-left:5px;
  padding-right:5px;
  font-size:14px;
  text-transform: uppercase;
}

#overwrite-confirm-popup{
  display:none;
  position:absolute;
  top:calc(50% - 25%);
  left:calc(50% - 300px);
  width:600px;
  border:3px solid rgba(255, 166, 0, 0.8);
  background: rgba(0, 0, 0, 0.8);
  z-index: 7777;
}

#overwrite-confirm-popup p{
  display:block;
}

.overwrite-yes{
  display:inline-block;
  margin:0px auto;
  border:none;
  background-color: #3bb672;
  color:white;
  font-weight:bolder;
  font-size:24px;
  width:100px;
  margin-left:195px;
  margin-bottom:10px;
}

.overwrite-yes:hover{
  background-color: black;
  cursor:pointer;
  border: 2px solid #3bb672;
}

.overwrite-no{
  display:inline-block;
  margin:0px auto;
  border:none;
  background-color: #b63b3b;
  color:white;
  font-weight:bolder;
  font-size:24px;
  width:100px;
  margin-left: 10px;
  margin-bottom:10px;
}

.overwrite-no:hover{
  background-color: black;
  cursor:pointer;
  border: 2px solid #b63b3b;
}

#intention-declaration-dropdown{
  display: block;
  margin: 0px auto;
  font-size: 18px;
  background-color: rgb(51, 44, 44);
  color: gray;
  text-align: center;
  word-wrap: break-word;
  white-space: normal;
  border: 2px solid rgba(128, 128, 128, 0.363);
  cursor: pointer;
  padding: 5px 10px;
}

#intention-declaration-dropdown:hover{
  background-color:rgb(68, 64, 64);
  color:rgb(212, 212, 212);
}

#intention-declaration-dropdown:active{
  background-color:rgb(37, 35, 35);
}

#intention-declaration-dropdown option{
  cursor:pointer;
  font-size:21px;
}