:root 
{
  --base-text-color: #FFFFFFC0;  
  --gold-color: #E9B522;
  --gold-color-light: #F7DE61BB;
  --hints-color: #606060;
  --title-font-weight: bold;
  --light-background: #333840;
  --middle-background: #282B30;
  --dark-background: #212225;
  --button-background: #F6BE29;
  --button-color: #000;
}

body, html
{
  margin: 0px;
  padding: 0px;

  font-family: Arial;

  box-sizing: border-box;

  background: var(--dark-background) !important;

  border: none!important;

  cursor: default;
}

@media (min-width: 290px)
{
  body, html
  {
    font-size: 11px;
  }
}

@media (min-width: 320px)
{
  body, html
  {
    font-size: 13px;
  }
}

@media (min-width: 420px)
{
  body, html
  {
    font-size: 15px;
  }
}

*[data-animation-type]
{
  position: relative;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button 
{
  -webkit-appearance: none;

  margin: 0;
}

input[type=number] 
{
  -moz-appearance:textfield
}

body
{
  max-width: 100vw;

  position: relative;

  overflow: hidden;
}

body .pages-data
{
  display: none;

  position: relative;

  overflow: hidden;
}

body .pages-data.loaded
{
  display: block;

  padding-top: 60px;
}

body .pages-data
{
  min-height: 100vh;

  color: var(--base-text-color);
}

body .page, body .hide-till-lang
{
  display: none;

  color: var(--base-text-color);
}

body .page.active
{
  display: block;
}

body .page .page-title
{
  font-size: 130%;
  font-weight: var(--title-font-weight);

  padding: 5px 15px 5px 15px;

  text-align: center;
}

body .page .page-text
{
  text-align: center;

  margin-bottom: 10px;
}

body .page .content
{
  padding: 0px 14px 80px 14px;
}

body .page .content .title
{
  font-size: 110%;
  font-weight: var(--title-font-weight);

  margin-bottom: 8px;
}

body .page .content .title.center
{
  text-align: center;
}

body .page > .content .big-coin, 
body .page > .content .big-image
{
  text-align: center;
  padding: 15px 0px;
}

body .page > .content .big-coin svg,
body .page > .content .big-image img
{
  width: 100px;
  height: 100px;
}

body .page > .content .list
{
  margin: 10px 10px;
}

body .page .content .list .element
{
  display: flex;
  gap: 10px;
  align-items: center;

  max-width: 100%;

  border-radius: 15px;
  opacity: 0px;

  background: var(--light-background);

  padding: 8px 12px;
  margin: 0px 0px 10px 0px;
}

body .page .content .list .element.disable
{
  filter: grayscale(1);
}

body .page .content .list .element .main_info .name
{
  font-size: 100%;
  font-weight: bold;

  padding: 0px;
  margin: 0px 0px 2px 0px;

  text-align: left;
}

body .page .content .list .element .icon
{
  width: 35px;

  min-width: 35px;
  max-width: 35px;
}

body .page .content .list .element .icon img
{
  max-height: 35px;
  border-radius: 8px;
}

body .page .content .list .element .main_info
{
  width: 100%;
}

body .page .content .list .element .main_info .hint
{
  font-size: 90%;
  padding: 0px;
}

body .page .content .list .element .buy
{
  width: 160px;

  font-size: 120%;
  font-weight: var(--title-font-weight);
}

body .page .content .list .element .buy a
{
  display: flex;

  align-items: center;

  justify-content: end;
}

body .page .content .list .element .buy svg, body .page .content .list .element .balance svg
{
  width: 20px;
  height: 20px;

  margin: 0px 5px;
}

body .page .content .list .element .buy img, body .page .content .list .element .balance img
{
  max-width: 20px;

  margin: 0px 5px;
}

body .page .content .list .element .balance
{
  display: flex;

  font-size: 120%;
  font-weight: var(--title-font-weight);
}

body .page .content .line
{
  display: flex;

  gap: 2%;

  margin: 10px 0px 25px 0px;

  justify-content: center;
}

body .page .content .line .element
{
  text-align: center;

  padding: 0px;

  border-radius: 15px;

  overflow: hidden;
}

body .page .content .line .element img
{
  max-width: 100%;

  border-radius: 10px;
}

body .page .content .line .element .count
{
  font-weight: bold;

  padding: 1px 3px 1px 3px;
  
  border-radius: 4px;

  background1: #F6BE29;
}

body a
{
  color: var(--base-text-color);

  text-decoration: none;

  outline: none;

  cursor: default;
}

body .d-none
{
  display: none;
}

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

body .empty
{
  padding: 20px 0px;

  text-align: center;
}

body .container
{
  width: calc(100% - 40px);
  min-width: 330px;

  margin-left: auto;
  margin-right: auto;
}

body .small-label
{
  font-weight: normal;

  color: #8C8C8C;
}

body .buttons-place
{
  background: var(--light-background);
}

body .scroll-container
{
  max-height: 100vh;

  overflow-y: auto;
  
  box-sizing: border-box;
}

body .scene
{
  position: relative;

  display: none;

  max-width: 600px;
  min-height: 100vh;

  margin: 0px auto;
}

body .scene .with-icon
{
  display: flex;

  gap: 5px;

  align-items: center;

  justify-content: center;
}

body .scene .info-icon
{
  width: 14px!important;
  height: 14px!important;
}

body .scene.loaded, body .qr-place.loaded
{
  display: block;
}

body .thumbnail-place
{
  position: absolute;

  top: 0px;

  width: 100%;
  height: 100vh;

  background-image: url("/src/thumbnail_4.jpg");
  background-size: cover;

  z-index: 3;
}

body .thumbnail-place.style2
{
  background-image: url("/src/thumbnail_s2.jpg");
}

body .thumbnail-place .loading
{
  width: 100vw;
  height: 100vh;

  background-position: 50% 50%;
}

body .thumbnail-place .greeting
{
  position: absolute;

  display: flex;
  flex-direction: column;

  top: 0px;
  left: 0px;

  width: 100vw;
  height: 100vh;

  justify-content: space-between;

  text-align: center;
}

body .thumbnail-place .greeting .text
{
  color: #FFF;

  font-size: 22px;
  font-weight: 700;

  text-shadow: 2px 2px rgba(0, 0, 0, 1);
}

body .thumbnail-place .greeting .top
{
  padding-top: 30px;
}

body .thumbnail-place .greeting .top .logo
{
  padding-bottom: 10px;
}

body .thumbnail-place .greeting .top .logo svg
{
  width: 292px;
  height: 55px;
}

body .thumbnail-place .greeting .bottom
{
  padding-bottom: 30px;
}

body .loading
{
  background: url("/src/loader4.svg");
  background-repeat: no-repeat;
  background-position: center center;

  box-shadow: 0px 1px 7px rgb(0 0 0 / 10%);
}

body .thumbnail-place.loaded
{
  display: none;
}

body .scene .scene-container
{
  width: calc(100% - 100px);
  min-width: 280px;

  margin-left: auto;
  margin-right: auto;
}

body .scene .small-scene-container
{
  width: calc(100% - 140px);
  min-width: 250px;

  margin-left: auto;
  margin-right: auto;
}

body .scroll-container .header-place
{
  position: fixed;

  top: 0px;

  width: 100%;

  overflow: hidden;

  color: var(--base-text-color);

  z-index: 1;
}

body .scroll-container .header-place .header
{
  position: relative;

  right: -1px;
  width: calc(100% + 5px);

  display: flex;

  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;

  margin-bottom: 10px;
  margin-left: -4px;

  justify-content: space-between;

  gap: 10px;

  border-radius: 0px 0px 18px 18px;

  border-bottom: 1px solid rgba(246, 190, 41, 0.4);
  border-left: 1px solid rgba(246, 190, 41, 0.4);
  border-right: 1px solid rgba(246, 190, 41, 0.4);

  box-shadow: 0px 1px 7px rgb(255 234 177 / 10%);

  background: var(--middle-background);

  box-sizing: border-box;
}

body .scroll-container .header-place .header .user
{
  display: flex;

  gap: 6px;

  align-items: center;

  padding-left: 8px;
  padding-right: 8px;
}

body .scroll-container .header-place .header .user .avatar
{
  width: 18px;
  height: 18px;

  border-radius: 6px;

  overflow: hidden;
}

body .scroll-container .header-place .header .user .avatar img
{
  max-width: 100%;
}

body .scroll-container .header-place .header .user .name
{
  text-align: left;

  font-size: 90%;
  font-weight: var(--title-font-weight);
}

body .scroll-container .header-place .header .user .name.holder
{
  min-width: 100px;
  min-height: 20px;

  border-radius: 6px;
}

body .scroll-container .header-place .header .holder
{
  background: var(--light-background);
}

body .scroll-container .header-place .header .controls
{
  display: flex;

  gap: 6px;

  align-items: center;
}

body .scroll-container .header-place .header .controls .item
{
  padding: 0px;
}

body .scroll-container .header-place .header .item a
{
  display: block;

  line-height: 0;

  padding: 6px;
}

body .scroll-container .header-place .header .item a.wallet, body .scroll-container .header-place .header .item a.crystals
{
  display: flex;

  font-size: 90%;

  gap: 5px;

  align-items: center;

  font-weight: var(--title-font-weight);
}

body .scroll-container .header-place .header .item a.crystals
{
  padding: 7px;
}

body .scroll-container .header-place .header .item a.settings
{
  padding: 5px;
}

body .scroll-container .header-place .header .item .wallet svg
{
  width: 20px;
  height: 18px;
}

body .scroll-container .header-place .header .item .crystals svg
{
  width: 20px;
  height: 16px;
}

body .scroll-container .header-place .header .item .settings svg
{
  width: 20px;
  height: 20px;
}

body .scene .item
{
  padding: 6px;

  align-self: center;

  text-align: center;

  border-radius: 6px;

  background: var(--dark-background);
}

body .scene .info
{
  display: flex;

  gap: 12px;

  margin-top: 5px;

  justify-content: space-between;
} 

body .scene .info .item
{
  width: 33%;

  padding: 7px 5px 11px 5px;

  border-radius: 8px;

  background: var(--middle-background);
}

body .scene .info .item.large
{
  width: 100%;
}

body .scene .info .item svg
{
  width: 17px;
  height: 17px;
}

body .scene .info .item .label
{
  font-size: 75%;

  color: var(--gold-color-light);

  padding-bottom: 8px;
}

body .scene .info .item .data
{
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 5px;

  font-size: 100%;
  font-weight: var(--title-font-weight);
}

body .scene .info .item .data .boost
{
  position: relative;

  top: -10px;
  right: -5px;
  
  font-size: 75%;
  
  color: #F7DE61;
}

body .scene .finance .points
{
  display: flex;

  margin: 20px 10px 20px 10px;

  align-items: center;

  font-size: 180%;
  font-weight: var(--title-font-weight);

  gap: 10px;

  justify-content: center;
}

body .scene .finance .points svg
{
  width: 8vw;
  height: 8vw;
}


body .scene .game
{
  padding: 20px 0px 20px 0px;

  position: relative;

  cursor: default;

  text-align: center;
}

body .scene .game canvas
{
  max-width: 100%;

  transition: 0.15s all;
}

@media (min-width: 290px)
{
  body .scene .game canvas
  {
    max-height: 170px;
  }
}

@media (min-width: 320px)
{
  body .scene .game canvas
  {
    max-height: 200px;
  }
}

@media (min-width: 420px)
{
  body .scene .game canvas
  {
    max-height: 350px;
  }
}

body .scene .game canvas.tap
{
  transform: scale(1.04);
}

body .scene .game .boost.active
{
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
}

body .scene .game .boost.active.hyper_tap
{
  background-image: url('/src/hyper_tap_boost_bg.png');
}

body .scene .game .boost.active.crystals_hunt
{
  background-image: url('/src/crystals_hunt_boost_bg.png');

  background-size: 50% auto;
  background-position: center;
}

body .scene .game .point, body .scene .game .crystal
{
  position: absolute;

  font-size: 4vw;
  font-weight: var(--title-font-weight);

  color: #FFF;

  z-index: 1;
}

body .scene .game .point
{
  display: flex;

  gap: 2px;

  align-items: center;
}

body .scene .game .point img
{
  width: 4vw;
}

body .scene .game .point .icon
{
  line-height: 0px;
}

body .scene .game .crystal svg
{
  width: 40px;
  height: 32px;
}

body .next-stage 
{
  display: flex;

  gap: 5px;

  margin-bottom: 10px;

  justify-content: center;
  align-items: center;

  font-weight: var(--title-font-weight);
}

body .next-stage svg
{
  width: 26px;
  height: 24px;
}

body .next-stage .value
{
  font-size: 110%;

  color: var(--base-text-color);
}

body .scene .level .top
{
  display: flex;

  margin-bottom: 8px;

  justify-content: space-between;

  font-weight: var(--title-font-weight);
}

body .scene .level .top
{
  font-size: 100%;
}

body .scene .level .progress-bar
{
  position: relative;

  height: 8px;

  margin-bottom: 8px;

  background: #333333;

  border-radius: 5px;
}

body .scene .level .progress-bar .load
{
  width: 0;
  height: 100%;

  opacity: 75%;

  background: linear-gradient(90deg, rgba(189, 86, 0, 0.9) 0%, rgba(246, 190, 41, 0.9) 100%);

  border-radius: 10px;
}

body .scene .energy
{
  display: flex;

  padding-bottom: 20px;

  justify-content: space-between;

  gap: 20px;

  font-weight: var(--title-font-weight);
}

body .scene .energy-value svg
{
  width: 15px;
  height: 25px;
}

body .scene .boost-value img
{
  max-width: 9vw;
}

body .menu-place
{
  position: absolute;

  display: flex;

  bottom: 10px;

  height: 65px;
  width: 100%;

  justify-content: center;
}

body .bottom-menu
{
  position: fixed;
  bottom: 10px;

  display: flex;

  width: calc(100% - 50px);
  min-width: 300px;

  padding: 4px;

  justify-content: space-between;

  gap: 5px;

  border-radius: 10px;

  z-index: 1;
}

body .bottom-menu .item
{
  display: flex;

  flex-direction: column;

  gap: 2px;

  padding: 2px 5px;

  width: 100%;
  min-height: 45px;

  border-radius: 8px;

  justify-content: center;

  text-align: center;

  font-size: 65%;

  cursor: default;
}

body .bottom-menu .item.active
{
  color1: #F7DE61;

  background: #212225;
}

body .bottom-menu .item svg
{
  align-self: center;

  width: 22px;
  height: 22px;
}

body .bottom-menu .item:nth-child(2) svg
{
  width: 26px;
  height: 27px;
}

body .bottom-menu .item:nth-child(3) svg
{
  width: 47px;
  height: 27px;
}

body .bottom-menu .item:nth-child(4) svg
{
  width: 27px;
  height: 27px;
}

body .bottom-menu .item:nth-child(5) svg
{
  width: 29px;
  height: 27px;
}

body .bottom-slide
{
  position: absolute;

  left: -2px;

  width: calc(100% + 2px);

  overflow: hidden;

  border-radius: 18px 18px 0px 0px;

  border-top: 1px solid rgba(246, 190, 41, 0.4);
  border-left: 1px solid rgba(246, 190, 41, 0.4);
  border-right: 1px solid rgba(246, 190, 41, 0.4);

  box-shadow: 0px 1px 9px rgb(255 234 177 / 10%);

  background: var(--middle-background);
}

body .bottom-slide .pages, body .bottom-slide .pages .pages-content
{
  height: 100%;
}

body .bottom-slide.open .pages
{
  padding-top: 14px;

  background1: var(--light-background);
}

body .bottom-slide .pages .pages-content
{
  overflow-y: auto;
  overflow-x: hidden;
}

body .bottom-slide .pages .pages-content .page
{
  min-height: calc(100% - 125px);

  padding-bottom: 125px;

  background1: var(--light-background);
}

body .qr-place
{
  display: none;

  text-align: center;

  color: #FFFFFF;
}

body .overlay
{
  display: none;

  position: absolute;

  top: 0px;
  left: 0px;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.5);

  z-index: 1;
}

