@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus+SC&display=swap");
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Kanit&display=swap");
/* Basic styling */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-size: 16px;
}

nav {
  background: #222;
  padding: 0 15px;
  /* Mobile menu */
  /* Submenu up from mobile screens */
  /* Tablet menu */
  /* Desktop menu */
}

nav a, nav a:visited {
  color: #fff;
  text-decoration: none;
}

nav .menu,
nav .submenu {
  list-style-type: none;
}

nav .logo {
  font-size: 20px;
  padding: 7.5px 10px 7.5px 0;
}

nav .item {
  padding: 10px;
  z-index: 2;
}

nav .item.button {
  padding: 9px 5px;
}

nav .item:not(.button) a:hover,
nav .item a:hover::after {
  color: #ccc;
}

nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .menu li a {
  display: block;
  padding: 15px 5px;
}

nav .menu li.subitem a {
  padding: 15px;
}

nav .toggle {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-size: 20px;
  width: 70px;
  max-width: 70px;
  z-index: 2;
}

nav .item.button {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

nav .item {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  text-align: center;
  display: none;
}

nav .active .item {
  display: block;
}

nav .button.secondary {
  /* divider between buttons and menu links */
  border-bottom: 1px #444 solid;
}

nav .submenu {
  display: none;
}

nav .submenu-active .submenu {
  display: block;
}

nav .has-submenu i {
  font-size: 12px;
}

nav .has-submenu > a::after {
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  content: "▼";
  color: white;
  padding-left: 5px;
}

nav .subitem a {
  padding: 10px 15px;
}

nav .submenu-active {
  background-color: #111;
  border-radius: 3px;
}

@media all and (min-width: 700px) {
  nav {
    /* Button up from tablet screen */
  }
  nav .menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  nav .logo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  nav .item.button {
    width: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: block;
  }
  nav .toggle {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: right;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  nav .menu li.button a {
    padding: 10px 15px;
    margin: 5px 0;
  }
  nav .button a {
    background: #10569B;
    border: 1px #0D2740 solid;
  }
  nav .button.secondary {
    border: 0;
  }
  nav .button.secondary a {
    background: transparent;
    border: 1px #0080ff solid;
  }
  nav .button a:hover {
    text-decoration: none;
  }
  nav .button:not(.secondary) a:hover {
    background: royalblue;
    border-color: darkblue;
  }
}

@media all and (min-width: 960px) {
  nav .menu {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    background: none;
  }
  nav .logo {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  nav .item {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: relative;
    display: block;
    width: auto;
  }
  nav .button {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  nav .submenu-active .submenu {
    display: block;
    position: absolute;
    left: 0;
    top: 68px;
    background: #111;
  }
  nav .toggle {
    display: none;
  }
  nav .submenu-active {
    border-radius: 0;
  }
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #2196F3;
          box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

@font-face {
  font-family: Panton;
  src: url("/fonts/panton.black-caps.otf") format("opentype");
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

select[data-currency] {
  display: none;
  width: 100%;
  font-size: 0.9em;
  padding: 0.4em;
}

select[data-currency].show {
  display: block;
}

#login-dialog, #settings-dialog, #donate-dialog, #more-credits-dialog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#login-dialog.show, #settings-dialog.show, #donate-dialog.show, #more-credits-dialog.show {
  display: block;
}

#login-dialog > div, #settings-dialog > div, #donate-dialog > div, #more-credits-dialog > div {
  position: absolute;
  top: 10vh;
  left: calc(50vw - 150px);
  width: 300px;
  background-color: #fff;
  text-align: center;
  font-family: 'Montserrat';
  border-radius: 2em;
  padding: 1em;
}

#login-dialog > div > h5, #settings-dialog > div > h5, #donate-dialog > div > h5, #more-credits-dialog > div > h5 {
  font-family: 'Panton';
  margin: 0;
  font-size: 2em;
}

#login-dialog > div > button, #settings-dialog > div > button, #donate-dialog > div > button, #more-credits-dialog > div > button {
  margin-top: 1em;
}

#login-dialog > div > button > img, #settings-dialog > div > button > img, #donate-dialog > div > button > img, #more-credits-dialog > div > button > img {
  margin: 0 auto 8px auto;
  display: block;
}

#login-dialog > div > div, #settings-dialog > div > div, #donate-dialog > div > div, #more-credits-dialog > div > div {
  margin-top: 1em;
}

#login-dialog label, #settings-dialog label, #donate-dialog label, #more-credits-dialog label {
  font-family: 'Panton';
}

#more-credits-dialog > div {
  top: 1em;
  left: 1em;
  right: 1em;
  bottom: 1em;
  width: calc(100vw - 2em);
  height: calc(100vh - 2em);
}

#more-credits-dialog > div > div > div > h5 {
  font-family: 'Panton';
  margin: 0;
  font-size: 2em;
}

#more-credits-dialog > div .options {
  text-align: left;
}

#more-credits-dialog > div .options > div input {
  max-width: 45px;
}

#more-credits-dialog > div .selection {
  height: calc(100vh - 25em);
  overflow: auto;
  border: solid 3px 396b0;
  border-radius: 1em;
  padding: 1em;
}

#more-credits-dialog > div .selection div[data-template-id] {
  display: inline-block;
  position: relative;
  width: 18em;
  height: 23em;
  margin: 0.1em;
  padding: 1em;
  border: solid 1px #e396b0;
  border-radius: 1em;
}

#more-credits-dialog > div .selection div[data-template-id] > h5 {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 0.2em;
  font-family: 'Panton';
}

#more-credits-dialog > div .selection div[data-template-id] > .media > img, #more-credits-dialog > div .selection div[data-template-id] > .media > video {
  max-width: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter 1s ease-in-out;
  transition: -webkit-filter 1s ease-in-out;
  transition: filter 1s ease-in-out;
  transition: filter 1s ease-in-out, -webkit-filter 1s ease-in-out;
}

#more-credits-dialog > div .selection div[data-template-id]:hover > .media > img, #more-credits-dialog > div .selection div[data-template-id]:hover > .media > video {
  -webkit-filter: none;
          filter: none;
}

#more-credits-dialog > div .selection div[data-template-id] .badges {
  font-size: 0.5em;
  position: absolute;
  top: 12em;
  left: 0;
  right: 0;
  z-index: 1;
}

#more-credits-dialog > div .selection div[data-template-id] .badges span {
  font-size: 6em;
}

#more-credits-dialog > div .selection div[data-template-id] .badges > .badge {
  font-size: 2em;
}

#more-credits-dialog > div .selection div[data-template-id] div.pick-assets-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  overflow: auto;
  padding: 1em;
  border-radius: 1em;
}

#more-credits-dialog > div .selection div[data-template-id] div.pick-assets-layer > label {
  display: block;
}

#more-credits-dialog > div .selection div[data-template-id] div.pick-assets-layer > button {
  width: 10em;
  margin: auto auto 1em auto;
  background: #8f8f8f;
}

#more-credits-dialog > div button.send-nfts-button {
  background: #00944a;
}

#more-credits-dialog > div button.cancel-button {
  background: #c62828;
}

#settings-dialog > div {
  height: auto;
  left: calc(50% - 13em);
  width: 26em;
}

#settings-dialog > div > table {
  width: 100%;
}

#settings-dialog > div > table th {
  text-align: left;
}

#settings-dialog > div > button {
  margin: 1em auto 0 auto;
  width: 100px;
}

#donate-dialog > div > button {
  font-family: 'Panton';
  background: #CF4952;
}

#donate-dialog > div sub {
  font-size: 0.6em;
}

#donate-dialog > div svg {
  -webkit-transition: max-width 1s ease-in-out;
  transition: max-width 1s ease-in-out;
  max-width: 60%;
}

#donate-dialog.grow > div svg {
  max-width: 100%;
}

.anchor-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 8px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M18.81 9.19h33.25V59.5H18.81z'/%3E%3Cpath d='M38.45 28.88h-6.9L35 21.77l3.45 7.1z' fill='%233650A2'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M35 70a35 35 0 100-70 35 35 0 000 70zm2.36-55.4a2.62 2.62 0 00-4.72 0L21.9 36.75h5.84l1.7-3.5h11.13l1.7 3.5h5.83L37.36 14.6zM48.13 44.2h-5.26a7.76 7.76 0 01-5.24 7v-10.5a2.62 2.62 0 10-5.25 0v10.5a7.76 7.76 0 01-5.25-7h-5.25c.16 7.06 6 12.69 13.12 12.69 7.12 0 12.97-5.63 13.13-12.7z' fill='%233650A2'/%3E%3C/svg%3E");
}

div.wcw, div.aeth, div.nick, div.aeth-classic, div.bag, div.claim, div.new-elements, div.calculate, div.lands, div.stamina, div.land-upgrades, div.tokens, div.tickets, div.raw, div.marketplace, div.stake, div.pools, div.crystalize {
  display: none;
  min-height: calc(100vh - 69px);
}

body {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  -webkit-transition: -webkit-backdrop-filter 1s;
  transition: -webkit-backdrop-filter 1s;
  transition: backdrop-filter 1s;
  transition: backdrop-filter 1s, -webkit-backdrop-filter 1s;
  -webkit-animation: gradient 15s ease infinite;
          animation: gradient 15s ease infinite;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body.hide-wcw .wcw-button {
  display: none;
}

body.wcw > div.wcw {
  display: block;
}

body.wcw > div.wcw a, body.wcw > div.wcw a:visited {
  color: #0D2740;
}

body.aeth > div.aeth {
  display: block;
}

body.raw > div.raw {
  display: block;
}

body.crystalize > div.crystalize {
  display: block;
}

body.pools > div.pools {
  display: block;
  position: relative;
  overflow: auto;
}

body.pools > div.pools #pools {
  position: relative;
  overflow: auto;
  margin-top: 1em;
  font-size: 1rem;
}

body.pools > div.pools #pools > [data-pool-id] {
  margin-right: 1em;
  margin-top: 1em;
}

body.pools > div.pools #pool-details {
  position: relative;
  overflow: auto;
}

body.pools > div.pools #pool-details div[data-template-id] {
  float: left;
  max-width: 20vw;
  padding: 1em;
  border-radius: 1em;
  margin-top: 1em;
  margin-left: 1em;
  background-color: rgba(255, 255, 255, 0.5);
}

body.pools > div.pools #pool-details div[data-template-id] > h5 {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 0.2em;
  text-align: center;
  font-family: 'Panton', sans-serif;
}

body.pools > div.pools #pool-details div[data-template-id] .badge {
  font-size: 0.6em;
}

body.pools > div.pools #pool-details div[data-template-id] > div.media {
  width: 100%;
  height: 20vw;
}

body.pools > div.pools #pool-details div[data-template-id] > div.media > img, body.pools > div.pools #pool-details div[data-template-id] > div.media > video {
  max-width: 100%;
  max-height: 100%;
}

body.pools > div.pools #pool-details div[data-template-id] > div.badges {
  text-align: center;
  margin: 1em 0;
}

body.pools > div.pools #pool-details div[data-template-id] > button {
  width: 100%;
}

