@import url("urn:scrapbook:download:error:https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  box-sizing: border-box;
  --background-color: black;
  --popover-background: rgba(30, 30, 30, 0.84);
  --font-color-white: rgba(255, 255, 255, 1);
  --row-background: rgba(255, 255, 255, 0.1);
  --row-hover: rgba(255, 255, 255, 0.2);
  --font-color-white-opacity-64: rgba(255, 255, 255, 0.64);
  --font-color-white-opacity-48: rgba(255, 255, 255, 0.48);
  --color-success: #60C48B;
  --color-success-dark: #458561;
  --color-danger: #C46060;
  --color-danger-dark: #934c4c;
  --color-warning: #c4ba60;
  --color-warning-dark: #857F45;
  --color-gray-dark: #121114;
  --color-gray: rgba(0, 0, 0, 0.02);
  --color-gray-light: #373639;
  --color-border: #4B4B4D;
  --border-style: 1px solid var(--color-border);

  --infrax-system-black: #000;
  --infrax-system-black-60: rgba(0, 0, 0, 0.6);
  --infrax-system-dark-gray: #151515;
  --infrax-system-gray: #1d1d1d;
  --infrax-system-medium-gray: #2b2b2b;
  --infrax-system-light-gray: #393939;
  --infrax-system-white: #FFFFFF;
  --infrax-system-white-80: rgba(255, 255, 255, 0.8);
  --infrax-system-white-60: rgba(255, 255, 255, 0.6);
  --infrax-system-white-40: rgba(255, 255, 255, 0.4);
  --infrax-system-white-20: rgba(255, 255, 255, 0.2);
  --infrax-system-white-10: rgba(255, 255, 255, 0.1);
  --infrax-system-white-06: rgba(255, 255, 255, 0.06);
  --infrax-system-success: #60C48B;
  --infrax-system-warning: #D5B768;
  --infrax-system-danger: #E05858;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.inter-light {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}

.inter-normal {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}

@font-face {
  font-family: 'Square Pixel 7';
  src: url("square_pixel-7.ttf");
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.infrax-system-blur {
  filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  height: 1000%;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
}

.infrax-system-blur.infrax-system-blur-on {
  display: block;
}

#loader img {
  width: 6rem;
}

html {
  font-size: 16px;
}

.mobile,
.mobile-only {
  display: none;
}

body {
  margin: 0;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background-color: var(--background-color);
  color: var(--font-color-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

body::-webkit-scrollbar {
  display: none;
}

button,
a,
#tablePopulated .table-row {
  cursor: pointer;
}

h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 4.5rem;
  font-family: 'Square Pixel 7', monospace;
  letter-spacing: 0.2rem;
  font-weight: 200;
  color: var(--infrax-system-white);
}

h1.infrax-subheader-title span {
  color: var(--infrax-system-white-60);
}

body main {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.not-found {
  position: fixed;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.not-found img {
  width: 10rem;
}

.not-found p {
  width: 30rem;
  text-align: center;
}

.not-found h1 {
  color: white;
  font-size: 5rem;
  margin-bottom: 0px;
}

.not-found a {
  color: white;
  font-weight: 300;
}

#world-map {
  border-radius: 1.5rem;
  height: 95%;
}

#world-map div {
  height: 100%;
}

.top-row-coin-stats {
  display: flex;
}

.top-row-coin-stats div {
  color: var(--font-color-white-opacity-64);
  text-align: center;
  font-weight: 300;
  margin-right: 1.875rem;
  width: 10rem;
}

.top-row-coin-stats div div {
  padding: 0.75rem;
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  width: 100%;
  color: white;
  font-size: 1.5rem;
}

.job-form-container {
  overflow-y: scroll;
}

.job-form-inputs {
  margin-bottom: 8rem;
}

.job-form-container::-webkit-scrollbar {
  display: none;
}

.job-form-container {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.network-table-body .network-table-body-rows .table-row:hover {
  background-color: var(--row-hover);
}

header img {
  max-height: 3.25rem;
  width: auto;
}

body #network-main main {
  color: var(--font-color-white);
  width: 100%;
}

.network-content-container {
  padding: 2rem 3rem;
  margin-top: 6.75rem;
}

.network-content-container.infrax-jobs-form-drawer {
  margin: 0;
  padding: 0;
}

.menu-open header {
  width: calc(100% - 25rem);
}


header {
  position: fixed;
  height: 6.75rem;
  width: calc(100% - 7.75rem);
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: var(--infrax-system-black);
  border-bottom: 1px solid var(--infrax-system-white-10);
  display: flex;
  justify-content: space-between;
}

header.header-transparent {
  border-bottom: none;
  z-index: 5;
  /* transparent */
}

header .header-left-stats,
header .header-right-stats {
  display: flex;
  align-items: center;
}

header .header-right-stats .eth-balance {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

header .header-right-stats .eth-balance img {
  margin: 0 0.5rem;
  height: 2rem;
}

header .header-right-stats .eth-balance span {
  color: var(--infrax-system-white-60);
}

.outlet-container {
  margin-left: 7.75rem;
  width: calc(100% - 7.75rem);
}

.infrax-profile-wallet-management {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.infrax-profile-wallet-management .infrax-staking-top-tiles {
  width: calc(30% - 1rem);
  margin-right: 1rem;
}

.infrax-profile-wallet-management .infrax-staking-top-tiles .infrax-info-tile {
  width: 100%;
}

.infrax-profile-wallet-management .infrax-staking-top-tiles .infrax-info-tile:first-child {
  margin-bottom: 1rem;
}

.infrax-profile-wallet-console {
  width: 70%;
}

.infrax-profile-wallet-console .infrax-info-tile.infrax-action-tile.infrax-staking-region {
  height: 17rem;
}

.network-splash {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.network-splash h1 {
  font-size: 5rem;
}

.network-splash h2.subheader {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 300;
}

.network-splash .splash-info-row {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
}

.network-splash .splash-info-row .splash-info-tile {
  display: flex;
  flex-direction: row;
  width: 10rem;
  justify-content: center;
}

.splash-info-tile p {
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--infrax-system-white-80);
}

.splash-info-tile div.value {
  display: flex;
  flex-direction: row;
}

.splash-info-tile div.value p {
  font-size: 2rem;
  font-weight: 400;
  color: white;
}

.splash-info-tile div.value img {
  height: 2rem;
  margin-right: 0.5rem;
}

.network-splash-background {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: flex;
  overflow: hidden;
  z-index: -2;
}

.network-splash-background video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.network-splash-background .tint {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.outlet-container.menu-open {
  margin-left: 25rem;
  width: calc(100% - 25rem);
}

.table-body {
  z-index: 0;
  background-color: var(--color-gray);
  border: var(--border-style);
}

.table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: var(--border-style);
}

.table-controls {
  display: flex;
  justify-content: space-between;
  margin: 2rem;
}

.table-controls .table-controls-left {
  display: flex;
  align-items: center;
}

.infrax-system-drawer {
  position: fixed;
  top: 0;
  right: -45rem;
  /* initial position outside the viewport */
  width: 45rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--infrax-system-black);
  z-index: 1000;
  box-shadow: -0.75rem 0 0.75rem 0.25rem rgba(0, 0, 0, 0.4);
  transition: right 0.3s ease-in-out;
  /* smooth transition animation */
}

.infrax-system-drawer.infrax-system-drawer-open {
  right: 0;
  /* slide in from the right */
}

.infrax-system-drawer .infrax-system-drawer-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: var(--infrax-system-gray);
  align-items: center;
  height: 6.75rem;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--infrax-system-white-10);
}

