/* FONT SourceSansPro */
/*images*/
/*=======================START-MEDIA=====================*/
/*=======================END-MEDIA=====================*/
/* media breakpoint mixin */
/* Single property transition mixin */
/* how to use fonts mixin
  @include font("Lato", "LatoBold", "AcuminPro-Bold", "700", "normal")
*/
/*--------- font-face ---------*/
@font-face {
  font-family: 'Montserrat-Regular';
  src: url("../fonts/Montserrat/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url("../fonts/Montserrat/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.modal__show .grid {
  display: grid;
}

.modal__show .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__show .is-hidden {
  display: none !important;
}

.modal__show .is-disable {
  pointer-events: none !important;
}

.modal__show .is-hand {
  cursor: pointer !important;
}

.modal__show .input__field {
  position: relative;
}

.modal__show .input__field:before {
  content: attr(data-error);
  position: absolute;
  top: 101%;
  right: 0;
  font-size: 12px;
  line-height: 1.1;
  color: #AD1D41;
  font-family: 'Montserrat-Regular',sans-serif;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (min-width: 768px) {
  .modal__show .input__field:before {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1200px) {
  .modal__show .input__field:before {
    font-size: 16px;
    top: 105%;
  }
}

.modal__show .input__field.error:before {
  opacity: 1;
  visibility: visible;
}

.form-control {
  width: 100%;
  height: 54px;
  padding: 5px 24px;
  margin: 0;
  font-family: 'Montserrat-Regular',sans-serif;
  background: #fff;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  font-size: 38px;
  font-size: calc(16px + (38 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: #7d7d7d;
  text-align: center;
  -webkit-transition: border-color .2s, border-width .2s;
  -o-transition: border-color .2s, border-width .2s;
  transition: border-color .2s, border-width .2s;
}

@media (max-width: 320px) {
  .form-control {
    font-size: 16px;
  }
}

@media (min-width: 1920px) {
  .form-control {
    font-size: 38px;
  }
}

@media only screen and (min-width: 768px) {
  .form-control {
    height: 64px;
  }
}

@media only screen and (min-width: 1200px) {
  .form-control {
    height: 80px;
  }
}

@media only screen and (min-width: 1500px) {
  .form-control {
    height: 104px;
  }
}

.form-control:focus::-webkit-input-placeholder {
  opacity: 0;
}

.form-control:focus::-moz-placeholder {
  opacity: 0;
}

.form-control:focus:-ms-input-placeholder {
  opacity: 0;
}

.form-control:focus::-ms-input-placeholder {
  opacity: 0;
}

.form-control:focus::placeholder {
  opacity: 0;
}

.form-control::-webkit-input-placeholder {
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.form-control::-moz-placeholder {
  -moz-transition: opacity .2s;
  transition: opacity .2s;
}

.form-control:-ms-input-placeholder {
  -ms-transition: opacity .2s;
  transition: opacity .2s;
}

.form-control::-ms-input-placeholder {
  -ms-transition: opacity .2s;
  transition: opacity .2s;
}

.form-control::placeholder {
  -webkit-transition: opacity .2s;
  -o-transition: opacity .2s;
  transition: opacity .2s;
}

.modal__show input[type=checkbox],
.modal__show input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.modal__show input[type=radio]:checked + .quiz__bg {
  opacity: 1;
}

.container {
  width: 100% !important;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 1200px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 1366px) {
  .container {
    max-width: calc(1300px + 32px);
  }
}

.modal_quiz .content img {
  display: block;
  margin: 0 auto 46px;
}

.modal_quiz .content h1 {
  margin-bottom: 20px;
}

.modal_quiz .content h2 {
  margin-bottom: 16px;
}

.modal_quiz .content h4, 
.modal_quiz .content h3 {
  margin-bottom: 17px;
}

.modal_quiz .content h6, 
.modal_quiz .content h5 {
  margin-bottom: 14px;
}

.modal_quiz .content ol,
.modal_quiz .content ul {
  margin-bottom: 32px;
}

.modal_quiz .content li {
  margin-bottom: 16px;
  color: #707070;
  font-size: 14px;
  line-height: 20px;
}

.modal_quiz .content ul li {
  position: relative;
  padding-left: 18px;
}

.modal_quiz .content ul li:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #707070;
}

.modal_quiz .content a {
  color: #707070;
}

.modal_quiz .content ol {
  counter-reset: myCounter;
}

.modal_quiz .content ol li {
  position: relative;
  padding-left: 20px;
}

.modal_quiz .content ol li:before {
  counter-increment: myCounter;
  content: counter(myCounter) ". ";
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 360px) {
  .modal_quiz h1, .modal_quiz .h1__title {
    font-size: 40px;
  }
}

@media (min-width: 1920px) {
  .modal_quiz h1, .modal_quiz .h1__title {
    font-size: 48px;
  }
}

.modal_quiz h2, .modal_quiz .h2__title {
  font-size: 42px;
  font-size: calc(22px + (42 - 24) * ((100vw - 360px) / (1920 - 360)));
}

@media (max-width: 360px) {
  .modal_quiz h2, .modal_quiz .h2__title {
    font-size: 24px;
  }
}

@media (min-width: 1920px) {
  .modal_quiz h2, .modal_quiz .h2__title {
    font-size: 42px;
  }
}

.modal_quiz .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.modal_quiz .main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.modal_quiz .noscript {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  font-size: 14px;
  color: #8e1f1f;
  background-color: #efafaf;
  text-align: center;
  z-index: 77777;
}

.modal_quiz .noscript a {
  margin-left: 3px;
  margin-right: 3px;
  color: #630303;
  text-decoration: underline;
}

@media (any-hover: hover) {
  .modal_quiz .noscript a:hover {
    text-decoration: none;
  }
}

.modal_quiz .icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: currentColor;
  line-height: 1em;
}

@font-face {
  font-family: "Icons";
  src: url("../fonts/Icons.eot");
  src: url("../fonts/Icons.eot?#iefix") format("eot"), url("../fonts/Icons.woff") format("woff"), url("../fonts/Icons.ttf") format("truetype"), url("../fonts/Icons.svg#Icons") format("svg");
}

.icon-bookmark:before,
.icon-heart:before {
  font-family: "Icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

.icon-bookmark:before {
  content: '\E001';
}


.icon-heart:before {
  content: '\E002';
}

 .modal_quiz .btn {
  padding: 10px 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  font-size: 33px;
  line-height: 1;
  border-radius: 10px;
  -webkit-filter: drop-shadow(0px 6px 0px #204e8c);
          filter: drop-shadow(0px 6px 0px #204e8c);
  background-color: #3581c6;
  color: #fff;
  text-transform: uppercase;
  font-size: 33px;
  font-size: calc(16px + (33 - 16) * ((100vw - 360px) / (1920 - 360)));
}

@media (max-width: 360px) {
  .modal_quiz .btn {
    font-size: 16px;
  }
}

@media (min-width: 1920px) {
  .modal_quiz .btn {
    font-size: 33px;
  }
}

@media only screen and (min-width: 1200px) {
  .modal_quiz .btn {
    min-height: 50px;
    min-width: 220px;
    -webkit-transition: background-color .2s;
    -o-transition: background-color .2s;
    transition: background-color .2s;
  }
  .modal_quiz .btn:hover {
    background-color: #1966ad;
  }
}

@media only screen and (min-width: 1500px) {
  .modal_quiz .btn {
    min-height: 60px;
    min-width: 240px;
  }
}

.quiz {
  padding-top: 10px;
  padding-bottom: 24px;
}

@media only screen and (min-width: 1500px) {
  .quiz {
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 992px) {
  .quiz.quiz__indent {
    padding-bottom: 32px;
  }
}

.modal_quiz .logo {
  display: block;
  margin: 0 auto 16px;
  max-width: 150px;
}

@media only screen and (min-width: 768px) {
  .modal_quiz .logo {
    max-width: 200px;
  }
}

@media only screen and (min-width: 1200px) {
  .modal_quiz .logo {
    max-width: 230px;
  }
}

@media only screen and (min-width: 1500px) {
  .modal_quiz .logo {
    margin-bottom: 27px;
    max-width: 284px;
  }
}

.modal_quiz .logo img {
  height: auto;
}

.quiz__lines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column-gap: 8px;
  margin-bottom: 24px;
}

@media only screen and (min-width: 1200px) {
  .quiz__lines {
    grid-column-gap: 71px;
    margin-bottom: 16px;
  }
}

@media only screen and (min-width: 1500px) {
  .quiz__lines {
    margin-bottom: 24px;
  }
}

.quiz__line {
  height: 4px;
  background-color: #c2c2c2;
}

@media only screen and (min-width: 1200px) {
  .quiz__line {
    height: 6px;
  }
}

.quiz__line.is-active {
  background-color: #707070;
}

.quiz__top {
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}

@media only screen and (min-width: 768px) {
  .quiz__top {
    font-size: 24px;
  }
}

@media only screen and (min-width: 1200px) {
  .quiz__top {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1500px) {
  .quiz__top {
    margin-bottom: 24px;
    font-size: 33px;
  }
}

.quiz__top .h2__title {
  margin-top: 24px;
  color: #3575b3;
  line-height: 1;
}

@media only screen and (min-width: 1200px) {
  .quiz__top .h2__title {
    margin-top: 16px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1500px) {
  .quiz__top .h2__title {
    font-size: 28px;
  }
}

.quiz__subtitle {
  margin-bottom: 16px;
  color: #707070;
}

@media only screen and (min-width: 1500px) {
  .quiz__subtitle {
    margin-bottom: 24px;
  }
}

.btn__skip {
  color: #707070;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 25px;
  font-size: calc(16px + (25 - 16) * ((100vw - 360px) / (1920 - 360)));
}

@media (max-width: 360px) {
  .btn__skip {
    font-size: 16px;
  }
}

@media (min-width: 1920px) {
  .btn__skip {
    font-size: 25px;
  }
}

.quiz__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 640px) {
  .quiz__imgs {
    margin-left: -16px;
    margin-right: -16px;
  }
}

@media only screen and (min-width: 992px) {
  .quiz__imgs {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media only screen and (min-width: 1200px) {
  .quiz__imgs {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 1500px) {
  .quiz__imgs {
    margin-left: -40px;
    margin-right: -40px;
  }
}

.quiz__imgs.width__mod {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-row-gap: 24px;
  margin-bottom: 24px;
}

@media only screen and (min-width: 768px) {
  .quiz__imgs.width__mod {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 40px;
    margin-bottom: 44px;
  }
}

@media only screen and (min-width: 1024px) {
  .quiz__imgs.width__mod {
    grid-gap: 24px;
    margin-bottom: 24px;
  }
}

@media only screen and (min-width: 1500px) {
  .quiz__imgs.width__mod {
    margin-bottom: 50px;
    grid-gap: 50px;
    max-width: 850px;
  }
}

.quiz__imgs.width__mod .quiz__img {
  width: 100%;
  margin: 0;
}

.quiz__imgs.width__mod .quiz__bg {
  -webkit-filter: drop-shadow(0px 5px 1px #000000);
          filter: drop-shadow(0px 5px 1px #000000);
}

.quiz__img {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  min-height: 200px;
}

@media only screen and (min-width: 640px) {
  .quiz__img {
    width: calc(50% - 32px);
    margin: 0 16px 32px;
  }
}

@media only screen and (min-width: 992px) {
  .quiz__img {
    width: calc(33.33% - 40px);
    margin: 0 20px 40px;
  }
}

@media only screen and (min-width: 1200px) {
  .quiz__img {
    width: calc(33.33% - 20px);
    margin: 0 10px 20px;
  }
}

@media only screen and (min-width: 1500px) {
  .quiz__img {
/*    width: calc(33.33% - 70px);
    margin: 0 35px 50px;
    min-height: 260px;*/
  }
}

.quiz__img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 640px) and (max-width: 1366px) {
  .quiz__img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.quiz__label {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 12px 20px;
  font-size: 25px;
  font-size: calc(16px + (25 - 16) * ((100vw - 360px) / (1920 - 360)));
  color: #fff;
  border-radius: 10px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 360px) {
  .quiz__label {
    font-size: 16px;
  }
}

@media (min-width: 1920px) {
  .quiz__label {
    font-size: 25px;
  }
}

@media only screen and (min-width: 1200px) {
  .quiz__label:hover .quiz__bg {
    opacity: 1;
  }
}

.quiz__label.bottom__mod {
  top: auto;
  bottom: 28px;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.quiz__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-filter: drop-shadow(3.28px 3.774px 1px #000000);
          filter: drop-shadow(3.28px 3.774px 1px #000000);
  background-color: #636363;
  opacity: .66;
  z-index: -1;
  pointer-events: none;
  -webkit-transition: opacity .2s;
  -o-transition: opacity .2s;
  transition: opacity .2s;
}

.btn__wrap {
  text-align: center;
}

.quiz__inner {
  position: relative;
  padding: 55px 16px;
  margin-bottom: 24px;
  max-height: 300px;
}

@media only screen and (min-width: 768px) {
  .quiz__inner {
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 35px;
  }
}

@media only screen and (min-width: 1500px) {
  .quiz__inner {
    padding-top: 72px;
    padding-bottom: 115px;
    margin-bottom: 35px;
  }
}

.quiz__inner .input__field {
  max-width: 795px;
  margin-left: auto;
  margin-right: auto;
}

.quiz__inner .input__field:not(:last-of-type) {
  margin-bottom: 24px;
}

@media only screen and (min-width: 1500px) {
  .quiz__inner .input__field:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

.quiz__inner .h2__title {
  max-width: 940px;
  margin: 0 auto 32px;
  color: #fff;
  font-size: 58px;
  font-size: calc(24px + (58 - 24) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.15;
  letter-spacing: -1px;
  text-align: center;
  -webkit-filter: drop-shadow(0px 5px 3.5px rgba(0, 0, 1, 0.45));
          filter: drop-shadow(0px 5px 3.5px rgba(0, 0, 1, 0.45));
}

@media (max-width: 360px) {
  .quiz__inner .h2__title {
    font-size: 24px;
  }
}

@media (min-width: 1920px) {
  .quiz__inner .h2__title {
    font-size: 58px;
  }
}

@media only screen and (min-width: 768px) {
  .quiz__inner .h2__title {
    margin-bottom: 60px;
  }
}

@media only screen and (min-width: 1500px) {
  .quiz__inner .h2__title {
    margin-bottom: 111px;
  }
}

.quiz__inner .h2__title span {
  display: block;
}

.quiz__inner > * {
  position: relative;
  z-index: 10;
}

.privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.privacy a {
  font-size: 21px;
  font-size: calc(14px + (21 - 14) * ((100vw - 360px) / (1920 - 360)));
  color: #7d7d7d;
}

@media (max-width: 360px) {
  .privacy a {
    font-size: 14px;
  }
}

@media (min-width: 1920px) {
  .privacy a {
    font-size: 21px;
  }
}

@media only screen and (min-width: 1200px) {
  .privacy a {
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
  }
  .privacy a:hover {
    color: #3581c6;
  }
}

.privacy a:last-child {
  border-left: 1px solid #7d7d7d;
  padding-left: 5px;
  margin-left: 5px;
}

.quiz__img-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thank__mod .quiz__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 350px;
}

@media only screen and (min-width: 992px) {
  .thank__mod .quiz__inner {
    min-height: 500px;
  }
}

.thank__mod .h2__title {
  margin-bottom: 0;
}

.quiz__imgs.js-valid-radio{
margin-left: auto;
margin-right: auto;  
}
.container.modal{
    /*display: none;*/
  }
  @media only screen and (min-width: 1500px) {
    .quiz__img {
    /*  width: calc(33.33% - 70px);
      margin: 0 35px 0px;
      min-height: 201px;*/
    }  
  }    
  .container {
    /*width: 66% !important;*/
    padding-left: 16px;
    padding-right: 16px;
  }  



  @media only screen and (min-width: 1500px){
  .quiz__top {
    margin-bottom: 24px;
    font-size: 27px;
  }
}
  @media only screen and (min-width: 1500px) {
  .logo {
    margin-bottom: 27px;
    max-width: 218px;
  }
}
  @media only screen and (min-width: 1500px) {
  .quiz__subtitle {
    margin-bottom: 10px;
  }
}
  @media only screen and (min-width: 1200px){
    .quiz__top .h2__title {
      margin-top: 7px;
    }
  }
  @media only screen and (min-width: 1500px){
    .quiz {
      padding-bottom: 25px;
    }
  }
  @media only screen and (min-width: 1500px){
    .quiz__lines {
      margin-bottom: 12px;
    }
}
  @media only screen and (min-width: 1500px) {
    .modal_quiz .logo {
      margin-bottom: 13px;
      max-width: 218px;
    }
}
  @media only screen and (min-width: 1500px){
    .modal_quiz .btn {
      min-height: 54px;
      min-width: 217px;
    }
}
div[form_id="2"],
div[form_id="3"],
div[form_id="4"] {display:none;}

  .mess_s{
    text-align: center;
    font-size: 24px;
  }
.modal_quiz .container {
  margin-left: auto;
  margin-right: auto;
}  
.js-validate[form_id="1"] button,
  .js-validate[form_id="2"] button,{
    display: none;
  }
@media only screen and (max-width: 991px){
  .quiz__img {
    min-height: auto;    
  }
}
.modal_quiz .btn {
  min-height: 46px;
  min-width: 189px;
  }

@media (min-width: 576px) {
  .modal__content {
    margin: 50px auto;
    max-width: 991px;
  }
}

.modal__header {
  border-bottom: none;
  padding-bottom: 0;
}
.hidden{
  display: none;
}
.modal__btn-close{
/*margin-top: -42px;  */
}
.modal__title{
margin-right: auto;
margin-left: auto;  
}
.modal__header .logo {
  margin: 0 auto 0;
}
.modal_quiz input[type="search"], 
.modal_quiz input[type="text"], 
.modal_quiz input[type="file"], 
.modal_quiz input[type="password"], 
.modal_quiz input[type="submit"], 
.modal_quiz input[type="email"], 
.modal_quiz input[type="tel"], 
.modal_quiz textarea, .modal_quiz select {
max-width: 500px;
margin-left: auto;
margin-right: auto;
display: block;  
}
.quiz__inner .input__field {
  max-width: 500px;
}

@media only screen and (min-width: 992px) {
	.quiz__inner .h2__title {
  		margin-bottom: 47px;
	}
	/*form[form_id="4"] .quiz.quiz__indent {
	  padding-bottom: 32px;
	}*/
}
@media only screen and (min-width: 1500px) {
	form[form_id="4"] .quiz__inner {
	  padding-top: 31px;
	  padding-bottom: 115px;
	  margin-bottom: 35px;
	}
}
