@font-face {
  font-family: "Iqos";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/iqos/IQOS-Light.woff) format("woff");
}

@font-face {
  font-family: "Iqos";
font-style: normal;
font-weight: 400;
src: url(../fonts/iqos/IQOS-Regular.woff) format("woff");
}

@font-face {
  font-family: "Iqos";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/iqos/IQOS-Bold.woff) format("woff");
}

body {
  background-color: #fff;
  font-family: "Iqos", sans-serif;
  font-size: 16px;
  letter-spacing: .5px;
  font-weight: 400;
  color: #35343d;
}

body.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}

.page {
  overflow: hidden;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.hidden {
  display: none;
}

button, a {
  font-family: "Iqos", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .5px;
  font-weight: 400;
}

/* Blocks */
.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.quiz-inner {
  padding: 50px 0;
}

.quiz-title {
  margin-bottom: 30px;
  text-align: center;
  font-size: 55px;
  font-weight: 700;
}

.quiz-suptitle {
  margin-bottom: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
}

.quiz-suptitle-step {
  color: #35343d;
  margin-right: 5px;
}

.quiz-suptitle-question {
  color: #07d2d2;
}

.quiz-content {
  margin-bottom: 50px;
}

.quiz-step {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-radius: 18px;
  background: #f5f4f0;
}

.quiz-step.notCenter {
  align-items: flex-start;
}

.quiz-step + .quiz-step {
  margin-top: 20px;
}

.quiz-step-info {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 39%;
  transition: all .1s linear;
}
.quiz-step-info.wide {
  width: 59%;
}

.quiz-step-info-wrapper {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.quiz-step-info-img {
  display: none;
  max-width: 40px;
  height: 40px;
  margin-right: 15px;
  transition: all .1s linear;
}

.quiz-step-info-img.show {
  display: block;
}

.quiz-step-info-title {
  margin-bottom: 5px;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
}

.quiz-step-info-title.disable {
  opacity: .5;
}

.quiz-step-info-subtitle {
  max-width: 400px;
  font-size: 16px;
  color: #989699;
  font-weight: 700;
}

.quiz-step-questions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 59%;
  height: 100%;
  transition: all .1s linear;
}

.quiz-step-questions.slim {
  width: 39%;
}

.quiz-step-questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  width: 100%;
  margin-right: 20px;
}

.quiz-step-question {
  padding: 12px;
  border: 1px solid #bbbab8;
  border-radius: 10px;
  background: #fff;
  transition: all 0.1s linear;
  font-size: 14px;
  font-weight: 400;
  font-family: "Iqos", sans-serif;
}

.quiz-step-question.tasteBtn {
  padding: 8px;
}

.quiz-step-question.active {
  background: #07d2d2;
  color: #fff;
  border: 1px solid #07d2d2;
}

.quiz-step-question.disable {
  opacity: .7;
  pointer-events: none;
}

.quiz-step-question.disable.active {
  background: #07d2d2;
  color: #fff;
  border: 1px solid #07d2d2;
  pointer-events: none;
}

.quiz-step-question:hover {
  background: #07d2d2;
  color: #fff;
  border: 1px solid #07d2d2;
}

.quiz-step-question + .quiz-step-question {
  /* margin-left: 10px; */
}

.quiz-step-questions-send {
  display: block;
  min-width: 146px;
  text-align: center;
  height: 46px;
  padding: 12px 32px;
  background: #35343d;
  border-radius: 30px;
  border: 1px solid #35343d;
  color: #fff;
  transition: all 0.1s linear;
}

.quiz-step-questions-send:hover {
  opacity: 0.7;
}

.quiz-step-questions-send.disable {
  background: #99989f;
  pointer-events: none;
  border: 1px solid #99989f;
}

.quiz-step-questions-send.hide {
  opacity: 0;
  pointer-events: none;
}

.quiz-step-questions-edit {
  display: block;
  height: 46px;
  padding: 12px 32px;
  min-width: 146px;
  text-align: center;
  background: transparent;
  border: 1px solid #35343d;
  border-radius: 30px;
  color: #35343d;
  transition: all 0.1s linear;
}