body.pools > div.pools div[data-pool-id]:not(.pool-stats-top-bar) {
  font-size: 0.7em;
  padding: 1em;
  border-radius: 1em;
  background-color: rgba(255, 255, 255, 0.5);
  float: left;
  position: relative;
  overflow: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

body.pools > div.pools div[data-pool-id]:not(.pool-stats-top-bar) > h3 {
  text-align: center;
  font-family: 'Panton', sans-serif;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  border-radius: 1em;
}

body.pools > div.pools div[data-pool-id]:not(.pool-stats-top-bar) > div {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 1em;
  margin-top: 1em;
  padding: 1em;
  /*
                > h4 {
                    color: #7127a8;
                    text-align: center;
                    margin-bottom: 1em;
                }
                &:nth-of-type(1)
                {
                    height: 5em;
                    overflow: auto;
                    &::-webkit-scrollbar {
                        width: 8px;
                        height: 8px;
                    }
                    &::-webkit-scrollbar-track {
                        background-color: rgba(0, 0, 0, 0.4);
                        border-radius: 10px;
                    }
                    &::-webkit-scrollbar-thumb {
                        background-color: #dfdfdf;
                        border-radius: 10px;
                    }
                }
                &:nth-of-type(3)
                {
                    background-color: rgba(0,0,0,0.75);
                    > h4 {
                        color: #cddc39;//#00944a;
                    }
                }*/
}

body.pools > div.pools div[data-pool-id]:not(.pool-stats-top-bar) > div:nth-of-type(1) {
  margin-top: 20em;
}

body.pools > div.pools div[data-pool-id]:not(.pool-stats-top-bar) > button {
  margin-top: 1em;
}

body.pools > div.pools div[data-pool-id="0"] {
  background-image: url(https://ipfs.io/ipfs/QmRVM84vX65PrK4LYfv35EbJSBzv5B7MRKRP12xuLfj2Mb);
}

body.pools > div.pools div[data-pool-id="1"] {
  background-image: url(https://ipfs.io/ipfs/Qma8QTa85vpDxRyqNyDLb4qtyLztcWHJsGYjcBmn2nNC6q);
}

body.pools > div.pools div[data-pool-id="2"] {
  background-image: url(https://ipfs.io/ipfs/QmQ1kX62Ey5oTSovxV5nuKZ4u3pjbKuX15PLpoyDGTpTzQ);
}

body.pools > div.pools div[data-pool-id="3"] {
  background-image: url(https://ipfs.io/ipfs/QmV2pDUvhDf44TJqS89QYjZ7i6DB4W9GAx2HLkZmjmdTNb);
}

body.pools > div.pools div[data-pool-id="4"] {
  background-image: url(https://ipfs.io/ipfs/QmQeAwPCRfze3gahVFD9WG4G4mLxZjDSDraB3hn3kHZzDg);
}

body.pools > div.pools div[data-pool-id="5"] {
  background-image: url(https://ipfs.io/ipfs/QmSJPSKMd2MfLpssuRJdbwkYBzb2u7QFcU11i7fP5VXooW);
}

body.pools > div.pools div[data-pool-id="6"] {
  background-image: url(https://ipfs.io/ipfs/QmQymmiX1XTjXKvzKRfxTHVhjkrY5NhEGSuFKLr8iwJLqc);
}

body.pools > div.pools div[data-pool-id="7"] {
  background-image: url(https://ipfs.io/ipfs/Qma27k9kxYy2heTUrwWx5ubDELr1ieysccJsgfZB64rm5g);
}

body.tickets > div.tickets {
  display: block;
  overflow: auto;
}

body.tickets > div.tickets > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.tickets > div.tickets > div > table {
  border-collapse: collapse;
  background-color: #333;
}

body.tickets > div.tickets > div > table > thead {
  font-family: 'Panton';
}

body.tickets > div.tickets > div > table > thead tr:nth-of-type(1) th {
  padding: 1em;
}

body.tickets > div.tickets > div > table > thead tr:nth-of-type(2) th {
  padding: 2em;
  background-color: #000;
  color: #fff;
}

body.tickets > div.tickets > div > table > tbody {
  font-family: 'Montserrat';
  text-align: right;
}

body.tickets > div.tickets > div > table > tbody tr {
  background-color: #ccc;
}

body.tickets > div.tickets > div > table > tbody tr:nth-child(even) {
  background-color: #eee;
}

body.tickets > div.tickets > div > table > tbody tr td {
  padding: 2em;
  border-bottom: solid 3px #333;
}

body.tickets > div.tickets > div > table > tbody tr td:first-of-type {
  text-align: left;
}

body.tickets > div.tickets > div > table > tbody tr:last-of-type td {
  border-bottom: none;
}

body.tokens > div.tokens {
  display: block;
  min-height: calc(100vh - 70px);
}

body.tokens > div.tokens > div:nth-of-type(2) {
  max-width: 700px;
  padding: 1em;
  margin: 1em auto;
  position: relative;
}

body.tokens > div.tokens > div:nth-of-type(2) > p, body.tokens > div.tokens > div:nth-of-type(2) h2 {
  margin-bottom: 1em;
}

body.tokens > div.tokens > div:nth-of-type(2) a {
  color: #cf4a51;
  font-weight: bold;
}

body.lands {
  background: -webkit-gradient(linear, left bottom, left top, from(#050306), color-stop(#221c30), color-stop(#24151a), to(#2e2035));
  background: linear-gradient(0deg, #050306, #221c30, #24151a, #2e2035);
  -webkit-animation: none;
          animation: none;
}

body.lands > div.lands {
  display: block;
  color: #fff;
  background: url(/img/clashdome/half-way-there-transparent.png) no-repeat;
  min-height: calc(100vh - 70px);
}

body.lands > div.lands > div:nth-of-type(2) {
  max-width: 700px;
  padding: 1em;
  margin: 1em auto;
  position: relative;
}

body.lands > div.lands > div:nth-of-type(2) > p, body.lands > div.lands > div:nth-of-type(2) h2 {
  margin-bottom: 1em;
}

body.lands > div.lands > div:nth-of-type(2) a {
  color: #cf4a51;
  font-weight: bold;
}

body.lands > div.lands .landlord {
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-transition: top 1s ease-in-out,left 1s ease-in-out, height 1s ease-in-out, opacity 1s ease-in-out;
  transition: top 1s ease-in-out,left 1s ease-in-out, height 1s ease-in-out, opacity 1s ease-in-out;
  height: 50%;
  opacity: 0;
}

body.lands > div.lands .necro {
  position: absolute;
  top: 0px;
  -webkit-transition: top 1s ease-in-out,left 1s ease-in-out, height 1s ease-in-out, opacity 1s ease-in-out;
  transition: top 1s ease-in-out,left 1s ease-in-out, height 1s ease-in-out, opacity 1s ease-in-out;
  height: 50%;
  left: 450px;
  opacity: 0;
}

body.lands > div.lands.claim-stage-1 .landlord {
  opacity: 1;
  top: 70px;
}

body.lands > div.lands.claim-stage-2 .landlord {
  opacity: 1;
  top: 70px;
}

body.lands > div.lands.claim-stage-2 .necro {
  opacity: 1;
  top: 70px;
}

body.lands > div.lands.claim-stage-3 .landlord {
  opacity: 1;
  top: 70px;
}

body.lands > div.lands.claim-stage-3 .necro {
  opacity: 1;
  left: 0;
  top: 70px;
}

body.lands > div.lands.claim-stage-4 .landlord {
  opacity: 1;
  top: 70px;
}

body.lands > div.lands.claim-stage-4 .necro {
  opacity: 1;
  left: 0;
  top: 90px;
}

body.lands > div.lands.claim-stage-5 .landlord {
  opacity: 0;
  top: 0;
}

body.lands > div.lands.claim-stage-5 .necro {
  opacity: 0;
  left: 0;
  top: 0;
}

body.marketplace > div.marketplace {
  display: block;
}

body.stake > div.stake {
  display: block;
}

body.calculate > div.calculate {
  display: block;
}

body.new-elements > div.new-elements {
  display: block;
}

body.land-upgrades > div.land-upgrades {
  display: block;
}

body.bag > div.bag {
  display: block;
}

body.bag > div.bag > div {
  max-width: 700px;
  margin: 1em auto;
}

body.claim > div.claim {
  display: block;
}

body.claim > div.claim > div:nth-of-type(2) {
  max-width: 700px;
  padding: 1em;
  margin: 1em auto;
  position: relative;
  z-index: 1;
}

body.claim > div.claim > div:nth-of-type(2) > p, body.claim > div.claim > div:nth-of-type(2) h2 {
  margin-bottom: 1em;
}

body.stamina > div.stamina {
  display: block;
}

body.stamina > div.stamina > div:nth-of-type(2) {
  max-width: 700px;
  padding: 1em;
  margin: 1em auto;
  position: relative;
  z-index: 1;
}

body.stamina > div.stamina > div:nth-of-type(2) > p, body.stamina > div.stamina > div:nth-of-type(2) h2 {
  margin-bottom: 1em;
}

body.aeth-classic > div.aeth-classic {
  display: block;
}

body.aeth-classic .aeth-classic-hidden {
  display: none;
}

body.nick > div.nick {
  display: block;
  padding: 1em;
}

body.nick > div.nick > div {
  max-width: 700px;
  margin: auto;
}

body.nick > div.nick > div a, body.nick > div.nick > div a:visited {
  color: #0D2740;
}

body.nick > div.nick > div ul {
  list-style: none;
}

body.nick > div.nick > div h4 {
  margin: 2em 0 1em 0;
}

body.hide--minerals--hourly table.minerals--hourly {
  display: none;
}

body.hide--minerals--balance table.minerals--balance {
  display: none;
}

body.bludac {
  font-family: Kanit, sans-serif;
}

body.rawr {
  background: url(/img/rawr/bg.png) no-repeat;
  background-size: contain;
  -webkit-animation: none;
          animation: none;
}

body.rawr #to-claim {
  background-color: #fff;
  margin-top: 12em;
}

body.rawr .rawr-anti-war {
  position: absolute;
  -webkit-transition: left 1s, top 1s;
  transition: left 1s, top 1s;
  top: 75px;
  left: -450px;
}

body.rawr .rawr-anti-war.show {
  left: -60px;
}

body.rawr .rawr-brioche {
  position: absolute;
  -webkit-transition: left 1s, top 1s;
  transition: left 1s, top 1s;
  top: 675px;
  left: -450px;
}

body.rawr .rawr-brioche.show {
  left: 0;
}

body.rawr .rawr-prisoners {
  position: absolute;
  -webkit-transition: right 1s, top 1s;
  transition: right 1s, top 1s;
  top: 75px;
  right: -450px;
}

body.rawr .rawr-prisoners.show {
  right: 0;
}

body.rawr .rawr-special-forces {
  position: absolute;
  -webkit-transition: right 1s, top 1s;
  transition: right 1s, top 1s;
  top: 675px;
  right: -450px;
}

body.rawr .rawr-special-forces.show {
  right: 0;
}

@media screen and (max-width: 600px) {
  body.rawr .rawr-anti-war,
  body.rawr .rawr-brioche,
  body.rawr .rawr-prisoners,
  body.rawr .rawr-special-forces {
    display: none;
  }
}

body.no-bg {
  background: #fff;
  background-size: auto;
  -webkit-animation: none;
          animation: none;
}

body.boysterous {
  background: url(/img/onessus/boysterous-bitcoin-bag-1920x1080-bg-white.png) no-repeat center center;
  background-attachment: fixed;
  background-size: contain;
  -webkit-animation: none;
          animation: none;
}

body.farming-tales {
  background: url(/img/farming-tales-bg-blurred.webp) no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  -webkit-animation: none;
          animation: none;
}

body.fade-out {
  -webkit-backdrop-filter: brightness(0);
          backdrop-filter: brightness(0);
}

body.fade-in {
  -webkit-backdrop-filter: brightness(1);
          backdrop-filter: brightness(1);
}

body.dr-zammsy {
  background: url(/img/dr-zammsy/landscape--small.jpg);
  background-size: cover;
  -webkit-animation: none;
          animation: none;
}

body.onessus-dr-zammsy > div {
  background: url(/img/onessus/runes-semi-transparent.png);
  background-size: contain;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

body.btco {
  background: url(/img/btco/background-blur-3.png);
  background-size: cover;
  -webkit-animation: none;
          animation: none;
}

body.blur-4 {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

body.alienships {
  background: url(/img/alienships/stars2.png);
  background-size: cover;
  -webkit-animation: none;
          animation: none;
}

body.alienships #s2card {
  left: -360px;
}

body.alienships #s2ship {
  left: calc(50vw - 340px);
  top: 80px;
  width: 100px;
  -webkit-transform: rotate(75deg);
          transform: rotate(75deg);
}

body.alienships .alienships-ad a > p {
  opacity: 1;
}

body.alienships .alienships-ad a > img.alienships-logo {
  opacity: 1;
}

@media screen and (max-width: 600px) {
  body {
    padding: 0;
    font-size: 0.5em;
  }
  body .do-not-shrink-size {
    font-size: 2em;
  }
  body .alienships-ad a > p {
    left: 96px;
    top: 56px;
  }
  body .alienships-ad a > img.alienships-logo {
    top: 15px;
    left: 100px;
    width: 125px;
  }
  body #s2card {
    display: none;
  }
  body #s2ship {
    position: absolute;
    left: -360px;
  }
  body.alienships #s2ship {
    left: 10px;
    width: 60px;
  }
}

body > div.aeth > h2 {
  background-color: #CF4952;
  color: #0D2740;
  border-left: solid 4px #0D2740;
  border-right: solid 4px #0D2740;
  margin: auto;
  padding: 2px 10px;
  text-align: center;
  font-family: 'Panton';
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 700px;
  position: relative;
  z-index: 3;
}

body > div.aeth > h2 a, body > div.aeth > h2 a:visited {
  color: #0D2740;
}

body > div.aeth > h2 > span {
  font-family: 'Montserrat';
  font-weight: bold;
}

body > div.aeth > h2:nth-of-type(1) {
  border-top: solid 4px #0D2740;
  border-top-left-radius: 4em;
  border-top-right-radius: 4em;
  margin-top: 1em;
}

body > div.aeth > h2:nth-of-type(2) {
  border-bottom: solid 4px #0D2740;
  border-bottom-left-radius: 4em;
  border-bottom-right-radius: 4em;
}

body > div.aeth > h2:nth-of-type(2) > input {
  font-size: 1em;
  width: 6em;
}

button {
  background: -webkit-gradient(linear, left top, left bottom, from(#6698cb), to(#5c8ab8));
  background: linear-gradient(to bottom, #6698cb 0%, #5c8ab8 100%);
  padding: 4px 12px;
  text-decoration: none;
  color: white;
  padding: 10px 30px;
  display: inline-block;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.21);
  border-bottom: 4px solid rgba(0, 0, 0, 0.21);
  border-radius: 4px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-family: 'Panton';
}

.requires-login {
  visibility: hidden;
}

.requires-login.is-logged-in {
  visibility: visible;
}

.checkable {
  position: relative;
  padding: 0 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 2em;
  text-align: center;
  display: inline-block;
  max-width: 20%;
  min-height: 35vw;
}

.checkable:hover::after {
  background-color: #00ff0066;
}

.checkable::after {
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000cc;
  border-radius: 1em;
}

.checkable.checked::after {
  display: none;
}

.checkable.checked:hover::after {
  background-color: #ff000066;
  display: unset;
}

#setBag {
  font-size: 4em;
  width: 100%;
  margin: 1em 0;
  padding: 8px 0;
}

#login {
  font-family: poppins;
  color: #1a1b1b;
  font-size: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}

/*
a, a:visited{
    color: #000;
}*/
.token {
  display: inline-block;
  max-width: 25%;
  padding: 0 1em 1em 1em;
  background-color: #ffffff88;
  border-radius: 1em;
  margin-right: 1em;
  text-align: center;
  min-height: 130px;
}

.token img {
  max-height: 50px;
}

.external-links {
  float: right;
  width: 300px;
  margin: 1em;
  border: solid 3px #588abe;
  border-radius: 1em;
  padding: 0 1em 1em 1em;
  background-color: rgba(255, 255, 255, 0.5);
}

.external-links > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  line-height: 32px;
}

.external-links > a > img {
  max-height: 32px;
  max-width: 32px;
  margin-right: 1em;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

#claim-button {
  display: none;
}

#claim-button.show {
  display: inline-block;
}

table#projections th, table#rates th {
  font-family: 'Panton', Verdana, Geneva, Tahoma, sans-serif;
}

table#projections td, table#projections th, table#rates td, table#rates th {
  padding: 8px;
}

table#projections tr:nth-child(even), table#rates tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.4);
}

table#projections tr:nth-child(odd), table#rates tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.3);
}

#new-video {
  position: fixed;
  top: 100px;
  right: 10px;
}

@media screen and (max-width: 600px) {
  #new-video {
    position: relative;
    top: unset;
    right: unset;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 1em;
  }
  #new-video > a {
    padding-bottom: 1em;
  }
  #new-video > a > span {
    display: none;
  }
}