body .popup
{
  position: absolute;

  bottom: -100vh;

  z-index: 2;

  width: 100vw;

  font-size: 90%;

  color: var(--base-text-color);

  box-sizing: border-box;

  overflow-x: hidden;
}

body .popup .popup-content
{
  position: relative;

  left: -2px;

  width: calc(100% + 4px);

  padding: 30px 20px;

  background: var(--light-background);

  border-top: 1px solid rgba(246, 190, 41, 0.4);
  border-left: 1px solid rgba(246, 190, 41, 0.4);
  border-right: 1px solid rgba(246, 190, 41, 0.4);

  border-radius: 18px 18px 0px 0px;

  box-sizing: border-box;

  box-shadow: 0px 1px 5px rgba(246, 190, 41, 10%);
}

body .popup .popup-content .popup-scroll
{
  max-height: calc(100vh - 100px);

  overflow-y: auto;
}

body .popup .title
{
  padding-bottom: 15px;

  font-size: 180%;

  text-align: center;
}

body .popup .subtitle
{
  padding-bottom: 15px;

  font-size: 120%;

  text-align: center;
}

body .popup .popup-content .image
{
  height: 100px;

  margin-bottom: 10px;

  text-align: center;
}

body .popup .popup-content .img-big .image
{
  margin-top: 15px;
  margin-bottom: 15px;

  position: relative;

  height: 45vh;
}