.quiz-step-questions-edit:hover {
  background: #35343d;
  color: #fff;
}

.quiz-showresult {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 20px 32px;
  background: #07d2d2;
  border-radius: 50px;
  border: none;
  color: #fff;
  transition: all 0.1s linear;
  font-size: 16px;
  font-weight: 700;
}

.quiz-showresult:hover {
  opacity: 0.7;
}

.quiz-showresult.disable {
  background: #99989f;
  pointer-events: none;
}

.quiz-restart {
  max-width: 200px;
  display: block;
  margin: 0 auto 50px;
  text-align: center;
  transition: all .2s;
  text-decoration-line: underline;
  color: #35343d;
  cursor: pointer;
}

.quiz-restart:hover {
  color: #07d2d2;
}

.quiz-result {
  margin-top: 50px;
}

.quiz-result-top {
  display: flex;
  /* justify-content: space-between; */
  margin-bottom: 30px;
}

.quiz-result-top-text {
  font-size: 20px;
  padding: 0 25px;
  width: 33.33333%;
  border-right: 1px solid rgba(0, 0, 0, .1);
  font-weight: 700;
}

.quiz-result-top-text:last-child {
  border-right: none;
}

.quiz-result-part {
  display: flex;
  /* justify-content: space-between; */
  margin-bottom: 50px;
}

.quiz-result-part.spaceBetween {
  justify-content: space-between;
}

.quiz-result-part:last-child {
  margin-bottom: 0;
}

.quiz-result-part-price {
  padding: 8px 25px;
  margin: 0 25px 30px;
  display: inline-flex;
  align-items: end;
  border-radius: 20px 20px 20px 0;
  color: #fff;
}

.quiz-result-part-price.heets {
  background: #EF8726;
}

.quiz-result-part-price.fiit {
  background: #1053A1;
}

.quiz-result-part-price-left {
  display: flex;
  align-items: end;
  margin-right: 20px;
  font-size: 35px;
  font-weight: 700;
}

.quiz-result-part-price-left span {
  font-size: 16px;
  font-weight: 400;
}

.quiz-result-part-price-right {
  line-height: 22px;
  font-size: 18px;
}

.quiz-result-part-col {
  display: flex;
  flex-direction: column;
  width: 33.33333%;
  padding: 0 25px;
  border-right: 1px solid rgba(0, 0, 0, .1);
}

.quiz-result-part-col:last-child {
  border-right: none;
}

.quiz-result-part-item {
  position: relative;
}

.quiz-result-part-item + .quiz-result-part-item {
  margin-top: 40px;
} 

.quiz-result-part-item-new {
  position: absolute;
  padding: 5px 10px;
  border-radius: 0 20px 20px 0;
  background: #07d2d2;
  color: #fff;
  top: 17px;
  right: -96px;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  z-index: 1;
}

.quiz-result-part-item-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.quiz-result-part-item-group {
  display: flex;
  align-items: center;
}

.quiz-result-part-item-icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-right: 10px;
}

.quiz-result-part-item-text {
  text-transform: lowercase;
  font-weight: 700;
  color: #B6B5BA;
  font-size: 18px;
}

.quiz-result-bottom {
  margin-top: 90px;
  display: flex;
  justify-content: center;
}

.quiz-result-bottom-link {
  min-width: 327px;
  display: block;
  height: auto;
  padding: 20px 32px;
  background: transparent;
  border-radius: 50px;
  border: 1px solid #35343d;
  color: #35343d;
  transition: all 0.1s linear;
  font-size: 16px;
  text-align: center;
}

.quiz-result-bottom-link:hover {
  background: #07d2d2;
  color: #fff;
  border: 1px solid #07d2d2;
}

.quiz-result-bottom-link + .quiz-result-bottom-link {
  margin-left: 30px;
}

.facet {
  background-size: cover;
  background-position: center;
}

.facet-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 0;
}

.facet-info {
  max-width: 680px;
}

.facet-title {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 65px;
  color: #fff;
}

