@font-face {
  font-family: 'Roboto Condensed';
  src: url("/source/c15445fbbcd8b0259865edc7057be62e") format('woff2'),
    url("/source/06fa44749c86096b6e930c702af310b4/RobotoCondensed-Light.woff") format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url("/source/0e6ec07cc7110a65f33893f29fc1472d") format('woff2'),
    url("/source/358cfcfb4aeb0d949d160a34f1154dbb/RobotoCondensed-Italic.woff") format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url("/source/0fefa5eb7f3ffcb43a7209cb0d257c92") format('woff2'),
    url("/source/4e287013e14ac2b365419654b0c2fbd6/RobotoCondensed-BoldItalic.woff") format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url("/source/d415b465c9969d16e6b9b1fe2056f24c") format('woff2'),
    url("/source/a4edc51a8ccd6ec23a517669e726ea46/RobotoCondensed-Bold.woff") format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url("/source/d57e760d185181cbb2f93ad281668147") format('woff2'),
    url("/source/066675871b23dd9f1764a175a96ad309/RobotoCondensed-LightItalic.woff") format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url("/source/ef57d4f81eced615efd5f2bf5d398929") format('woff2'),
    url("/source/00b6196fd570c6f7cb5a392fd66104ab/RobotoCondensed-Regular.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: 'Roboto Condensed', Helvetica Neue, sans-serif;

  --primary-color: rgb(195, 137, 12);
  height: 100%;
  color: #3c3c3c;
}

* {
  font-family: 'Roboto Condensed', Helvetica Neue, sans-serif;
}

#__next {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

h1 {
  margin: 0.2em 0;
}

* {
  box-sizing: border-box;
}

button.outline,
button.primary {
  font-family: inherit;
  cursor: pointer;
  transition-duration: 0.1s;
  transition-property: background-color, color, border-color, opacity,
    box-shadow;
  transition-timing-function: ease-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 12px 0px;
  min-height: 48px;
  color: rgb(255, 255, 255);
  outline: none;
  padding: 8px 28px;
  border-color: transparent;
  border-radius: 4px;
}

button.primary {
  background-color: rgb(195, 137, 12);
}

button.primary:disabled {
  opacity: 0.2;
  cursor: pointer;
}

button.outline {
  color: rgb(195, 137, 12);
  box-shadow: none;
  border: 1px solid #999;
}

button.outline:hover {
  background-color: rgba(204, 155, 49, 0.15);
}

button.primary:hover {
  background-color: rgb(204, 155, 49);
}

button + button {
  margin-left: 10px;
}

.question-title {
  font-size: 1.2em;
  font-weight: normal;
}

.question-title.is-required::after {
  content: '*';
  color: red;
  padding-left: 0.25em;
}

.container {
  min-height: 100vh;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer img {
  margin-left: 0.5rem;
}

footer a {
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  color: inherit;
}

.title a {
  color: #0070f3;
  text-decoration: none;
}

.title a:hover,
.title a:focus,
.title a:active {
  text-decoration: underline;
}

.title {
  margin: 0;
  line-height: 1.15;
  font-size: 4rem;
}

.title,
.description {
  text-align: center;
}

.description {
  line-height: 1.5;
  font-size: 1.5rem;
}

.logo {
  height: 1em;
}

.text-input {
  border: 1px solid #999;
  width: 100%;
  outline: none;
  transition: all 0.2s ease-in-out;
  font-size: 1.2em;
  height: 50px;
  padding: 1em;
  border-radius: 0;
}

.text-area {
  width: 100%;
  outline: none;
  font-size: 1em;
  background: #eee;
  font-family: inherit;
  padding: 5px;
  border: 1px solid #cfcfcf;
  border-radius: 0;
}

.number-input-with-unit {
  border: 1px solid #999;
  border-right: none;
  width: calc(100% - 150px);
  border-radius: 0;
  outline: none;
  transition: all 0.2s ease-in-out;
  font-size: 1.2em;
  height: 50px;
  padding: 1em;
  vertical-align: bottom;
}

.number-input {
  border: 1px solid #999;
  border-radius: 0;
  width: 100%;
  outline: none;
  transition: all 0.2s ease-in-out;
  font-size: 1.2em;
  height: 50px;
  padding: 1em;
  vertical-align: bottom;
}

.number-input-with-unit[type='number']::-webkit-outer-spin-button,
.number-input-with-unit[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.unit-input {
  border: 1px solid #999;
  border-left: none;
  width: 150px;
  padding: 13px 0;
  outline: none;
  transition: all 0.2s ease-in-out;
  font-size: 1em;
  height: 50px;
  padding: 0.5em;
  border-radius: 0;
  text-align: right;
}

.pick-one {
  border: 1px solid #999;

  min-width: 200px;
  padding: 13px 0;
  outline: none;
  transition: all 0.2s ease-in-out;
  font-size: 1em;
  vertical-align: bottom;
}

input:focus {
  border-color: rgb(195, 137, 12);
}

.vertically-centered-icon {
  vertical-align: middle;
  margin-left: 5px;
}

.unit-indicator {
  display: inline-block;
  border: 1px solid #999;
  border-left: none;
  transition: all 0.2s ease-in-out;
  font-size: 1.2em;
  height: 50px;
  padding: 0.6em;
  -moz-appearance: textfield;
  vertical-align: bottom;
}

.yes-no-label {
  display: inline-block;
  border: 1px solid #999;
  transition: background 200ms ease-in-out;
  margin-bottom: 10px;
  width: 120px;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
}

.yes-no-input {
  display: none;
}

.yes-no-input:checked + label {
  background: rgb(195, 137, 12);
  color: #fff;
}

.stationary-bullet.MuiTooltip-tooltip {
  z-index: 2;
}

.MuiChip-deletable {
  margin: 5px !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.MuiChip-deletable .MuiChip-label {
  color: white !important;
}

.MuiChip-deleteIcon {
  color: white !important;
}

[dir='rtl'] .MuiChip-deleteIcon {
  margin: 0 0px 5px 6px !important;
}

.header .MuiButtonBase-root.MuiIconButton-root {
  padding: 0 10px 0 0;
}

.header .MuiButtonBase-root.MuiIconButton-root:hover {
  background: unset;
}

.MuiTooltip-popper {
  z-index: 2 !important;
}

.MuiToggleButton-sizeLarge {
  min-width: 80px;
}

.MuiFilledInput-input {
  margin: 5px 0 !important;
  padding: 5px !important;
}

@media screen and (max-width: 768px) {
  .text-input {
    font-size: 1em;
  }
  .number-input-with-unit {
    font-size: 1em;
  }
}

img.inline-image {
  max-width: 100%;
}
