.num-holder {
  display: inline-flex;
  align-items: baseline;
}
.num-holder .value {
  font-size: 1em;
}
.num-holder .unit {
  color: #8F8F8F;
  font-size: 0.5em;
}

.profile-card {
  display: flex;
  gap: 1.6rem;
  flex-direction: column;
}
.profile-card .profile-primary-section {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: stretch;
}
.profile-card .profile-info {
  flex-shrink: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.profile-card .profile-title {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.profile-card .profile-actions {
  display: flex;
  gap: 0.8rem;
}
.profile-card .profile-name {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}
.profile-card .profile-name.golden {
  color: #FFD600;
}
.profile-card .profile-name.blocked {
  color: rgb(150, 42, 42);
  text-decoration: line-through;
}
.profile-card .profile-account {
  font-size: 1.2rem;
  color: #8F8F8F;
}
.profile-card .profile-summary {
  position: relative;
  font-size: 1.2rem;
  padding: 8px 8px;
  color: #EFEFEF;
  white-space: pre-line;
  line-break: normal;
  background-color: #292935;
  border-radius: 0.8rem;
}
.profile-card .profile-summary:after {
  content: " ";
  border: 1rem solid;
  border-color: transparent transparent #292935 transparent;
  position: absolute;
  top: calc(-2rem + 1px);
  left: 2.2rem;
}
.profile-card .profile-session {
  font-size: 1rem;
  color: #8F8F8F;
}
.profile-card .profile-session .name {
  font-weight: 500;
}
.profile-card .profile-session .game {
  font-weight: 500;
  color: #EFEFEF;
}
.profile-card.online .profile-session .name {
  color: #EFEFEF;
}

.profile-wallet-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile-wallet-card .wallet-info {
  display: flex;
  align-items: center;
}
.profile-wallet-card .wallet-info .wallet-image {
  width: 24px;
  height: 24px;
}

.profile-level {
  color: #EFEFEF;
  border: 0.15rem solid #EFEFEF;
  border-radius: 50%;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  align-content: center;
  cursor: default;
  flex-shrink: 0;
  animation: glow-level-pulse 2s infinite alternate;
}
@keyframes glow-level-pulse {
  from {
    box-shadow: 0 0 0.5rem #EFEFEF;
    text-shadow: 0 0 0.5rem #EFEFEF;
  }
  to {
    box-shadow: 0 0 0.25rem #EFEFEF;
    text-shadow: 0 0 0.25rem #EFEFEF;
  }
}

.server-card {
  display: flex;
  gap: 1.6rem;
  justify-content: stretch;
  color: #8F8F8F;
}
.server-card .server-map-image {
  width: 96px;
  height: 72px;
  border-radius: 1.2rem;
  background-color: black;
  overflow: hidden;
}
.server-card .server-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}
.server-card .server-info .title {
  color: #EFEFEF;
}
.server-card .server-stats {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}
.server-card .server-stats .players {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.server-card .server-stats .players .value {
  color: #EFEFEF;
}

.subscription-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.subscription-card span {
  color: #8F8F8F;
}
.subscription-card .info {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.subscription-card button {
  color: #6b5400;
  background-color: #FFD600;
}
.subscription-card button:enabled:hover {
  outline: 0.1rem solid #FFD600;
  box-shadow: 0 0 0.8rem #FFD600;
}
.subscription-card button:enabled:active {
  box-shadow: 0 0 1.2rem #FFD600;
}

.wallet-card {
  color: #8F8F8F;
}
.wallet-card .account {
  color: #EFEFEF;
}
.wallet-card .balance {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wallet-card .balance .value {
  color: #EFEFEF;
}

.news-article {
  position: relative;
  border-bottom: 1px solid #292935;
}
.news-article .header {
  color: #8F8F8F;
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
}

.transfer-card {
  display: flex;
  gap: 0.8rem;
  flex-direction: column;
}
.transfer-card form {
  display: flex;
  gap: 0.8rem;
}
.transfer-card form input[name=recipient] {
  min-width: 96px;
  flex-grow: 1;
}
.transfer-card form input[name=amount] {
  width: 96px;
  flex-grow: 0;
}

.transactions-card {
  display: flex;
  flex-direction: column;
}
.transactions-card .transaction-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  border-radius: 1.2rem;
}
.transactions-card .transaction-item:hover {
  background-color: #292935;
}
.transactions-card .transaction-item .info .explanation {
  color: #8F8F8F;
}
.transactions-card .transaction-item .info .date {
  color: #8F8F8F;
  font-size: 1rem;
}
.transactions-card .transaction-item .whom {
  color: #EFEFEF;
  font-weight: 500;
}
.transactions-card .transaction-item.incoming .amount {
  color: green;
}

.status-message {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.status-message .icon {
  font-size: 12rem;
}

.player-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  overflow: visible;
  color: #8F8F8F;
  padding: 1.2rem;
  border-radius: 1.2rem;
}
.player-card:hover {
  background-color: #292935;
}
.player-card .player-info {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.player-card .avatar {
  font-size: 0.72rem;
}
.player-card .account {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.player-card .account .name {
  color: #EFEFEF;
}
.player-card .account .name.golden {
  color: #FFD600;
}
.player-card .account .alias {
  color: #EFEFEF;
}
.player-card .session {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.player-card .session .value {
  color: #EFEFEF;
}

.product-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-card .product-image {
  background-color: #292935;
  width: 64px;
  height: 64px;
}
.product-card .product-label {
  padding: 1.2rem;
  border-radius: 1.2rem;
  background-color: #292935;
}
.product-card .product-info {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.product-card .product-details {
  display: flex;
  flex-direction: column;
}
.product-card .product-details .product-price {
  color: #8F8F8F;
}

.navigation-menu {
  padding: 1.2rem 0;
  background-color: #1A1A25;
  height: 100%;
  border-radius: 1.2rem;
}
.navigation-menu ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.navigation-menu ul li {
  font-size: 1.6rem;
  padding: 0.8rem 1.6rem;
  width: 12.8rem;
}
.navigation-menu ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: #EFEFEF;
  font-weight: normal;
  gap: 0.8rem;
}
.navigation-menu ul li a i {
  font-size: 2.4rem;
}
.navigation-menu ul li a:hover {
  color: #55449c;
}
.navigation-menu ul li a:hover i {
  background-color: #55449c;
}
.navigation-menu ul li.active a {
  color: #55449c;
}
.navigation-menu ul li.active a i {
  background-color: #55449c;
}
@media screen and (max-width: 640px) {
  .navigation-menu {
    border-radius: 0;
    height: auto;
    border-top: 0.1rem solid #8F8F8F;
  }
  .navigation-menu ul {
    flex-direction: row;
  }
  .navigation-menu ul li {
    padding: 0;
    font-size: 1.2rem;
  }
  .navigation-menu ul li a {
    flex-direction: column;
  }
}

.subscription-form {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.subscription-form .form-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.subscription-form .head {
  display: flex;
  flex-direction: column;
}
.subscription-form .head .logo {
  font-size: 12.8rem;
}
.subscription-form .head .logo i {
  float: left;
}
.subscription-form .plan-group {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 3.2rem;
}
.subscription-form .plan-group input[type=radio] {
  appearance: none;
  background: none;
  border: none;
  display: none;
}
.subscription-form .plan-group input[type=radio] + * {
  border-radius: 1.2rem;
}
.subscription-form .plan-group input[type=radio]:hover + * {
  outline: 0.1rem solid #9747FF;
  box-shadow: 0 0 1.6rem #9747FF;
}
.subscription-form .plan-group input[type=radio]:checked + * {
  outline: 0.1rem solid #9747FF;
  box-shadow: 0 0 2.4rem #9747FF;
}
.subscription-form ul {
  padding: 0.8rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.subscription-form ul li {
  list-style: none;
}
.subscription-form .subscription-plan-card {
  border-radius: 1.2rem;
  background-color: #292935;
  color: #EFEFEF;
  display: flex;
  padding: 1.2rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 96px;
  height: 112px;
}
.subscription-form .subscription-plan-card .duration {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.purchase-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3.2rem;
}
.purchase-form > * {
  flex-grow: 1;
  flex-shrink: 1;
}
.purchase-form .metadata {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.purchase-form .field {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.1rem dashed #8F8F8F;
}
.purchase-form .field .value {
  color: #8F8F8F;
}
.purchase-form .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.purchase-form .head .product-image {
  background-color: #292935;
  width: 256px;
  height: 256px;
}

.store-products {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.auth-token {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.6rem;
  font-size: 1.6rem;
  color: #8F8F8F;
  text-align: center;
}
.auth-token .image-holder {
  display: flex;
  justify-content: center;
}
.auth-token .image-holder > * {
  border-radius: 1.2rem;
  padding: 1.2rem;
  background-color: white;
  width: 16rem;
  height: 16rem;
}
.auth-token .image-holder > *.blur {
  background-color: none;
  filter: blur(0.5rem);
}
.auth-token .code {
  flex-grow: 1;
  flex-shrink: 1;
}
.auth-token .code > * {
  width: 16rem;
  text-align: center;
}

.server-page .server-players-chart-card {
  flex-shrink: 0;
}
.server-page .server-players-chart-card canvas {
  height: 100%;
}
.server-page .server-players {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 25.6rem;
}

.login-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #8F8F8F;
}
.login-page form {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  width: 32rem;
  max-width: 100%;
}
.login-page form h1 {
  text-transform: uppercase;
}
.login-page form .inputs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.login-page form .buttons {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.login-page form.error input {
  outline: 1px solid rgb(121, 53, 53);
}
.login-page .hint {
  font-size: 1.4rem;
}
.login-page .hint a {
  font-weight: bold;
  color: #EFEFEF;
}

.popup-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7607843137);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}
.popup-overlay .popup-card {
  padding: 3.2rem 4.8rem;
  min-width: 256px;
  min-height: 256px;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-overlay .popup-card .popup-actions {
  top: 0;
  right: 0;
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: flex-end;
  padding: 0 0.6rem;
  color: #8F8F8F;
  font-size: 1.5em;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1em;
}

.scroll-area {
  overflow: hidden !important;
  position: relative;
}
.scroll-area.uninitialized {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scroll-area.uninitialized::-webkit-scrollbar {
  display: none;
}

.profile-avatar {
  outline: 0.1rem solid #8F8F8F;
  width: 6.4em;
  height: 6.4em;
  overflow: hidden;
  border-radius: 100%;
}
.profile-avatar.online {
  outline-color: #9747FF;
  box-shadow: 0 0 1.2rem #9747FF;
  animation: glow-pulse 0.75s infinite alternate;
}
.profile-avatar.online.golden {
  outline-color: #FFD600;
  box-shadow: 0 0 1.2rem #FFD600;
  animation: gold-glow-pulse 0.75s infinite alternate;
}
@keyframes glow-pulse {
  from {
    box-shadow: 0 0 1.6rem #9747FF;
  }
  to {
    box-shadow: 0 0 0.8rem #9747FF;
  }
}
@keyframes gold-glow-pulse {
  from {
    box-shadow: 0 0 1.6rem #FFD600;
  }
  to {
    box-shadow: 0 0 0.8rem #FFD600;
  }
}
.profile-avatar label {
  cursor: pointer;
}
.profile-avatar label input {
  display: none;
}
.profile-avatar img {
  width: 100%;
}

.auth-token-page {
  padding: 32px;
  width: 100%;
  margin: 0;
  font-size: 16px;
  color: #8F8F8F;
  text-align: center;
}
.auth-token-page > * {
  margin-bottom: 16px;
}
.auth-token-page img {
  width: initial;
  height: initial;
}
.auth-token-page .qr-code {
  border-radius: 12px;
  padding: 12px;
  background-color: white;
  width: 160px;
  height: 160px;
}
.auth-token-page input {
  width: 160px;
  text-align: center;
}

.edit-profile-form {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.edit-profile-form .inputs {
  display: flex;
  justify-content: stretch;
  gap: 3.2rem;
}
.edit-profile-form .inputs .avatar {
  cursor: pointer;
  color: #8F8F8F;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.edit-profile-form .inputs .text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.edit-profile-form .actions {
  display: flex;
  justify-content: flex-end;
}
.edit-profile-form textarea {
  resize: none;
}

.map-image-form {
  display: flex;
  gap: 3.2rem;
  flex-direction: column;
  align-items: stretch;
}
.map-image-form .image {
  display: flex;
  justify-content: center;
}
.map-image-form .image > * {
  width: 12.8rem;
  height: 9.6rem;
  display: block;
}
.map-image-form .image > * img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.map-image-form .text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.join-discord-card {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.join-discord-card .actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.join-discord-card .actions a {
  display: flex;
}

.join-server-card {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.join-server-card .actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.join-server-card .actions a {
  display: flex;
}

.admin-page {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row !important;
}
.admin-page .admin-function-card-button {
  width: 12.8rem;
}
.admin-page .admin-function-card-button .icon {
  font-size: 3.2rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.admin-page .admin-function-card-button .title {
  height: 4.8em;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.admin-page .create-news-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.news-card {
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  gap: 1.2rem;
  flex-direction: column;
}

.bans-page .ban-card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #EFEFEF;
  color: #8F8F8F;
}
.bans-page .ban-card > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  height: 100%;
  word-wrap: normal;
  width: 12.8rem;
  height: 3.2rem;
  overflow: hidden;
}
.bans-page .ban-card .account .account-name {
  color: #EFEFEF;
}
.bans-page .ban-card a {
  color: #EFEFEF;
}
.bans-page .ban-card:hover {
  background-color: #292935;
}
.bans-page .ban-card .ban-link:hover {
  color: #767575;
}

.account-inventory {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  width: calc(10rem * 3);
  max-height: calc(10rem * 3);
}
.account-inventory .inventory-cell {
  padding: 0.8rem;
  width: 10rem;
  height: 10rem;
}
.account-inventory .inventory-cell .inventory-item {
  width: 100%;
  height: 100%;
  background-color: #292935;
  border-radius: 1.2rem;
  cursor: pointer;
}
.account-inventory .inventory-cell .inventory-item:hover {
  background-color: #04050E;
}
.account-inventory .inventory-cell .inventory-item .inventory-item-image {
  width: 100%;
  height: 100%;
}
.account-inventory .inventory-cell .inventory-item .inventory-item-image img {
  width: 100%;
}
.account-inventory .inventory-cell .inventory-item.active {
  outline: 0.1rem solid;
  box-shadow: 0 0 1.2rem;
}
.account-inventory .inventory-cell .inventory-item.active.slot-team1 {
  outline-color: #e62727;
  color: #e62727;
}
.account-inventory .inventory-cell .inventory-item.active.slot-team2 {
  outline-color: #2054e4;
  color: #2054e4;
}
.account-inventory .inventory-cell .inventory-item.active.slot-avatar {
  outline-color: #9747FF;
  color: #9747FF;
}

.label {
  padding: 0.4rem;
  font-size: 0.8rem;
  color: #9747FF;
  border: 0.1rem solid #9747FF;
  border-radius: 0.8rem;
}

.page-layout {
  width: 100%;
  height: 100%;
}
.page-layout .page-elements {
  height: 100%;
  min-width: 360px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: stretch;
  position: relative;
  flex-grow: 1;
  padding: 1.6rem;
  gap: 2.4rem;
}
.page-layout .page-content {
  width: 100%;
  max-width: 768px;
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  overflow: hidden;
  width: 100%;
}
.page-layout .bottom-navigation {
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (max-width: 640px) {
  .page-layout {
    height: 100%;
  }
  .page-layout .page-elements {
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    gap: 0;
  }
  .page-layout .page-content {
    padding: 1.6rem;
  }
  .page-layout .bottom-navigation {
    padding: 0;
  }
}

i {
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  background-color: white;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
i.home {
  mask-image: url("../../icons/home.svg");
  -webkit-mask-image: url("../../icons/home.svg");
}
i.wallet {
  mask-image: url("../../icons/wallet.svg");
  -webkit-mask-image: url("../../icons/wallet.svg");
}
i.crown {
  mask-image: url("../../icons/crown.svg");
  -webkit-mask-image: url("../../icons/crown.svg");
}
i.profile {
  mask-image: url("../../icons/profile.svg");
  -webkit-mask-image: url("../../icons/profile.svg");
}
i.server {
  mask-image: url("../../icons/server.svg");
  -webkit-mask-image: url("../../icons/server.svg");
}
i.bag {
  mask-image: url("../../icons/bag.svg");
  -webkit-mask-image: url("../../icons/bag.svg");
}
i.topup {
  mask-image: url("../../icons/topup.svg");
  -webkit-mask-image: url("../../icons/topup.svg");
}
i.transfer {
  mask-image: url("../../icons/transfer.svg");
  -webkit-mask-image: url("../../icons/transfer.svg");
}
i.walking-person {
  mask-image: url("../../icons/walking-person.svg");
  -webkit-mask-image: url("../../icons/walking-person.svg");
}
i.person {
  mask-image: url("../../icons/person.svg");
  -webkit-mask-image: url("../../icons/person.svg");
}
i.chat-buble {
  mask-image: url("../../icons/chat-buble.svg");
  -webkit-mask-image: url("../../icons/chat-buble.svg");
}
i.important-chat-buble {
  mask-image: url("../../icons/important-chat-buble.svg");
  -webkit-mask-image: url("../../icons/important-chat-buble.svg");
}
i.users {
  mask-image: url("../../icons/users.svg");
  -webkit-mask-image: url("../../icons/users.svg");
}
i.profile-settings {
  mask-image: url("../../icons/profile-settings.svg");
  -webkit-mask-image: url("../../icons/profile-settings.svg");
}
i.qr {
  mask-image: url("../../icons/qr.svg");
  -webkit-mask-image: url("../../icons/qr.svg");
}
i.success {
  mask-image: url("../../icons/success.svg");
  -webkit-mask-image: url("../../icons/success.svg");
}
i.fail {
  mask-image: url("../../icons/fail.svg");
  -webkit-mask-image: url("../../icons/fail.svg");
}
i.steam {
  mask-image: url("../../icons/steam.svg");
  -webkit-mask-image: url("../../icons/steam.svg");
}
i.discord {
  mask-image: url("../../icons/discord.svg");
  -webkit-mask-image: url("../../icons/discord.svg");
}
i.key {
  mask-image: url("../../icons/key.svg");
  -webkit-mask-image: url("../../icons/key.svg");
}
i.secondary {
  background-color: #8F8F8F;
}
i.golden {
  background-color: #FFD600;
}
i.success {
  background-color: green;
}
i.fail {
  background-color: red;
}

.szh-menu-container .szh-menu {
  width: max-content;
  background-color: #1A1A25;
  padding: 0;
  font-size: 1.2rem;
}
.szh-menu-container .szh-menu__item {
  color: #EFEFEF;
  list-style: none;
  cursor: pointer;
  padding: 0.8rem 1.6rem;
}
.szh-menu-container .szh-menu__item:hover {
  background-color: #292935;
}

:root {
  font-size: 10px;
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  background-color: #04050E;
  color: #EFEFEF;
  min-width: 296px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

* {
  box-sizing: border-box;
}

button:disabled, input:read-only, input:disabled {
  color: #8F8F8F;
  color: #8F8F8F;
  filter: saturate(0.25);
}

img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card {
  padding: 1.2rem;
  border-radius: 1.2rem;
  background-color: #1A1A25;
}
.card.golden {
  border: 0.1rem solid #FFD600;
}

a {
  text-decoration: none;
  color: inherit;
}
a:visited {
  color: inherit;
}

button {
  border: none;
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
  border-radius: 0.8rem;
  background-color: #55449c;
  color: #EFEFEF;
  cursor: pointer;
}
button:enabled:hover {
  outline: 0.1rem solid #9747FF;
  box-shadow: 0 0 0.8rem #9747FF;
}
button:enabled:active {
  box-shadow: 0 0 1.2rem #9747FF;
}
button:disabled {
  cursor: default;
}

button.small {
  padding: 0.8rem;
}
button.small i {
  float: left;
}

input, textarea {
  font-size: 1.6rem;
  outline: none;
  border: none;
  padding: 0.8rem;
  border-radius: 0.8rem;
  background-color: #292935;
  color: #EFEFEF;
}

.card-icon {
  font-size: 3.2em;
}

.image-holder {
  border-radius: 1.2rem;
  overflow: hidden;
}
.image-holder img {
  width: 100%;
}

.transfer-popup {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
}
.transfer-popup .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3.2rem;
}
.transfer-popup .head .head-icon {
  font-size: 6.4rem;
}
.transfer-popup .inputs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.transfer-popup button {
  width: 100%;
}

.action {
  cursor: pointer;
}

.placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #8F8F8F;
  flex-direction: column;
}
.placeholder i {
  font-size: 6.4rem;
}

a button {
  width: 100%;
}

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