#new-video > a {
  display: block;
  position: relative;
  margin: auto;
  width: 128px;
  height: 72px;
  border-radius: 1em;
  background: url(/img/new-video.png);
  background-size: cover;
}

#new-video > a > span {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 100%;
  text-align: center;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #0D2740;
  cursor: pointer;
  font-weight: bold;
}

#new-video > p {
  font-size: 0.5em;
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto auto auto;
      grid-template-rows: auto auto auto auto auto;
  background-color: #0D2740;
  padding: 2px;
  max-width: 700px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
  position: relative;
  z-index: 3;
}

.grid a, .grid a:visited {
  color: #0D2740;
}

.grid h2 {
  font-family: 'Panton', Verdana, Geneva, Tahoma, sans-serif;
  color: #CF4952;
  text-align: center;
  background-color: #0D2740;
  margin: 4px;
  border-radius: 6px;
  font-size: 2em;
  text-transform: uppercase;
}

.grid > div:nth-of-type(7) {
  -ms-grid-row: 5;
  grid-row: 5 / 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-column: 1 / 13;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.grid > div:nth-of-type(7) > h3 {
  margin: 2px 0 8px 0;
  color: #fff;
  font-size: 0.8em;
}

.grid > div:nth-of-type(7) > h3 a, .grid > div:nth-of-type(7) > h3 a:visited {
  color: #fff;
}

.grid.hide-yearly .calc > div > ul > li:nth-of-type(5) {
  display: none;
}

.grid.hide-calc .calc {
  display: none;
}

.grid.hide-conversions .rates {
  display: none;
}

.grid.hide-conversions > div:nth-of-type(7) {
  display: none;
}

.grid.right-align-collection-numbers .aeth-hr > ul, .grid.right-align-collection-numbers .claimable > ul {
  text-align: right;
  margin-right: 1em;
}

.grid.right-align-profit-numbers > .calc > div:nth-of-type(2) ul, .grid.right-align-profit-numbers > .calc > div:nth-of-type(3) ul, .grid.right-align-profit-numbers > .calc > div:nth-of-type(4) ul {
  text-align: right;
  margin-right: 1em;
}

.grid .rates {
  -ms-grid-row: 4;
  grid-row: 4 / 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-column: 1 / 13;
  color: #fff;
  text-align: center;
  padding-bottom: 10px;
  border: #10569B 2px solid;
  border-radius: 6px;
  margin: 0 8px 8px 8px;
}

.grid .rates > h3 {
  margin: 4px 0 0 0;
  font-size: 1em;
}

.grid .rates > h4 {
  color: #CF4952;
  margin-top: 0;
  font-size: 0.8em;
}

.grid .rates > div:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1em;
}

.grid .rates > div:nth-of-type(1) img {
  max-height: 64px;
}

.grid .rates > div:nth-of-type(1) > div {
  width: 5em;
  text-align: center;
  position: relative;
}

.grid .rates > div:nth-of-type(1) > div svg, .grid .rates > div:nth-of-type(1) > div img {
  max-width: 5em;
}

.grid .rates > div:nth-of-type(1) > div:nth-of-type(2) > span {
  color: #fff;
  position: absolute;
  font-family: 'Montserrat';
  font-weight: bold;
  top: 0.6em;
  left: 1.3em;
  -webkit-transition: color 0.6s ease-in-out;
  transition: color 0.6s ease-in-out;
}

.grid .rates > div:nth-of-type(1) > div:nth-of-type(2) > span.text-red {
  color: #ff757e;
}

.grid .rates > div:nth-of-type(1) > div:nth-of-type(2) > span.text-green {
  color: #A0CB79;
}

.grid .rates > div:nth-of-type(1) > div:nth-of-type(4) > span {
  color: #fff;
  position: absolute;
  font-family: 'Montserrat';
  font-weight: bold;
  top: 0.6em;
  left: 1.2em;
  -webkit-transition: color 0.6s ease-in-out;
  transition: color 0.6s ease-in-out;
}

.grid .rates > div:nth-of-type(1) > div:nth-of-type(4) > span.text-red {
  color: #ff757e;
}

.grid .rates > div:nth-of-type(1) > div:nth-of-type(4) > span.text-green {
  color: #A0CB79;
}

.grid .rates > div:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.grid .rates > div:nth-of-type(2) > input {
  padding: 4px;
  border-radius: 4px;
  width: 30%;
  background: transparent;
  color: #fff;
  text-align: center;
  font-family: 'Montserrat';
  font-weight: bold;
  font-size: 1.2em;
}

.grid .rates > div:nth-of-type(2) > input:nth-of-type(1) {
  border: #CF4952 2px solid;
}

.grid .rates > div:nth-of-type(2) > input:nth-of-type(2) {
  border: #E1BE5A 2px solid;
}

.grid .rates > div:nth-of-type(2) > input:nth-of-type(3) {
  border: #A0CB79 2px solid;
}

.grid .calc {
  -ms-grid-row: 3;
  grid-row: 3 / 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-column: 1 / 13;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  -webkit-column-gap: 16px;
          column-gap: 16px;
  padding: 8px;
  text-align: center;
}

.grid .calc > div {
  border-radius: 6px;
}

.grid .calc > div > img {
  max-height: 4em;
  margin: 10px 0 0 0;
}

.grid .calc > div > ul {
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 1em;
  margin-bottom: 20p;
  text-align: center;
  font-family: 'Montserrat';
  font-weight: bold;
}

.grid .calc > div > ul > li {
  list-style: none;
  line-height: 3.2em;
  height: 3.2em;
}

.grid .calc > div:nth-of-type(1) > ul > li {
  list-style: none;
  line-height: 1.6em;
  height: 1.6em;
}

.grid .calc > div:nth-child(1) {
  border: #10569B 2px solid;
  -ms-grid-column: 1;
  grid-column: 1 / 1;
}

.grid .calc > div:nth-child(1) > h2 {
  line-height: 2.2em;
}

.grid .calc > div:nth-child(1) > ul {
  font-size: 2em;
  text-align: center;
  font-family: 'Panton', Verdana, Geneva, Tahoma, sans-serif;
  text-transform: uppercase;
}

.grid .calc > div:nth-child(2) {
  border: #CF4952 2px solid;
  -ms-grid-column: 2;
  grid-column: 2 / 2;
}

.grid .calc > div:nth-child(3) {
  border: #E1BE5A 2px solid;
  -ms-grid-column: 3;
  grid-column: 3 / 3;
}

.grid .calc > div:nth-child(4) {
  border: #A0CB79 2px solid;
  -ms-grid-column: 4;
  grid-column: 4 / 4;
}