body .popup .popup-content .image img
{
  max-height: 100%;

  border-radius: 10px;
}

body .popup .popup-content .img-big .image > img
{
  position: relative;
}

body .popup .popup-content .image .slide
{
  position: absolute;

  top: 0;

  display: none;

  width: 100%;
  height: 100%;
}

body .popup .text
{
  margin-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;

  text-align: center;

  font-size: 120%;

  line-height: 1.5;
}

body .popup .error
{
  margin-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
  
  text-align: center;

  font-size: 120%;
  font-weight: bold;

  line-height: 1.5;
}

body .popup .days
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1vw;
}

body .popup .days .day
{
  display: inline-block;

  width: 25vw;

  text-align: center;

  padding: 0px;

  border-radius: 15px;
  margin: 5px;

  overflow: hidden;

  background: var(--middle-background);

  filter: grayscale(0);
}

body .popup .days .day .day-icon
{
  height: 30vw;
}

body .popup .days .day .day-icon svg
{
  width: 15vw;
  height: 15vw;
}

body .popup .days .day .day-icon.coin svg
{
  width: 12vw;
  height: 12vw;
}



body .popup .days .day .num
{
  padding: 2vw 0vw;
}

body .popup .days .day.active, body .popup .days .day.done
{
  filter: grayscale(1);
  opacity: 0.3;
}

