/*first screen*/
.quiz__first-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

.quiz__first-screen.hide {
  display: none;
}

.quiz__first-screen-image-container {
  flex-basis: 220px;
  background-image: url("../images/main-image-mobile.jpg");
  background-position: 50%;
  background-size: cover;
}

.quiz__first-screen-company-present {
  padding: 1rem 2rem;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 57px;
  border-bottom: solid 1px #ced1de;
}

.quiz__first-screen-company-present .media-container {
  flex-shrink: 0;
  height: 50px;
  width: 50px;
}

.quiz__first-screen-company-present .logo-desktop {
  display: none;
}

.quiz__first-screen-company-present .company-present-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.33;
  text-align: left;
  color: #3f3f3f;
}

.quiz__first-screen-company-present a:hover {
  text-decoration: underline;
}

.quiz__first-screen-main-block-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.quiz__first-screen-main-block {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.quiz__first-screen-main-block_header {
  margin-bottom: 1rem;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
  color: #363636;
}

.quiz__first-screen-main-block_text {
  margin-bottom: 1rem;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.33;
  color: #3f3f3f;
}

.quiz__first-screen-main-block_button {
  padding: 12px 30px;
}

.quiz__first-screen-main-block_bonus-section {
  margin: 2.5rem auto 0;
  width: 100%;
  max-width: 410px;
  text-align: center;
}

.quiz__first-screen-main-block_bonus-text {
  margin-bottom: .6rem;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  line-height: 2.4;
  letter-spacing: 1px;
  text-align: center;
}

.quiz__first-screen-main-block_bonus-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.quiz__first-screen-main-block_bonus-item {
  position: relative;
  width: 195px;
  height: 64px;
  background: linear-gradient(331deg, #004560, #156c8f);
  border-radius: 5px;
  line-height: 1.2;
  margin-bottom: 15px;
  user-select: none;
  cursor: pointer;
}

.quiz__first-screen-main-block_bonus-item .bonus-item-lock {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(40%, -40%);
  background-color: #8d8d8d;
  border-radius: 100%;
  z-index: 2;
  height: 25px;
  width: 25px;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px 0 rgba(54, 54, 54, 0.2);
}

.quiz__first-screen-main-block_bonus-item .bonus-item-info {
  position: absolute;
  right: 30px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(40%, -40%);
  background-color: #f7f7f7;;
  border-radius: 100%;
  z-index: 2;
  height: 25px;
  width: 25px;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px 0 rgba(54, 54, 54, 0.2);
  overflow: hidden;
  cursor: pointer;
}

.quiz__first-screen-main-block_bonus-item .bonus-item-info svg {
  width: 19px;
  height: 19px;
}
.quiz__first-screen-main-block_bonus-item .bonus-item-info:has(img) {
  border: 1px solid #fff;
}
.quiz__first-screen-main-block_bonus-item .bonus-item-info img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.quiz__first-screen-main-block_bonus-item .bonus-item-lock svg {
  color: #fff;
  height: 11px;
}

.quiz__first-screen-main-block_bonus-item .bonus-item-bg {
  overflow: hidden;
  height: 100%;
}

.quiz__first-screen-main-block_bonus-item .bonus-item-filter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .55));
  z-index: 1;
}

.quiz__first-screen-main-block_bonus-item .bonus-item-text {
  overflow-wrap: break-word;
  overflow: hidden;
  min-width: 60%;
  position: absolute;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  right: 9%;
  top: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  min-height: 60%;
  max-height: 80%;
  max-width: 80%;
  text-align: right;
  word-break: break-word;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .2);
  z-index: 2;
}

.quiz__first-screen-bottom-block {
  padding: 1.5rem 1rem;
  text-align: center;
}

.quiz__first-screen-bottom-block a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.quiz__first-screen-bottom-block a:hover {
  text-decoration: underline;
}

.quiz__first-screen-bottom-block p {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  color: #494949;
}