.grid .total {
  -ms-grid-row: 2;
  grid-row: 2 / 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 12;
  grid-column: 1 / 13;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 3fr 3fr;
      grid-template-columns: 2fr 3fr 3fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  background: -webkit-gradient(linear, left bottom, left top, from(#D14F57), to(#CE474E));
  background: linear-gradient(0deg, #D14F57 0%, #CE474E 100%);
  font-family: 'Panton', Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2em;
  border-radius: 4px;
  margin: 2px;
}

.grid .total > div:nth-child(1) {
  -ms-grid-column: 1;
  grid-column: 1 / 1;
  margin: 6px 6px 6px 6px;
  padding: 2px 8px;
  text-align: center;
  color: #0D2740;
}

.grid .total > div:nth-child(2) {
  -ms-grid-column: 2;
  grid-column: 2 / 2;
  border: #A0CB79 2px solid;
  border-radius: 6px;
  background-color: #0D2740;
  color: #fff;
  margin: 6px 6px 6px 6px;
  padding: 0 4px;
  text-align: center;
}

.grid .total > div:nth-child(3) {
  -ms-grid-column: 3;
  grid-column: 3 / 3;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.grid .total > div:nth-child(3) > span {
  color: #0D2740;
  font-size: 0.6em;
  vertical-align: bottom;
}

.grid .total > div:nth-child(3) > button {
  margin: 6px;
  padding: 0 4px;
  width: calc(100% - 12px);
  display: none;
  font-family: inherit;
  font-size: 0.9em;
  background: #A0CB79;
  color: #0D2740;
}

.grid .total > div:nth-child(3) > button > span {
  font-family: 'Montserrat';
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  float: right;
  font-size: 0.4em;
  padding: 0;
  color: #0D2740;
  margin-top: 1em;
  font-weight: bold;
  margin-right: -1em;
}

.grid .total > div:nth-child(3).can-claim > span {
  display: none;
}

.grid .total > div:nth-child(3).can-claim > button {
  display: inline-block;
}

.grid.hide-claimable .collection {
  -ms-grid-column: 1;
  -ms-grid-column-span: 8;
  grid-column: 1 / 9;
}

.grid.hide-claimable .aeth-hr {
  -ms-grid-column: 9;
  -ms-grid-column-span: 4;
  grid-column: 9 / 13;
}

.grid.hide-claimable .claimable {
  display: none;
}

.grid.hide-details .collection, .grid.hide-details .aeth-hr, .grid.hide-details .claimable {
  display: none;
}

.grid .collection, .grid .aeth-hr, .grid .claimable {
  -ms-grid-row: 1;
  grid-row: 1 / 1;
  -ms-grid-columns: subgrid;
      grid-template-columns: subgrid;
  -ms-grid-rows: subgrid;
      grid-template-rows: subgrid;
  background-color: #10569B;
  border-radius: 4px;
  margin: 2px;
}

.grid .collection > ul, .grid .aeth-hr > ul, .grid .claimable > ul {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff;
  font-family: 'Montserrat';
  font-weight: bold;
  font-size: 1.4em;
  margin: auto;
}

.grid .collection > ul > li, .grid .aeth-hr > ul > li, .grid .claimable > ul > li {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 1.6em;
}

.grid .collection {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / 5;
}

.grid .aeth-hr {
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
  grid-column: 5 / 9;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
      > ul {
          text-align: right;
          margin-right: 10px;
      }*/
}

.grid .claimable {
  -ms-grid-column: 9;
  -ms-grid-column-span: 4;
  grid-column: 9 / 13;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
      > ul {
          text-align: right;
          margin-right: 10px;
      }*/
}

span.fraction, .smaller {
  font-size: 0.6em;
}

#balances {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  z-index: 2;
  position: relative;
}

@media screen and (max-width: 1480px) {
  #balances {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#balances ul {
  list-style: none;
  text-align: center;
  background: #242b39 0 0 no-repeat padding-box;
  -webkit-box-shadow: 0 3px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 40px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  margin: auto;
  padding: 0.4em;
  color: #fff;
  margin-top: 2em;
  font-family: 'Montserrat';
  display: inline-block;
}

#balances ul li {
  border-bottom: 1px solid rgba(101, 101, 101, 0.101961);
  padding: 10px;
  line-height: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#balances ul li:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

#balances ul li img {
  max-height: 2em;
}

#balances ul li span {
  font-family: 'Panton', Verdana, Geneva, Tahoma, sans-serif;
  margin: 0 0.4em;
}

#balances table {
  background: #242b39 0 0 no-repeat padding-box;
  -webkit-box-shadow: 0 3px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 40px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  margin: 1em;
  padding: 0.4em;
  color: #fff;
  margin-top: 2em;
  font-family: 'Montserrat';
}

#balances table tr {
  padding: 10px;
  line-height: 2em;
}

#balances table tr:last-of-type td {
  border-bottom: none;
  padding-bottom: 0;
}

#balances table tr td, #balances table tr th {
  padding: 0 10px;
  border-bottom: 1px solid rgba(101, 101, 101, 0.101961);
}

#balances table tr td img, #balances table tr th img {
  max-height: 2em;
}

#balances table tr td span, #balances table tr th span {
  font-family: 'Panton', Verdana, Geneva, Tahoma, sans-serif;
}

#balances table tr td .fraction, #balances table tr th .fraction {
  opacity: 0.5;
}

#balances table tr td button, #balances table tr th button {
  color: rgba(0, 0, 0, 0.21);
  font-family: 'Panton', Verdana, Geneva, Tahoma, sans-serif;
  padding: 4px 10px;
}

@media screen and (max-width: 1000px) {
  #balances table {
    padding: 1em;
    font-size: 0.8em;
  }
  #balances table tr td, #balances table tr th {
    padding: 0 6px;
  }
  #balances table tr td button, #balances table tr th button {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 770px) {
  #balances table {
    padding: 1em;
  }
  #balances table tr td, #balances table tr th {
    padding: 0 2px;
  }
  #balances table tr td button, #balances table tr th button {
    font-size: 0.6em;
  }
  #balances table.minerals--hourly tr[data-sort="10"] {
    display: none;
  }
}

.logged-in #balances {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ad-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media screen and (max-width: 600px) {
  .ad-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.ad-container > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  text-align: right;
}

.ad-container > div:first-child {
  margin-right: 1em;
}

.ad-container > div > a {
  display: inline-block;
  color: #000;
}

.ad-container > div > a:visited {
  color: #000;
}

.ad-container > div > a.sponsor-tag {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2px 4px;
  background: rgba(255, 255, 255, 0.4);
  border-bottom-left-radius: 8px;
  text-decoration: none;
  color: #000;
  font-size: 0.8em;
}

.ad-container > div img {
  max-width: 100vw;
  max-height: 100px;
}

@media screen and (max-width: 600px) {
  .ad-container > div img {
    max-height: 50px;
  }
}

.ad-container > div.dr-zammsy img {
  max-width: 100%;
  max-height: 300px;
}

.ad-container > div.btco img {
  max-width: 100%;
  max-height: 300px;
  border-bottom-left-radius: 2em;
  border-bottom-right-radius: 2em;
}

.ad-container > div.onessus-banner img {
  width: 700px;
  max-width: 100%;
  max-height: none;
}

#hodl.ad-container > div img {
  max-height: 200px;
}

.account .do-show-off {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  border-radius: 1em;
  max-width: 40vw;
}

.account .do-show-off.show-off {
  position: fixed;
  margin: auto;
  max-height: 80vh !important;
  z-index: 9999;
  border: solid 3px #fff;
}

.account .do-show-off.remove-when-show-off-is-done {
  position: fixed;
  z-index: 9999;
}

.no-border {
  border: none !important;
}

.no-border-radius {
  border-radius: 0 !important;
}

#thank-you-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 3;
}

#thank-you-overlay > div {
  padding: 1em 2em;
  background-color: #fff;
  border-radius: 2em;
  margin-bottom: 2em;
}

#thank-you-overlay > div > h2 {
  text-align: center;
}

#thank-you-overlay > div > p {
  margin-top: 1em;
}

.new-elements {
  text-align: center;
}

.new-elements .element {
  display: inline-block;
  position: relative;
  width: 200px;
  max-width: 19vw;
  text-align: center;
}

.new-elements .element img {
  max-width: 100%;
}

.land-upgrades table {
  display: none;
  background-color: #0D2740;
  color: #fff;
  margin: auto;
  padding: 2em;
}

.land-upgrades table.show {
  display: table;
}

.land-upgrades table thead tr th {
  padding: 2px 6px;
  text-align: right;
}

.land-upgrades table td {
  padding: 2px 6px;
  text-align: right;
}

.can-fade-opacity {
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

.can-fade-opacity.fade-opacity-out {
  opacity: 0;
}

@media screen and (max-width: 600px) {
  .menu .logo {
    font-size: 2em;
  }
}

#last-check-label {
  margin-bottom: 1em;
}

#last-check-label button {
  background: #A0CB79;
  padding: 2px 4px;
}

#last-check-label button:nth-of-type(2) {
  background: #E1BE5A;
}

#last-check-label span.warning {
  display: inline-block;
  background-color: #CF4952;
  color: #fff;
  padding: 0.4em 0.8em;
  font-size: 0.7em;
  border-radius: 1em;
}

#to-claim {
  text-align: center;
  position: relative;
  z-index: 2;
}

#to-claim button {
  margin: 1em;
}

#to-claim button.load-more {
  background: #A0CB79;
}

#to-claim button.stop-asking {
  background: #CF4952;
}

#to-claim > div {
  max-width: 20vw;
  text-align: center;
  display: inline-block;
}

#to-claim .other-miner-result {
  display: inline-block;
  text-align: center;
  max-width: calc(100vw - 2em);
  padding: 1em;
  border: solid 1px #CF4952;
  border-radius: 1em;
}

#to-claim .other-miner-result.other-miner-1-nfts {
  max-width: calc(20vw - 2em);
}

#to-claim .other-miner-result.other-miner-2-nfts {
  max-width: calc(40vw - 2em);
}

#to-claim .other-miner-result.other-miner-3-nfts {
  max-width: calc(60vw - 2em);
}

#to-claim .other-miner-result.other-miner-4-nfts {
  max-width: calc(80vw - 2em);
}

#to-claim .other-miner-result.other-miner-5-nfts {
  max-width: calc(100vw - 2em);
}

#to-claim .other-miner-result > div {
  max-width: calc(19.5vw - 4em);
  display: inline-block;
  margin: 1em;
  border: solid 1px #E1BE5A;
  border-radius: 1em;
}

#card-frame .card {
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-transition: left 1s, right 1s, top 0.3s, -webkit-transform 1s;
  transition: left 1s, right 1s, top 0.3s, -webkit-transform 1s;
  transition: transform 1s, left 1s, right 1s, top 0.3s;
  transition: transform 1s, left 1s, right 1s, top 0.3s, -webkit-transform 1s;
}

#card-frame .card.left {
  left: calc(50vw - 350px);
}

#card-frame .card.right {
  right: calc(50vw - 350px);
}

@media screen and (max-width: 600px) {
  #card-frame .card {
    display: none;
  }
}

body.whenstaking, body.raw {
  background: url(/img/onessus/bg-1920-1080.png);
  background-size: cover;
  -webkit-animation: none;
          animation: none;
  background-attachment: fixed;
}

body.whenstaking .ad-container img, body.whenstaking .hot-border, body.raw .ad-container img, body.raw .hot-border {
  -webkit-box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px, rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
          box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px, rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
}

.raw > h1 {
  text-align: center;
  font-size: 3em;
  color: #f943ff;
  margin-top: 3vw;
  font-family: VT323, monospace;
  text-shadow: -3px -1px 0 #241c2a,   1px -1px 0 #241c2a, -1px 1px 0 #241c2a, 1px 1px 0 #241c2a;
}