.infrax-system-drawer-content {
  padding: 1.5rem 1.5rem 0 1.5rem;
  height: 100%;
  overflow-y: scroll;
}

.infrax-system-drawer .infrax-system-drawer-header h2 {
  font-size: 1.75rem;
  line-height: 2.75rem;
  font-weight: 400;
}

.infrax-system-drawer .infarx-system-drawer-header img {
  width: 2.5rem;
  cursor: pointer;
}

.infrax-system-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45rem;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  background-color: var(--infrax-system-gray);
  align-items: center;
  padding: 0 2rem 2rem 2rem;
  border-radius: 2rem;
}

.infrax-system-modal h3 {
  font-size: 2rem;
  font-family: 'Square Pixel 7', monospace;
  font-weight: 200;
  color: var(--infrax-system-white-80);
  line-height: 3rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.infrax-system-modal .infrax-system-modal-header {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding-top: 2rem;
  cursor: pointer;
}

.infrax-system-modal p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  color: var(--infrax-system-white-60);
  margin-bottom: 2rem;
  text-align: center;
}

.infrax-system-modal .infrax-system-modal-header img {
  margin: 0;
  height: 2rem;
}

.infrax-system-modal img {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.infrax-system-modal .infrax-button-row {
  width: 100%;
  display: flex;
  justify-content: center;
}

.infrax-system-modal .infrax-button-row button {
  margin: 0.5rem;
}

.network-form-row.infrax-drawer-submit {
  position: fixed;
  height: 6.75rem;
  /* NOTE: This is ugly - fix it */
  margin-left: -1.5rem;
  width: 45rem;
  margin-bottom: 0;
  bottom: 0rem;

  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: var(--infrax-system-gray);
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid var(--infrax-system-white-10);
}

.infrax-drawer-submit button {
  width: 100%;
}

.table-controls .table-controls-left h2 {
  margin: 0;
}

.table-controls .table-controls-left img {
  width: 3rem;
  margin: 0.375rem 1rem 0.375rem 0;
}

.table-row-header .table-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  font-weight: 300;
}

.table-cell-controls {
  display: flex;
  flex-direction: column;
  margin: 0 0.75rem;
}

.table-row-header .table-cell p {
  margin: 0;
  display: block;
}

.table-cell-controls img {
  width: 1rem;
  height: auto;
  opacity: 0.64;
}

.table-empty-state {
  display: flex;
  flex-direction: column;
  height: 34rem;
  justify-content: center;
  align-items: center;
}

.table-empty-state>* {
  margin: 1rem 0;
}

.table-empty-state img {
  max-width: 5rem;
}

.table-empty-state button {
  height: auto;
}

.table-empty-state.no-jobs {
  display: none;
}

.pagination button,
button.infrax-system-button {
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  line-height: 1.175rem;
  font-weight: 300;
  color: var(--infrax-system-white);
  background-color: var(--infrax-system-white-06);
  border: 1px solid var(--infrax-system-white-40);
}

