:root {
  --orange: rgb(221, 110, 66);
  --cream: rgb(229, 220, 194);
  --dark-blue: rgb(79, 109, 122);
  --light-blue: rgb(192, 214, 223);
  --grey: rgb(234, 234, 234);
  --alpha: 0.7;
}

body {
  font-size: 16px !important;
}

.q-container {
  background-color: var(--dark-blue);
}

/* checkbox-container */

/* The container */
.checkbox-container {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: var(--orange);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 9px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* radio-button container */

/* The container */
.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radio-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  background-color: var(--orange);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
  top: 8.5px;
  left: 8.5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.checkbox-container span,
.radio-container span {
  color: black;
  font-size: 1rem;
  font-weight: normal !important;
}

.answers-list {
  list-style: none;
}

/* .login-form {
  width: 400px;
  height: 440px;

  background-color: white;
  padding: 10px;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  margin: auto;
} */

.questionnary-wrapper,
.completed,
.pagenotfound,
.gdpr {
  max-width: 900px;
  width: 900px;
  padding: 20px 30px;
  /*background-color: forestgreen;*/
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);

  /*text-align: center;*/
  /* font-weight: bold; */

  -moz-transition: top 1s ease;
  -webkit-transition: top 1s ease;
  transition: top 1s ease;
}

/* .questionnary-wrapper > div {
  margin-top: 20px;
  margin-bottom: 20px;
} */

.questionnary-info input {
  font-size: 16px;
}

.progress-bar {
  background-color: var(--orange) !important;
}

.questionnary-wrapper .spinner-border {
  color: var(--orange) !important;
  width: 5rem;
  height: 5rem;
}

/* .questionnary-info p {
  font-size: 14px;
  margin-bottom: 20px;
  padding: 20px;
  color: #49c5b6;
  background-color: #e5e3e8;
} */

.topic {
  padding-top: 50px;
  padding-bottom: 50px;
}

.qtext {
  color: #fbc44d;
  font-size: 20px;
  background-color: #ff6229;
  padding: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.checkbox-containers {
  font-size: 16px;
  margin: 30px 20px;
}

.checkbox-containers li {
  margin-bottom: 5px;
  border: 1px solid #e5e3e8;
  padding: 5px;
  background-color: #e5e3e8;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #ff6328;
}

.checkbox-containers li label {
  cursor: pointer;
}

.checkbox-containers li:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
}

.qtext.notfull {
  /*width: 70%;*/
}

.qphoto,
.qvideo {
  width: 30%;
  float: left;
  margin-right: 30px;
}

.qphoto img {
  width: 100%;
}

.checkbox-containers li input {
  margin-right: 5px;
}

.question-inner {
  /* padding: 0 20px; */
  margin: 40px 20px;
}

/* .counterbar,
.topic,
.question,
.nav-buttons,
.finish {
  display: none;
} */

/* .questionnary-info,
.questionnary-title,
.topic {
  text-align: center;
} */

/* .goprev {
  display: none;
} */
.company_logo {
  text-align: right;
}
.company_logo img {
  max-width: 120px;
  max-height: 80px;
}

/* completed */
/* page not found */

.completed-container,
.pagenotfound-container,
.gdpr-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--dark-blue) !important;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .completed {
    background-color: transparent;
    color: white;
    box-shadow: none;
  }
  .completed h1 {
    color: white !important;
  }
}

@media (max-width: 540px) {
  .questionnary-wrapper {
    min-width: 100% !important;
    width: 100% !important;
    border-radius: 0px;
    box-shadow: none;
  }
  .q-container {
    background-color: white !important;
  }
  .answer.radiobutton.checkbox img,
  .question-wrapper img {
    width: 100% !important;
  }
}

.completed,
.pagenotfound,
.gdpr {
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.gdpr {
  max-width: 500px;
  width: 500px;
}

.gdpr h3 {
  color: var(--orange);
}

.title {
  font-size: 10rem;
  font-weight: bolder;
}

/* show questionnairy */

.question-wrapper .topic-title {
  color: var(--orange);
}