#raw {
  width: 80vw;
  height: 60vh;
  font-size: 2em;
  margin: 3vw 10vw 30px 10vw;
  background-color: rgba(255, 255, 255, 0.6);
  border: solid 3px #f943ff;
  font-family: VT323, monospace;
  color: #00ff11;
  padding: 10px;
  text-shadow: -1px -1px 0 #241c2a,   1px -1px 0 #241c2a, -1px 1px 0 #241c2a, 1px 1px 0 #241c2a;
  -webkit-box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px, rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
          box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px, rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
}

body.dr-zammsy #card-frame .card, body.btco #card-frame .card {
  top: 110px;
}

body.dr-zammsy #card-frame .card:hover, body.btco #card-frame .card:hover {
  z-index: 2;
  top: 80px;
}

body.dr-zammsy #card-frame .card.left, body.btco #card-frame .card.left {
  left: calc(50vw - 640px);
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

body.dr-zammsy #card-frame .card.left:nth-of-type(2), body.btco #card-frame .card.left:nth-of-type(2) {
  top: 80px;
  left: calc(50vw - 570px);
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

body.dr-zammsy #card-frame .card.left:nth-of-type(2):hover, body.btco #card-frame .card.left:nth-of-type(2):hover {
  top: 50px;
}

body.dr-zammsy #card-frame .card.left:nth-of-type(3), body.btco #card-frame .card.left:nth-of-type(3) {
  left: calc(50vw - 500px);
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  top: 50px;
}

body.dr-zammsy #card-frame .card.left:nth-of-type(3):hover, body.btco #card-frame .card.left:nth-of-type(3):hover {
  top: 20px;
}

body.dr-zammsy #card-frame .card.right, body.btco #card-frame .card.right {
  right: calc(50vw - 640px);
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

body.dr-zammsy #card-frame .card.right:nth-of-type(5), body.btco #card-frame .card.right:nth-of-type(5) {
  top: 80px;
  right: calc(50vw - 570px);
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

body.dr-zammsy #card-frame .card.right:nth-of-type(5):hover, body.btco #card-frame .card.right:nth-of-type(5):hover {
  top: 50px;
}

body.dr-zammsy #card-frame .card.right:nth-of-type(6), body.btco #card-frame .card.right:nth-of-type(6) {
  right: calc(50vw - 500px);
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  top: 50px;
}

body.dr-zammsy #card-frame .card.right:nth-of-type(6):hover, body.btco #card-frame .card.right:nth-of-type(6):hover {
  top: 20px;
}

.metal-war-banner {
  min-height: 93px;
}

@media screen and (max-width: 600px) {
  .metal-war-banner {
    min-height: 46.5px;
  }
}

.metal-war-banner > a > div {
  position: absolute;
  right: 0;
  height: 100%;
  width: 25em;
  top: 0;
  text-align: left;
  line-height: 1.4em;
  -webkit-text-stroke: 0.4px #000;
  font-weight: bold;
  color: #c2aed4;
}

.alienships-ad a > p {
  position: absolute;
  left: 132px;
  color: #fff;
  top: 108px;
  font-family: 'Panton';
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out 1.5s;
  transition: opacity 1s ease-in-out 1.5s;
}

.alienships-ad a > img.alienships-logo {
  position: absolute;
  top: 32px;
  left: 144px;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out 2.5s;
  transition: opacity 1s ease-in-out 2.5s;
}

#s2card {
  position: absolute;
  top: 200px;
  left: 10px;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

#s2ship {
  position: absolute;
  top: 200px;
  left: 10px;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  width: 360px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.lumpinick {
  position: absolute;
  top: 0;
  left: calc(50vw - 464px / 2);
  -webkit-transition: left 1s, top 1s, -webkit-transform 1s;
  transition: left 1s, top 1s, -webkit-transform 1s;
  transition: left 1s, transform 1s, top 1s;
  transition: left 1s, transform 1s, top 1s, -webkit-transform 1s;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

@media screen and (max-width: 600px) {
  .lumpinick {
    display: none;
  }
}

.lumpinick > img {
  height: 600px;
  -webkit-transition: height 1s;
  transition: height 1s;
}

.lumpinick > img.peek-left {
  height: 725px;
}

.lumpinick > img.peek-right {
  height: 725px;
}

.lumpinick.peek-left {
  top: -100px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: calc((50vw - 464px / 2) - 464px);
}

.lumpinick.peek-right {
  top: -100px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: calc((50vw - 464px / 2) + 464px);
}

.horror {
  position: absolute;
  top: 0;
  left: calc(50vw - 350px / 2);
  -webkit-transition: left 0.5s, top 0.5s, -webkit-transform 0.5s;
  transition: left 0.5s, top 0.5s, -webkit-transform 0.5s;
  transition: left 0.5s, transform 0.5s, top 0.5s;
  transition: left 0.5s, transform 0.5s, top 0.5s, -webkit-transform 0.5s;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  max-width: 350px;
}

.horror.show {
  left: calc((50vw - 350px / 2) - 550px);
}

@media screen and (max-width: 600px) {
  .horror {
    display: none;
  }
}

.horror.stack-1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.horror.stack-2 {
  top: 5px;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.horror.stack-3 {
  top: 10px;
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
}

.horror.stack-4 {
  top: 15px;
  -webkit-transform: rotate(-38deg);
          transform: rotate(-38deg);
}

.horror.stack-5 {
  top: 20px;
  -webkit-transform: rotate(-48deg);
          transform: rotate(-48deg);
}

.horror.stack-6 {
  top: 25px;
  -webkit-transform: rotate(-41deg);
          transform: rotate(-41deg);
}

.horror.stack-7 {
  top: 30px;
  -webkit-transform: rotate(-46deg);
          transform: rotate(-46deg);
}

.horror.stack-8 {
  top: 35px;
  -webkit-transform: rotate(-39deg);
          transform: rotate(-39deg);
}

.horror.stack-9 {
  top: 40px;
  -webkit-transform: rotate(-49deg);
          transform: rotate(-49deg);
}

.horror.stack-10 {
  top: 45px;
  -webkit-transform: rotate(-42deg);
          transform: rotate(-42deg);
}

.horror.stack-11 {
  top: 50px;
  -webkit-transform: rotate(-47deg);
          transform: rotate(-47deg);
}

.horror.stack-12 {
  top: 55px;
  -webkit-transform: rotate(-37deg);
          transform: rotate(-37deg);
}

.horror.stack-13 {
  top: 60px;
  -webkit-transform: rotate(-44deg);
          transform: rotate(-44deg);
}

.horror.stack-14 {
  top: 65px;
  -webkit-transform: rotate(-36deg);
          transform: rotate(-36deg);
}

.horror.stack-15 {
  top: 70px;
  -webkit-transform: rotate(-51deg);
          transform: rotate(-51deg);
}

.horror.stack-16 {
  top: 75px;
  -webkit-transform: rotate(-43deg);
          transform: rotate(-43deg);
}

.horror.stack-17 {
  top: 80px;
  -webkit-transform: rotate(-49deg);
          transform: rotate(-49deg);
}

.horror.stack-18 {
  top: 85px;
  -webkit-transform: rotate(-38deg);
          transform: rotate(-38deg);
}

.horror.stack-19 {
  top: 90px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.horror.stack-20 {
  top: 95px;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.horror.stack-21 {
  top: 100px;
  -webkit-transform: rotate(-49deg);
          transform: rotate(-49deg);
}

.horror.stack-22 {
  top: 105px;
  -webkit-transform: rotate(-37deg);
          transform: rotate(-37deg);
}

.horror.stack-23 {
  top: 110px;
  -webkit-transform: rotate(-46deg);
          transform: rotate(-46deg);
}

.horror.stack-24 {
  top: 115px;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.horror.stack-25 {
  top: 120px;
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
}

.left-horror-overlay {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50vw - 360px);
}

@media screen and (max-width: 600px) {
  .left-horror-overlay {
    display: none;
  }
}

.left-horror-overlay > img {
  max-width: 100%;
  opacity: 0;
  -webkit-transition: opacity 4s;
  transition: opacity 4s;
}

.left-horror-overlay > img:nth-of-type(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.left-horror-overlay > img:nth-of-type(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.left-horror-overlay > img:nth-of-type(3) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.left-horror-overlay.show > img {
  opacity: 1;
}

.hidden {
  display: none !important;
}

.wallet-notification {
  position: fixed;
  bottom: -200px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #fff;
  background-color: #272727;
  padding: 1em;
  border: 1px solid rgba(0, 0, 0, 0.21);
  border-bottom: 4px solid rgba(0, 0, 0, 0.21);
  border-radius: 4px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out, bottom 0.5s ease-in-out;
  transition: opacity 1s ease-in-out, bottom 0.5s ease-in-out;
}

.wallet-notification > div:nth-of-type(1) {
  padding-right: 1em;
}

.wallet-notification.appear {
  opacity: 1;
  bottom: 10px;
}

.wallet-notification img {
  max-height: 120px;
}

.ss-packs {
  display: block;
}

.ss-packs img {
  position: fixed;
  bottom: -400px;
  height: 340px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  -webkit-transition: bottom 1s ease-in-out, left 1s ease-in-out;
  transition: bottom 1s ease-in-out, left 1s ease-in-out;
}

.ss-packs img:nth-of-type(1) {
  left: calc(-100px + 0 * 150px);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.ss-packs img:nth-of-type(2) {
  left: calc(-100px + 1 * 150px);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.ss-packs img:nth-of-type(3) {
  left: calc(-100px + 2 * 150px);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.ss-packs img:nth-of-type(4) {
  left: calc(-100px + 3 * 150px);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.ss-packs img:nth-of-type(5) {
  left: calc(-100px + 4 * 150px);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.ss-packs img:nth-of-type(6) {
  left: calc(-100px + 5 * 150px);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.ss-packs img:nth-of-type(7) {
  left: calc(-100px + 6 * 150px);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.ss-packs img:nth-of-type(8) {
  left: calc(-100px + 7 * 150px);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.ss-packs img:nth-of-type(9) {
  left: calc(-100px + 8 * 150px);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.ss-packs img:nth-of-type(10) {
  left: calc(-100px + 9 * 150px);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.ss-packs img:nth-of-type(11) {
  left: calc(-100px + 10 * 150px);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.ss-packs img:nth-of-type(12) {
  left: calc(-100px + 11 * 150px);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.ss-packs img:nth-of-type(13) {
  left: calc(-100px + 12 * 150px);
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.ss-packs img:nth-of-type(14) {
  left: calc(-100px + 13 * 150px);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.ss-packs img:nth-of-type(15) {
  left: calc(-100px + 14 * 150px);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.ss-packs img:nth-of-type(16) {
  left: calc(-100px + 15 * 150px);
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

.ss-packs img:nth-of-type(17) {
  left: calc(-100px + 16 * 150px);
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

.ss-packs img:nth-of-type(18) {
  left: calc(-100px + 17 * 150px);
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.ss-packs img:nth-of-type(19) {
  left: calc(-100px + 18 * 150px);
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}

.ss-packs img:nth-of-type(20) {
  left: calc(-100px + 19 * 150px);
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.ss-packs.showcards img {
  bottom: -60px;
}

.flip-clock {
  text-align: center;
  -webkit-perspective: 400px;
          perspective: 400px;
  margin: 20px auto;
  font-family: 'Panton';
}

.flip-clock *,
.flip-clock *:before,
.flip-clock *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 600px) {
  .flip-clock.small .card {
    font-size: 2vw;
  }
}

.flip-clock.small .flip-clock__slot {
  font-size: 0.7em;
}

@media screen and (min-width: 600px) {
  .flip-clock.smaller .card {
    font-size: 1.8vw;
  }
}

.flip-clock.smaller .flip-clock__slot {
  font-size: 1em;
}

.flip-clock .flip-clock__piece {
  display: inline-block;
  margin: 0 5px;
}

.flip-clock .flip-clock__slot {
  font-size: 2vw;
}

.flip-clock .card {
  display: block;
  position: relative;
  padding-bottom: 0.72em;
  font-size: 5vw;
  line-height: 0.95;
  top: unset;
}

.flip-clock .card__top,
.flip-clock .card__bottom,
.flip-clock .card__back::before,
.flip-clock .card__back::after {
  display: block;
  height: 0.72em;
  color: #ccc;
  background: #222;
  padding: 0.25em 0.25em;
  border-radius: 0.15em 0.15em 0 0;
  backface-visiblity: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  width: 1.8em;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.flip-clock .card__bottom {
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: solid 1px #000;
  background: #393939;
  border-radius: 0 0 0.15em 0.15em;
  pointer-events: none;
  overflow: hidden;
}

.flip-clock .card__bottom::after {
  display: block;
  margin-top: -0.72em;
}

.flip-clock .card__back::before,
.flip-clock .card__bottom::after {
  content: attr(data-value);
}

.flip-clock .card__back {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0%;
  pointer-events: none;
}

.flip-clock .card__back::before {
  position: relative;
  z-index: -1;
  overflow: hidden;
}

.flip-clock .flip .card__back::before {
  -webkit-animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
          animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

.flip-clock .flip .card__back .card__bottom {
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
          animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
}

@-webkit-keyframes flipTop {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    z-index: 2;
  }
  0%, 99% {
    opacity: 0.99;
  }
  100% {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    opacity: 0;
  }
}

@keyframes flipTop {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    z-index: 2;
  }
  0%, 99% {
    opacity: 0.99;
  }
  100% {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
    opacity: 0;
  }
}

@-webkit-keyframes flipBottom {
  0%, 50% {
    z-index: -1;
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    opacity: 0.99;
  }
  100% {
    opacity: 0.99;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    z-index: 5;
  }
}

@keyframes flipBottom {
  0%, 50% {
    z-index: -1;
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
    opacity: 0;
  }
  51% {
    opacity: 0.99;
  }
  100% {
    opacity: 0.99;
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    z-index: 5;
  }
}

#stamina-indicator {
  position: relative;
  border: 1px solid black;
  padding: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  list-style: none;
  overflow: hidden;
}

#stamina-indicator li {
  overflow: hidden;
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

#stamina-indicator li:nth-child(1) {
  -webkit-transform: rotate(0deg) skewY(110deg);
          transform: rotate(0deg) skewY(110deg);
}

#stamina-indicator li:nth-child(1) .slice {
  background: #0ef100;
}

#stamina-indicator li:nth-child(2) {
  -webkit-transform: rotate(20deg) skewY(110deg);
          transform: rotate(20deg) skewY(110deg);
}

#stamina-indicator li:nth-child(2) .slice {
  background: #1ce300;
}

#stamina-indicator li:nth-child(3) {
  -webkit-transform: rotate(40deg) skewY(110deg);
          transform: rotate(40deg) skewY(110deg);
}

#stamina-indicator li:nth-child(3) .slice {
  background: #2bd500;
}

#stamina-indicator li:nth-child(4) {
  -webkit-transform: rotate(60deg) skewY(110deg);
          transform: rotate(60deg) skewY(110deg);
}

#stamina-indicator li:nth-child(4) .slice {
  background: #39c600;
}

#stamina-indicator li:nth-child(5) {
  -webkit-transform: rotate(80deg) skewY(110deg);
          transform: rotate(80deg) skewY(110deg);
}

#stamina-indicator li:nth-child(5) .slice {
  background: #47b800;
}

#stamina-indicator li:nth-child(6) {
  -webkit-transform: rotate(100deg) skewY(110deg);
          transform: rotate(100deg) skewY(110deg);
}

#stamina-indicator li:nth-child(6) .slice {
  background: #55aa00;
}

#stamina-indicator li:nth-child(7) {
  -webkit-transform: rotate(120deg) skewY(110deg);
          transform: rotate(120deg) skewY(110deg);
}

#stamina-indicator li:nth-child(7) .slice {
  background: #639c00;
}

#stamina-indicator li:nth-child(8) {
  -webkit-transform: rotate(140deg) skewY(110deg);
          transform: rotate(140deg) skewY(110deg);
}

#stamina-indicator li:nth-child(8) .slice {
  background: #718e00;
}

#stamina-indicator li:nth-child(9) {
  -webkit-transform: rotate(160deg) skewY(110deg);
          transform: rotate(160deg) skewY(110deg);
}

#stamina-indicator li:nth-child(9) .slice {
  background: olive;
}

#stamina-indicator li:nth-child(10) {
  -webkit-transform: rotate(180deg) skewY(110deg);
          transform: rotate(180deg) skewY(110deg);
}

#stamina-indicator li:nth-child(10) .slice {
  background: #8e7100;
}

#stamina-indicator li:nth-child(11) {
  -webkit-transform: rotate(200deg) skewY(110deg);
          transform: rotate(200deg) skewY(110deg);
}

#stamina-indicator li:nth-child(11) .slice {
  background: #9c6300;
}

#stamina-indicator li:nth-child(12) {
  -webkit-transform: rotate(220deg) skewY(110deg);
          transform: rotate(220deg) skewY(110deg);
}