.quiz__question-desktop-bonus-wrapper {
  display: none;
}

@media (min-width: 819px) {
  .quiz__first-screen {
    align-items: end;
  }

  .quiz__first-screen:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(270deg, #272626, transparent);
  }

  .quiz__first-screen-image-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url("../images/main-image-desktop.jpg");
  }

  .quiz__first-screen-main-block-wrapper,
  .quiz__first-screen-company-present {
    position: relative;
    width: 41.7%;
    z-index: 2;
  }

  .quiz__first-screen-main-block_header,
  .quiz__first-screen-main-block_text,
  .quiz__first-screen-main-block_bonus-text,
  .quiz__first-screen-company-present .company-present-text,
  .quiz__first-screen-bottom-block a,
  .quiz__first-screen-bottom-block p {
    color: #fff;
  }

  .quiz__first-screen-bottom-block {
    text-align: left;
  }

  .quiz__first-screen-company-present {
    margin-bottom: 0;
    border-bottom: none;
  }

  .quiz__first-screen-main-block-wrapper,
  .quiz__first-screen-company-present {
    border-left: 1px solid hsla(0, 0%, 100%, .16);
  }

  .quiz__first-screen-main-block_button {
    width: unset;
    animation-duration: 1.5s;
  }

  .quiz__first-screen-main-block {
    justify-content: center;
  }

  .quiz__first-screen-company-present .media-container {
    height: 50px;
  }

  .quiz__first-screen-company-present .logo-desktop {
    display: block;
  }
  .quiz__first-screen-company-present .logo-mobile {
    display: none;
  }

  .quiz__first-screen-main-block_bonus-text {
    text-align: start;
  }
  .quiz__first-screen-main-block_bonus-wrapper {
    justify-content: start;
  }
  .quiz__first-screen-main-block_bonus-section {
    margin: 2.5rem 0 0;
  }
}

/*first screen END*/


/*question frame*/
.quiz__question-frame {
  position: relative;
  padding-bottom: 100px;
  display: grid;
  grid-template-areas:
        'question' 'message' 'questionBlock' 'bonus';
  opacity: 0;
}

.quiz__question-frame.hide {
  display: none;
}

.quiz__question-wrapper {
  padding: 0 1rem;
}

.quiz__question-text {
  grid-area: question;
  padding: 16px 16px 11px;
  font-size: 22px;
  color: #363636;
  text-align: left;
  line-height: 1.2;
  font-weight: 500;
}

.quiz__question-representative-message-wrapper {
  grid-area: message;
  padding: 10px 40px 10px 10px;
  position: relative;
  display: grid;
  grid-template-areas:
      'img name'
      'img message';
  gap: 2px 10px;
  background-color: #d8dae4;
  border-radius: 20px 20px 20px 3px;
}

.quiz__question-representative-message-wrapper > svg {
  position: absolute;
  bottom: 50%;
  right: 15px;
  transform: translateY(50%) rotate3d(1, 0, 0, 0deg);
  transition: 0.3s ease-in-out;
}

.quiz__question-representative-message-wrapper .representative-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.quiz__question-representative-message-wrapper .user-img-wrapper {
  grid-area: img;
  position: relative;
}

.quiz__question-representative-message-wrapper .representative-status-bar {
  grid-area: name;
  display: flex;
  gap: 8px;
  align-items: center;
}

.quiz__question-representative-message-wrapper .representative-status-bar .name {
  font-weight: 500;
  line-height: 1.125;
  word-break: break-word;
  white-space: pre;
}

.quiz__question-representative-message-wrapper .representative-status-bar .online {
  width: 5px;
  height: 5px;
  border-radius: 3px;
  background-color: #11983f;
  color: #69748c;
}

.quiz__question-representative-message-wrapper .representative-status-bar .job-status {
  font-size: 12px;
  color: #69748c;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  word-break: break-word;
  font-style: inherit;
  font-weight: inherit;
}

