:root {
  --backgroundColorPrimary: #ffffff;
  --backgroundColorAccentFirst: #cc0001;
  --backgroundColorAccentSecond: #f4f4f4;
  --backgroundColorAccentDeactive: #e0e8f2;
  --fontFamilyRegular: 'CNN Sans Display W04', sans-serif;
  --fontFamilyPoppins: 'Poppins', 'sans-serif';
  --fontFamilyHelvetica: 'HelveticaNeueCyr', 'sans-serif';
  --fontFamilyRoboto: 'Roboto Condensed', 'sans-serif';
  --fontColorMain: #282828;
  --fontColorAccent: #cc0001;
  --fontColorAccentSucces: #129031;
  --fontColorDeactive: #8c8c8c;
  --fontColorReverse: #ffffff;
}
.highlighter-red {
  color: var(--fontColorAccent);
}
.highlighter-green {
  color: var(--fontColorAccentSucces);
}
.instruction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px 0px;
  padding: 24px;
  border: 1px solid #d0d0d0;
}

.instruction__CNN-logo {
  width: 155px;
}

.instruction-header {
  font-size: 1.33rem;
  font-weight: 700;
}

.instruction-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  counter-reset: steps;
}

.instruction-steps__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f7f7f7;
  padding: 8px;
}
.instruction-steps__item p {
  margin: 0;
}
.instruction-steps__item .link-in-text {
  font-weight: inherit;
  text-decoration: underline;
}
.instruction-steps__item::before {
  counter-increment: steps;
  content: '' counter(steps);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-right: 12px;
  background-color: var(--backgroundColorAccentFirst);
  min-width: 24px;
  min-height: 24px;
  color: var(--fontColorReverse);
}

.instruction-steps__item--error {
  padding: 8px;
  background-color: #ffe4e4;
  font-size: 0.78rem;
}

.instruction-stats {
  width: 100%;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.instruction-stats__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background-color: var(--backgroundColorAccentSecond);
}

.instruction-stats__item-name {
  text-align: center;
  margin: 0 !important;
}

.instruction-stats__item-img {
  width: 24px !important;
}

.instruction-stats__item-number {
  margin: auto 0 0 0 !important;
}
.article-note {
  background-color: var(--backgroundColorAccentSecond);
  padding: 12px;
  border-radius: 8px;
}
.notification {
  background-color: var(--backgroundColorAccentFirst);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 4px;
  color: var(--fontColorReverse);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.instruction-stats__btn {
  /* background-color: var(--backgroundColorAccentFirst); */
  background: rgba(0, 164, 79, 1);
  padding: 15px 30px !important;
  width: 100%;
  color: var(--fontColorReverse) !important;
  font-size: 1.33rem;
  text-align: center;
  font-weight: 700;
  -webkit-transition: background-color 100ms;
  transition: background-color 100ms;
  text-decoration: none !important;
}
.instruction-stats__btn:hover {
  background-color: color-mix(in srgb, var(--backgroundColorAccentFirst) 93%, #000000 7%);
}

@media screen and (max-width: 500px) {
  .instruction-stats {
    grid-template-columns: 1fr;
  }
}
