﻿.article-questions-wrapper {
  border: 2px solid #3D7E79;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.14);
  padding: 1.875em;
  max-width: 740px;
  width: 100%;
  margin: 24px auto; }
  .article-questions-wrapper__form {
    display: flex;
    flex-direction: column;
    gap: 1em; }
  .article-questions-wrapper__title {
    font-size: 1.5em;
    line-height: 1.375em;
    font-weight: normal; }
  .article-questions-wrapper__description {
    font-size: 1.125em;
    line-height: 1.75em; }
  .article-questions-wrapper__questions {
    margin-block: 0;
    list-style: none;
    counter-reset: list; }
  .article-questions-wrapper__question {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.875em;
    counter-increment: list;
    position: relative; }
    .article-questions-wrapper__question::before {
      content: counter(list);
      max-width: 3.125rem;
      height: 3.125rem;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5em;
      flex-grow: 1;
      text-align: center;
      border-radius: 50%;
      color: #FFFFFF;
      background: #3D7E79;
      position: relative; }
    .article-questions-wrapper__question.remove-counting::before {
      content: none; }
  .article-questions-wrapper__submit {
    align-self: start;
    margin: 0; }

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .article-questions-wrapper {
    width: calc(100% - 0.8125em * 2); } }

@media (max-width: 540px) {
  .article-questions-wrapper {
    width: 100%;
    padding: 1em; }
    .article-questions-wrapper__question::before {
      max-width: 1.875em;
      height: 1.875em; }
    .article-questions-wrapper__submit {
      align-self: auto; } }

.article-scoring-prompt {
  display: none;
  width: calc(100% - 40px);
  max-width: 454px;
  padding: 50px 46px 38px;
  background-color: #FFFFFF;
  border-radius: 6px;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.14);
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 91;
  transform: translate(-50%, -50%); }
  @media (max-width: 1024px) {
    .article-scoring-prompt {
      z-index: 101; } }
  @media (max-width: 767px) {
    .article-scoring-prompt {
      padding: 50px 32px 40px; }
      .ltr .article-scoring-prompt {
        padding: 50px 12px 40px; } }
  .article-scoring-prompt__close-button {
    width: 1.5em;
    height: 1.5em;
    margin: 0;
    border: none;
    background: none;
    font-size: 1em;
    position: absolute;
    top: 16px;
    left: 16px; }
    .article-scoring-prompt__close-button .icon-close {
      font-size: 1.5em;
      font-weight: bold;
      color: #3A3A3A; }
  .article-scoring-prompt .icon-checkbox-round {
    display: block;
    margin-bottom: 12px;
    font-size: 52px;
    color: #3D7E79; }
  .article-scoring-prompt h3 {
    margin: 0 0 28px; }
    @media (max-width: 767px) {
      .article-scoring-prompt h3 {
        margin: 0 0 24px; } }
  .article-scoring-prompt__action-buttons {
    width: 100%;
    display: flex; }
    .article-scoring-prompt__action-buttons button {
      margin: 0;
      flex-grow: 1;
      padding: 0 24px; }
      @media (max-width: 767px) {
        .article-scoring-prompt__action-buttons button {
          padding: 0 14px; }
          .ltr .article-scoring-prompt__action-buttons button {
            font-size: 1rem; } }
      .article-scoring-prompt__action-buttons button:first-child {
        margin-left: 32px; }
        .ltr .article-scoring-prompt__action-buttons button:first-child {
          margin: 0 12px 0 0; }
        @media (max-width: 767px) {
          .article-scoring-prompt__action-buttons button:first-child {
            margin-left: 16px; }
            .ltr .article-scoring-prompt__action-buttons button:first-child {
              margin: 0 8px 0 0; } }
  .article-scoring-prompt img {
    height: 50px;
    width: auto;
    margin-bottom: 12px; }
