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

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

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

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

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

@font-face {
  font-family: 'Roboto Condensed';
  src: url('fonts/RobotoCondensed-Regular.woff2') format('woff2'),
    url('fonts/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%;
}