body .popup .days .day.done
{
  filter: blur(2px);
}

body .popup .days .day .day-icon
{
  width: 100%;
  height: 70px;
}

body .popup .days .day .count
{
  font-size: 120%;
  color: var(--button-color);

  padding: 1vw 3px 1vw 3px;

  background: #F6BE2988;
}

body .popup .hint
{
  color: var(--hints-color);

  padding-bottom: 5px;

  font-size: 90%;

  text-align: center;
}

body .alerts
{
  position: absolute;

  top: 5px;
  left: 0px;

  width: 100%;

  color: #fff;

  z-index: 2;
}

body .alerts .alert
{
  position: relative;

  width: 86%;

  padding: 2px 8px;
  margin: 5px 7%;

  border-radius: 6px;

  background: var(--light-background);

  box-sizing: border-box;
}

body .alerts .alert.load
{
  position: absolute;
}

body .alerts .alert .wrapper
{
  display: flex;

  gap: 5px;

  align-items: center;
}

body .alerts .alert .wrapper .data
{
  display: flex;

  width: 100%;
  
  gap: 10px;
  
  align-items: center;
}

body .alerts .alert .wrapper .data .icon svg
{
  width: 16px;
  height: 16px;
}

body .alerts .alert .close
{
  cursor: pointer;
}

body .alerts .alert .close svg
{
  width: 24px;
  height: 24px;
}

