@import url('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);
  --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)
}

*,
*::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('assets/fonts/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;
}

#loader img {
  width: 6rem;
}

html {
  font-size: 16px;
}

.mobile,
.mobile-only {
  display: none;
}

body {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  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;
}

main {
  margin-top: 1.5rem;
}

h1 {
  font-size: 1.75rem;
  font-family: 'Square Pixel 7', monospace;
  letter-spacing: 1px;
  font-weight: 200;
  color: var(--font-color-white-opacity-64);
}

h2 {
  font-size: 1.75rem;
  line-height: 2.75rem;
  font-weight: inherit;
  font-family: "Inter", sans-serif;
  color: var(--font-color-white-opacity-64)
}

body .container {
  max-width: 1400px;
  width: 100%;
  display:flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

body #network-main{
  max-width: 1800px;
  width: 100%;
  display:flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.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-container::-webkit-scrollbar {
  display: none;
}

.job-form-container {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

body header {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  height: 8.25rem;
  align-items: center;
}

body #network-main header {
  display: flex;
  justify-content: space-between;
  max-width: 90%;
  width: 100%;
  height: 8.25rem;
  align-items: center;
}

header img {
  max-height: 3.25;
  width: auto;
}

body main {
  color: var(--font-color-white);
  max-width: 1200px;
  width: 100%;
}

body #network-main main {
  color: var(--font-color-white);
  max-width: 90%;
  width: 100%;
}

.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;
}

.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;
}

button.infrax-big-button {
  font-size: 1.75rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: var(--font-color-white);
  border-radius: 0.75rem;
  padding: 0.75rem 1.75rem;
  background-color: var(--color-gray);
  border: 1px solid white;
}

button.infrax-big-button.inverse {
  color: black;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--font-color-white);
}

button.infrax-big-button:hover {
  color: black;
  background-color: var(--font-color-white);
  border: 1px solid var(--font-color-white);
}

button.infrax-big-button.inverse:hover {
  color: black;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid white;
}

button.infrax-big-button.button-disabled {
  color: black;
  background-color: var(--color-gray-light);
  border: 1px solid var(--color-gray-light);
}

button.infrax-big-button.button-disabled:hover {
  color: black;
  cursor: not-allowed;
  background-color: var(--color-gray-light);
  border: 1px solid var(--color-gray-light);
}

button.infrax-big-button .wallet-connected {
  align-items: center;
}

button.infrax-big-button .wallet-connected span{
  display: inline-block;
  font-size: 1.25rem;
}

button.infrax-big-button .wallet-connected img{
  width: 2rem;
  height: auto;
  margin-left: 0.25rem;
  opacity: 0.44;
}

#popoverContainer {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--popover-background);
}

#popoverContainer #closePopover {
  position: fixed;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

#popoverContainer #closePopover img,
#paymentSuccessModal img#closeSuccessModal {
  margin: 2rem;
  width: 4rem;
  height: auto;
}

#paymentSuccessModal div {
  margin-left: 2rem;
}

#paymentSuccessModal h3 {
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 300;
  margin: 0 0.375rem;
}

#paymentSuccessModal p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  margin: 0 0.375rem;
}

#paymentSuccessModal a {
  color: white;
}

#paymentSuccessModal {
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  height: 6.5rem;
  background-color: var(--color-success-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#popoverContainer #newJobSelect {
  display:flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-items: center;
}

button.infrax-black-button {
  font-family: 'Square Pixel 7', monospace;
  letter-spacing: 1px;
  font-weight: 200;
  font-size: 1.75rem;
  color: var(--font-color-white);
  background-color: black;
  width: 17.5rem;
  margin: 0.625rem 0;
  height: 5.25rem;
  border: 1px solid var(--font-color-white);
}

button.infrax-black-button:hover {
  color: black;
  background-color: var(--font-color-white);
  border: 1px solid var(--font-color-white);
}

#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);
}

.table-row {
  min-height: 4rem;
}

.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-container .network-menu {
  border-radius: 1.25rem;
  padding: 0.625rem;
  margin-right: 1.5rem;
  background-color: white;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .network-container .network-menu {
    display: none;
  }
}

.network-container .network-menu .flex-filler {
  height: 2.5rem;
  width: 2.5rem;
}

.flex-filler img {
  width: 2.5rem;
  height: auto;
}