.quiz__question-representative-message-wrapper .representative-message {
  --message-height: 22px;
  grid-area: message;
  color: #2e2e54;
  margin-top: 4px;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  overflow: hidden;
  max-height: var(--message-height);
  transition: max-height 0.3s ease-out;
}

.quiz__question-representative-message-wrapper .representative-message .img-online {
  display: none;
}

.quiz__question-representative-message-wrapper .representative-message a {
  font-weight: 700;
}

.quiz__question-representative-message-wrapper.open > svg {
  bottom: 15px;
  transform: translateY(-150%) rotate3d(1, 0, 0, 180deg);
}
.quiz__progress-container {
  padding-top: 20px;
  position: fixed;
  width: 100%;
  bottom: 0;
  background: linear-gradient(0deg, #f7f7f7 0, #f7f7f7 95%, hsla(0, 0%, 100%, 0));
  z-index: 10;
}
.quiz__progress-container > div {
  display: grid;
  grid-template-areas:
      "details    buttons"
      "progress progress";
  grid-template-columns: min-content auto;
  grid-auto-rows: min-content;
  gap: 11px 0;

}

.quiz__progress-status-wrapper {
  display: none;
}

.quiz__progress-mini-bonus-wrapper {
  --translate: 0;
  grid-area: bonus;
  padding-left: 1rem;
  display: flex;
  gap: 6px;
  transform: translateY(var(--translate));
  cursor: not-allowed;
  transition: 0.3s ease-in-out;
}

.quiz__progress-mini-bonus-wrapper.hide {
  display: none;
}

.quiz__progress-bonus-wrapper {
  grid-area: bonus;
  margin-top: 30px;
  padding: 0 15px;
  display: flex;
  gap: 14px;
  cursor: not-allowed;
}

.quiz__progress-bonus-wrapper.hide {
  display: none;
}

.quiz__progress-bonus-wrapper .quiz__first-screen-main-block_bonus-item {
  margin: 0;
  width: 100%;
  height: 54px;
}

.quiz__progress-bonus-wrapper .quiz__first-screen-main-block_bonus-item .bonus-item-lock {
  width: 18px;
  height: 18px;
  background-color: #dbdada;
}

.quiz__progress-bonus-wrapper .quiz__first-screen-main-block_bonus-item .bonus-item-info {
  right: 22px;
  width: 18px;
  height: 18px;
  border-width: 0;
}


.quiz__progress-bonus-wrapper .quiz__first-screen-main-block_bonus-item .bonus-item-lock svg {
  width: 8px;
  height: 8px;
  fill: #69748c;
}

.quiz__progress-bonus-wrapper .quiz__first-screen-main-block_bonus-item .bonus-item-info svg {
  width: 100%;
  height: 100%;
}

.quiz__progress-bonus-wrapper .quiz__first-screen-main-block_bonus-item .bonus-item-text {
  font-size: 11px;
}

.quiz__progress-mini-bonus-wrapper .mini-bonus-item {
  position: relative;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  background-color: #dbdada;
}

.quiz__progress-mini-bonus-wrapper .mini-bonus-item-lock {
  position: absolute;
  right: 0;
  top: -6px;
  height: 14px;
  width: 14px;
  border: 2px solid #fff;
  border-radius: 100%;
  background-color: #dbdada;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz__progress-mini-bonus-wrapper .mini-bonus-item-lock svg {
  margin-top: -2px;
  fill: #69748c;
  height: 6px;
}

.quiz__progress-mini-bonus-wrapper .mini-bonus-item-bg {
  height: 100%;
  overflow: hidden;
}

.quiz__progress-details {
  align-self: center;
  grid-area: details;
  margin-left: 17px;
  padding: 0 30px;
  height: 40px;
  min-height: unset;
  font-size: 14px;
}

.quiz__progress-bonus-wrapper.hide {
  display: none;
}

.quiz__progress-button-wrapper {
  padding-right: 15px;
  grid-area: buttons;
  justify-self: end;
  display: flex;
  gap: 15px;
}

.quiz__progress-button-wrapper .button-next {
  width: 40px;
  height: 40px;
}

.quiz__progress-button-wrapper .button-next {
  padding: 0 15px;
  width: max-content;
  min-height: unset;
  height: 40px;
  font-size: 15px;
}


.quiz__progress-progress {
  grid-area: progress;
}

.quiz__progress-bar {
  background-color: #bfc3d4;
  height: 6px;
  overflow: hidden;
}

.quiz__progress-bar-inner {
  position: relative;
  height: 100%;
  border-radius: 20px;
  background-image: linear-gradient(90deg, #009ede, #156c8f);
  box-shadow: inset 0 2px 9px hsla(0, 0%, 100%, .3), inset 0 -2px 6px rgba(0, 0, 0, .4), .6px 1.9px 7px 0 rgba(26, 24, 182, 0.5);
  overflow: hidden;
  transform: translateX(-100%);
  transition: 0.4s ease-in-out;
}

.quiz__progress-bar-inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(-45deg, hsla(0, 0%, 100%, .08) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .08) 0, hsla(0, 0%, 100%, .08) 75%, transparent 0, transparent);
  z-index: 1;
  background-size: 20px 20px;
  -webkit-animation: move 1.5s linear infinite;
  animation: move 1.5s linear infinite;
  border-radius: 20px;
  overflow: hidden;
}