body .auction-data .winner
{
  font-size: 160%;
  font-weight: 700;

  padding: 0px 0px 20px 0px;
}

body .auction-data .end
{
  padding-top: 10px;
  padding-bottom: 10px;

  margin-bottom: 20px;

  font-size: 140%;
  font-weight: 700;

  text-align: center;

  border-top: 1px solid var(--gold-color);
  border-bottom: 1px solid var(--gold-color);
}

body .popup .prices
{
  display: flex;

  flex-direction: column;

  margin-bottom: 10px;

  gap: 5px;

  text-align: center;
}

body .popup .prices .price.top
{
  margin-bottom: 10px;
}

body .popup .prices .price .label
{
  font-size: 140%;
  font-weight: 700;
}

body .popup .stake-control-form
{
  display: flex;

  margin: 0px 15px;

  justify-content: space-between;
  align-items: center;

  gap: 25px;

  font-size: 160%;
}

body .popup .stake-control-form .stake-control .plus, body .popup .stake-control-form .stake-control .minus
{
  display: block;

  width: 36px;

  padding: 0px 10px;

  background: var(--button-background);

  border-radius: 10px;

  color: var(--button-color);

  font-size: 140%;

  line-height: 1.2;

  text-align: center;

  box-sizing: border-box;
}

body .popup .stake-control-form .stake-value
{
  text-align: center;
}

body .popup .stake-control-form .stake-value input
{
  max-width: 150px;

  margin: 0px auto;

  color: var(--gold-color);

  font-size: 100%;
  font-weight: 700;

  background: none;
  border: none;

  outline: none;

  text-align: center;
}

body .popup .icon-data
{
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 5px;

  text-align: center;

  font-size: 140%;
  font-weight: var(--title-font-weight);
}

body .popup .icon-data + .icon-data
{
  margin-top: 10px;
}

body .popup .icon-data svg
{
  width: 26px;
  height: 26px;
}

body .popup .icon-data img
{
  max-width: 26px;
}

body .popup .icon-data > *
{
  display: inline-block;

  vertical-align: middle;
}

body .popup .buttons, body .popup .sub-buttons
{
  display: flex;

  margin-top: 20px;

  text-align: center;
    
  gap: 10px;

  flex-direction: column;
  align-items: center;
}

body .popup .sub-buttons
{
  width: 100%;

  margin-top: 0px;
}

body .popup .sub-buttons.disable
{
  flex-direction: row;

  justify-content: center;
}

body .popup .buttons a
{
  display: inline-block;

  width: 80%;

  padding: 0px 20px;

  background: var(--button-background);

  border-radius: 15px;

  justify-content: center;

  color: var(--button-color);

  font-size: 140%;

  line-height: 2.5;
}

body .popup .buttons a svg, body .popup .buttons .sub-buttons svg
{
  display: inline-block;

  width: 30px;
  height: 30px;

  vertical-align: middle;
}

body .popup .attach-file-place
{
  width: 100%;
}

body .popup .attach-file-place label
{
  display: flex;

  width: 80%;

  padding: 0px 20px;
  margin: 0px auto;

  background: #23282B;

  border-radius: 15px;

  font-size: 140%;
  line-height: 2.5;

  text-align: left;

  justify-content: space-between;
  align-items: center;
}

body .popup .attach-file-place label svg
{
  width: 17px;
  height: 17px;
}

body .popup .popup-content .img-list .item:hover
{
  transform: scale(1.05);

  background: rgba(0, 0, 0, 0.25);
}

body .splash
{
  position: absolute;

  display: none;

  top: 0px;
  left: 0px;

  z-index: 3;

  width: 100vw;
  height: 100vh;

  box-sizing: border-box;

  overflow: hidden;

  background: rgba(0, 0, 0, 0.9);
}

body .splash-content
{
  display: flex;

  height: 100%;

  padding: 30px 50px;
  
  align-items: center;
  justify-content: center;

  font-size: 120%;
  font-weight: 700;

  color: #FFF;

  text-align: center;
}

body .page #boosts-content  .title
{
  text-align: center;
}

body .page #boosts-content .line
{
  gap: 8px;
}

body .page #boosts-content .line .element
{
  width: calc(25% - 8px);
}

body .page #boosts-content .level
{
  width: 80px;

  text-align: left;
}

body .page #boosts-content .list
{
  margin-left: 0px;
  margin-right: 0px;
}




body .page .content .friends
{

}

body .page #friends-content .image
{
  height: 90px;

  padding-bottom: 10px;

  text-align: center;
}

body .page #friends-content .image img
{
  max-height: 100%;
}

body .page #friends-content .title
{
  text-align: center;
}

body .page #friends-content .line
{
  display: flex;
  gap: 15px;
}

body .page #friends-content .tiles.bonuses .tile
{
  width: calc(33% - 17px);

  margin: 6px 0px;

  text-align: center;
}

body .page #friends-content .tiles .tile svg
{
  width: 16px;
  height: 16px;

  margin-right: 5px;
}

body .page #friends-content .tiles .tile .title
{
  font-size: 80%;
  font-weight: normal;
  margin-bottom: 8px;
}