.facet-subtitle {
  font-size: 30px;
  margin-bottom: 65px;
  color: #fff;
}

.facet-subspan {
  font-size: 24px;
  margin-bottom: 65px;
  color: #fff;
}

.facet-btns {
  display: flex;
  flex-direction: column;
  padding-left: 70px;
  max-width: 380px;
  width: 100%;
}

.facet-btn {
  display: block;
  width: 100%;
  padding: 25px 10px;
  background: #07d2d2;
  border-radius: 50px;
  border: none;
  color: #35343d;
  transition: all 0.1s linear;
  font-weight: 700;
  text-align: center;
}

.facet-btn:hover {
  background: #029eaa;
}

.facet-btn + .facet-btn {
  margin-top: 15px;
}

.facet-preview {
  display: block;
  max-width: 336px;
}

.facet-preview-img {
  display: block;
  max-width: 100%;
  height: auto;
  transform: translateY(50px);
}

.facet-preview-img-mob {
  display: none;
}

.guide {
  background-size: cover;
  background-position: center;
  margin-top: 45px;
}

.guide-inner {
  padding: 75px 0 95px;
}

.guide-title {
  margin-bottom: 25px;

  font-size: 55px;
  font-weight: 700;
  color: #fff;
}

.guide-subtitle {
  font-size: 18px;
  color: #fff;
}

/* Mobile Result */
.quiz-result-mob {
  margin-top: 30px;
}

.quiz-result-mob-part + .quiz-result-mob-part {
  margin-top: 50px;
}

.quiz-result-mob-part-top {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.quiz-result-mob-part-inner {
  display: flex;
  justify-content: space-between;
}

.quiz-result-mob-part-col {
  width: 48%;
}

.quiz-result-mob-part-col.fullWidth {
  /* width: 100%; */
}

.quiz-result-mob-price {
  padding: 8px 25px;
  margin: 0 0 30px;
  display: inline-flex;
  flex-direction: column;
  border-radius: 30px 30px 30px 0;
  color: #fff;
}

.quiz-result-mob-price.heets {
  background: #EF8726;
}

.quiz-result-mob-price.fiit {
  background: #1053A1;
}

.quiz-result-mob-price-top {
  font-size: 35px;
  font-weight: 700;
  display: flex;
  align-items: end;
  line-height: 40px;
}

.quiz-result-mob-price-top span {
  font-size: 16px;
  font-weight: 400;
  margin-left: 3px;
}

.quiz-result-mob-price-bot {
  font-size: 16px;
}

.quiz-result-mob-item + .quiz-result-mob-item {
  margin-top: 35px;
}

.quiz-result-mob-item-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.quiz-result-mob-item-new {
  padding: 5px;
  background: #07d2d2;
  text-align: center;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  /* border-radius: 0 0 10px 10px; */
}

.quiz-result-mob-item-info {
  margin-top: 15px;
  display: flex;
  align-items: center;
}

.quiz-result-mob-item-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  margin-right: 10px;
}

.quiz-result-mob-item-text {
  text-transform: lowercase;
  font-weight: 700;
  color: #B6B5BA;
  font-size: 18px;
}