@media (min-width: 819px) {
  .quiz__question-frame {
    padding: 0;
    display: grid;
    grid-template-areas:
        'question       aside'
        'questionBlock  aside'
        'progress       aside';
    grid-template-columns: auto 280px;
    grid-template-rows: min-content auto 73px;
    height: 100vh;
    height: 100svh;
  }

  .quiz__question-text {
    grid-area: question;
    padding-top: 30px;
    font-size: 28px;
  }

  .quiz__question-wrapper {
    grid-area: aside;
    padding: 32px 19px 16px;
    /*margin-left: 20px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #e4e5ec;
  }

  .quiz__progress-container {
    grid-area: progress;
    position: static;
    padding-top: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /*border-top: solid 1px #ced1de;*/
    background: unset;
  }

  .quiz__progress-container > div {
    /*padding: 0 15px;*/
    display: grid;
    grid-template-areas:
        "details  buttons"
        "progress progress";
    grid-template-columns: min-content auto min-content;
    width: 100%;
    max-width: 860px;
  }

  .quiz__progress-mini-bonus-wrapper,
  .quiz__progress-bonus-wrapper {
    display: none;
  }

  .quiz__progress-progress {
    /*padding-left: 14px;*/
    overflow: hidden;
    width: 100%;
  }

  .quiz__question-representative-message-wrapper {
    padding: 0;
    grid-template-areas:
        'img name'
        'message message';
    grid-template-columns: min-content auto;
    background: transparent;
    border-radius: unset;
  }

  .quiz__question-representative-message-wrapper > svg {
    display: none;
  }

  .quiz__question-representative-message-wrapper .representative-message {
    margin-top: 18px;
    position: relative;
    padding: 5px 18px 5px 10px;
    max-height: unset;
    background-color: #d8dae4;
    border-radius: 4px;
    font-style: normal;
    overflow: unset;
  }

  .quiz__question-representative-message-wrapper .representative-message * {
    position: relative;
    z-index: 2;
  }

  .quiz__question-representative-message-wrapper .representative-message .message-corner {
    position: absolute;
    top: -7px;
    left: 27px;
    width: 18px;
    height: 18px;
    background-color: #d8dae4;
    transform: rotate(45deg);
    z-index: 1;
  }

  .quiz__question-representative-message-wrapper .representative-status-bar {
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 2px;
  }

  .quiz__question-representative-message-wrapper .representative-status-bar .online {
    display: none;
  }

  .quiz__question-representative-message-wrapper .user-img-wrapper {
    width: 70px;
    height: 70px;
  }

  .quiz__question-representative-message-wrapper .user-img-wrapper .img-online {
    display: block;
    position: absolute;
    right: 12px;
    bottom: 0;
    border-radius: 50%;
    transition: all .1s ease-in-out;
    border: 2px solid #ecedf2;
    opacity: 1;
    background-color: #1bb157;
    width: 12px;
    height: 12px;
    box-shadow: 0 1px 3px 0 #ced1de;
  }

  .quiz__question-representative-message-wrapper .representative-img {
    width: 70px;
    height: 70px;
  }

  .quiz__question-wrapper .quiz__question-desktop-bonus-wrapper {
    width: 100%;
  }

  .quiz__question-wrapper .quiz__first-screen-main-block_bonus-item {
    width: 100%;
    height: 74px;
  }

  .quiz__question-desktop-bonus-wrapper {
    display: block;
  }
}

