body {
  color: #222;
  background: linear-gradient(135deg, #37abc8 0%, #a7e8f1 100%);
  min-height: 100vh;
  margin: 0;
  font-family: Lato, sans-serif;
}

* {
  box-sizing: border-box;
}

#mainHeader {
  background-color: #282c34;
  width: 100%;
  margin-bottom: 2rem;
  padding: 10px 0;
  box-shadow: 0 2px 8px #282c341f;
}

.flexContainer {
  color: #fff;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  font-family: BigNoodleTitling, Helvetica, sans-serif;
  font-size: 1.2rem;
  display: flex;
}

#roboticalLogo {
  background: #fff;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  margin-right: 2rem;
  padding: .5rem;
  box-shadow: 0 2px 8px #00000014;
}

#pageTitle {
  letter-spacing: .04em;
  color: #fff;
  font-family: BigNoodleTitling, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
}

#mainContent {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 1rem 2rem;
  display: flex;
}

.axiom-mark {
  background: #fff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  box-shadow: 0 2px 16px #37abc814;
}

.content-block {
  background: #fffffff2;
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin: 0 0 1.5rem;
  padding: 2em 2em 1em;
  display: flex;
  box-shadow: 0 2px 16px #37abc814;
}

.instructions-block {
  justify-content: flex-start;
  align-items: stretch;
}

.instructions-content {
  flex: auto;
  min-width: 0;
}

h1 {
  letter-spacing: .04em;
  color: #282c34;
  margin: 0 0 1rem;
  font-family: BigNoodleTitling, Helvetica, sans-serif;
  font-size: 2rem;
}

p {
  color: #446084;
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.content-list {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  font-size: 1.5rem;
}

.content-item {
  color: #37abc8;
  letter-spacing: .02em;
  padding-bottom: 1rem;
  font-weight: 600;
}

.content-info {
  background: #f7fafc;
  border-radius: 8px;
  margin-left: .5rem;
  padding: 1rem;
  box-shadow: 0 1px 4px #37abc80f;
}

.content-info p {
  margin: 0 0 .5rem .5rem;
  padding: 0;
}

.instructions-action-row {
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

label[for="firmwareVersion"] {
  color: #446084;
  text-align: left;
  width: 100%;
  max-width: 400px;
  margin-bottom: .5rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

#firmwareVersion {
  color: #222;
  width: 100%;
  max-width: 400px;
  font: inherit;
  background: #f7fafc;
  border: 1px solid #37abc8;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  padding: .3rem .7rem;
  font-size: 1.1rem;
}

.dev-controls {
  justify-content: center;
  width: 100%;
  max-width: 400px;
  margin-bottom: 1rem;
  display: flex;
}

.dev-controls[hidden] {
  display: none;
}

.check-row {
  color: #446084;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  display: flex;
}

#appOnly {
  margin: 0;
}

#updateButton {
  color: #222;
  cursor: pointer;
  font: inherit;
  background: linear-gradient(90deg, #ffda61 0%, #ffe9a7 100%);
  border: none;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  padding: .8rem 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 2px 8px #ffda611f;
}

#updateButton:hover:not(:disabled) {
  background: linear-gradient(90deg, #ffe9a7 0%, #ffda61 100%);
  box-shadow: 0 4px 16px #ffda612e;
}

#updateButton:disabled, #firmwareVersion:disabled {
  cursor: not-allowed;
  opacity: .55;
}

#progressBar {
  appearance: none;
  accent-color: #37abc8;
  background: #dcecf1;
  border: 0;
  border-radius: 8px;
  width: min(100%, 400px);
  height: 14px;
  margin-bottom: 1rem;
}

#progressBar::-webkit-progress-bar {
  background: #dcecf1;
  border-radius: 8px;
}

#progressBar::-webkit-progress-value {
  background: #37abc8;
  border-radius: 8px;
}

#progressBar::-moz-progress-bar {
  background: #37abc8;
  border-radius: 8px;
}

#statusText {
  color: #fff;
  text-align: left;
  background-color: #446084;
  border-radius: 8px;
  min-width: 350px;
  max-width: 100%;
  min-height: 48px;
  margin: 10px;
  padding: 10px 18px;
  font-family: monospace;
  font-size: 1.1rem;
  line-height: 1.35;
  box-shadow: 0 1px 6px #44608414;
}

#statusText.error {
  color: #fff;
  background-color: #e74c3c;
  font-weight: 700;
  box-shadow: 0 2px 8px #e74c3c1f;
}

#statusText.success {
  color: #fff;
  background-color: #27ae60;
  font-weight: 700;
  box-shadow: 0 2px 8px #27ae601f;
}

@media (width <= 900px) {
  #mainContent {
    padding: 0 .5rem 1rem;
  }

  .content-block {
    max-width: 95vw;
    padding: 1em .5em;
  }

  #statusText {
    min-width: 200px;
    padding: 8px 10px;
    font-size: 1rem;
  }

  .flexContainer {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  #roboticalLogo {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  #pageTitle {
    font-size: 2rem;
  }
}

@font-face {
  font-family: BigNoodleTitling;
  src: url("https://content.robotical.io/static/fonts/big_noodle_titling.woff") format("woff");
}
/*# sourceMappingURL=axiom-web-updater.95606782.css.map */