#stamina-indicator li:nth-child(12) .slice {
  background: #aa5500;
}

#stamina-indicator li:nth-child(13) {
  -webkit-transform: rotate(240deg) skewY(110deg);
          transform: rotate(240deg) skewY(110deg);
}

#stamina-indicator li:nth-child(13) .slice {
  background: #b84700;
}

#stamina-indicator li:nth-child(14) {
  -webkit-transform: rotate(260deg) skewY(110deg);
          transform: rotate(260deg) skewY(110deg);
}

#stamina-indicator li:nth-child(14) .slice {
  background: #c63900;
}

#stamina-indicator li:nth-child(15) {
  -webkit-transform: rotate(280deg) skewY(110deg);
          transform: rotate(280deg) skewY(110deg);
}

#stamina-indicator li:nth-child(15) .slice {
  background: #d52b00;
}

#stamina-indicator li:nth-child(16) {
  -webkit-transform: rotate(300deg) skewY(110deg);
          transform: rotate(300deg) skewY(110deg);
}

#stamina-indicator li:nth-child(16) .slice {
  background: #e31c00;
}

#stamina-indicator li:nth-child(17) {
  -webkit-transform: rotate(320deg) skewY(110deg);
          transform: rotate(320deg) skewY(110deg);
}

#stamina-indicator li:nth-child(17) .slice {
  background: #f10e00;
}

#stamina-indicator li:nth-child(18) {
  -webkit-transform: rotate(340deg) skewY(110deg);
          transform: rotate(340deg) skewY(110deg);
}

#stamina-indicator li:nth-child(18) .slice {
  background: red;
}

#stamina-indicator li .slice {
  position: absolute;
  left: -100%;
  width: 200%;
  height: 200%;
  -webkit-transition: -webkit-filter 1s ease-in-out;
  transition: -webkit-filter 1s ease-in-out;
  transition: filter 1s ease-in-out;
  transition: filter 1s ease-in-out, -webkit-filter 1s ease-in-out;
}

#stamina-indicator.stamina-0 li:nth-child(18) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

#stamina-indicator.stamina-0 li:nth-child(17) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

#stamina-indicator.stamina-0 li:nth-child(16) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

#stamina-indicator.stamina-0 li:nth-child(15) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

#stamina-indicator.stamina-0 li:nth-child(14) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

#stamina-indicator.stamina-0 li:nth-child(13) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

#stamina-indicator.stamina-0 li:nth-child(12) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

#stamina-indicator.stamina-0 li:nth-child(11) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

#stamina-indicator.stamina-0 li:nth-child(10) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#stamina-indicator.stamina-0 li:nth-child(9) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

#stamina-indicator.stamina-0 li:nth-child(8) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#stamina-indicator.stamina-0 li:nth-child(7) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#stamina-indicator.stamina-0 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-0 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-0 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-0 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-0 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-0 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-0 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-1 li:nth-child(17) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

#stamina-indicator.stamina-1 li:nth-child(16) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

#stamina-indicator.stamina-1 li:nth-child(15) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

#stamina-indicator.stamina-1 li:nth-child(14) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

#stamina-indicator.stamina-1 li:nth-child(13) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

#stamina-indicator.stamina-1 li:nth-child(12) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

#stamina-indicator.stamina-1 li:nth-child(11) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

#stamina-indicator.stamina-1 li:nth-child(10) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#stamina-indicator.stamina-1 li:nth-child(9) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

#stamina-indicator.stamina-1 li:nth-child(8) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#stamina-indicator.stamina-1 li:nth-child(7) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#stamina-indicator.stamina-1 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-1 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-1 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-1 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-1 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-1 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-1 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-2 li:nth-child(16) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

#stamina-indicator.stamina-2 li:nth-child(15) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

#stamina-indicator.stamina-2 li:nth-child(14) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

#stamina-indicator.stamina-2 li:nth-child(13) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

#stamina-indicator.stamina-2 li:nth-child(12) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

#stamina-indicator.stamina-2 li:nth-child(11) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

#stamina-indicator.stamina-2 li:nth-child(10) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#stamina-indicator.stamina-2 li:nth-child(9) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

#stamina-indicator.stamina-2 li:nth-child(8) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#stamina-indicator.stamina-2 li:nth-child(7) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#stamina-indicator.stamina-2 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-2 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-2 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-2 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-2 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-2 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-2 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-3 li:nth-child(15) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

#stamina-indicator.stamina-3 li:nth-child(14) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

#stamina-indicator.stamina-3 li:nth-child(13) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

#stamina-indicator.stamina-3 li:nth-child(12) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

#stamina-indicator.stamina-3 li:nth-child(11) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

#stamina-indicator.stamina-3 li:nth-child(10) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#stamina-indicator.stamina-3 li:nth-child(9) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

#stamina-indicator.stamina-3 li:nth-child(8) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#stamina-indicator.stamina-3 li:nth-child(7) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#stamina-indicator.stamina-3 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-3 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-3 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-3 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-3 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-3 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-3 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-4 li:nth-child(14) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

#stamina-indicator.stamina-4 li:nth-child(13) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

#stamina-indicator.stamina-4 li:nth-child(12) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

#stamina-indicator.stamina-4 li:nth-child(11) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

#stamina-indicator.stamina-4 li:nth-child(10) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#stamina-indicator.stamina-4 li:nth-child(9) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

#stamina-indicator.stamina-4 li:nth-child(8) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#stamina-indicator.stamina-4 li:nth-child(7) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#stamina-indicator.stamina-4 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-4 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-4 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-4 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-4 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-4 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-4 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-5 li:nth-child(13) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

#stamina-indicator.stamina-5 li:nth-child(12) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

#stamina-indicator.stamina-5 li:nth-child(11) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

#stamina-indicator.stamina-5 li:nth-child(10) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#stamina-indicator.stamina-5 li:nth-child(9) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

#stamina-indicator.stamina-5 li:nth-child(8) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#stamina-indicator.stamina-5 li:nth-child(7) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#stamina-indicator.stamina-5 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-5 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-5 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-5 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-5 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-5 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-5 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-6 li:nth-child(12) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

#stamina-indicator.stamina-6 li:nth-child(11) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