@media (min-width: 1000px) {
  .quiz__question-frame {
    grid-template-rows: min-content auto 66px;
  }

  .quiz__progress-container  {
    padding: 11px 0;
    grid-area: progress;
    position: static;
  }

  .quiz__progress-container > div {
    padding: 0 15px;
    grid-template-areas:
        "details progress buttons";
    gap: 5%;
  }

  .quiz__progress-status-wrapper {
    display: block;
    font-size: 12px;
    text-align: left;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 8px;
    height: 18px;
    position: relative;
  }

  .quiz__progress-status-wrapper span {
    font-size: 14px;
    color: #156c8f;
    font-weight: 700;
    margin-left: 10px;
  }

  .quiz__progress-details {
    margin-left: 0;
  }

  .quiz__progress-button-wrapper {
    padding-right: 0;
  }
}

@media (min-width: 1200px) {
  .quiz__question-text {
    margin: 0 auto;
    width: 860px;
  }

  .quiz__question-frame {
    grid-template-columns: auto 320px;
  }
}

/*question frame END*/


/* questions container */
.quiz__answer-container {
  grid-area: questionBlock;
  margin: 15px auto;
  padding: 0 16px;
  position: relative;
  overflow-y: auto;
  width: 100%;
  max-width: 860px;
}

.quiz__answer-container .question-logo {
  margin-top: 10px;
  /*margin-inline: auto;*/
  width: 50px;
  max-width: 60px;
  height: auto;
}

@media (min-width: 819px) {

}

/* questions type 1 */
.quiz__answer-container:has(.quiz__answers-with-img-container) {

}

.quiz__answer-container .quiz__answers-with-img-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  grid-auto-rows: min-content;
  gap: 15px;
}


.quiz__answer-container .answer-with-img {
  position: relative;
  height: min-content;
  border-radius: 4px;
  border: 1px solid #ced1de;
  transition: .2s ease-out;
  cursor: pointer;
}

.quiz__answer-container .answer-with-img:hover {
  border-color: rgba(26, 24, 182, 0.5);
  box-shadow: 0 1px 3px 0 #ced1de;
}

.quiz__answer-container .answer-with-img.selected {
  position: relative;
  border-color: rgba(26, 24, 182, 0.5);
  box-shadow: 0 1px 3px 0 #ced1de;
}

.quiz__answer-container .answer-with-img.selected:before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  width: 9%;
  aspect-ratio: 1;
  background-image: radial-gradient(#be5c16 30%, rgba(255, 255, 255, 0.53) 35%, rgba(255, 255, 255, 0.53) 43%, #be5c16 50%);
  border-radius: 50%;
}

.quiz__answer-container .answer-with-img p {
  padding: 5px 10px 5px 10px;
  display: flex;
  align-items: center;
  justify-content: start;
  min-height: 50px;
  font-size: 14px;
}

