@charset "UTF-8";
:host,
:root {
  --shadow-rgb: 0 0 0;
  --background: #fdfffd;
  --primary: #558e4c;
  --primary-rgb: 85 142 76;
  --secondary: #ddf2da;
  --secondary-rgb: 221 242 218;
  --teriary: #646031;
  --error: #b52100;
  --error-rgb: 181 33 0;
  --disabled: #f8f0eb;
  --outline: #85736c;
  --text: #222121;
  --text-light: #fff;
  --text-disabled: #ccc;
  --surface: #fbfffb;
  --gray: #e1e5e1;
}

:host,
:root {
  --shadow-rgb: 0 0 0;
  --background: #fdfffd;
  --primary: #558e4c;
  --primary-rgb: 85 142 76;
  --secondary: #ddf2da;
  --secondary-rgb: 221 242 218;
  --teriary: #646031;
  --error: #b52100;
  --error-rgb: 181 33 0;
  --disabled: #f8f0eb;
  --outline: #85736c;
  --text: #222121;
  --text-light: #fff;
  --text-disabled: #ccc;
  --surface: #fbfffb;
  --gray: #e1e5e1;
}

html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: system-ui, -apple-system, sans-serif;
  color: #222121;
}

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

body {
  margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

p {
  line-height: 1.4;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

figcaption,
figure,
main {
  display: block;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  color: inherit;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details,
menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  margin: 0;
  padding: 0;
}

:host,
:root {
  --shadow-rgb: 0 0 0;
  --background: #fdfffd;
  --primary: #558e4c;
  --primary-rgb: 85 142 76;
  --secondary: #ddf2da;
  --secondary-rgb: 221 242 218;
  --teriary: #646031;
  --error: #b52100;
  --error-rgb: 181 33 0;
  --disabled: #f8f0eb;
  --outline: #85736c;
  --text: #222121;
  --text-light: #fff;
  --text-disabled: #ccc;
  --surface: #fbfffb;
  --gray: #e1e5e1;
}

.button {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding-inline: 24px;
  padding-block: 8px;
  min-height: 40px;
  border: 0;
  color: var(--text);
  box-sizing: border-box;
  text-decoration: none;
  background-color: var(--gray);
  position: relative;
}
.button__icon {
  width: 24px;
  height: 24px;
}
.button svg {
  fill: var(--text);
}
.button--with-icon {
  padding-left: 16px;
}
.button--only-icon {
  padding-inline: 8px;
}
.button--full {
  width: 100%;
}
.button--loading::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
}
.button--primary {
  color: var(--text-light);
  background-color: var(--primary);
}
.button--primary svg {
  fill: var(--text-light);
}
.button--primary:hover {
  background-color: rgb(var(--primary-rgb)/80%);
}
.button--primary:disabled {
  color: var(--text-disabled);
  background: var(--disabled);
  cursor: default;
}
.button--primary:disabled svg {
  fill: var(--text-disabled);
}
.button--secondary {
  background-color: var(--secondary);
}
.button--secondary:hover {
  background-color: rgb(var(--secondary-rgb)/80%);
}
.button--transparent {
  background-color: var(--transparent);
}
.button--transparent:hover {
  opacity: 0.9;
}
.button--white {
  background-color: var(--background);
  color: var(--text);
  border: 1px solid var(--primary);
}
.button--danger {
  background-color: var(--error);
  color: var(--text-light);
}
.button--danger svg {
  fill: var(--text-light);
}
.button--danger:hover {
  background-color: rgb(var(--error-rgb)/80%);
}
.button--link {
  background-color: transparent;
  color: inherit;
  padding: 0;
  text-decoration: underline;
  display: inline;
  min-height: 0;
  border-radius: 0;
  font-size: inherit;
}
.button--link svg {
  fill: inherit;
}
.button--link:hover {
  text-decoration: none;
}
.button--inner-link {
  background-color: transparent;
  color: var(--primary);
  padding: 0;
  border-bottom: 1px dotted var(--primary);
  display: inline;
  min-height: 0;
  border-radius: 0;
  font-size: inherit;
}
.button--inner-link svg {
  fill: inherit;
}
.button--inner-link:hover {
  text-decoration: none;
}
.button--social-login {
  padding-left: 12px;
  padding-right: 36px;
}
.button--social-login .button__label {
  flex: 1;
}

.snapje-logo {
  display: inline-flex;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.login-form__title {
  text-align: center;
}
.login-form__or {
  text-align: center;
}

:host,
:root {
  --shadow-rgb: 0 0 0;
  --background: #fdfffd;
  --primary: #558e4c;
  --primary-rgb: 85 142 76;
  --secondary: #ddf2da;
  --secondary-rgb: 221 242 218;
  --teriary: #646031;
  --error: #b52100;
  --error-rgb: 181 33 0;
  --disabled: #f8f0eb;
  --outline: #85736c;
  --text: #222121;
  --text-light: #fff;
  --text-disabled: #ccc;
  --surface: #fbfffb;
  --gray: #e1e5e1;
}

.select-a-plan {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.select-a-plan__free {
  text-align: center;
}
.select-a-plan__title {
  text-align: center;
}
.select-a-plan__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.select-a-plan__table {
  margin: auto;
}
.select-a-plan__table td {
  border: 0px solid #e1e5e1;
  padding: 2px 32px;
}

.select {
  display: flex;
  align-items: center;
  min-width: 15ch;
  max-width: 30ch;
  height: 40px;
  position: relative;
}
.select__input {
  appearance: none;
  width: 100%;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding-left: 5px;
  margin: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  line-height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0px 48px 0px 24px;
}
.select__icon {
  margin: 0 12px 0 auto;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.select__icon svg {
  fill: var(--text);
}

:host,
:root {
  --shadow-rgb: 0 0 0;
  --background: #fdfffd;
  --primary: #558e4c;
  --primary-rgb: 85 142 76;
  --secondary: #ddf2da;
  --secondary-rgb: 221 242 218;
  --teriary: #646031;
  --error: #b52100;
  --error-rgb: 181 33 0;
  --disabled: #f8f0eb;
  --outline: #85736c;
  --text: #222121;
  --text-light: #fff;
  --text-disabled: #ccc;
  --surface: #fbfffb;
  --gray: #e1e5e1;
}

.toggle {
  display: flex;
  align-items: center;
  position: relative;
}
.toggle__label {
  cursor: pointer;
  text-indent: -9999px;
  width: 48px;
  height: 24px;
  background: var(--secondary);
  display: block;
  border-radius: 12px;
  position: relative;
  margin-right: 12px;
}
.toggle__label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 11px;
  transition: 0.3s;
}
.toggle__input {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}
.toggle__input:checked + .toggle__label {
  background: var(--primary);
}
.toggle__input:checked + .toggle__label:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.textarea {
  appearance: none;
  width: 100%;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding-left: 5px;
  margin: 0;
}

.input {
  appearance: none;
  width: 100%;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding-left: 5px;
  margin: 0;
  height: 40px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

:host,
:root {
  --shadow-rgb: 0 0 0;
  --background: #fdfffd;
  --primary: #558e4c;
  --primary-rgb: 85 142 76;
  --secondary: #ddf2da;
  --secondary-rgb: 221 242 218;
  --teriary: #646031;
  --error: #b52100;
  --error-rgb: 181 33 0;
  --disabled: #f8f0eb;
  --outline: #85736c;
  --text: #222121;
  --text-light: #fff;
  --text-disabled: #ccc;
  --surface: #fbfffb;
  --gray: #e1e5e1;
}

a {
  color: var(--primary);
}

.title {
  margin: 0;
  padding: 0;
  font-weight: 500;
}
.title--1 {
  font-size: 20px;
}
.title--2 {
  font-size: 18px;
}
.title--3 {
  font-size: 16px;
}

.context-popup-container {
  position: absolute;
  top: -1000px;
  display: none;
  opacity: 0;
}
.context-popup-container--available {
  display: block;
}
.context-popup-container--visible {
  opacity: 1;
}

.context-popup {
  font-family: system-ui, -apple-system, sans-serif;
  border-radius: 36px;
  padding: 24px;
  min-width: 200px;
  font-size: 16px;
  background: var(--background);
  color: var(--text);
  box-shadow: 0px 5px 5px -3px rgb(var(--shadow-rgb)/0.2), 0px 8px 10px 1px rgb(var(--shadow-rgb)/0.14), 0px 3px 14px 2px rgb(var(--shadow-rgb)/0.12);
}
.context-popup__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.unsaved-word {
  display: flex;
  justify-content: stretch;
  gap: 8px;
}

.saved-word {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.saved-word__action {
  min-width: 200px;
}
.saved-word__delete {
  margin-left: auto;
}

.translation {
  flex: 1;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.translation__phrase {
  text-align: center;
}
.translation__list {
  margin: 0;
  padding-left: 20px;
  column-gap: 32px;
}
.translation__list--columns-1 {
  columns: 1;
}
.translation__list--columns-2 {
  columns: 2;
}
.translation__list--columns-3 {
  columns: 3;
}
.translation__list--columns-4 {
  columns: 4;
}
.translation__word {
  padding: 2px;
  white-space: nowrap;
}
.translation__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.counts__text {
  text-align: center;
}

.dot-flashing {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--primary);
  color: var(--primary);
  animation: dot-flashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}

.dot-flashing::before,
.dot-flashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--primary);
  color: var(--primary);
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 0s;
}

.dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--primary);
  color: var(--primary);
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes dot-flashing {
  0% {
    background-color: var(--primary);
  }
  50%, 100% {
    background-color: var(--secondary);
  }
}
.word-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 20px;
  cursor: help;
}
.word-count-badge[data-count] {
  background: rgb(207, 213, 253);
}
.word-count-badge[data-count="1"] {
  background: rgba(58, 176, 71, 0.1555555556);
}
.word-count-badge[data-count="2"] {
  background: rgba(58, 176, 71, 0.2111111111);
}
.word-count-badge[data-count="3"] {
  background: rgba(58, 176, 71, 0.2666666667);
}
.word-count-badge[data-count="4"] {
  background: rgba(58, 176, 71, 0.3222222222);
}
.word-count-badge[data-count="5"] {
  background: rgba(58, 176, 71, 0.3777777778);
}
.word-count-badge[data-count="6"] {
  background: rgba(58, 176, 71, 0.4333333333);
}
.word-count-badge[data-count="7"] {
  background: rgba(58, 176, 71, 0.4888888889);
}
.word-count-badge[data-count="8"] {
  background: rgba(58, 176, 71, 0.5444444444);
}
.word-count-badge[data-count="9"] {
  background: rgba(58, 176, 71, 0.6);
}
.word-count-badge[data-count="10"] {
  background: rgba(58, 176, 71, 0.6555555556);
}
.word-count-badge[data-count="11"] {
  background: rgba(58, 176, 71, 0.7111111111);
}
.word-count-badge[data-count="12"] {
  background: rgba(58, 176, 71, 0.7666666667);
}
.word-count-badge[data-count="13"] {
  background: rgba(58, 176, 71, 0.8222222222);
}
.word-count-badge[data-count="14"] {
  background: rgba(58, 176, 71, 0.8777777778);
}
.word-count-badge[data-count="15"] {
  background: rgba(58, 176, 71, 0.9333333333);
}
.word-count-badge[data-count="16"] {
  background: rgba(58, 176, 71, 0.9888888889);
}
.word-count-badge[data-count="17"] {
  background: rgb(58, 176, 71);
}
.word-count-badge[data-count="18"] {
  background: rgb(58, 176, 71);
}
.word-count-badge[data-count="19"] {
  background: rgb(58, 176, 71);
}
.word-count-badge[data-count="20"] {
  background: rgb(58, 176, 71);
}

:host,
:root {
  --shadow-rgb: 0 0 0;
  --background: #fdfffd;
  --primary: #558e4c;
  --primary-rgb: 85 142 76;
  --secondary: #ddf2da;
  --secondary-rgb: 221 242 218;
  --teriary: #646031;
  --error: #b52100;
  --error-rgb: 181 33 0;
  --disabled: #f8f0eb;
  --outline: #85736c;
  --text: #222121;
  --text-light: #fff;
  --text-disabled: #ccc;
  --surface: #fbfffb;
  --gray: #e1e5e1;
}

.usage {
  display: flex;
  align-items: center;
  gap: 12px;
}
.usage__content {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.verb-usage {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.verb-usage__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.verb-usage__header:after {
  content: "";
  display: block;
  width: 40px;
}
.verb-usage__infinitive {
  font-weight: bold;
}
.verb-usage__tables {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.usage-table {
  border: 1px solid #eee;
  width: 100%;
  border-radius: 5px;
}
.usage-table__table {
  width: 100%;
  border-collapse: collapse;
}
.usage-table__table td {
  padding: 4px;
  border: 0;
  white-space: nowrap;
}
.usage-table__table td:not(:last-child) {
  border-right: 1px solid #eee;
}
.usage-table__table > tbody > tr:not(:last-child) > td {
  border-bottom: 1px solid #eee;
}
.usage-table__inner-table {
  margin: -4px;
  width: 100%;
  border-collapse: collapse;
}
.usage-table__label {
  color: #b1b7af;
}

.demo-app-examples__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.demo-app-examples__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.demo-app-examples__quote {
  padding: 16px;
  background: rgba(0, 0, 0, 0.03);
  margin-right: 40px;
  border-radius: 20px;
}
.demo-app-examples__author {
  text-align: right;
}
.demo-app-examples__source {
  font-size: 12px;
}

:host,
:root {
  --shadow-rgb: 0 0 0;
  --background: #fdfffd;
  --primary: #558e4c;
  --primary-rgb: 85 142 76;
  --secondary: #ddf2da;
  --secondary-rgb: 221 242 218;
  --teriary: #646031;
  --error: #b52100;
  --error-rgb: 181 33 0;
  --disabled: #f8f0eb;
  --outline: #85736c;
  --text: #222121;
  --text-light: #fff;
  --text-disabled: #ccc;
  --surface: #fbfffb;
  --gray: #e1e5e1;
}

.prices-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.prices-list--white-bg .prices-list__item {
  box-shadow: 0 0 0 1px inset #558e4c;
}
.prices-list__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fdfffd;
  padding: 24px;
  color: #222121;
  border-radius: 8px;
}
.prices-list__item--selected {
  box-shadow: 0 0 0 16px inset #558e4c;
}
.prices-list__title {
  text-align: center;
  font-size: 24px;
}
.prices-list__cost {
  text-align: center;
}
.prices-list__amount {
  font-size: 24px;
}
.prices-list__full-amount {
  position: relative;
  display: inline-block;
  color: #847b7b;
  margin-right: 12px;
  margin-left: -30px;
  font-size: 12px;
}
.prices-list__full-amount::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  right: -3px;
  height: 3px;
  background: #222121;
  transform: rotate(20deg);
}
.prices-list__download {
  text-align: center;
}
.prices-list__button {
  text-align: center;
}
.prices-list__features {
  line-height: 1.8;
  margin: 0;
}
.section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 48px;
}
.section__title {
  text-align: center;
}
.section__content {
  margin: auto;
  max-width: 1000px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo svg {
  fill: white;
}
.logo__text {
  font-size: 20px;
}

.header {
  padding: 0;
}
.header__content {
  max-width: 1000px;
  display: flex;
  margin: auto;
  justify-content: space-between;
}
.header__link {
  text-decoration: none;
}

.navigation__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navigation__item {
  margin: 0;
  padding: 0;
}

.home-header {
  background: #214567;
  color: #fff;
}
.home-header__languages {
  list-style: none;
}
.home-header__language {
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-header__language::before {
  content: "•";
  font-size: 20px;
}
.home-header__language--not-ready {
  opacity: 0.4;
}
.home-header__language-icon {
  font-size: 32px;
}
.home-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.home-header__texts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 40%;
}
.home-header-medias__image {
  border-radius: 4px;
}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.how-it-works__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.how-it-works__description {
  max-width: 700px;
}
.how-it-works__media {
  display: flex;
  justify-content: center;
  margin-top: -30px;
  margin-bottom: -30px;
}
.how-it-works__download {
  text-align: center;
}

.video-trailer__video {
  max-width: 560px;
  margin: auto;
}

.prices {
  background: #214567;
  color: #fff;
}

.browser {
  width: 888px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.browser:before {
  content: "";
  width: 100%;
  display: block;
  background: url("/images/browser-top.png");
  height: 118px;
  background-size: cover;
}
.browser:after {
  content: "";
  width: 100%;
  display: block;
  background: url("/images/browser-bottom.png");
  height: 117px;
  background-size: cover;
}
.browser__bg {
  background: url("/images/browser-middle.png");
  background-size: 100%;
  width: 100%;
  background-repeat: repeat-y;
  display: flex;
  align-items: center;
  justify-content: center;
}
.browser__content {
  margin-bottom: -50px;
  position: relative;
}

.footer__content {
  display: flex;
  justify-content: space-between;
}
.footer__right {
  text-align: right;
}

.article-links {
  margin: 0;
}

.go-pro {
  text-align: center;
}
.go-pro__form {
  width: 360px;
  margin: auto;
}

.demo {
  display: none;
}
@media screen and (min-width: 800px) {
  .demo {
    display: flex;
  }
}
.demo__description {
  text-align: center;
}
.demo__content {
  max-width: 800px;
}
.demo__disclaimer {
  font-size: 12px;
}

.privacy-policy {
  max-width: 90%;
  margin: auto;
}

.article {
  max-width: 800px;
  margin: auto;
  padding: 24px 0;
}
.article--promo {
  color: #aca2a2;
}
.article--promo .selected {
  background: #accef7;
  color: #222121;
}
.article h1 {
  margin-bottom: 24px;
}
.article li:not(:last-child) {
  margin-bottom: 12px;
}

.video-demo__video {
  display: flex;
  justify-content: center;
}

.get-extension__button {
  display: flex;
  justify-content: center;
}