#stamina-indicator.stamina-6 li:nth-child(10) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#stamina-indicator.stamina-6 li:nth-child(9) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

#stamina-indicator.stamina-6 li:nth-child(8) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#stamina-indicator.stamina-6 li:nth-child(7) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#stamina-indicator.stamina-6 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-6 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-6 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-6 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-6 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-6 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-6 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-7 li:nth-child(11) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

#stamina-indicator.stamina-7 li:nth-child(10) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#stamina-indicator.stamina-7 li:nth-child(9) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

#stamina-indicator.stamina-7 li:nth-child(8) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#stamina-indicator.stamina-7 li:nth-child(7) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#stamina-indicator.stamina-7 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-7 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-7 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-7 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-7 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-7 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-7 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-8 li:nth-child(10) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#stamina-indicator.stamina-8 li:nth-child(9) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

#stamina-indicator.stamina-8 li:nth-child(8) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#stamina-indicator.stamina-8 li:nth-child(7) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#stamina-indicator.stamina-8 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-8 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-8 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-8 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-8 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-8 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-8 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-9 li:nth-child(9) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

#stamina-indicator.stamina-9 li:nth-child(8) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#stamina-indicator.stamina-9 li:nth-child(7) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#stamina-indicator.stamina-9 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-9 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-9 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-9 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-9 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-9 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-9 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-10 li:nth-child(8) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#stamina-indicator.stamina-10 li:nth-child(7) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#stamina-indicator.stamina-10 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-10 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-10 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-10 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-10 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-10 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-10 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-11 li:nth-child(7) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#stamina-indicator.stamina-11 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-11 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-11 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-11 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-11 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-11 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-11 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-12 li:nth-child(6) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#stamina-indicator.stamina-12 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-12 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-12 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-12 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-12 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-12 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-13 li:nth-child(5) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#stamina-indicator.stamina-13 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-13 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-13 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-13 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-13 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-14 li:nth-child(4) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#stamina-indicator.stamina-14 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-14 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-14 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-14 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-15 li:nth-child(3) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#stamina-indicator.stamina-15 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-15 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-15 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-16 li:nth-child(2) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#stamina-indicator.stamina-16 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-16 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-17 li:nth-child(1) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#stamina-indicator.stamina-17 li:nth-child(0) .slice {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

