/**
 * Ankieta SCH
 * @version: 1.0.0
 */
.sch-survey {
  font-size: 16px;
}
.sch-survey h2 {
  font-size: 1.8em;
  text-align: center;
  color: #333;
  background-color: #cfb0ec;
  padding: 20px;
  border-radius: 4px;
}
.sch-survey > p {
  font-size: 1em;
  text-align: center;
}
.sch-survey .sch-survey-inner {
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}
.sch-survey .sch-survey-inner.hide {
  display: none;
}
.sch-survey .sch-survey-inner .question {
  width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
  transition: 0.3s all;
  position: relative;
  left: 0;
}
.sch-survey .sch-survey-inner .question .start_survey {
  display: block;
  font-weight: 600;
  background: #cfb0ec;
  color: #333;
  position: relative;
  min-width: 140px;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  transition: 0.3s all;
  margin: 0 auto;
}
.sch-survey .sch-survey-inner .question .start_survey:hover {
  background-color: #b481e7;
}
.sch-survey .sch-survey-inner .question .buttons {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}
.sch-survey .sch-survey-inner .question .buttons .next,
.sch-survey .sch-survey-inner .question .buttons .prev {
  display: block;
  font-weight: 600;
  background: #cfb0ec;
  color: #333;
  position: relative;
  min-width: 140px;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  transition: 0.3s all;
}
.sch-survey .sch-survey-inner .question .buttons .next:hover,
.sch-survey .sch-survey-inner .question .buttons .prev:hover {
  background-color: #b481e7;
}
.sch-survey .sch-survey-inner .question .question-label {
  font-size: 1.2em;
  padding-bottom: 15px;
  font-weight: 600;
  display: flex;
}
.sch-survey .sch-survey-inner .question .question-label .q-number {
  display: inline-block;
  margin-right: 9px;
  padding: 0;
  background: #cfb0ec;
  color: #333;
  min-width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}
.sch-survey .sch-survey-inner .question .answears label {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 5px;
}
.sch-survey .sch-survey-inner .question .answears label input {
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
}
.sch-survey .sch-survey-inner .question .answears label span {
  font-size: 1.1em;
}
.sch-survey .sch-survey-results {
  display: none;
}
.sch-survey .sch-survey-results.visible {
  display: block;
}
.sch-survey .sch-survey-results .result {
  display: none;
}
.sch-survey .sch-survey-results .result.visible {
  display: block;
}

@media screen and (max-width: 768px) {
  .sch-survey h2 {
    font-size: 1.4em;
  }
}/*# sourceMappingURL=ankieta-sch-public.css.map */