:root {
  --eg-body-bg-color: #ffb300;
  --eg-body-bg-image-opacity: 1;
  --eg-body-bg-image: url("6a1ead2d986a9758869641.jpg");
  --eg-container-bg-color: #fab601;
  --eg-container-bg-color-contrast: #000;
  --eg-nav-bg-color: white;
  --eg-progress-bar-bg-color: white;
  --eg-title-color: #b4000c;
  --eg-title-font-size: 30px;
  --eg-title-font-weight: bold;
  --eg-title-font-family: Verdana, DejaVu Sans, Bitstream Vera Sans, Geneva, sans-serif;
  --eg-question-margin-top: 15px;
  --eg-question-font-size: 26px;
  --eg-question-font-familly: Verdana, DejaVu Sans, Bitstream Vera Sans, Geneva, sans-serif;
  --eg-question-font-weight: bold;
  --eg-question-color: white;
  --eg-block-color: white;
  --eg-block-bg-color: #b4000c;
  --eg-block-color-hover: #fff;
  --eg-block-bg-color-hover: #99000a;
  --eg-block-bg-color-shade: #99000a;
  --eg-block-bg-color-shade-2: #9c000a;
  --eg-block-bg-color-shade-3: #870009;
  --eg-block-bg-color-shade-4: #6c0007;
  --eg-primary-color: #ebebeb;
  --eg-primary-color-rgb: 235, 235, 235;
  /* deprecated */
  --eg-primary-color-contrast: #000;
  --eg-primary-color-shade: #c8c8c8;
  --eg-checkbox-color: #fab601;
  --eg-checkbox-color-contrast: #000;
  --eg-logo-size: 150px;
}
.questionnaire-block:not(.btn-success):not(.btn-danger) {
  --bs-btn-color: white;
  --bs-btn-bg: #b4000c;
  --bs-btn-border-color: #99000a;
  --bs-btn-hover-color: white;
  --bs-btn-hover-bg: whitesmoke;
  --bs-btn-hover-border-color: #7a0008;
  --bs-btn-focus-shadow-rgb: 168, 38, 47;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ebebeb;
  --bs-btn-active-border-color: #730008;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #b4000c;
  --bs-btn-disabled-border-color: #99000a;
}
.questionnaire-nav-btn {
  --bs-btn-color: #000;
  --bs-btn-bg: white;
  --bs-btn-border-color: white;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: white;
  --bs-btn-hover-border-color: white;
  --bs-btn-focus-shadow-rgb: 217, 217, 217;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: white;
  --bs-btn-active-border-color: white;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: white;
  --bs-btn-disabled-border-color: white;
}
body {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #ffb300;
  color: white;
}
body:before {
  content: " ";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: var(--eg-body-bg-image);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 1;
}
body > .d-flex {
  position: relative;
}
#questionnaire_container {
  width: 970px;
  max-width: 100%;
  margin: auto;
}
@media (min-width: 576px) {
  #questionnaire_container {
    padding-top: 75px;
  }
}
#questionnaire_container > div:last-child {
  background-color: #fab601;
}