#stamina-indicator.stamina-0::after {
  content: "0";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-1::after {
  content: "1";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-2::after {
  content: "2";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-3::after {
  content: "3";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-4::after {
  content: "4";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-5::after {
  content: "5";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-6::after {
  content: "6";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-7::after {
  content: "7";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-8::after {
  content: "8";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-9::after {
  content: "9";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-10::after {
  content: "10";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-11::after {
  content: "11";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-12::after {
  content: "12";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-13::after {
  content: "13";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-14::after {
  content: "14";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-15::after {
  content: "15";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-16::after {
  content: "16";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-17::after {
  content: "17";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

#stamina-indicator.stamina-18::after {
  content: "18";
  position: absolute;
  font-size: 3em;
  top: 66px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Panton';
  color: #fff;
  -webkit-text-stroke: black 3px;
}

.blink {
  -webkit-animation: blink 1s linear infinite;
          animation: blink 1s linear infinite;
}

@-webkit-keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.ss-2mex-blurb {
  width: 136px;
  position: absolute;
  text-align: center;
  left: 10px;
  top: 26px;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 8px;
  color: #444;
  font-family: 'Montserrat';
  font-weight: bold;
  border-radius: 1em;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  border: solid 2px #777;
}

@media screen and (max-width: 600px) {
  .ss-2mex-blurb {
    left: 2px;
    top: 66px;
    width: 120px;
    padding: 6px;
  }
}

.ad-container .flip-clock.smaller {
  position: absolute;
  bottom: -18px;
  right: 0;
}

@media screen and (max-width: 600px) {
  .ad-container .flip-clock.smaller {
    position: relative;
    bottom: unset;
  }
}

.text-stroke .flip-clock__slot {
  -webkit-text-stroke: 1px #fff;
}

.mech > div {
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 1em;
  padding: 1em;
  border-radius: 4px;
}

.mech > div > h3 {
  margin-bottom: 8px;
}

.mech > div > p {
  margin-top: 8px;
}

.mech > div > p > strong:nth-of-type(1) {
  color: #cb6666;
}

.mech > div > p > strong:nth-of-type(2) {
  color: #7ecb66;
}

.mech input {
  line-height: 20px;
  width: 42px;
  text-align: right;
}

.mech button {
  padding: 2px 4px;
}

.mech button:nth-of-type(2), .mech button:nth-of-type(3), .mech button:nth-of-type(4), .mech button:nth-of-type(5) {
  background: -webkit-gradient(linear, left top, left bottom, from(#cb6666), to(#b85c5c));
  background: linear-gradient(to bottom, #cb6666 0%, #b85c5c 100%);
}

.mech button:nth-of-type(2):disabled, .mech button:nth-of-type(3):disabled, .mech button:nth-of-type(4):disabled, .mech button:nth-of-type(5):disabled {
  background: -webkit-gradient(linear, left top, left bottom, from(#c5c5c5), to(#a7a7a7));
  background: linear-gradient(to bottom, #c5c5c5 0%, #a7a7a7 100%);
}

.mech button:nth-of-type(6), .mech button:nth-of-type(7), .mech button:nth-of-type(8), .mech button:nth-of-type(9) {
  background: -webkit-gradient(linear, left top, left bottom, from(#7ecb66), to(#66b85c));
  background: linear-gradient(to bottom, #7ecb66 0%, #66b85c 100%);
}

.mech button:nth-of-type(6):disabled, .mech button:nth-of-type(7):disabled, .mech button:nth-of-type(8):disabled, .mech button:nth-of-type(9):disabled {
  background: -webkit-gradient(linear, left top, left bottom, from(#c5c5c5), to(#a7a7a7));
  background: linear-gradient(to bottom, #c5c5c5 0%, #a7a7a7 100%);
}

.mech button:disabled {
  background: -webkit-gradient(linear, left top, left bottom, from(#c5c5c5), to(#a7a7a7));
  background: linear-gradient(to bottom, #c5c5c5 0%, #a7a7a7 100%);
}

.mech .mech-sum {
  text-align: center;
}

.mech .convertbox button {
  width: 100%;
}

#response {
  clear: both;
}

.slidecontainer {
  width: 100%;
}

.slidecontainer .range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  background: #d3d3d3;
  border-radius: 5px;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.slidecontainer .range-slider:hover {
  opacity: 1;
}

.slidecontainer .range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: #04AA6D;
  cursor: pointer;
}

.slidecontainer .range-slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: #04AA6D;
  cursor: pointer;
}

.chain-info h2, .chain-info h3 {
  font-family: 'Panton';
}

.chain-info p {
  font-family: 'Montserrat', sans-serif;
}

.chain-info p #ram-per-mib,
.chain-info p #cpu-allotment,
.chain-info p #cpu-wax-staked,
.chain-info p #cpu-used,
.chain-info p #cpu-total,
.chain-info p #cpu-remain {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-weight: 700;
  font-size: 1.6em;
}

#video-bg {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: calc(100% - 69px);
  border: none;
}

#video-bg-left {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 50%;
  min-height: calc(100% - 69px);
  border: none;
}

#video-bg-right {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 50%;
  min-height: calc(100% - 69px);
  border: none;
}

@media (max-aspect-ratio: 1 / 1.25) {
  #video-bg-left {
    width: 100%;
  }
  #video-bg-right {
    display: none;
  }
}

@media (min-aspect-ratio: 3 / 2) {
  #video-bg-left,
  #video-bg-right {
    width: calc((100vh - 69px) / 1.25);
  }
}

.above-video-bg {
  position: fixed;
  top: 69px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
}

.ft-font {
  font-family: 'Amatic SC';
  font-weight: 400;
}

.ft-font.bold {
  font-weight: 700;
}

#marketplace > div {
  margin-top: 1em;
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1em;
  /*
        .animals 
        {
            overflow: auto;
            > div
            {
                float: left;
                position: relative;
            }
        }*/
}

#marketplace > div .rarities, #marketplace > div .animals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#marketplace > div .rarities > div, #marketplace > div .animals > div {
  padding: 1em;
  text-align: center;
  width: 240px;
  max-width: 33%;
}

#marketplace > div .rarities > div > h3, #marketplace > div .animals > div > h3 {
  font-family: 'Amatic SC';
}

#marketplace > div .rarities > div > button, #marketplace > div .animals > div > button {
  margin-top: 1em;
  background: #275c27;
}

@media screen and (max-width: 600px) {
  #marketplace > div .rarities > div > button, #marketplace > div .animals > div > button {
    font-size: 1.4em;
    padding: 6px 10px;
  }
}

#marketplace > div .rarities > div > button[disabled], #marketplace > div .animals > div > button[disabled] {
  background: #ccc;
}

#marketplace > div .rarities > div > p, #marketplace > div .animals > div > p {
  font-size: 0.8em;
  height: 32px;
}

#marketplace > div .rarities > div > img, #marketplace > div .animals > div > img {
  max-width: 100%;
}

#marketplace > div .rarities > div .rarity, #marketplace > div .animals > div .rarity {
  text-decoration: none;
  color: white;
  padding: 1px 3px;
  display: inline-block;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.21);
  border-bottom: 4px solid rgba(0, 0, 0, 0.21);
  border-radius: 4px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  font-family: 'Panton';
  font-size: 0.5em;
  margin-left: 6px;
  vertical-align: middle;
}

#marketplace > div .rarities > div .rarity[data-rarity="Common"], #marketplace > div .animals > div .rarity[data-rarity="Common"] {
  background: yellow;
  color: rgba(0, 0, 0, 0.4);
}

#marketplace > div .rarities > div .rarity[data-rarity="Rare"], #marketplace > div .animals > div .rarity[data-rarity="Rare"] {
  background: #ff7f00;
  color: #fff;
}

#marketplace > div .rarities > div .rarity[data-rarity="Epic"], #marketplace > div .animals > div .rarity[data-rarity="Epic"] {
  background: #ff3f00;
  color: #fff;
}

.anchor-link {
  width: 100vw !important;
  height: 100vh !important;
}

.main-wrapper {
  width: 90%;
  max-width: 900px;
  margin: 3em auto;
  text-align: center;
}

.badge {
  position: relative;
  margin: 0 2em;
  width: 4em;
  height: 6.2em;
  border-radius: 0.5em;
  display: inline-block;
  top: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  /*
	&:hover {
		top: -4px;
	}*/
}

.badge:before, .badge:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.badge:before {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}

.badge:after {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

.badge .circle {
  width: 3.6em;
  height: 3.6em;
  position: absolute;
  background: #fff;
  z-index: 10;
  border-radius: 50%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  /*
		i.fa {
			font-size: 2em;
			margin-top: 8px;
		}*/
}

.badge .circle i {
  font-weight: bold;
  padding-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.badge .font {
  display: inline-block;
  margin-top: 1em;
}

.badge .ribbon {
  font-family: 'Panton', sans-serif;
  position: absolute;
  border-radius: 4px;
  z-index: 11;
  color: #fff;
  padding: 0.3em;
  width: 8em;
  bottom: 0.6em;
  left: 50%;
  margin-left: -4em;
  height: 1.8em;
  font-size: 1em;
  /*
		padding: 5px 5px 4px;
		width: 109px;
		bottom: 12px;
		left: 50%;
		margin-left: -55px;
		height: 25px;
		font-size: 14px;
        */
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.27);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.27);
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right bottom, from(#555), to(#333));
  background: linear-gradient(to bottom right, #555 0%, #333 100%);
  cursor: default;
}

.yellow {
  background: -webkit-gradient(linear, left top, right bottom, from(#ffeb3b), to(#fbc02d));
  background: linear-gradient(to bottom right, #ffeb3b 0%, #fbc02d 100%);
  color: #ffb300;
}

.orange {
  background: -webkit-gradient(linear, left top, right bottom, from(#ffc107), to(#f57c00));
  background: linear-gradient(to bottom right, #ffc107 0%, #f57c00 100%);
  color: #f68401;
}

.pink {
  background: -webkit-gradient(linear, left top, right bottom, from(#F48FB1), to(#d81b60));
  background: linear-gradient(to bottom right, #F48FB1 0%, #d81b60 100%);
  color: #dc306f;
}

.red {
  background: -webkit-gradient(linear, left top, right bottom, from(#f4511e), to(#b71c1c));
  background: linear-gradient(to bottom right, #f4511e 0%, #b71c1c 100%);
  color: #c62828;
}

.purple {
  background: -webkit-gradient(linear, left top, right bottom, from(#ab47bc), to(#4527a0));
  background: linear-gradient(to bottom right, #ab47bc 0%, #4527a0 100%);
  color: #7127a8;
}

.teal {
  background: -webkit-gradient(linear, left top, right bottom, from(#4DB6AC), to(#00796B));
  background: linear-gradient(to bottom right, #4DB6AC 0%, #00796B 100%);
  color: #34a297;
}

.blue {
  background: -webkit-gradient(linear, left top, right bottom, from(#4FC3F7), to(#2196F3));
  background: linear-gradient(to bottom right, #4FC3F7 0%, #2196F3 100%);
  color: #259af3;
}

.blue-dark {
  background: -webkit-gradient(linear, left top, right bottom, from(#1976D2), to(#283593));
  background: linear-gradient(to bottom right, #1976D2 0%, #283593 100%);
  color: #1c68c5;
}

.green {
  background: -webkit-gradient(linear, left top, right bottom, from(#cddc39), to(#8bc34a));
  background: linear-gradient(to bottom right, #cddc39 0%, #8bc34a 100%);
  color: #7cb342;
}

.green-dark {
  background: -webkit-gradient(linear, left top, right bottom, from(#4CAF50), to(#1B5E20));
  background: linear-gradient(to bottom right, #4CAF50 0%, #1B5E20 100%);
  color: #00944a;
}

.silver {
  background: -webkit-gradient(linear, left top, right bottom, from(#E0E0E0), to(#BDBDBD));
  background: linear-gradient(to bottom right, #E0E0E0 0%, #BDBDBD 100%);
  color: #9e9e9e;
}

.gold {
  background: -webkit-gradient(linear, left top, right bottom, from(#e6ce6a), to(#b7892b));
  background: linear-gradient(to bottom right, #e6ce6a 0%, #b7892b 100%);
  color: #b7892b;
}

.projects-grid {
  top: -100vh;
  -webkit-transition: top 1s ease-in-out;
  transition: top 1s ease-in-out;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 200px 200px 200px 1fr;
      grid-template-columns: 1fr 200px 200px 200px 1fr;
  -ms-grid-rows: 1fr 200px 200px 200px 1fr;
      grid-template-rows: 1fr 200px 200px 200px 1fr;
  gap: 0px 0px;
      grid-template-areas: ". . . . ." ". . . . ." ". . . . ." ". . . . ." ". . . . .";
  height: 100vh;
  width: 100vw;
  position: fixed;
  color: #000;
  z-index: 999;
}

@media screen and (max-width: 920px) {
  .projects-grid {
    -ms-grid-columns: 1fr 25vmin 25vmin 25vmin 1fr;
        grid-template-columns: 1fr 25vmin 25vmin 25vmin 1fr;
    -ms-grid-rows: 1fr 25vmin 25vmin 25vmin 1fr;
        grid-template-rows: 1fr 25vmin 25vmin 25vmin 1fr;
  }
}

@media screen and (max-height: 920px) {
  .projects-grid {
    -ms-grid-columns: 1fr 25vmin 25vmin 25vmin 1fr;
        grid-template-columns: 1fr 25vmin 25vmin 25vmin 1fr;
    -ms-grid-rows: 1fr 25vmin 25vmin 25vmin 1fr;
        grid-template-rows: 1fr 25vmin 25vmin 25vmin 1fr;
  }
}

.projects-grid.show {
  top: 0;
}

.projects-grid > a:visited, .projects-grid a:active, .projects-grid a:hover, .projects-grid a:link {
  color: #fff;
}

.projects-grid > div, .projects-grid > a {
  display: block;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.projects-grid > div > img, .projects-grid > div > p, .projects-grid > a > img, .projects-grid > a > p {
  width: 100%;
  max-width: calc(100% - 2em);
  max-height: calc(100% - 2em);
  position: absolute;
  /*left: 1em;*/
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-transition: left 1s ease-in-out;
  transition: left 1s ease-in-out;
}

.projects-grid > div > p, .projects-grid > a > p {
  left: 150%;
  font-family: 'Panton';
}

.projects-grid > div:hover > img, .projects-grid > a:hover > img {
  left: -200px;
}

.projects-grid > div:hover > p, .projects-grid > a:hover > p {
  left: 50%;
}

.projects-grid > div:nth-child(5), .projects-grid > a:nth-child(5) {
  text-align: right;
}

.projects-grid > div:nth-child(5) > button, .projects-grid > a:nth-child(5) > button {
  background: #c62828;
  margin: 1em;
  padding: 4px 8px;
}

.projects-grid > div:nth-child(1), .projects-grid > div:nth-child(5), .projects-grid > div:nth-child(21), .projects-grid > div:nth-child(25), .projects-grid > a:nth-child(1), .projects-grid > a:nth-child(5), .projects-grid > a:nth-child(21), .projects-grid > a:nth-child(25) {
  background-color: #7cb342;
}

.projects-grid > div:nth-child(2), .projects-grid > div:nth-child(4), .projects-grid > div:nth-child(6), .projects-grid > div:nth-child(10), .projects-grid > div:nth-child(16), .projects-grid > div:nth-child(20), .projects-grid > div:nth-child(22), .projects-grid > div:nth-child(24), .projects-grid > a:nth-child(2), .projects-grid > a:nth-child(4), .projects-grid > a:nth-child(6), .projects-grid > a:nth-child(10), .projects-grid > a:nth-child(16), .projects-grid > a:nth-child(20), .projects-grid > a:nth-child(22), .projects-grid > a:nth-child(24) {
  background-color: #8bc34a;
}

.projects-grid > div:nth-child(3), .projects-grid > div:nth-child(11), .projects-grid > div:nth-child(15), .projects-grid > div:nth-child(23), .projects-grid > a:nth-child(3), .projects-grid > a:nth-child(11), .projects-grid > a:nth-child(15), .projects-grid > a:nth-child(23) {
  background-color: #cddc39;
}

.projects-grid > div:nth-child(7), .projects-grid > a:nth-child(7) {
  background-color: #000;
  padding: 1em;
}

.projects-grid > div:nth-child(8), .projects-grid > a:nth-child(8) {
  background-color: #7127a8;
  padding: 1em;
}

.projects-grid > div:nth-child(9), .projects-grid > a:nth-child(9) {
  background-color: #1c68c5;
  padding: 1em;
}

.projects-grid > div:nth-child(12), .projects-grid > a:nth-child(12) {
  background-color: #4DB6AC;
  padding: 1em;
}

.projects-grid > div:nth-child(13), .projects-grid > a:nth-child(13) {
  background-color: #8f8f8f;
  padding: 1em;
}

.projects-grid > div:nth-child(13):visited, .projects-grid > div:nth-child(13):active, .projects-grid > div:nth-child(13):hover, .projects-grid > div:nth-child(13):link, .projects-grid > a:nth-child(13):visited, .projects-grid > a:nth-child(13):active, .projects-grid > a:nth-child(13):hover, .projects-grid > a:nth-child(13):link {
  color: #333;
}

.projects-grid > div:nth-child(14), .projects-grid > a:nth-child(14) {
  background-color: #00796B;
  padding: 1em;
}

.projects-grid > div:nth-child(17), .projects-grid > a:nth-child(17) {
  background-color: #4527a0;
  padding: 1em;
}

.projects-grid > div:nth-child(18), .projects-grid > a:nth-child(18) {
  background-color: #c62828;
  padding: 1em;
}

.projects-grid > div:nth-child(19), .projects-grid > a:nth-child(19) {
  background-color: #f68401;
  padding: 1em;
}

div.egg {
  display: inline-block;
}

div.egg > div:nth-of-type(1), div.egg > div:nth-of-type(3) {
  margin-top: 1em;
  background-color: #CF4952;
  color: #0D2740;
  border-left: solid 4px #0D2740;
  border-right: solid 4px #0D2740;
  margin: auto;
  padding: 2px 10px;
  text-align: center;
  font-family: 'Panton';
  font-weight: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
}

div.egg > div:nth-of-type(1) {
  border-top: solid 4px #0D2740;
  border-top-left-radius: 4em;
  border-top-right-radius: 4em;
}

div.egg > div:nth-of-type(2) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  -ms-grid-rows: auto auto auto auto auto;
      grid-template-rows: auto auto auto auto auto;
  background-color: #0D2740;
  color: #CF4952;
  padding: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
  position: relative;
  z-index: 3;
  padding: 1em 0.2em;
}

div.egg > div:nth-of-type(2) > .badge {
  margin: 0 2.2em;
}

div.egg.double-row > div:nth-of-type(2) {
  min-height: 15em;
}

div.egg > div:nth-of-type(3) {
  border-bottom: solid 4px #0D2740;
  border-bottom-left-radius: 4em;
  border-bottom-right-radius: 4em;
}

div.egg.one-cell {
  max-width: 12em;
}

div.egg.one-cell > div:nth-of-type(2) {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

div.egg.two-cells {
  max-width: 17.2em;
}

div.egg.three-cells {
  max-width: 25.6em;
}

div.egg.no-top > div:nth-of-type(1) {
  display: none;
}

.semi-transparent-container {
  margin: 0 auto 1em auto;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0 1em 1em 1em;
  border-bottom-left-radius: 1em;
  border-bottom-right-radius: 1em;
}

.pool-stats-top-bar {
  font-size: 0.8em;
  text-align: center;
  display: none;
  /*
    > .egg{
        display: none;
        &.show{
            display: inline-block;
        }
    }*/
}

.pool-stats-top-bar.show {
  display: block;
}

.tokens-card {
  text-align: left;
  padding: 2em 2em 0.4em 2em;
  width: 700px;
  max-width: 95vw;
  margin: auto;
}

.tokens-card.content-card {
  background: #fff 0 0 no-repeat padding-box;
  -webkit-box-shadow: 0 3px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 40px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
}

.tokens-card .token-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(101, 101, 101, 0.101961);
  margin-bottom: 10px;
  color: #242b39;
}

.tokens-card .token-item .token-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  width: 50px;
  margin-right: 10px;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.tokens-card .token-item .token-image img {
  max-height: 50px;
  max-width: 50px;
}

.tokens-card .token-item .token-name {
  font-weight: 700;
  font-size: 1.5rem;
}

.tokens-card .token-item .token-name small {
  font-weight: 400;
}

.tokens-card .token-item .token-name .token-contract {
  font-weight: 300;
  font-size: 1rem;
}

.tokens-card .token-item .token-name span.muted {
  font-size: 0.7em;
  color: #777;
}

.tokens-card .token-item .token-right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: auto;
  font-size: 1.2rem;
  font-weight: 600;
}

.tokens-card .token-item:last-child {
  border-bottom: none;
}
/*# sourceMappingURL=naw.css.map */