button.infrax-system-button.connect-wallet-button {
  display: flex;
  align-items: center;
}

button.infrax-system-button.connect-wallet-button img {
  height: 1.5rem;
  margin-left: 0.5rem;
}

.pagination button:hover,
button.infrax-system-button:hover {
  background-color: var(--infrax-system-white-20);
}

button.infrax-system-button:focus {
  background-color: var(--infrax-system-white-40);
}

.pagination button:disabled,
button.infrax-system-button:disabled {
  background-color: var(--infrax-system-white-06);
  border: 1px solid var(--infrax-system-white-06);
  color: var(--infrax-system-white-40);
}

.pagination button:disabled img {
  opacity: 0.4;
}

.pagination button img {
  opacity: 0.8;
  width: 1.5rem;
  height: auto;
}

.pagination button {
  line-height: 0;
}

button.infrax-system-button.infrax-system-button-primary {
  border: none;
  background-color: var(--infrax-system-white);
  color: var(--infrax-system-black);
}

button.infrax-job-row-button {
  border: none;
  background-color: var(--infrax-system-white);
  color: var(--infrax-system-black);
  padding: 0.5rem 3rem;
  font-size: 1rem;
  width: 13.25rem;
  font-weight: 300;
  border-radius: 0.5rem;
}

button.infrax-job-row-button:disabled {
  border: none;
  background-color: var(--infrax-system-dark-gray);
  color: var(--infrax-system-white-60);
  padding: 0.5rem 3rem;
  font-size: 1rem;
  font-weight: 300;
  border-radius: 0.5rem;
}

button.infrax-system-button.infrax-system-button-primary:hover {
  background-color: var(--infrax-system-white-80);
}

button.infrax-system-button.infrax-system-button-primary:focus {
  background-color: var(--infrax-system-white-80);
  color: var(--infrax-system-black-60);
}

button.infrax-system-button.infrax-system-button-primary:disabled {
  background-color: var(--infrax-system-white-20);
  color: var(--infrax-system-white-40);
}

button.infrax-system-button.infrax-system-button-tertiary {
  border: none;
  background-color: var(--infrax-system-medium-gray);
  color: var(--infrax-system-white);
}

button.infrax-system-button.infrax-system-button-tertiary:hover {
  background-color: var(--infrax-system-light-gray);
}

button.infrax-system-button.infrax-system-button-tertiary:focus {
  background-color: var(--infrax-system-light-gray);
  color: var(--infrax-system-white-60);
}

button.infrax-system-button.infrax-system-button-tertiary:disabled {
  background-color: var(--infrax-system-black);
  color: var(--infrax-system-white-40);
}

button.infrax-system-button.infrax-system-button-tertiary.infrax-app-button {
  border: 1px solid var(--infrax-system-white-20);
  background-color: var(--infrax-system-white-10);
  color: var(--infrax-system-white);
}

button.infrax-system-button.infrax-system-button-tertiary.infrax-app-button:hover {
  background-color: var(--infrax-system-white-06);
}

button.infrax-system-button.infrax-system-button-tertiary.infrax-app-button:focus {
  background-color: var(--infrax-system-light-gray);
  color: var(--infrax-system-white-60);
}

button.infrax-system-button.infrax-system-button-tertiary.infrax-app-button:disabled {
  background-color: var(--infrax-system-black);
  color: var(--infrax-system-white-40);
}

.infraxFancyButton {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 3rem;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.infraxFancyButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.infraxFancyButton:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.05);
}

.infraxFancyButton:hover::before {
  left: 100%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

button.infraxFancyButton {
  animation: pulse 2s infinite;
}

.app-description {
  display: flex;
  max-width: 100%;
}

.app-description img {
  width: 8rem;
  height: 8rem;
  margin-right: 1rem;
}

.form-cell .app-description .app-description-label p {
  width: auto;
}

#popoverContainer #newJobSelect {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
}

#newJob {
  width: 100%;
  display: flex;
}

#newJob #newJobLogo {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#newJob #newJobLogo img {
  width: 20.625rem;
}

#newJob .job-form-container {
  width: 1216px;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
}

.job-form-container .new-job-inner-container {
  margin-top: 8rem;
  width: 958px;
}

.job-form-container .new-job-inner-container h1 {
  margin-top: 0;
  margin-bottom: 0.875rem;
  color: var(--font-color-white);
}


.job-form-container .new-job-inner-container hr {
  border: 0.5px solid var(--color-border);
  width: 18.75rem;
  position: relative;
  margin-left: 0;
}

.job-form-container .new-job-inner-container .job-upper-row {
  display: flex;
  justify-content: space-between;
}

.form-row {
  display: flex;
  width: 100%;
  margin-bottom: 1.875rem;
}

.form-cell label {
  margin-left: 0.75rem;
  color: var(--font-color-white);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
}

.form-cell input[type="text"],
.form-cell label {
  display: block;
}

.form-cell input[type="text"] {
  border-radius: 0.75rem;
  padding: 1rem;
  background-color: var(--color-gray);
  border: var(--border-style);
  color: var(--font-color-white);
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 300;
  margin-right: 2rem;
  margin-top: 0.625rem;
}

