/***** CSS RESET  *****/

* {
  box-sizing: border-box;
}

html, body, div, header, footer, span, h1, h2, h3, h4, h5, h6, p, a, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: 'Prompt', sans-serif;
}

/*background image*/

.bg {
  background: url("img/bg.jpg") no-repeat left fixed;
  background-size: 800% 200%;
}


.container {
  padding: .3em .2em;
}

.header__logo, .footer__logo {
  display: block;
  margin: 1em auto 0;
  width: 100px;
  height: 100px;
}

.footer__logo {
  width: 170px;
}

.header {
  font-size: 2em;
  text-align: center;
  word-wrap: break-word;
  padding: 1em 1em 0 1em;
  color: #9e672a;
}

.gray {
	opacity: 0.2;
	cursor: not-allowed;
	user-select: none;
}
.gray__text {
  padding-left: 2.3em;
}

/*error msg*/
.error{
  display: none;
  color: red;
}
.error.visible {
	display: block;
}

/*text*/
.text {
  text-align: center;
  display: inline-block;
  font-size: .8em;
}

.textBold {
  font-weight: bold;
}
.textBlock {
  display: block;
}
.textBlock__line {
  white-space: pre;
}
.inputsBtn.userText {
  margin: 1em 0.5em 0.1em 1em;
}

input.userAnswer, input.userText {
  width: 80%;
  border: 2px solid #9e672a;
  border-radius: 20px;
  padding: .5em;
  word-wrap: break-word;
  outline: none;
  margin: .5em 0 .5em 3em;
}

/*inputs*/

.inputsBtn {
  margin: 0.1em 0.5em 0.1em 1.2em;
}

/*Radio Inputs*/

.radioContainer, .checkboxContainer {
  display: block;
  position: relative;
  padding-left: 2.3em;
  font-size: 1em;
}

.radioContainer input, .checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0.35em;
  left: 1em;
  height: 0.8em;
  width: 0.8em;
  background-color: #fff;
  border: 0.1em solid #9e672a;
  border-radius: 50%;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radioContainer input:checked~.checkmark:after, .checkboxContainer input:checked~.checkmark:after {
  display: block;
}

.radioContainer .checkmark:after, .checkboxContainer .checkmark:after {
  top: 0.15em;
  left: 0.15em;
  width: 0.3em;
  height: 0.3em;
  border-radius: 50%;
  background: #9e672a;
}

/*Select Input */

.select {
  color: #000;
  background: #fff;
  outline: none;
  border: 2px solid #9e672a;
  border-radius: 20px;
  padding: .5em;
  width: 80%;
}

.select:hover {
  outline: none;
  border-color: #9e672a;
}

.smallText {
  display: block;
  color: #9e672a;
}

.personalData {
  padding: 0.8em;
}

.wrapper {
  border: 2px solid #9e672a;
  padding: 1em 1em;
  background: #fff;
}

.formBtn {
  text-align: center;
}

.btn {
  background: #000;
  color: #9e672a;
  font-size: 1.5em;
  font-weight: bold;
  padding: 0.2em 1em;
  border-radius: 1.5em;
  border: none;
  text-decoration: none;
	cursor: pointer;
	outline: 0;
}

.footer {
  padding: 1em;
  font-size: 0.8em;
  background: #000;
  color: #fff;
  text-align: center;
}

.mail {
  text-decoration: none;
  color: #9e672a;
}

.klauzula__link {
  text-decoration: none;
  color: #000;
}

#firstStep, #secondStep, #thirdStep, #fourthStep, #info {
  display: none;
}

.payment__screen {
  margin-top: 25vh;
}
.payment__text {
  padding: 0 2.5em;
  font-size: 1em;
}

/*media queries for 768px */

@media screen and (min-width: 768px) {
  input.userAnswer, input.userText {
    width: 40%;
    display: inline;
  }
  .select {
    display: inline;
  }
  .userText.mediumScreen {
    width: 30%;
  }
}

/*media queries for 1024px */

@media screen and (min-width: 1024px) {
  .bg {
    background-size: 400% 150%;
  }
  .personalData {
    padding: .8em 3em;
  }
}