.feedBackForm, .feedBackForm *{
  box-sizing: border-box;
}

.feedBackForm, .thank {

  margin: 0 auto;

  text-align: center;

  padding: 35px 20px 50px;

  border: 1px solid #ccc;

  -webkit-border-radius: 5px;

  -moz-border-radius: 5px;

  -ms-border-radius: 5px;

  -o-border-radius: 5px;
  
  border-radius: 10px;

  -webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.3);

  box-shadow: 0 1px 10px rgba(0,0,0,0.3);

  -webkit-box-sizing: border-box;

  -moz-box-sizing: border-box;

  -ms-box-sizing: border-box;

  -o-box-sizing: border-box;

  box-sizing: border-box;

  width: 100%;

  max-width: 600px;

  background-color: #fff;
}

.feedBackForm__block {
  margin-bottom: 5px;
}
.feedBackForm__block__title{
  text-align:left;
  padding:0 0 10px;
  font-size: 1rem;
}
.feedBackForm__field {
  width: 100%;
  text-align: left;
}

.feedBackForm__block__warning{
  color: #f44650;
}

.feedBackForm__field input[type="text"], 
.feedBackForm__field input[type="email"],
.feedBackForm__field input[type="tel"], 
.feedBackForm__field input[type="password"] {
  width: 100%;
  height: 50px;
  border: 1px solid #cecece;
  border-radius: 5px;
  line-height: 48px;
  padding: 0 15px;
  font-size: 1rem;
}

.feedBackForm__field input[type="text"].bad, 
.feedBackForm__field input[type="email"].bad,
.feedBackForm__field input[type="tel"].bad, 
.feedBackForm__field input[type="password"].bad,
.feedBackForm__field input[type="file"].bad,
.feedBackForm__field input.checkbox.bad + .checkbox__Box{
  border: 1px solid #f44650;
}

.feedBackForm__field input[type="text"]:focus,
.feedBackForm__field input[type="email"]:focus,
.feedBackForm__field input[type="tel"]:focus,
.feedBackForm__field input[type="password"]:focus,
.feedBackForm__field textarea:focus {
  outline: none;
  border-color: #0fb9bc;
}

.feedBackForm__span {
  color: grey;
  font-size: 12px;
  font-style: italic;
  padding-left: 10px;
}

.feedBackForm__field select {
  width: 100%;
  border: 1px solid #cecece;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.feedBackForm__field textarea {
  width: 100%;
  border: 1px solid #cecece;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.feedBackForm__button {
  border: none;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 5px 15px;
  margin: 20px 0;
  cursor: pointer;
}
.feedBackForm__dataProcessing {
  font-size: 0.65rem;
  padding: 10px 0;
}

.feedBackForm__button {
  display: block;
  width: 100%;
  max-width: 400px;
  font-size: 16px;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid #0fb9bc;
  border-radius: 5px;
  padding: 15px 0;
  cursor: pointer;
  margin: 0 auto;
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.feedBackForm__button:hover {
  background-color: #0fb9bc;
  color: #fff;
}

.feedBackForm__dataProcessing {
  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid #0fb9bc;
  margin-top: 30px;
  font-size: 1rem;
}


.labelCheckbox, .labelRadio {
  cursor: pointer;
}

.checkbox, .radio {
  display: none;
}
.checkbox:checked + .checkbox__Box:before,
.radio:checked + .radio__Box:before{
  visibility: visible;
  opacity: 1;
}

.checkbox__Box,
.radio__Box{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  border: 1px solid #cecece;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  margin-right: 10px;
}
.radio__Box{
  border-radius:100%;
}
.checkbox__Box:before
{
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: block;
  position: absolute;
  content: "";
  width: 30px;
  height: 15px;
  border: 4px solid #0fb9bc;
  top: 50%;
  margin-top: -18px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 1000;
  text-indent: -99999px;
  background-color: transparent;
  opacity: 0;
  border-top: 0;
  border-right: 0;
  left: 2px;
}
.radio__Box:before{
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-color: #0fb9bc;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  z-index: 1000;
  text-indent: -99999px;
  opacity: 0;
  border-radius: 100%;
}

.checkbox__text,
.radio__text{
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  line-height: 1;
}

.feedBackForm__title{
  text-align: center;
  font-weight: bold;
  margin: 0px 0 50px;
  font-size: 25px;
  line-height: 32px;
}
.thank{
  display:none;
}

.blockCheckboxes__mandatory .labelCheckbox,
.blockRadiobuttons__mandatory .labelRadio{
  display:block;
  margin:0 0 10px;
}

.blockCheckboxes__mandatory,
.blockRadiobuttons__mandatory{
  padding:10px;
}
.blockCheckboxes__mandatory.bad,
.blockRadiobuttons__mandatory.bad{
  border: 1px solid #f44650;
}
.feedBackForm__field>.labelCheckbox{
  padding:10px;
}