.quiz__answer-container .answer-with-img .info {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f7f7f7 ;
  border-radius: 50%;
}
.quiz__answer-container .answer-with-img .info svg {
  width: 15px;
  height: 15px;
}

@media (min-width: 1000px) {
  .quiz__answer-container:has(.answer-with-img) {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: min-content;
    gap: 15px;
  }
}

/*questions type 1 END*/


/*questions type 2*/
.quiz__answer-container > div:has(.input-radio),
.quiz__answer-container > div:has(.input-check-box)
{

  display: flex;
  flex-direction: column;
  gap: 32px;
}

.quiz__answer-container:has(.input-radio) .answer-media,
.quiz__answer-container > div:has(.input-check-box) .answer-media
{
  margin: 0 auto;
  max-width: 380px;
  aspect-ratio: 1.24;
}

.quiz__answer-container:has(.input-radio) .answer-media img,
.quiz__answer-container > div:has(.input-check-box) .answer-media img
{
  border-radius: 4px;

}

.quiz__answers-with-radio-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quiz__answers-with-radio-container .question-logo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 300px;
  height: auto;
  z-index: 1;
}

@media (min-width: 819px) {
  .quiz__answer-container:has(.input-radio) .answer-media,
  .quiz__answer-container > div:has(.input-check-box) .answer-media
  {
    max-width: 380px;
    max-height: 307px;
    flex-shrink: 0;
  }
}

@media (min-width: 1000px) {
  .quiz__answer-container > div:has(.input-radio),
  .quiz__answer-container > div:has(.input-check-box)
  {
    flex-direction: row;
    margin: 16px auto 0;
    max-width: 860px;
  }

  .quiz__answer-container:has(.input-radio) .answer-media,
  .quiz__answer-container > div:has(.input-check-box) .answer-media
  {
    order: 1;
    margin: 0;
    position: sticky;
    top: 0;
  }

  .quiz__answers-with-radio-container {
    flex-grow: 1;
  }
}

/*questions type 2 END*/

/*hints*/
.bonus-item-hint {
  position: absolute;
  left: 50%;
  width: 300px;
  color: white;
  text-align: left;
  transform: translateX(-50%);
  background-color: black;
  border-radius: 5px;
  z-index: 9;
  box-shadow: 0 4px 10px 0 rgba(54, 54, 54, 0.2);
  overflow: hidden;
  cursor: default;
}

.bonus-item-hint .text {
  padding: 10px;
}

.bonus-item-hint.fade-in {
  animation-delay: 0s;
}

.quiz__progress-bonus-wrapper .bonus-item-hint.first {
  left: 0;
  transform: none;
}
.quiz__progress-bonus-wrapper .bonus-item-hint.second {
  left: unset;
  right: 0;
  transform: none;
}

.quiz__question-wrapper .bonus-item-hint {
  width: 100%;
}

@media(min-width: 475px) {
  .quiz__progress-bonus-wrapper .bonus-item-hint.first,
  .quiz__first-screen-main-block_bonus-wrapper .bonus-item-hint.first {
    left: 0;
    transform: none;
  }
  .quiz__progress-bonus-wrapper .bonus-item-hint.second,
  .quiz__first-screen-main-block_bonus-wrapper .bonus-item-hint.second {
    left: unset;
    right: 0;
    transform: none;
  }
}
@media(min-width: 530px) {
  .quiz__first-screen-main-block_bonus-wrapper .bonus-item-hint.first,
  .quiz__first-screen-main-block_bonus-wrapper .bonus-item-hint.second
  {
    left: 50%;
    transform: translateX(-50%);
    right: unset;
  }
}
@media(min-width: 640px) {
  .quiz__progress-bonus-wrapper .bonus-item-hint.first,
  .quiz__progress-bonus-wrapper .bonus-item-hint.second
  {
    left: 50%;
    transform: translateX(-50%);
    right: unset;
  }

}
/*hints END*/