body .page #friends-content .tiles .tile .coins
{
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  font-size: 120%;
}

body .page #friends-content .tiles .tile .text
{
  text-align: center;
}

body .page #friends-content .tiles .tile b
{
  color: var(--gold-color-light);
}

body .page #friends-content .tiles .tile .hint
{
  font-size: 90%;

  margin-top: 4px;
}

body .page #friends-content .tiles.friends-count .tile
{
  padding: 10px 6px;

  font-size: 120%;

  margin-bottom: 5px;
}

body .page #friends-content .list
{
  margin-left: 0px;
  margin-right: 0px;
}

body .page #friends-content .line
{
  gap: 6px;
}

body .page #friends-content .copy, 
body .page #friends-content .send,
body .page #friends-content .invite
{
  width: 20px;

  text-align: center;
}

body .page #friends-content .copy img, 
body .page #friends-content .send img,
body .page #friends-content .invite img
{
  width: 20px;
}


body .page .content .tiles
{
  display: flex;

  gap: 5px;

  justify-content: space-between;

  align-items: top;

  flex-wrap: wrap;
}

body .page .content .tiles .tile
{
  width: calc(50% - 18px);

  padding: 6px 6px;

  border-radius: 9px;

  background: var(--light-background);
}

body .page .content .skills .title
{
  text-align: center;
  font-weight: 300;
  font-weight: var(--title-font-weight);
}

body .page .content .skills .combo
{
}

body .page .content .skills .combo .combo-panel
{
  display: flex;
  flex-direction: row;
  align-items: center;

  min-height: 20px;

  padding: 8px;

  margin-bottom: 2vw;

  border-radius: 8px;
  background: var(--dark-background);
}

body .page .content .skills .combo .combo-panel .left-block,
body .page .content .skills .combo .combo-panel .right-block
{
  font-size: 105%;
  width: 50%;
}

body .page .content .skills .combo .combo-panel .right-block
{
  text-align: right;
}

body .page .content .skills .combo .combo-panel svg
{
  position: relative;
  margin-bottom: -3px;

  width: 4vw;
  height: 4vw;
}

body .page .content .skills .combo-skills
{
  display: flex;

  flex-direction: row;
  gap: 10px;

  margin-bottom: 2vw;

  align-items: stretch;
  justify-content: space-evenly;
}

body .page .content .skills .combo-skills .combo-skill
{
  overflow: hidden;
  width: calc(33% - 7px);

  border-radius: 8px;

  background: var(--light-background);
}

body .page .content .skills .combo-skills .combo-skill .secret
{
  display: flex;

  height: calc(100% - 20px);

  padding: 10px 0px;

  justify-content: center;
  align-items: center;

  text-align: center;
}

body .page .content .skills .combo-skills .combo-skill .secret img
{
  width: 60%;
}

body .page .content .skills .combo-skills .combo-skill .skill
{
  font-size: 100%;

  padding: 15px;
  text-align: center;
}

body .page .content .skills .combo-skills .combo-skill .skill img
{
  width: 70%;
  margin-bottom: 3px;

  border-radius: 5px;
}


body .page .content .skills .skill-type-group .specials-type-group
{
  padding-bottom: 15px;
}

body .page .content .skills .skill-type-group .specials-type-group:last-child
{
  padding: 0px;
}

body .page .content .skills .tiles .tile .name
{
  padding-bottom: 5px;

  font-size: 85%;

  text-align: center;
}

body .page .content .skills .tiles .tile .header
{
  display: flex;

  gap: 5px;

  align-items: center;
}

body .page .content .skills .tiles .tile .header .icon
{
  width1: 40%;

  padding: 0px 5px;

  text-align: center;

  font-size: 70%;
}

body .page .content .skills .tiles .tile .header .icon img
{
  max-width: 45px;

  line-height: 0px;
  border-radius: 5px;
}

body .page .content .skills .tiles .tile .data
{
  font-size: 85%;

  line-height: 1.3;
}

body .page .content .skills .tiles .tile .data .level
{
  padding-bottom: 5px;
}

body .page .content .hint
{
  color: #6F6F6F;

  font-size: 80%;

  padding-bottom: 2px;
}

body .page .content .hint b
{
  color: var(--gold-color-light);
}

body .page .content .skills .tiles .tile
{
  margin-bottom: 8px;
}

body .page .content .skills .tiles .tile .coins .value
{
  display: flex;

  gap: 5px;

  font-size: 100%;

  align-items: center;
}

body .page .content .skills .tiles .tile .coins .value svg
{
  width: 12px;
  height: 12px;
}

body .page .content .skills .tiles .tile .footer
{
  padding-top: 5px;

  font-size: 90%;
}

body .page .content .skills .tiles .tile .footer .disable
{
  font-size: 90%;

  line-height: 130%;
}

body .page .content .skills .tiles .tile .footer .skill-timer
{
  color: #FFF;

  animation: pulse 3.5s linear infinite;
}

body .page .content .skills .skill-type-group .specials-type-group .tile
{
  border-radius: 12px;
}

body .page .content .skills .skill-type-group .specials-type-group .tile.disable
{
  filter: grayscale(1);
  opacity: 50%;
}