.form-cell input[type="text"]::placeholder {
  color: var(--font-color-white-opacity-64);
}

/* Custom File Input */
input[type=file] {
  border-radius: 0.75rem;
  padding: 1rem;
  background-color: var(--color-gray);
  border: var(--border-style);
  color: var(--font-color-white);
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 300;
  margin-right: 2rem;
  margin-top: 0.625rem;
}

input[type=file]::file-selector-button {
  margin-right: 1.25rem;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 0.625rem;
  font-weight: 300;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
  background-color: transparent;
  transition: background .2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
  font-weight: 400;
}


#jobAIPrompt {
  margin-top: 1.25rem;
  width: 100%;
  margin-right: 2rem;
  border-radius: 0.75rem;
  padding: 1rem;
  background-color: var(--color-gray);
  border: var(--border-style);
  color: var(--font-color-white);
}

/* Customize the label (the container) */
.checkbox-custom-form {
  display: block;
  position: relative;
  padding-left: 2.25rem;
  margin-top: 0;
  cursor: pointer;
  font-size: 1.375rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-custom-form input {
  z-index: 105;
  position: absolute;
  opacity: 0;
  left: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.375rem;
  width: 1.375rem;
  border-radius: 0.125rem;
  border: 2px solid var(--font-color-white-opacity-48);
}

/* On mouse-over, add a grey background color */
.checkbox-custom-form:hover input~.checkmark {
  background-color: var(--);
}

/* When the checkbox is checked, add a blue background */
.checkbox-custom-form input:checked~.checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-custom-form input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-custom-form .checkmark:after {
  left: 0.375rem;
  top: 0.25rem;
  width: 0.375rem;
  height: 0.625rem;
  border: solid black;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.form-cell-checkbox {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;

}

.expanded-information-details a {
  color: white;
}

.progress-bar-outer {
  position: relative;
  width: 75%;
  height: 2rem;
  background-color: var(--font-color-white-opacity-48);
}

.progress-bar-inner {
  position: absolute;
  z-index: 50;
  top: 0;
  height: 100%;
  background-color: white;
}

.progress-bar-text {
  z-index: 51;
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: absolute;
  color: black;
  font-size: 1rem;
  padding: 0 0.5rem;
}

.progress-bar-text .progress-bar-stats {
  font-weight: 400;
}

.job-execute-panel {
  position: fixed;
  bottom: 1rem;
  right: 2rem;
}

.job-upper-row-image img {
  position: absolute;
}

.fan-overlay-1 {
  margin-left: 0.625rem;
}

.fan-overlay-2 {
  margin-left: 1.25rem;
  margin-top: 1rem;
  animation: rotateFan 2s linear infinite;
}

.fan-overlay-3 {
  margin-left: 8.125rem;
  margin-top: 8.4375rem;
}

.hidden {
  display: none;
}

@keyframes rotateFan {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* New Node Stuff */
.network-container {
  display: flex;
}

.network-menu {
  background-color: var(--infrax-system-black);
  padding: 0;
  position: fixed;
  width: 25rem;
  max-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.menu-footer-content {
  margin-top: auto;
}

.network-menu.nav-menu-closed {
  width: 7.75rem;
}

.required-fields {
  margin-bottom: 0px;
}

.credits {
  color: black;
  cursor: default;
}

.jvectormap-legend-cnt {
  display: none !important;
  /* Hide the legend containers */
}

.social-icons {
  width: 8rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: 2rem;
}

.footer {
  margin-left: 2rem;
}

.social-icons img {
  width: 2rem;
}

.table-cell .icons {
  font-size: 1.5rem;
}

.footer a {
  color: var(--font-color-white-opacity-48);
}

.footer a:hover {
  color: white;
}

.table-cell.table-cell-link button {
  background-color: transparent;
  color: white;
  text-decoration: underline;
  border: none;
}

#network-highlighted-nodes .highlighted-node:hover {
  background-color: var(--row-background);
}

.icon-container#profile-panel-button {
  margin-bottom: 40px;
}

.profile-column-cell.profile-cell-info p {
  font-family: 'Square Pixel 7', monospace;
  font-size: 2rem;
  color: var(--font-color-white-opacity-64);
  margin: 1rem 0;
}

.profile-column-cell.profile-cell-info strong {
  color: white;
  font-weight: 400;
}

.profile-cell-image {
  width: 50%;
  display: flex;
  justify-content: center;
}

.profile-cell-image img {
  width: 20rem;
  height: 20rem;
}

.menu-header-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
}

.menu-header-controls .infrax-logo {
  height: 2.75rem;
}

.icons-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.75rem 1.25rem;
}

.infrax-subheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-table-header {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}

.object-filter {
  display: flex;
  align-items: center;
  width: 40rem;
}

.object-filter input {
  background-color: var(--infrax-system-white-06);
  border: 1px solid var(--infrax-system-white-40);
  width: 100%;
  border-radius: 4rem;
  padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  color: var(--infrax-system-white-60);
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 300;
}

#profile-container .infrax-subheader h2 {
  margin-bottom: 1rem;
}

.infrax-subheader h2 {
  font-family: 'Square Pixel 7', monospace;
  font-weight: 200;
  letter-spacing: 1px;
  font-size: 2rem;
  line-height: 2rem;
}

