:root {
/*  orig
  --accent: #d6b482;
  --text-color: #828282;
  --bg-dark: #272727;*/
    --accent: #f69300;
    --text-color: #000000;
    --bg-dark: #0a2d6d;
}


/* -------------------------------------
  popups
  ------------------------------------- */
.quiz__row{
  justify-content: space-between;
}
.sec_quiz{
  background: #fff;
}
.quiz__img_col{
  flex: 0 0 29%;
  width: 29%;
}
.quiz__img img{
  width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    opacity: 0.8;
}


.wrapSectionQuiz{
  background: #fff;
      box-shadow: 0 15px 70px rgba(0, 0, 0 ,0.25);
  border-radius: 25px;
  padding: 30px;
}


.sectionSteps {
  display: block;
  position: relative;
  z-index: 2;
}

.sectionSteps.hide {
  display: none;
}

.wrapStepsQuiz {
  position: relative;
}

.oneStepQuiz {
  display: none;
  opacity: 0;
}

.oneStepQuiz.active-js {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
      transition: all 0.35s;
}

.stepTitle {
  color: #000;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  flex: 0 0 100%;
  border-bottom: 2px solid rgba(0,0,0,0.25);
}

.stepSubitle{
  font-size: 18px;
  line-height: 1.2;
  flex: 0 0 100%;
}

.stepItems.error {
  -webkit-animation-name: shake;
  -webkit-animation-duration: 0.4s;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-iteration-count: 2;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: shake;
  -moz-animation-duration: 0.4s;
  -moz-transform-origin: 50% 50%;
  -moz-animation-iteration-count: 2;
  -moz-animation-timing-function: linear;
  -o-animation-name: shake;
  -o-animation-duration: 0.4s;
  -o-transform-origin: 50% 50%;
  -o-animation-iteration-count: 2;
  -o-animation-timing-function: linear;
  animation-name: shake;
  animation-duration: 0.4s;
  -ms-transform-origin: 50% 50%;
      transform-origin: 50% 50%;
  animation-iteration-count: 2;
  animation-timing-function: linear;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(4px, 1px);
  }
  10% {
    -webkit-transform: translate(-3px, -2px);
  }
  20% {
    -webkit-transform: translate(-5px, 0px);
  }
  30% {
    -webkit-transform: translate(0px, 2px);
  }
  40% {
    -webkit-transform: translate(5px, -1px);
  }
  50% {
    -webkit-transform: translate(-1px, 2px);
  }
  60% {
    -webkit-transform: translate(-4px, 1px);
  }
  70% {
    -webkit-transform: translate(5px, 1px);
  }
  80% {
    -webkit-transform: translate(-3px, -1px);
  }
  90% {
    -webkit-transform: translate(4px, 2px);
  }
  100% {
    -webkit-transform: translate(1px, -2px);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translate(4px, 1px);
            transform: translate(4px, 1px);
  }
  10% {
    -webkit-transform: translate(-3px, -2px);
            transform: translate(-3px, -2px);
  }
  20% {
    -webkit-transform: translate(-5px, 0px);
            transform: translate(-5px, 0px);
  }
  30% {
    -webkit-transform: translate(0px, 2px);
            transform: translate(0px, 2px);
  }
  40% {
    -webkit-transform: translate(5px, -1px);
            transform: translate(5px, -1px);
  }
  50% {
    -webkit-transform: translate(-1px, 2px);
            transform: translate(-1px, 2px);
  }
  60% {
    -webkit-transform: translate(-4px, 1px);
            transform: translate(-4px, 1px);
  }
  70% {
    -webkit-transform: translate(5px, 1px);
            transform: translate(5px, 1px);
  }
  80% {
    -webkit-transform: translate(-3px, -1px);
            transform: translate(-3px, -1px);
  }
  90% {
    -webkit-transform: translate(4px, 2px);
            transform: translate(4px, 2px);
  }
  100% {
    -webkit-transform: translate(1px, -2px);
            transform: translate(1px, -2px);
  }
}

.stepItems {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex: 0 0 100%;
  flex-wrap: wrap;
  gap: 1.3%;
}

.itemStep-typeImg {
  flex: 0 0 24%;
  width: 24%;
  position: relative;
/*  border-radius: 10px;
  overflow: hidden;*/
  height: 100%;
  margin-bottom: 30px;
}



.itemStep-typeImg:hover {
  cursor: pointer;
}