@media (max-width: 1050px) {
  .header-nav {
    display: none;
  }

  .facet-inner {
    flex-direction: column;
  }
  .facet-info {
    max-width: none;
  }
  .facet-preview {
    display: none;
  }
  .facet-btns {
    padding-left: 0;
    margin: 0 auto;
  }
  .facet-title {
    font-size: 35px;
    margin-bottom: 20px;
  }
  .facet-subtitle {
    font-size: 18px;
    margin-bottom: 0;
  }
  .facet-subspan {
    font-size: 14px;
  }
  .facet-preview-img-mob {
    display: block;
    max-width: 70%;
    height: auto;
    margin: 40px auto;
  }

  .guide {
    background-position: center;
  }
  .guide-inner {
    padding: 75px 10px;
  }
  .guide-title {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .guide-subtitle {
    font-size: 16px;
  }

  .quiz-title {
    margin-bottom: 25px;
    font-size: 30px;
  }
  .quiz-content {
    margin-bottom: 30px;
  }
  .quiz-inner {
    padding: 30px 0;
  }
  .quiz-suptitle {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .quiz-suptitle-step {
    white-space: nowrap;
  }
  .quiz-suptitle-question {
    /* text-align: center; */
  }
  .quiz-step-info-title {
    font-size: 20px;
    line-height: 26px;
  }
  .quiz-step-info-title.center {
    /* text-align: center; */
  }
  .quiz-step-info-subtitle.center {
    /* text-align: center; */
  }
  .quiz-step-info-subtitle + .quiz-step-info-subtitle {
    margin-top: 15px;
  }
  .quiz-step {
    flex-direction: column;
    padding: 20px 10px;
  }
  .quiz-step-info {
    width: 100%;
    margin-bottom: 0;
  }
  .quiz-step-info.wide {
    width: 100%;
  }
  .quiz-step-info-img {
    margin-right: 10px;
  }
  /* .quiz-step-info-wrapper.center {
    margin: 0 auto;
  } */
  .quiz-step-questions {
    width: 100%;
    flex-direction: column;
    margin-top: 15px;
  }
  .quiz-step-questions.slim {
    width: 100%;
  }
  .quiz-step-questions.hideMobile {
    display: none;
  }
  .quiz-step-questions-grid {
    /* margin-right: 0;
    margin-bottom: 25px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px; */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .quiz-step-question {
    border-radius: 30px;
    padding: 14px;
    width: 45%;
  }
  .quiz-step-question.tasteBtn {
    padding: 14px;
    border-radius: 30px;
  }
  .quiz-step-question + .quiz-step-question {
    margin-left: 0;
  }
  .quiz-step-questions-send {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
  .quiz-step-questions-edit {
    display: none;
  }
  .quiz-restart {
    margin-bottom: 30px;
  }
  .quiz-result-grid-inner {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 25px;
  }
  .quiz-result-grid-inner.repeatThree {
    grid-template-columns: repeat(1, 1fr);
  }
  .quiz-result-grid-inner.repeatFour {
    grid-template-columns: repeat(1, 1fr);
  }
  .quiz-result-item-text {
    font-size: 20px;
  }
  .quiz-result {
    display: none;
  }
  .quiz-result-mob {
    display: block;
  }
  .quiz-result-mob-price {
    padding: 6px 25px;
  }
  .quiz-result-mob-price-top {
    font-size: 20px;
    line-height: 28px;
  }
  .quiz-result-mob-price-top span {
    font-size: 15px;
    line-height: 23px;
  }
  .quiz-result-mob-price-bot {
    font-size: 15px;
    line-height: 23px;
  }
  .quiz-result-mob-item-text {
    font-size: 16px;
    line-height: 20px;
  }
}

/* Правки */
.quiz-step-questions-send {
  white-space: nowrap;
  padding: 12px;
}

.quiz-result-part-item-new {
  width: 100px;
  top: 10px;
  right: -100px;
}

.facet-title {
  line-height: 66px;
}

@media(max-width: 1050px) {
  .quiz-result-bottom {
    margin-top: 40px;
    flex-direction: column;
  }
  .quiz-result-bottom-link + .quiz-result-bottom-link {
    margin-left: 0;
    margin-top: 15px;
  }
  .facet-title {
    line-height: 40px;
  }
}

/* Редизайн */
@media(min-width: 1051px)
{
  .quiz-step
  {
    margin-left: auto;
    margin-right: auto;
    transition: width .3s;
  }
  .quizStep__active
  {
    width: 80%;
  }
}

/* iluma block */
.iluma-block
{
  margin-top: 40px
}
.iluma-block .iluma-block-container
{
  max-width: 1220px;
  padding: 0 15px;
}
.iluma-block-wrapper
{
  background-color: var(--turquoise);
  padding: 50px 80px 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.iluma-block-img
{
  position: absolute;
  right: -68px;
  bottom: 0;
  height: 93%;
}
.iluma-block-title
{
  font-size: 60px;
  font-family: "Iqos-Bold", sans-serif;
  color: #fff;
  margin-bottom: 60px;
  max-width: 70%;
}

.iluma-block-items
{
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 538px;
}
.iluma-block-item
{
  display: flex;
  align-items: center;
  gap: 20px;
}
.iluma-block-item img
{
  width: 88px;
  height: 88px;
}
.iluma-block-item > span
{
  display: inline;
  font-family: "Iqos-Bold", sans-serif;
  font-size: 24px;
  /* text-transform: uppercase; */
}
.iluma-block-item .iluma-block-item-text__small
{
  display: inline;
  font-size: 50%;
  vertical-align: super;
}
@media( max-width: 1226px )/* tablet */
{
  .iluma-block-wrapper
  {
    padding: 30px 40px 60px;
  }
  .iluma-block-img {
    right: -80px;
    height: 84%;
  }
  .iluma-block-title
  {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .iluma-block-item img
  {
    width: 52px;
    height: 52px;
  }
  .iluma-block-items
  {
    max-width: 330px;
    gap: 14px;
  }
  .iluma-block-item
  {
    gap: 8px;
  }
  .iluma-block-item > span
  {
    font-size: 14px;
    font-family: "Iqos", sans-serif;
  }
}
@media( max-width: 560px )/* mobile */
{
  .iluma-block-wrapper
  {
    padding: 30px 8px 60px;
  }
  .iluma-block-img {
    right: -80px;
    height: 84%;
  }
  .iluma-block-title
  {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .iluma-block-item img
  {
    width: 32px;
    height: 32px;
  }
  .iluma-block-items
  {
    max-width: 250px;
    gap: 14px;
  }
  .iluma-block-item
  {
    gap: 8px;
  }
  .iluma-block-item > span
  {
    font-size: 12px;
    font-family: "Iqos", sans-serif;
  }
}
/* iluma fire block */
.iluma-fire
{
  /* margin-top: 80px; */
  margin-bottom: 80px;
}
.iluma-fire .iluma-fire-container
{
  max-width: 1220px;
  padding: 0 15px;
}
.iluma-fire-wrapper
{
  background-color: var(--turquoise);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.iluma-fire-imgs
{
  display: flex;
}
.iluma-fire-img-block
{
  position: relative;
  width: 50%;
  border-bottom: 2px solid #90e8e3;

}
.iluma-fire-img-block.iluma-fire-img-block__red
{
  background-color: #ab1f24;
  border-bottom: 2px solid #da9b97;
}
.iluma-fire-img-block img
{
  margin: 0 auto;
  display: block;
  padding: 60px 0 0;
}
.iluma-fire-img-block span
{
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline;
  text-align: center;
  transform: translate(-50%, -50%);
  font-family: "Iqos-Bold", sans-serif;
  width: 70%;
  font-size: 28px;
}

.iluma-fire-text
{
  padding: 34px 50px;
}
.iluma-fire-title
{
  display: block;
  margin-bottom: 26px;
  font-family: "Iqos-Bold", sans-serif;
  color: #001f40;
  font-size: 42px;
  line-height: 1.1;
}
.iluma-fire-title > span
{
  display: inline;
}
.iluma-fire-subtitle
{
  font-size: 26px;
  width: 90%;
}

@media( max-width: 1226px )/* tablet */
{
  .iluma-fire-img-block span
  {
    width: 80%;
    font-size: 20px;
  }
  .iluma-fire-title
  {
    font-size: 26px;
    margin-bottom: 14px;
  }
  .iluma-fire-subtitle
  {
    font-size: 20px;
  }
}

@media( max-width: 560px )/* mobile */
{
  .iluma-fire-imgs
  {
    max-height: 280px;
  }
  .iluma-fire-img-block img
  {
    padding: 30px 0 0;
    height: 100%;
  }
  .iluma-fire-img-block span
  {
    width: 90%;
    font-size: 12px;
  }
  .iluma-fire-text
  {
    padding: 18px 8px;
  }
  .iluma-fire-title
  {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .iluma-fire-subtitle
  {
    font-size: 12px;
  }
}