.infrax-subheader h2 span {
  color: var(--infrax-system-white-60);
}

.object-filter input:focus,
.object-filter input:active {
  outline: none;
  background-color: var(--infrax-system-white-20);
  border: 1px solid var(--infrax-system-white);
}

.object-filter img.search-icon {
  position: relative;
  left: 4.5rem;
  height: 1.5rem;
  filter: opacity(0.6);
}

.object-filter img.close-icon {
  position: relative;
  cursor: pointer;
  left: 35.5rem;
  height: 1.5rem;
  filter: opacity(0.6);
}

.icon-container {
  text-decoration: none;
  display: flex;
  padding: 1.5rem;
  overflow-x: hidden;
  transition: 0.4s;
  width: 5rem;
  cursor: pointer;
  margin-bottom: 0.75rem;
  border-radius: 1.25rem;
}

.icon-container.network-menu-open {
  width: 100%;
}

.icon-container span {
  display: none;
}

.icon-container.network-menu-open span {
  display: block;
  align-self: center;
  margin-left: 0.75rem;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--infrax-system-white-80);
}

.icon-container.active span {
  color: var(--infrax-system-white);
}

.icon-container img {
  width: 2rem;
  height: 2rem;
  opacity: 0.8;
}

.icon-container:hover {
  background-color: var(--infrax-system-white-06);
}

.icon-container.active {
  background-color: var(--infrax-system-white-10);
}

.icon-container.active img {
  opacity: 1;
}

.network-menu.nav-menu-closed .menu-header-controls {
  flex-direction: column-reverse;
}

.network-menu.nav-menu-closed .menu-header-controls {
  flex-direction: column-reverse;
}

.network-menu.nav-menu-closed .menu-header-controls>a {
  margin-top: 1.5rem;
}

.network-menu.nav-menu-closed .footer {
  display: none;
}

.network-menu.nav-menu-closed .social-icons {
  flex-direction: column;
  align-items: center;
  width: auto;
  margin: 0;
  margin-bottom: 1.5rem;
}

.infrax-menu-button {
  cursor: pointer;
}

.rotate-close-side-menu {
  transform: rotate(135deg)
}

.network-container .network-content-container {
  width: 87.5%;
}

.network-container .network-table-container,
.network-container .network-form-container,
.network-container .network-info-container {
  background-color: var(--color-gray);
  border: var(--border-style);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
}

.network-container .network-table-container,
.network-container .network-form-container {
  flex-direction: column;
}

.network-container #apps-container,
.network-container #jobs-container,
.network-container #profile-container,
.network-container #table-container {
  min-height: 37.5rem;
}

.network-table-body .table-row .table-cell:first-child {
  display: flex;
  justify-content: start;
}

.network-table-body .table-row .table-cell:last-child {
  display: flex;
  justify-content: flex-end;
}

.jvectormap-container {
  height: 100%;
  width: auto;
}

.jvectormap-tip {
  position: absolute;
  margin-bottom: 0.625rem;
  z-index: 1000;
  display: none;
  border: none;
  border-radius: 0.25rem;
  background: #fff;
  color: black;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  padding: 0.625rem 0.375rem;
}

.jvectormap-tip .country-label {
  font-weight: 600;
}

.jvectormap-tip img {
  margin-bottom: -5px;
  width: 1.25rem;
  height: auto;
}

.network-container .network-info-container .network-map-box {
  flex-grow: 1;
}

.infrax-network-layout .network-map-box {
  max-height: 38rem;
  min-height: 38rem;
  padding: 1.125rem 3rem 2rem 3rem;
  border-radius: 1.25rem;
  border: 1px solid var(--infrax-system-white-20);
}

#world-map {
  border-radius: 1.5rem;
  background-color: var(--infrax-system-black);
}

.infrax-network-layout .network-map-box #note {
  margin-bottom: 1rem;
  height: auto;
  font-weight: 300;
  color: var(--infrax-system-white-60);
}

.infrax-network-layout .network-map-box #note span {
  color: var(--infrax-system-white);
  font-weight: 600;
}

.infrax-info-tile {
  display: flex;
  flex-direction: row;
  padding: 1.75rem;
  justify-content: flex-start;
  align-items: center;
  border-radius: 1.25rem;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 2rem;
  height: 8rem;
  background-color: var(--row-background);
  color: var(--infrax-system-white-40);
}

.infrax-info-tile.infrax-action-tile .left-region .infrax-system-timer strong {
  color: var(--infrax-system-success);
}

.infrax-info-tile.infrax-action-tile {
  justify-content: space-between;
}

