:root {
  --eg-body-bg-color: #ffffff;
  --eg-body-bg-image-opacity: 0.1;
  --eg-body-bg-image: url("6a3d36c32263b628904475.jpg");
  --eg-container-bg-color: white;
  --eg-container-bg-color-contrast: #000;
  --eg-nav-bg-color: #E834D5;
  --eg-progress-bar-bg-color: #E834D5;
  --eg-title-color: #333;
  --eg-title-font-size: 26px;
  --eg-title-font-weight: bold;
  --eg-title-font-family: Roboto, Helvetica Neue, sans-serif;
  --eg-question-margin-top: 0px;
  --eg-question-font-size: 22px;
  --eg-question-font-familly: Tahoma, Geneva, Kalimati, sans-serif;
  --eg-question-font-weight: bold;
  --eg-question-color: #504d49;
  --eg-block-color: #333;
  --eg-block-bg-color: #0000;
  --eg-block-color-hover: #fff;
  --eg-block-bg-color-hover: rgba(0, 0, 0, 0.15);
  --eg-block-bg-color-shade: rgba(0, 0, 0, 0.15);
  --eg-block-bg-color-shade-2: rgba(0, 0, 0, 0.1325);
  --eg-block-bg-color-shade-3: rgba(0, 0, 0, 0.25);
  --eg-block-bg-color-shade-4: rgba(0, 0, 0, 0.4);
  --eg-primary-color: #E834D5;
  --eg-primary-color-rgb: 232, 52, 213;
  --eg-primary-color-contrast: #000;
  --eg-primary-color-shade: #c52cb5;
  --eg-checkbox-color: #E834D5;
  --eg-checkbox-color-contrast: #000;
  --eg-logo-size: 150px;
}
.questionnaire-block:not(.btn-success):not(.btn-danger) {
  --bs-btn-color: #333;
  --bs-btn-bg: #0000;
  --bs-btn-border-color: rgba(0, 0, 0, 0.15);
  --bs-btn-hover-color: #504d49;
  --bs-btn-hover-bg: #f49aea;
  --bs-btn-hover-border-color: rgba(147, 147, 147, 0.235);
  --bs-btn-focus-shadow-rgb: 35, 35, 35;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #E834D5;
  --bs-btn-active-border-color: rgba(147, 147, 147, 0.235);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0000;
  --bs-btn-disabled-border-color: rgba(0, 0, 0, 0.15);
}
.questionnaire-nav-btn {
  --bs-btn-color: #000;
  --bs-btn-bg: #E834D5;
  --bs-btn-border-color: #E834D5;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #eb52db;
  --bs-btn-hover-border-color: #ea48d9;
  --bs-btn-focus-shadow-rgb: 197, 44, 181;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ed5ddd;
  --bs-btn-active-border-color: #ea48d9;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #E834D5;
  --bs-btn-disabled-border-color: #E834D5;
}
body {
  position: relative;
  background-color: #ffffff;
  color: #504d49;
}
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: center;
  background-repeat: no-repeat;
  opacity: 0.1;
}
body > div:first-child {
  position: relative;
}
#questionnaire_container {
  width: 970px;
  max-width: 100%;
  margin: auto;
}
@media (min-width: 576px) {
  #questionnaire_container {
    padding-top: 75px;
  }
}