/*last screen*/
.quiz__last-screen {
  margin: 0 auto;
  height: 100vh;
  height: 100svh;
  opacity: 0;
  overflow: auto;
}

.quiz__last-screen.hide {
  display: none;
}

.quiz__last-screen > .img,
.quiz__last-screen > .img-desktop {
  height: 265px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.quiz__last-screen > .img-desktop {
  display: none;
}

.quiz__last-screen_form-wrapper {
  margin-top: -16px;
  position: relative;
  padding: 24px 16px;
  border-radius: 16px 16px 0 0;
  background: #fff;
  z-index: 1;
}

.quiz__last-screen_form-wrapper .top-part {
  margin: 0 auto;
  max-width: 630px;
}

.quiz__last-screen-header {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  /*text-align: center;*/
}

.quiz__last-screen-text {
  margin: 14px auto 0;
  display: block;
  /*max-width: 630px;*/
  position: relative;
  color: #69748c;
  /*text-align: center;*/
}

.quiz__last-screen .quiz__first-screen_bonus-label-wrapper {
  /*padding-top: 26px;*/
}

.quiz__first-screen_bonus-label-wrapper .bonus-label {
  font-size: 11px;
  font-weight: 900;
  line-height: 1.53;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  text-align: center;
  color: #69748c
}

.quiz__last-screen .quiz__first-screen-main-block_bonus-wrapper {
  margin-top: 8px;
  justify-content: center;
}

.quiz__last-screen .quiz__first-screen-main-block_bonus-item {
  width: 47%;
}

.quiz__last-screen .quiz__first-screen-main-block_bonus-item .bonus-item-text {
  padding-left: 10px;
  min-width: unset;
  max-width: unset;
}

.quiz__last-screen_input {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.quiz__last-screen_input > span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #69748c
}

.quiz__last-screen_input .input-holder {
  display: flex;
  align-items: center;
  width: 100%;
  color: #000000;
}

.quiz__last-screen_input .input-holder > span {
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 54px;
  border: solid 1px #bfc5bf;
  border-right: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #a2a2a2;
}

.quiz__last-screen_input .input-holder svg {
  width: 24px;
  fill: currentColor;
}

.quiz__last-screen_input .input-holder input {
  flex-grow: 1;
  background: transparent;
  padding: 5px 0;
  border: solid 1px #bfc5bf;
  border-left: none;
  height: 60px;
  width: 100%;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.quiz__last-screen_input .input-holder:not(:has(span)) > input {
  padding: 5px 12px;
  border-radius: 4px;
  border: solid 1px #bfc5bf;
}

.quiz__last-screen_input-with-flag {
  margin-top: 12px;
}

.quiz__last-screen_input-with-flag .input-holder > span {
  flex-shrink: 0;
  gap: 7px;
  height: 60px;
  min-height: 42px;
  color: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  border-right: solid 1px #bfc5bf;
  outline: none;
  z-index: 0;
}

.quiz__last-screen_input-with-flag .input-holder .flag-icon {
  width: 20px;
  height: 14px;
  background-image: url("../images/flags/flags.png");
  background-repeat: no-repeat;
  background-position: -5175px 0;
}

.quiz__last-screen_input-with-flag .input-holder > input {
  padding: 5px 12px;
}

.quiz__last-screen-messengers-block {
  padding: .7rem 1rem;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e2e4e2;
  cursor: pointer;
}

.quiz__last-screen-messengers-block .messangers {
  height: 20px;
  width: 60px;
  background: url(../images/icons/messanger.svg) 36px 0 no-repeat, url(../images/icons/viber.svg) 24px 0 no-repeat, url(../images/icons/whatsapp.svg) 12px 0 no-repeat, url(../images/icons/telegram.svg) 0 0 no-repeat;
}

.quiz__last-screen-messengers-block .text {
  user-select: none;
}

.quiz__last-screen .quiz_button_shadowed {
  margin-top: 10px;
}

.quiz__last-screen-messengers-block:hover .text {
  text-decoration: underline;
}

.quiz__last-screen-check-box {
  margin: 20px auto 0;
  width: 100%;
  max-width: 500px;
}

.quiz__last-screen-check-box .label {
  font-size: 12px;
  line-height: 1.6;
  white-space: break-spaces;
}

.quiz__last-screen-check-box .label a {
  color: #5256e8;
}

.quiz__last-screen-check-box .label a:hover {
  text-decoration: underline;
}

.quiz__last-screen-contact-way {
  margin: 24px auto 0;
  max-width: 500px;
}

.quiz__last-screen-contact-way .contact-way.hide {
  display: none;
}

.quiz__last-screen-contact-way .contact-way.choose-messanger h3 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.contact-way_buttons-container {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-way_buttons-container .contact {
  padding: 13px;
  min-height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  transition: all .3s ease;
  border-radius: 4px;
  border: solid 1px #ced1de;
  background-color: #d8dae4;
  color: #363636;
  font-weight: 500;
  cursor: pointer;
}

.contact-way_buttons-container .contact:hover {
  box-shadow: -2px 2px 14px 0 #bfc3d4;
}

.contact-way_buttons-container .contact img {
  width: 32px;
}

.quiz__last-screen-contact-way .contact-way.choose-messanger .back-to-name-phone {
  margin-top: 8px;
  font-size: 14px;
  color: #156c8f;
  text-align: center;
  user-select: none;
}

.quiz__last-screen-contact-way .contact-way.choose-messanger .back-to-name-phone:hover {
  text-decoration: underline;
}

.quiz__last-screen-contact-way .contact-way.messanger img {
  margin: 0 auto 20px;
  display: block;
  width: 40px;
  height: 40px;
}

.quiz__last-screen-contact-way .contact-way.messanger .back-to-name-phone {
  margin-top: 10px;
  color: #2a2d99;
  font-size: 0.875rem;
  user-select: none;
}

.quiz__last-screen-contact-way .contact-way.messanger .back-to-name-phone:hover {
  text-decoration: underline;
}

@media (min-width: 500px) {
  .quiz__last-screen > .img {
    height: 435px;
  }
}

@media (min-width: 819px) {
  .quiz__last-screen {
    display: grid;
    grid-template-columns: 40% auto;
  }

  .quiz__last-screen > .img {
   display: none;
  }

  .quiz__last-screen > .img-desktop {
    display: block;
    height: 100%;
  }

  .quiz__last-screen_form-wrapper {
    margin-top: 0;
    padding: 30px 35px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .quiz__last-screen_form-wrapper .top-part,
  .quiz__last-screen-contact-way,
  .quiz__last-screen-check-box {
    margin: 0;
    max-width: 575px;
    width: 100%;
  }

  .quiz__last-screen-contact-way,
  .contact-way .quiz__last-screen_input-with-flag,
  .contact-way .quiz__last-screen-messengers-block,
  .quiz__last-screen .quiz_button_shadowed {
    margin-top: 20px;
  }

  .quiz__last-screen-check-box {
    margin-top: 20px;
  }

  .quiz__last-screen .quiz__first-screen-main-block_bonus-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 390px;
    justify-content: start;
  }
}

@media (min-width: 1000px) {

}
/*last screen END*/

/*thanks page */
.quiz__thanks {
  margin: 0 auto;
  max-width: 550px;
  opacity: 0;
}

.quiz__thanks.hide {
  display: none;
}

.quiz__thanks .quiz__first-screen-main-block_bonus-wrapper {
  flex-wrap: wrap;
  margin-top: 16px;
  justify-content: center;
}

.quiz__thanks-inner {
  padding: 15px 1rem 0;
}

.quiz__thanks .quiz__first-screen_bonus-label-wrapper {
  margin-top: 26px;
}


.quiz__thanks .quiz__first-screen-main-block_bonus-item {
  cursor: pointer;
}