.infrax-info-tile.infrax-action-tile .left-region {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.infrax-info-tile.infrax-action-tile .left-region strong {
  font-weight: 400;
  color: var(--infrax-system-white);
}

.infrax-info-tile.infrax-action-tile.infrax-staking-region {
  background-color: transparent;
  border: 1px solid var(--infrax-system-white-20);
  flex-direction: column;
  justify-content: center;
}

.infrax-fake-input {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: var(--infrax-system-white-06);
  border: 1px solid var(--infrax-system-white-40);
  border-radius: 1rem;
  padding: 1rem;
}

.infrax-fake-input p {
  margin: 0;
  line-height: 0.75rem;
  font-size: 1rem;
}

.infrax-fake-input input {
  margin-top: 0.5rem;
  background-color: transparent;
  border: none;
  color: var(--infrax-system-white);
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-weight: 300;
}

.infrax-fake-input input:focus {
  outline: none;
}

.infrax-fake-input input::placeholder {
  color: var(--infrax-system-white);
}

.infrax-fake-input .infrax-fake-input-button-bar button {
  margin-left: 1rem;
  font-size: 1rem;
  line-height: 1rem;
  background-color: transparent;
  color: white;
  font-weight: 300;
  text-decoration: underline;
  border: none;
}

.infrax-fake-input .infrax-fake-input-button-bar button.max-button {
  padding: 1rem;
  background-color: var(--infrax-system-medium-gray);
  border-radius: 1rem;
  text-decoration: none;
}

.infrax-stake-bottom-button {
  margin-top: 2rem;
  width: 100%;
}

.infrax-stake-bottom-button button {
  width: 100%;
  padding: 1.5rem;
}

.infrax-info-tile span {
  font-size: 2rem;
  line-height: 3rem;
  color: white;
  display: block;
}

.infrax-info-tile span span {
  font-size: 1.5rem;
  display: inline;
  color: var(--infrax-system-white-60);
}

.infrax-info-tile .network-status-box {
  margin-top: 1rem;
  color: var(--font-color-white-opacity-64);
  font-weight: 300;
}

.infrax-info-tile img {
  display: inline-block;
  width: 4rem;
  margin-right: 1.5rem;
}

.network-information-status {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.network-info-container {
  height: 600px;
}

.app-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--infrax-system-white-40);
  width: 24%;
  margin-top: 2rem;
  border-radius: 0.5rem;
  padding: 2.5rem;
}

.app-tile .app-tile-header-row {
  display: flex;
  width: 100%;
  flex-direction: row;
}

.app-tile .app-tile-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-tile h4 {
  text-align: center;
  font-size: 1.75rem;
  line-height: 2.75rem;
  font-weight: 400;
  margin: 0;
}

.app-tile h5 {
  font-family: 'Square Pixel 7', monospace;
  color: var(--infrax-system-white-60);
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 300;
  margin: 0;
}

.app-tile h5 span {
  color: var(--infrax-system-white-40);
}

.app-tile .app-tile-image img {
  margin-right: 1rem;
  height: 8rem;
  width: auto;
}

.app-tile .app-tile-description {
  width: 100%;
}

.app-tile .app-tile-description p {
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: left;
  font-weight: 300;
  color: var(--infrax-system-white-60);
}

.app-tile-footer {
  width: 100%;
}

.app-tile-footer button {
  width: 100%;
}

.app-tile .app-tile-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.network-container .network-info-container .information-title {
  background-color: white;
  width: 100%;
  border-radius: 0.75rem;
  color: black;
  font-size: 2.375rem;
  padding: 0.75rem;
  text-align: center;
  font-weight: 600
}

.network-table-body-tiles {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.information-title span {
  font-weight: 200;
}

.container-header .information-title {
  background-color: white;
  max-height: 4.375rem;
  width: 21.875rem;
  border-radius: 0.75rem;
  color: black;
  font-size: 2.375rem;
  padding: 0.75rem;
  text-align: center;
  font-weight: 600
}

.container-header {
  display: flex;
  justify-content: space-between;
}

.report-a-bug,
.devlog {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 1rem;
}

.report-a-bug a,
.devlog a,
.network-status a {
  margin-left: 0.5rem;
  color: var(--infrax-system-white-80);
  text-decoration: none;
}

.report-a-bug img,
.devlog img {
  height: 1.5rem;
  filter: opacity(0.8);
}

.devlog-entry {
  margin-bottom: 2rem;
}

.network-status span div {
  margin-top: 0.1rem;
  margin-right: 0.375rem;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.625rem;
  background-color: var(--infrax-system-success);
}

#network-highlighted-nodes {
  width: calc(87.5% + 84px);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}

#network-highlighted-nodes .highlighted-node {
  width: 32%;
  margin-top: 0.8rem;
  margin-right: 0.4rem;
  margin-left: 0.4rem;
  border-radius: 1.25rem;
  padding: 1.25rem;
  background-color: var(--color-gray);
  border: var(--border-style);
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}



.on-demand {
  color: var(--font-color-white-opacity-64);
  font-weight: 300;
  font-size: 1rem;
}

.node-id {
  font-weight: 300;
  margin-top: 1.25rem;
}

.footer {
  margin-bottom: 2rem;
}

.footer p {
  font-weight: 300;
  color: var(--font-color-white-opacity-48);
}

.node-p-compute {
  font-family: 'Square Pixel 7', monospace;
  letter-spacing: 1px;
  font-weight: 200;
  font-size: 2rem;
}

.node-ram-vram {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 300;
}

.node-ram {
  font-size: 1rem;
  font-weight: 300;
}

button.infrax-black-button.small {
  margin-top: 2.5rem;
  width: 7.5rem;
  height: 3.75rem;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.network-table-title {
  margin-top: 1.25rem;
}

.network-table-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.625rem;
}

.network-table-heading h2,
.network-table-title h2 {
  margin-top: 0;
  display: block;
  color: white;
  margin-bottom: 1.25rem;
}