.itemStep-typeImg.active > .wrapItemImg:before, .itemStep-typeImg:hover > .wrapItemImg:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.itemStep-typeImg .wrapItemSelect-typeImg {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  position: absolute;
  z-index: 20;
  top: 50%;
  right: 10px;
  /*box-shadow: 0 4px 4px rgba(0,0,0,0.25);*/
      background: #fff;
    border: 5px solid #e1e1e1;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  
}

.itemStep-typeImg.active .wrapItemSelect-typeImg {
  background: var(--accent);
}

.itemStep-typeImg.active .wrapItemSelect-typeImg span {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.itemStep-typeImg.active .wrapItemSelect-typeImg span:after {
  content: "";
  position: absolute;
  z-index: 22;
    top: 8px;
    left: 6px;
    width: 16px;
    height: 7px;
  display: block;
  border-left: solid #111 3px;
  border-bottom: solid #111 3px;
  -webkit-transform: rotate(-40deg);
      -ms-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.wrapItemImg {
  width: 100%;
  height: 220px;
  overflow: hidden;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.ItemImg {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.wrapItemText-typeImg {
  width: 100%;
  min-height: 70px;
  padding: 0 30px 0 10px;
  background-color: #fff;
  border-radius: 15px;
  border: 3px solid var(--accent);
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.title-itemStep-typeImg {
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

.stepButtons {
  text-align: center;
  width: 100%;
  margin-top: 30px;
}

.stepButtons-back, .stepButtons-next {
  display: inline-block;
  border-radius: 100px;
  padding: 10px 30px;
  font-size: 18px;
  margin: 10px 10px;
  cursor: pointer;
  letter-spacing: 1px;
}

.stepButtons-back {
  border: solid #CECECE 1px;
  color: #000;
}

.stepButtons-back:hover {
  border: solid var(--accent) 1px;
}

.stepButtons-next {
  border: solid #ffd200 1px;
  background-color: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.stepButtons-next:hover {
  border: solid #d8b514 1px;
  background-color: #d8b514;
}

.wrapStepsQuiz, .oneStepQuiz-typeRadio {
  width: 100%;
}

.stepItems-typeRadio {
  min-height: 314px;
  width: 100%;
  max-width: 600px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.itemStep-typeRadio {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.itemRadio {
  width: 20px;
  height: 20px;
	min-width: 20px;
  flex: 0 0 20px;
  border-radius: 20px;
  position: relative;
  vertical-align: top;
  border: solid #000 2px;
  margin-top: 2px;
  padding: 1px;
}

.itemStep-typeRadio:hover {
  cursor: pointer;
}

.itemStep-typeRadio.active > .itemRadio:after {
  background-color: var(--accent);
}

.itemStep-typeRadio > .itemRadio:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  z-index: 20;
  top: 2px;
  left: 2px;
  display: block;
  border-radius: 20px;
}

.itemStep-typeRadio > .itemRadio:after {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  z-index: 22;
  display: block;
  border-radius: 20px;
}

.title-itemStep-typeRadio {
  font-size: 18px;
  line-height: 1.2;
  color: #000;
  margin-left: 15px;
  width: auto;
  display: block;
  letter-spacing: 1px;
}


.itemStep-typeRadio:hover > .title-itemStep-typeRadio {
  text-decoration: underline;
  -webkit-transform: translate(5px, 0);
      -ms-transform: translate(5px, 0);
          transform: translate(5px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.oneStepQuiz-typeMyData {
  width: 100%;
}

.stepItems-typeMyData {
  min-height: 314px;
  width: 100%;
  max-width: 600px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wrapStepItems-typeMyData {
  width: 100%;
}

.itemStep-typeMyData {
  margin-bottom: 15px;
  display: block;
  clear: both;
}

.itemStep-typeMyData > .itemMyData:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  z-index: 20;
  top: 2px;
  left: 2px;
  display: block;
  border-radius: 20px;
}

.itemStep-typeMyData > .itemMyData:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  z-index: 22;
  top: 5px;
  left: 5px;
  display: block;
  border-radius: 20px;
}

.itemStep-typeMyData.active > .itemMyData:after {
  background-color: var(--accent);
}

.title-itemStep-typeMyData {
  font-size: 18px;
  line-height: 1.2;
  color: #000;
  vertical-align: middle;
  width: auto;
  display: block;
  letter-spacing: 1px;
}

.wrapInputMyData-typeMyData {
  width: 100%;
  display: block;
  margin: 15px 0px;
}

input.inputMyData {
  background: #fff;
  border: solid #000 2px;
  padding: 16px 20px;
  width: 100%;
  border-radius: 3px;
  font-size: 16px;
  color: #000;
  outline: none;
}

input.inputMyData:focus {
  border-color: var(--accent);
  outline: none;
}

.sectionFinish-wrap {
  width: 100%;
  /*min-height: 100vh;*/
     /* padding-top: 20vh;*/
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.sectionFinish {
  display: block;
  position: relative;
  z-index: 10;
}

.sectionFinish.hide {
  display: none;
}

.contentFinish {
  width: 100%;
  display: block;
  max-width: 520px;
  margin: 40px auto 40px;
}

.wrapformField {
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
}

.wrapformField .inputTel {
  width: 100%;
  text-align: center;
  padding: 8px;
  color: #000;
  font-size: 24px;
  letter-spacing: 5px;
  border: solid #000 2px;
  border-radius: 3px;
  outline: none;
}

.wrapformField .inputTel::-webkit-input-placeholder, .wrapformField .inputTel ::-moz-placeholder, .wrapformField .inputTel:-moz-placeholder, .wrapformField .inputTel:-ms-input-placeholder {
  color: #000;
}

.wrapformField .inputTel:focus {
  border-color: var(--accent);
}

.textErrorTel {
  color: transparent;
  opacity: 0;
  margin-bottom: 10px;
  border-bottom: 2px #ff4a4a solid;
  display: inline-block;
  font-size: 18px;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.textErrorTel.error {
  color: #ff4a4a;
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.textConsent {
  color: #000;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.textConsent a {
  color: #ddd;
}

.textConsent a:hover {
  color: #fff;
}

.sectionFooter {
  min-height: 40px;
  padding: 15px;
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  opacity: 0;
}

.sectionFooter.active {
  opacity: 1;
}

.textProgerssfooter {
  font-size: 15px;
  color: #000;
}


.textModal_1 {
  font-size: 20px;
  color: #111;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.textModal_2 {
  font-size: 16px;
  color: #111;
  line-height: 1.4;
  margin-bottom: 25px;
}

.textModal_3 {
  font-size: 16px;
  color: #111;
  line-height: 1.2;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  background-color: var(--accent);
  margin-bottom: 20px;
}

.textModal_3:hover {
  background-color: #F1E430;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.textModal_4 {
  margin-bottom: 20px;
}

.textModal_4 a {
  font-size: 16px;
  color: #111;
  line-height: 1.2;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  background-color: var(--accent);
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.textModal_4 a:hover {
  text-decoration: none;
  background-color: #F1E430;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .quiz__img_col{
    display: none;
  }
  .quiz__row{
    display: block; 
  }
  .wrapSectionQuiz{
    flex: 0 0  100%;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .stepItems-typeRadio, .stepItems-typeMyData {
    min-height: 150px;
  }
}


@media (max-width: 991px) {
  .itemStep-typeImg{
    flex: 0 0 48%;
    width: 48%;
    margin-bottom: 50px;
  }
}



@media (max-width: 767px) {
  .stepTitle {
    padding-left: 0%;
    padding-right: 0%;
  }
  .wrapformField .inputTel {
    letter-spacing: 0px;
    font-size: 20px;
  }
  .textErrorTel {
    font-size: 15px;
  }
  .wrapItemImg{
    height: 150px;
  }
}




@media (max-width: 575px) {
  .wrapSectionQuiz{
    padding: 20px 15px;
  }
  .contentFinish{
    margin: 20px auto -15px;
  }
  .textErrorTel{
    margin-bottom: 0;
  }
  .sec_quiz{
    padding: 30px 0;
  }
  .stepTitle{
    font-size: 22px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .itemStep-typeImg{
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 15px;
        max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }
  .wrapItemImg{

    height: 120px;
  }
  .wrapItemText-typeImg{
    min-height: 40px;
    border-radius: 35px;
    padding: 10px 35px 10px 10px;
  }
  .itemStep-typeImg .wrapItemSelect-typeImg{
    width: 30px;
    height: 30px;
  }
}

#buttonForm:disabled{
  background: red;
}

.sucsess-send{
  font-size: 33px;
  display: none;
  color: #11b000;
}