.icon-container{
  width: 2.5rem;
  display: flex;
  overflow-x: hidden;
  transition: 0.4s;
  cursor: pointer;
}

.network-menu-open {
  width: 9.375rem;
}

.network-container .network-menu .icons-container img {
  margin: 0.75rem 0;
  width: 2.5rem;
  display: inline-block;
}

.network-container .network-menu .icons-container span {
  margin-top: 1.375rem;
  margin-left: 1.25rem;
  font-size: 1.375rem;
  color: black;
  display: inline-block;
}

#note {
  margin-top: 0.625rem;
  font-weight: 300
}

#note span {
  font-weight: 600;
}

.network-container .network-menu .network-expander img {
  margin-left: 0.375rem;
  margin-top: 0.375rem;
  width: 1.875rem;
  cursor: pointer;
  transition: 0.4s;
}

.rotate-close-side-menu {
  transform: rotate(135deg)
}

.network-container .network-info-container {
  width: 87.5%;
  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 {
  width: 87.5%;
  background-color: var(--color-gray);
  border: var(--border-style);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.network-container #apps-container,
.network-container #jobs-container,
.network-container #staking-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;
}

#world-map {
  border-radius: 1.5rem;
  background-color: rgb(232, 232, 232);
}

.network-info-container {
  height: 600px;
}

.network-container .network-info-container .network-information-status {
  margin-left: 1.5rem;
  width: 21.875rem;
}

.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
}

.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;
}

.network-info-container .network-status {
  font-weight: 300;
  margin-top: 1.5rem;
  color: var(--font-color-white-opacity-64);
}

.network-info-container .network-status span {
  font-size: 1.25rem;
  color: white;
  margin-left: 1.25rem;
}

.network-info-container .network-status-box {
  margin-top: 1rem;
  color: var(--font-color-white-opacity-64);
  font-weight: 300;
}

.network-info-container .network-status-box span {
  margin-top: 0.375rem;
  display: block;
  width: 100%;
  font-size: 1.5rem;
  border-radius: 0.75rem;
  padding: 0.75rem;
  border: var(--border-style);
}

.network-info-container .network-status-box span img{
  filter: invert(1);
  margin-bottom: -0.375rem;
  margin-right: 0.625rem;
  display: inline-block;
  width: 1.875rem;
}

.network-status span div {
  margin-left: 0.375rem; 
  display: inline-block; 
  width: 1rem; 
  height: 1rem; 
  border-radius: 0.625rem; 
  background-color: seagreen;
  animation: pulse 2s infinite;
}

#network-highlighted-nodes {
  width: calc(87.5% + 84px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}

.container-header.staking-row {
  flex-flow: wrap;
  justify-content: space-between;
}

.container-header.staking-row .staking-container {
  width: calc(50% - 1.25rem);
  margin-top: 1rem;
}

.container-header.staking-row .staking-container:first-child,
.container-header.staking-row .staking-container:nth-child(2) {
  margin-top: 0;
}

#network-highlighted-nodes .highlighted-node {
  width: 32%;  
  margin-top: 1.5rem;
  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;
}

.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: 1rem;
  border-radius: 0.75rem;
}

.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;
}

#jobs-container, #jobs-form-container, #apps-container, #apps-form-container, #info-container{
  display: none;
}

.staking-row {
  display: flex;
  justify-content: space-between;
}

.information-title-fix {
  width: 50%;
}

.staking-container {
  display: flex;
  height: 8.75rem;
  justify-content: space-between;
  border: var(--border-style);
  border-radius: 0.75rem;
  width: 100%;
  padding: 1.25rem 2.5rem;
}

.staking-container.staking-action .staking-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.staking-cell-balance p {
  margin-top: 0;
  font-weight: 200;
  color: var(--font-color-white);
}

.staking-cell-balance p bold,
.staking-cell-stake p:first-child bold,
.staking-cell-harvest p:first-child bold {
  font-weight: 400;
  color: white;
}

.staking-cell-stake p:first-child,
.staking-cell-harvest p:first-child {
  margin-top: 1rem;
  font-weight: 200;
  color: var(--font-color-white);
}

.staking-cell-stake div span {
  position: absolute;
  margin-left: -60px;
  margin-top: 0.875rem;
  color: white;
  font-weight: 600;
}