.network-table-body .table-row-header p {
  font-size: 1.25rem;
}

.network-table-body {
  border: none;
}

.network-table-body .table-row {
  border-bottom: none;
  background-color: var(--row-background);
  margin-bottom: 0.625rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
}

.network-empty-state {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  min-height: 32rem;
  background-color: var(--infrax-system-gray);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.network-empty-state img {
  width: 5.25rem;
}

.network-empty-state h2 {
  font-family: 'Square Pixel 7', monospace;
  color: var(--infrax-system-white-80);
  letter-spacing: 0.2rem;
  font-size: 2.25rem;
  line-height: 3.5rem;
  margin-bottom: 1rem;
}

.network-empty-state p {
  max-width: 30rem;
  color: var(--infrax-system-white-60);
  text-align: center;
  margin-top: 0rem;
  margin-bottom: 2rem;
}

.infrax-network-layout {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.infrax-network-layout .network-map-box {
  width: calc(70% - 1rem);
  margin-right: 1rem;
}

.infrax-network-layout .network-information-status {
  width: 30%;
}

.network-table-body .table-cell a {
  color: white;
}

.progress-bar-inner {
  border-radius: 0.375rem 0 0 0.375rem;
}

.progress-bar-inner-full {
  border-radius: 0.375rem;
  background-color: white;
  animation: pulse 5s infinite;
}

.progress-bar-outer {
  border-radius: 0.375rem;
}

.table-cell .progress-bar-text {
  margin-top: 0.375rem;
  justify-content: center;
}

.table-cell .progress-bar-outer {
  width: 100%;
}

.text-small-light {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--font-color-white-opacity-64);
}

.network-form-row a {
  color: white;
}

.network-form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.875rem;
}

.network-form-row h3 {
  margin-top: 0;
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
}

.network-form-row .form-cell label {
  margin-left: 0;
}

.network-form-row p {
  color: var(--font-color-white-opacity-64);
  font-size: 0.875rem;
}

.network-form-row .form-cell .file-upload-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.375rem;
  border: var(--border-style);
  height: 10rem;
}

.network-form-row .form-cell .file-upload-box span {
  display: block;
}

.network-form-row .form-cell select,
.network-form-row .form-cell input[type="number"] {
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 300;
  margin-right: 0;
  margin-top: 0.625rem;
  width: 7.5rem;
  background-color: var(--color-gray);
  border: var(--border-style);
  color: var(--font-color-white-opacity-64);
}

.network-form-row .form-cell input[type="number"] {
  padding: 0.375rem;
}

.network-form-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.network-form-group .form-cell {
  width: 8.75rem;
  margin-right: 1.25rem;
}

.network-form-row .form-cell input[type="text"],
.network-form-row .form-cell label {
  display: block;
}

.network-form-row .form-cell input[type="text"],
.network-form-row .form-cell textarea,
.network-form-row .form-cell p,
.network-form-row .form-cell .file-upload-box {
  width: 600px;
}

.network-form-row .form-cell input[type="text"] {
  border-radius: 0.375rem;
  padding: 0.375rem;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 300;
  margin-right: 2rem;
  margin-top: 0.625rem;
}

.network-form-row .form-cell input[type="text"]::placeholder {
  color: var(--font-color-white-opacity-64);
}

.network-form-row .form-cell textarea {
  border-radius: 0.375rem;
  padding: 0.375rem;
  height: 200px;
  background-color: var(--color-gray);
  color: var(--font-color-white-opacity-64);
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 300;
  margin-right: 0;
  margin-top: 0.625rem;
}

.network-table-heading img {
  cursor: pointer;
  height: 2.375rem;
}

.network-table-heading #country-name {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--font-color-white);
}

.network-table-heading #active-node-count {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--font-color-white-opacity-64);
}

.network-table-body .table-cell {
  width: 20%;
  text-align: center;
}

.profile-row {
  display: flex;
  justify-content: space-between;
}

.profile-row .profile-column {
  width: calc(50% - 1.25rem);
}

.profile-row .profile-column .profile-column-cell {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  border: var(--border-style);
  border-radius: 0.75rem;
  width: 100%;
  padding: 1.25rem 2.5rem;
}

.information-title-fix {
  width: 50%;
}

.infrax-staking-container-body {
  display: flex;
  flex-direction: column;
}

