:root {
  /* Colors */
  --color: #000;
  --bg-color: #FFFFA3;
  --hover-bg-color: #019A01;
  --primary-color: #019A01;
  --link-color: #019A01;
  --code-color: var(--primary-color);
  --code-bg-color: #019A01;
  







/* -- Layout ------------------------------------------------------------------ */

.column {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 720px) {
  .column {
    display: flex;
  }
}






/* -- Examples -- */
.image-row {
  text-align: center;
}

@media (min-width: 720px) {
  .image-row {
    text-align: left;
  }
}
.example-image-link {
  display: inline-block;
  padding: 4px;
  margin: 0 0.5rem 1rem 0.5rem;
  background-color: var(--bg-color);
  line-height: 0;
  border-radius: var(--border-radius-large);
}
.example-image-link:hover {
  background-color: var(--primary-color);
}

.example-image {
  width: 7rem;
  border-radius: var(--border-radius);
}

/* -- Getting started -- */
.getting-started-section li {
  margin-bottom: 2rem;
}
.getting-started-section li li {
  margin-bottom: 0.5rem;
}

.getting-started-list p {
  margin-bottom: 1rem;
}

/* -- Options -- */
.options-section th,
.options-section td,
.api-section th,
.api-section td {
  padding: 8px 16px 8px 1px;
  border-bottom: 1px solid var(--border-color-light);
}
.options-section th:last-child,
.options-section td:last-child,
.api-section th:last-child,
.api-section td:last-child {
  padding-right: 0;
}

.options-code {
  margin-bottom: 2rem;
}

.options-table .default-row {
  min-width: 12em;
  color: var(--muted-color);
  font-weight: var(--bold);
}
.options-table th {
  text-transform: uppercase;
  font-size: 0.875rem;
}
.options-table td {
  font-size: 0.875rem;
  font-family: var(--code-font);
}
.options-table td:first-child {
  font-weight: var(--bold);
}
.options-table td:last-child {
  font-family: var(--font);
}
.options-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 720px) {
  .options-table thead {
    display: none;
  }
  .options-table tr {
    display: block;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color-light);
  }
  .options-table tr:last-child {
    border-bottom: none;
  }
  .options-table td {
    display: block;
    padding: 0;
    border-bottom: none;
  }
  .options-table .default-row:before {
    content: attr(data-label);
    float: left;
    padding-right: 8px;
  }
}
/* -- Credits -- */
footer {
  padding: 2rem 0;
  border-top: 2px solid var(--border-color-light);
  text-align: center;
}
footer .button {
  margin-top: 0.5rem;
}

@media (min-width: 720px) {
  footer {
    text-align: left;
  }
}