body .page .content .skills .skill-type-group .specials-type-group .tile.color1
{
  background: linear-gradient(180deg,#F85C5B  0%, #803130 100%);
}

body .page .content .skills .skill-type-group .specials-type-group .tile.color2
{
  background: linear-gradient(180deg, #09DAF7 0%, #274E56 100%);
}

body .page .content .skills .skill-type-group .specials-type-group .tile.color3
{
  background: linear-gradient(180deg, #9747FF 0%, #44335A 100%);
}

body .page .content .skills .skill-type-group .specials-type-group .tile.color4
{
  background: linear-gradient(180deg, #1CF1D7 0%, #347571 100%);
}

body .page .content .skills .skill-type-group .specials-type-group .tile.color5
{
  background: linear-gradient(180deg, #542CF5 0%, #2A3145 100%);
}

body .page .content .skills .skill-type-group .specials-type-group .tile.color6
{
  background: linear-gradient(180deg, #F57519 0%, #522B10 100%);
}

body .page .content .skills .skill-type-group .specials-type-group .tile.color7
{
  background: linear-gradient(180deg, #1ABE48 0%, #263D2C 100%);
}

body .page .content .skills .skill-type-group .specials-type-group .tile.color8
{
  background: linear-gradient(180deg, #F85C5B 0%, #803130 100%);
}

body .page .content .skills .skill-type-group .specials-type-group .tile,
body .page .content .skills .skill-type-group .specials-type-group .tile a
{
  color: #FFFFFF;
}

body .page .content .skills .skill-type-group .specials-type-group .tile .name
{
  padding-top: 10px;
  padding-bottom: 10px;

  text-align: center;
}

body .page .content .skills .skill-type-group .specials-type-group .tile .header
{
  flex-direction: column;

  gap: 10px;
}

body .page .content .skills .skill-type-group .specials-type-group .tile .header .icon img
{
  max-width: 120px;

  border-radius: 8px;
}

body .page .content .skills .skill-type-group .specials-type-group .tile .header .data
{
  width: 100%;

  display: flex;
  
  flex-direction: column-reverse;
  
  gap: 5px;

  text-align: center;
}

body .page .content .skills .skill-type-group .specials-type-group .tile .header .data .level
{
  padding: 0px;
}

body .page .content .skills .skill-type-group .specials-type-group .tile .coins
{
  display: flex;
  
  gap: 5px;
  
  align-items: center;
  justify-content: center;
}

body .page .content .skills .skill-type-group .specials-type-group .tile .coins .value
{
  justify-content: center;
}

body .page .content .skills .skill-type-group .specials-type-group .tile .hint
{
  padding: 0px;

  color: #fff;
}

body .page .content .skills .skill-type-group .specials-type-group .tile .footer
{
  padding-top: 10px;
}




/* CLands */

body .page .content .skills .skill-type-group
{

}

body .page .content .skills .skill-type-group .areas,
body .popup .popup-content .img-list
{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;

  gap: 10px;

  margin-bottom: 15px;
}

body .page .content .skills .skill-type-group .areas .area,
body .popup .popup-content .img-list .item
{
  width: calc(25% - 24px);
  padding: 8px 7px;

  background: var(--light-background);
  border-radius: 5px;

  transition: transform .3s;
}

body .page .content .skills .skill-type-group .areas .area.disable,
body .popup .popup-content .img-list .item.disable
{
  filter: grayscale(.5);
  opacity: 50%;
}

body .page .content .skills .skill-type-group .areas .area.denied,
body .popup .popup-content .img-list .item.denied
{
  filter: grayscale(1);
  opacity: 75%;
}

body .page .content .skills .skill-type-group .areas .area img,
body .popup .popup-content .img-list .item img
{
  max-width: 100%;
  border-radius: 8px;
}

body .popup .popup-content .img-list .item .label.small
{
  font-size: 70%;

  text-align: center;
}

body .areas .area .label.small svg
{
  width: 16px;
  height: 16px;

  vertical-align: middle;
}

body .page .content .skills .skill-type-group .areas .area .label.small,
body .page .content .cards-list .card .label.small
{
  padding-bottom1: 5px;

  font-size: 75%;

  text-align: center;
}

body .img-list .item .label.small svg,
body .cards-list .card .label.small svg
{
  width: 20px;
  height: 20px;

  vertical-align: middle;
}



body .page .content .skills .skill-type-group .cards, body .page .content .cards-list
{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;

  gap: 10px;

  margin-bottom: 15px;
}

body .page .content .cards-list
{
  margin-top: 15px;
}

body .page .content .skills .skill-type-group .cards .card, body .page .content .cards-list .card
{
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  width: calc(25% - 24px);

  padding: 8px;

  background: var(--light-background);
  border-radius: 8px;
}

body .page .content .cards-list.columns3 .card
{
  width: calc(33% - 24px);
}

body .page .content .skills .skill-type-group .cards .card.backlight, body .page .content .cards-list .card.backlight
{
  border: 1px solid var(--gold-color);
}

body .page .content .skills .skill-type-group .cards .card img, body .page .content .cards-list .card img
{
  max-width: 100%;
  border-radius: 8px;
}


body .popup .popup-content .land
{

}

body .popup .popup-content .land .image
{
  height: 220px;
}



/* CAuction */

body .auctions
{

}

body .auctions .card
{

}

body .auctions .card .name
{

  font-size: 95%;
  text-align: center;

  margin-top: 5px;
  margin-bottom: 5px;
}

body .auctions .card .lable.small
{
  padding: 0px;
}


body .auctions .card .stake
{
  margin-top: 10px;
}

body .auctions .card .timer
{
  margin-top: 5px;
}








body .standart-button
{
  display: flex;

  gap: 5px;

  padding: 5px 10px;

  background1: #2F343B;

  border1: 1px solid #2F343B;

  border-radius: 5px;

  justify-content: center;

  align-items: center;
}

body .standart-button svg
{
  width: 16px;
  height: 16px;
}

body .buttons a.disable, body .standart-button.disable, body .disable .standart-button
{
  color: var(--hints-color);

  background: none;
  border: none;
}

body .big-button
{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  padding: 10px 15px;
  border-radius: 10px;

  background: var(--gold-color);
}

body .big-button a
{
  display: flex;
  align-items: center;

  color: var(--button-color);
  font-size: 120%;
}

body .filter
{
  padding: 4px;

  margin-bottom: 15px;

  font-size: 120%;

  border-radius: 10px;

  background: var(--light-background);
}

body .filter.line-style
{
  display: flex;

  gap: 2px;

  flex-wrap: wrap;

  justify-content: space-between;
}

body .filter > a
{
  display: inline-block;

  font-size: 85%;

  text-align: center;
}

body .filter > a.active
{
  border-radius: 5px;

  color: var(--base-text-color);
  background: var(--middle-background);
}

@keyframes pulse 
{
  0% 
  {
    transform: scale(0.85);
    opacity: 0.5;
  }

  25% 
  {
    transform: scale(0.95);
    opacity: 1;
  }

  50% 
  {
    transform: scale(1.05);
    opacity: 1;
  }

  75% 
  {
    transform: scale(0.95);
    opacity: 1;
  }

  100% 
  {
    transform: scale(0.85);
    opacity: 0.5;
  }
}

@media (min-width: 290px)
{
  body .filter.line-style
  {
    gap: 1px;
  }

  body .filter > a
  {
    font-size: 80%;
    padding: 7px 5px;
  }
}

@media (min-width: 320px)
{
  body .filter.line-style
  {
    gap: 2px;
  }

  body .filter > a
  {
    font-size: 80%;
    padding: 8px 6px;
  }
}

@media (min-width: 420px)
{
  body .filter.line-style
  {
    gap: 5px;
  }

  body .filter > a
  {
    font-size: 85%;
    padding: 8px 7px;
  }
}


/* Earn Page */

body #earn-content
{

}

/* Earn Page */

/* Levels Page */

.levels-list
{
  
}

.levels-list .arrows
{
  position: relative;
}

.levels-list .arrows .arrow
{
  position: absolute;

  top: 75px;

  z-index: 1;
}

.levels-list .arrows .arrow svg
{
  width: 40px;
  height: 40px;
}

.levels-list .arrows .arrow.prev
{
  left: 0px;
}

.levels-list .arrows .arrow.next
{
  right: 0px;
}

.levels-list .arrows .arrow.disable
{
  filter: grayscale(.5);
  opacity: 50%;
}

.levels-list .slide-container
{
  position: relative;

  display: flex;
}

.levels-list .level-item
{
  width: 100%;
  min-width: 100%;
}

.levels-list .level-item .header
{
  margin-bottom: 20px;

  text-align: center;

  color: var(--base-text-color);
}

.levels-list .level-item .header .image
{
  min-height: 150px;

  margin-bottom: 10px;
}

.levels-list .level-item .header .image img
{
  max-height: 60vw;
}

.levels-list .level-item .header .name
{
  margin-bottom: 10px;

  font-size: 160%;
  font-weight: var(--title-font-weight);

  color: var(--gold-color);
}

.levels-list .level-item .header .hint
{
  font-size: 120%;
  font-weight: var(--title-font-weight);
}

.levels-list .level-item .levels
{
  display: flex;

  flex-direction: column;

  gap: 2vw;
}

.levels-list .level-item .levels .level
{
  display: flex;

  padding: 2vw 5vw;

  gap: 5px;

  border1: 1px solid var(--gold-color);
  background: var(--dark-background);

  border-radius: 2vw;

  align-items: center;

  justify-content: space-between;
}

.levels-list .level-item .levels .level .stat
{
  font-weight: var(--title-font-weight);
}

.levels-list .level-item .levels .level .icon
{
  display: flex;

  gap: 3px;

  align-items: center;
}

.levels-list .level-item .levels .level .icon svg
{
  width: 20px;
  height: 20px;
}

/* Levels Page */

.rain-page-effect-item
{
  position: absolute;
}

.rain-page-effect-item svg
{
  width: 17px;
  height: 17px;
}

canvas.effect
{
  position: absolute;

  display: none;

  top: 0;
  left: 0px;

  width: 100%;
  height: 100%;
}