.infrax-staking-container-body .infrax-staking-top-tiles {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.infrax-staking-container-body .infrax-staking-top-tiles .infrax-info-tile {
  width: calc(30% - 1rem);
}

.infrax-staking-container-body .infrax-staking-top-tiles .infrax-staking-docs {
  width: calc(10% - 1rem);
}

.infrax-staking-container-body .infrax-staking-top-tiles .infrax-staking-docs button {
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
}

.infrax-staking-container-body .infrax-staking-bottom-tiles {
  flex-direction: column;
}

.infrax-staking-container-body .infrax-staking-bottom-tiles .infrax-info-tile {
  margin-bottom: 2rem;
}

.infrax-info-tile.infrax-action-tile.infrax-staking-region {
  height: auto;
}

/* Tablet breakpoint (768px and below) */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  header {
    width: 100%;
    padding: 1rem;
    height: 5.375rem;
  }

  header .report-a-bug,
  header .devlog {
    display: none;
  }

  .network-splash h2.subheader {
    font-size: 1rem;
  }

  .network-menu {
    bottom: 0px;
    flex-direction: row;
    height: 6rem;
    max-height: 6rem;
    z-index: 800;
  }

  .infrax-subheader {
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .infrax-network-layout {
    flex-direction: column;
  }

  .infrax-network-layout .network-map-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
    height: 20rem;
    padding: 1.25rem 0.5rem 0.5rem 0.5rem;
    max-height: auto;
    min-height: auto;
  }

  .infrax-network-layout .network-information-status {
    margin-bottom: 6rem;
    width: 100%;
  }

  .infrax-info-tile {
    margin-bottom: 1.5rem;
  }

  .infrax-subheader-title {
    font-size: 2rem;
  }

  .infrax-subheader .object-filter {
    width: 100%;
  }

  .infrax-subheader .object-filter input {
    border-radius: 1rem;
    position: relative;
    padding: 1.25rem;
  }

  .infrax-subheader .close-icon,
  .infrax-subheader .search-icon {
    display: none;
  }

  .infrax-subheader h2 {
    text-align: center;
  }

  .eth-balance span {
    display: none;
  }

  .icon-container {
    border-radius: 0.5rem;
    padding: 0;
    width: 4.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    color: var(--infrax-system-white-80);
  }

  .icon-container img {
    width: 1.25rem;
    height: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .icon-container span {
    display: block;
    font-size: 0.75rem;
  }

  .icon-container#profile-panel-button {
    margin-bottom: 0;
  }

  .network-table-body-tiles {
    flex-direction: column;
  }

  .app-tile {
    width: 100%;
  }

  .network-content-container {
    margin-top: 5.375rem;
    padding: 1rem;
  }

  .menu-footer-content {
    display: none;
  }

  .icons-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 0.5rem;
    width: 100%;
  }

  .network-menu.nav-menu-closed {
    width: 100%;
  }

  .menu-header-controls {
    display: none;
  }

  .outlet-container {
    width: 100%;
    margin-left: 0px;
    margin-bottom: 6rem;
  }

  .infrax-system-drawer {
    position: fixed;
    top: auto;
    bottom: calc(-100vh + 5.375rem);
    /* initial position outside the viewport */
    width: 100%;
    height: calc(100vh - 5.375rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--infrax-system-black);
    z-index: 1000;
    transition: bottom 0.3s ease-in-out;
    /* smooth transition animation */
  }

  .infrax-system-drawer.infrax-system-drawer-open {
    bottom: 0;
    /* slide in from the right */
  }

  .infrax-system-drawer .infrax-system-drawer-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--infrax-system-gray);
    align-items: center;
    height: 5.375rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--infrax-system-white-10);
  }

  .network-form-row .form-cell input[type="text"],
  .network-form-row .form-cell textarea,
  .network-form-row .form-cell p,
  .network-form-row .form-cell .file-upload-box {
    width: 100%;
  }

  .network-form-row.infrax-drawer-submit {
    width: 100%;
  }


  .infrax-system-drawer-content {
    padding: 1.5rem 1.5rem 0 1.5rem;
    height: 100%;
    overflow-y: scroll;
  }

  .infrax-staking-container-body .infrax-staking-top-tiles {
    display: flex;
    flex-direction: column;
  }

  .infrax-staking-container-body .infrax-staking-top-tiles .infrax-info-tile {
    width: 100%;
  }

  .infrax-staking-container-body .infrax-staking-top-tiles .infrax-staking-docs {
    width: 100%;
  }

  .infrax-staking-container-body .infrax-staking-top-tiles .infrax-staking-docs button {
    width: 100%;
    border-radius: 1.25rem;
  }

  .infrax-staking-container-body .infrax-staking-bottom-tiles {
    flex-direction: column;
  }

  .infrax-staking-container-body .infrax-staking-bottom-tiles .infrax-info-tile {
    flex-direction: column;
    height: auto;
    margin-bottom: 2rem;
  }

  .infrax-staking-container-body .infrax-staking-bottom-tiles .infrax-info-tile button {
    margin-top: 1.5rem;
    width: 100%;
  }

  .infrax-info-tile.infrax-action-tile.infrax-staking-region {
    height: auto;
  }


  .infrax-fake-input {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: var(--infrax-system-white-06);
    border: 1px solid var(--infrax-system-white-40);
    border-radius: 1rem;
    padding: 1rem;
  }

  .infrax-fake-input p {
    margin: 0;
    line-height: 0.75rem;
    font-size: 1rem;
  }

  .infrax-fake-input input:focus {
    outline: none;
  }

  .infrax-fake-input input::placeholder {
    color: var(--infrax-system-white);
  }

  .infrax-fake-input .infrax-fake-input-button-bar {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .infrax-fake-input .infrax-fake-input-button-bar button {
    margin: 0;
  }

  .infrax-stake-bottom-button {
    margin-top: 1rem;
    width: 100%;
  }

  .infrax-system-modal {
    width: 90%;
  }

  .infrax-system-modal h3 {
    text-align: center;
  }
}

/* Phone (portrait) breakpoint (480px and below) */
@media (max-width: 480px) {
  body {
    font-size: 12px;
  }
}