/** Shopify CDN: Minification failed

Line 14:21 Expected ":"

**/
.quiz
{
  background-size: cover;
  background-position: center;
}

.quiz .quiz-step
{
  display: none;block
}

.quiz .quiz-step.active
{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.quiz .quiz-block
{
  background-color: rgba(255,255,255,0.2);
  color: white;
  display: flex;
  padding: 32px;
  justify-content: space-between;
  /* align-items: flex-end; */
  border-radius: 10px;
  gap: 40px;
  max-width: 700px;
}

.quiz .quiz-block p
{
  margin: 0;
}

.quiz .quiz-block .quiz-questions 
{
  max-width: 540px;
}

.quiz .quiz-block .button
{
  padding: 7px 24px;
  min-width: 100px !important;
  border-color: white;
}

.quiz .field:after
{
  display: none;
}

.quiz .quiz-block form .button
{
  min-width: calc(12rem + var(--buttons-border-width)* 2) !important;
}

.quiz .quiz-block .answers
{
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
}

.quiz .quiz-block .quiz-questions h3, .quiz .result h3
{
  leading-trim: both;
  text-edge: cap;
  font-family: "Clash Display";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  margin: 0;
  margin-bottom: 32px;
  color: white;
}

.quiz .quiz-block .counter
{
  text-align: center;
  font-family: "Roboto Flex";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.quiz-wrapper
{
  padding: 160px 0 24px 0;
  min-height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

@media screen and (max-width: 990px) {
  .quiz-wrapper
  {
    min-height: 100%;
    gap: 20px;
  }
}

.quiz-wrapper .title
{
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 80px; /* 100% */
  margin-bottom: 24px;
  max-width: 480px;
}

.quiz-wrapper .par
{
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  /* margin-bottom: 183px; */
  max-width: 480px;
}

.quiz form .field::after
{
  display: none;
}

.quiz-wrapper .note
{
  margin-top: 24px;
  font-family: "Roboto Flex";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.sent .button
{
  min-width: 300px;
}

.quiz .result p
{
  font-family: "Roboto Flex";
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  /* text-align: center; */
  margin-bottom: 20px;
}

@media screen and (max-width: 990px) {
  .quiz-wrapper {
    padding: 40px 0;
  }

  .quiz-wrapper .title
  {
    font-size: 36px;
    line-height: 125%;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .quiz-wrapper .par
  {
    font-size: 16px;
    margin-bottom: 0px;
  }

  .quiz .quiz-block
  {
    flex-direction: column;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(6px);
  }

  .quiz .quiz-block .button
  {
    padding: 15px 24px;
  }

  .quiz .quiz-block .counter
  {
    /* margin-bottom: 24px; */
  }

  .quiz-wrapper .note
  {
    text-align: center;
  }
}