.staking-cell-stake a {
  margin-right: 1.25rem;
  font-size: 1rem;
  font-weight: 200;
  color: var(--font-color-white-opacity-64);
}

.staking-cell-stake p:last-child {
  margin-top: 0.375rem;
}

.staking-cell-stake a:hover {
  color: white;
}

.staking-cell-stake div input {
  width: 100%;
  border-radius: 0.5rem;
  padding: 0.75rem 0.5rem;
  background-color: var(--color-gray);
  border: var(--border-style);
  color: var(--font-color-white);
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 300;
  margin-top: 0;
}

.staking-container.staking-action h2 {
  font-size: 1.5rem;
  margin-top: 0;
  font-weight: 200;
  color: var(--font-color-white-opacity-64);
}

.staking-container.staking-action h2 span {
  font-size: 1rem;
}

.staking-cell-balance div img,
.staking-cell h2 img {
  width: 1.8rem;
  height: auto;
  margin-right: 0.625rem;
  margin-bottom: -5px;
}

.staking-cell-balance div {
  font-weight: 200;
  font-size: 1.5rem;
}

.staking-cell-balance div span {
  font-size: 1rem;
  color: var(--font-color-white-opacity-64)
}

.staking-container.staking-action .staking-cell-button  {
  width: calc(45% - 1.25rem);
}

.staking-container.staking-action .staking-cell:first-child{
  width: 55%;
  margin-right: 1.25rem;
}

.staking-container.stat-container p,
.staking-container.stat-container h2{
  font-family: 'Square Pixel 7', monospace;
  margin-bottom: 0;
}

.staking-container.stat-container p {
  font-size: 1.5rem;
  margin-top: 0.625rem;
  color: var(--font-color-white-opacity-64);
}

.staking-container.stat-container h2 {
  font-size: 2.625rem;
  font-weight: 300;
  color: var(--font-color-white);
  margin-top: 0.375rem;
}

.staking-totals {
  font-family: 'Square Pixel 7', monospace;
  color: var(--font-color-white-opacity-64);
  font-size: 1.5rem;
}

.staking-totals p {
  margin-bottom: 0;
}

.staking-totals bold {
  font-weight: 300;
  color: white;
}

.staking-totals .staking-big-number {
  font-size: 2.625rem;
  font-weight: 300;
  color: white;
}

@media (max-width: 1024px) {
  #newJob #newJobLogo {
    flex-grow: 1;
    display: none;
  }
  .table-row-header .table-cell {
    width: 30%;
  }
  .table-row-header .table-cell.actions-menu {
    width: 10%;
  }
  .table-row-header .table-cell p.actions-menu-text {
    display: none;
  }
  .table-pay,
  .table-edit {
    display: none;
  }
  #tablePopulated .table-row .table-cell.table-cell-edit {
    width: 10%;
  }
  #tablePopulated .table-row .table-cell {
    width: 30%;
  }

  .staking-row {
    flex-direction: column;
  }

  .staking-row .staking-container {
    width: 100%;
  }

  #staking-container .container-header {
    flex-direction: column;
  }

  #staking-container .container-header .information-title {
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .container-header .staking-container {
    margin-left: 0;
    margin-right: 0;
  }

  .staking-row .staking-container:first-child,
  .staking-row .staking-container:last-child {
    margin-left: 0;
    margin-right: 0;
  }

  .staking-row .staking-container:last-child {
    margin-top: 1.25rem;
  }

  .job-upper-row-image {
    display: none;
  }

  .jobUpperRowTitle {
    width: 100%;
  }

  .jobUpperRowTitle .form-cell{
    width: 100%;
  }

  .form-cell #job-name {
    width: 95%;
  }
}

@media (max-width: 1180px) {
  .container-header.staking-row .staking-container {
    width: 100%;
  }

  .container-header.staking-row .staking-container:nth-child(3) {
    order: 6;
  }

  .container-header.staking-row .staking-container:nth-child(5) {
    order: 5;
  }

  .network-container .network-info-container {
    flex-direction: column;
    height: auto;
  }

  .network-container .network-info-container .network-information-status {
    width: 100%;
    margin-left: 0;
  }
}


@media (max-width: 767px) {
  .network-container .network-menu {
    display: none;
  }
  
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  .table-controls {
    margin: 1rem;
    justify-content: center;
  }

  .network-container .network-menu {
    display: none;
  }

  .network-container .network-info-container {
    width: 100%;
    flex-direction: column;
  }

  .network-container .network-table-container {
    width: 100%;
  }

  .network-container .network-info-container .network-information-status {
    width: 100%;
    margin-left: 0;
  }

  #network-highlighted-nodes {
    width: 100%;
    justify-content: space-between;
  }

  .network-info-container {
    height: auto;
  }

  #network-highlighted-nodes .highlighted-node {
    width: 100%;  
  }
}

@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
  /* quick fixes mobile */
  
  .mobile-only {
    display: inline-block;
  }

  #loader img {
    width: 4rem;
  }

  .information-title-fix {
    width: 100%;
  }

  .container-header.staking-row .staking-container:nth-child(3) {
    order: 6;
  }

  .container-header.staking-row .staking-container:nth-child(5) {
    order: 5;
  }


  .staking-cell-stake div span {
    position: absolute;
    margin-left: -3.5rem;
    margin-top: 0.875rem;
    color: white;
    font-weight: 600;
  }

  .container-header.staking-row .staking-container {
    width: 100%;
  }

  .form-cell input[type="number"] {
    width: 4.5rem;
  }

  .public-fix {
    display: none;
  }

  .network-table-body .table-row.table-row-header {
    display: none;
  }

  .network-table-body .table-row {
    flex-direction: column;
  }

  .network-table-body .table-row .table-cell {
    width: 100%;
  }

  .network-table-body .table-row .table-cell:first-child {
    justify-content: center;
    margin-bottom: 1rem;
  }

  #apps-container .network-table-body .table-row .table-cell:nth-child(2) {
    margin-bottom: 1rem;
  }

  #jobs-container .network-table-body .table-row .table-cell:nth-child(2) {
    margin-bottom: 1rem;
  }


  .network-table-body .table-row .table-cell:last-child {
    justify-content: center;
    margin-top: 1rem;
  }

  .desktop {
    display: none;
  }
  
  .mobile {
    display: block;
  }

  html {
    font-size: calc(16px * 2);
  }

  .network-container {
    display: flex;
    flex-direction: column;
  }

  .staking-cell button.infrax-big-button {
    padding: 0.75rem 1rem;
  }

  .network-container .network-menu {
    flex-direction: row;
    height: auto;
    margin-bottom: 2.5rem;
    margin-right: 0;
  }

  .network-expander, .flex-filler {
    display: none;
  }

  .icons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .network-container .network-menu .icons-container span {
    font-size: 1rem;
    margin: 0;
    text-align: center;
  }

  .network-container .network-table-container, 
  .network-container .network-form-container {
    width: 100%;
  }

  .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,
  .form-cell {
    width: 100%;
  }

  .network-form-row h3,
  .network-form-row a {
    width: 30%;
  }

  .icon-container {
    width: auto;
    margin-left: 1rem;
    margin-right: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .network-container .network-menu .icons-container img {
    height:  3rem;
    width:  3rem;
  }
  
  .network-info-container {
    height: auto;
  }

  .staking-container {
    padding: 1rem;
  }

  .network-container .network-info-container {
    width: 100%;
    flex-direction: column;
  }

  .network-container .network-table-container {
    width: 100%;
  }

  .network-container .network-info-container .network-information-status {
    width: 100%;
    margin-left: 0;
  }

  #note {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .network-info-container .network-status {
    font-size: 1.5rem;
  }

  .network-status span div {
    margin-bottom: -0.3rem;
    display: inline-block; 
    width: 1.6rem; 
    height: 1.6rem; 
    border-radius: 1.25rem; 
  }

  .container-header {
    flex-direction: column;
  }

  .container-header .information-title {
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .network-info-container .network-status-box {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .network-info-container .network-status-box span img{
    margin-right: 1.25rem;
  }

  #network-highlighted-nodes {
    width: 100%;
    justify-content: space-between;
  }

  #network-highlighted-nodes .highlighted-node {
    width: 100%;
  }

  .on-demand {
    color: var(--font-color-white-opacity-64);
    font-weight: 300;
  }

  .node-id {
    font-weight: 300;
    margin-top: 1.25rem;
  }

  .node-p-compute {
    letter-spacing: 3px;
    font-weight: 600;
  }
}
