@charset "UTF-8";
/**
* @prop --markdown-hyperlink-color: color of text for hyperlinks. Defaults to `--color-blue-dark`;
* @prop --markdown-hyperlink-color--hovered: color of text for hyperlinks when hovered. Defaults to `--color-blue-default`;
*/
/**
* Note! This file is forwarded via `src/style/exports.scss`
* and exposed to consumers through the root `index.scss`.
*
* Consumers import it using:
* `@use '@limetech/lime-elements' as lime-elements;`
*
* Legacy import paths (`dist/scss/mixins`) are maintained
* for backward compatibility via copy rules in the Stencil config.
*/
/**
* This can be used on a trigger element that opens a dropdown menu or a popover.
*/
/**
 * This mixin will mask out the content that is close to
 * the edges of a scrollable area.
 * - If the scrollable content has `overflow-y`, use `vertically`
 * as an argument for `$direction`.
 - If the scrollable content has `overflow-x`, use `horizontally`
 * as an argument for `$direction`.
 *
 * For the visual effect to work smoothly, we need to make sure that
 * the size of the fade-out edge effect is the same as the
 * internal paddings of the scrollable area. Otherwise, content of a
 * scrollable area that does not have a padding will fade out before
 * any scrolling has been done.
 * This is why this mixin already adds paddings, which automatically
 * default to the size of the fade-out effect.
 * This size defaults to `1rem`, but to override the size use
 * `--limel-top-edge-fade-height` & `--limel-bottom-edge-fade-height`
 * when `vertically` argument is set, and use
 * `--limel-left-edge-fade-width` & `--limel-right-edge-fade-width`
 * when `horizontally` argument is set.
 * Of course you can also programmatically increase and decrease the
 * size of these variables for each edge, based on the amount of
 * scrolling that has been done by the user. In this case, make sure
 * to add a custom padding where the mixin is used, to override
 * the paddings that are automatically added by the mixin in the
 * compiled CSS code.
 */
/**
* This mixin will add an animated underline to the bottom of an `a` elements.
* Note that you may need to add `all: unset;` –depending on your use case–
* before using this mixin.
*/
/**
* This mixin creates a cross-browser font stack.
* - `sans-serif` can be used for the UI of the components.
* - `monospace` can be used for code.
*
* ⚠️ If we change the font stacks, we need to update
* 1. the consumer documentation in `README.md`, and
* 2. the CSS variables of `--kompendium-example-font-family`
* in the `<style>` tag of `index.html`.
*/
/**
* This mixin is a hack, using old CSS syntax
* to enable you to truncate a piece of text,
* after a certain number of lines.
*/
/**
* This mixin will add a chessboard background pattern,
* typically used to visualize transparency.
*/
/**
* Make a container resizable by the user.
* This is used in the documentations and examples
* of some components, to demonstrate how the component
* behaves in a resizable container.
*/
/**
 * Drag to reorder mixins
 */
/**
 * The breakpoints below are used to create responsive designs
 * in Lime's products. Therefore, they are here to get distributed
 * to all components in other private repos, which rely on this `mixins`
 * file, to create consistent styles.
 *
 * :::important
 * In very rare cases you should used media queries!
 * Nowadays, there are many better ways of achieving responsive design
 * without media queries. For example, using CSS Grid, Flexbox, and their features.
 * :::
 */
/**
  * Media query mixins for responsive design based on screen width.
  * Note that these mixins do not detect the device type!
  */
/*
* This file is imported into every component!
*
* Nothing in this file may output any CSS
* without being explicitly called by outside code.
*/
pre,
pre p,
code {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  font-size: 0.75rem;
}

pre {
  max-width: 100%;
  white-space: pre-wrap;
  word-wrap: break-word;
}

code {
  letter-spacing: -0.0125rem;
  color: rgb(var(--contrast-1300));
  tab-size: 4;
  hyphens: none;
  display: inline;
  border-radius: 0.25rem;
  padding: 0.03125rem 0.25rem;
  background-color: rgb(var(--contrast-600));
}

pre > code {
  display: block;
  margin: 0.5rem 0;
  padding: 0.5rem 0.75rem;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.125rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: var(--limel-theme-default-font-size);
}

h6 {
  font-size: 0.75rem;
}

h1,
h2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03125rem;
  font-weight: 500;
}

h3,
h4 {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

h5,
h6 {
  margin-top: 0.5rem;
  margin-bottom: 0.125rem;
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
:not([contenteditable=true]) h1,
:not([contenteditable=true]) h2,
:not([contenteditable=true]) h3,
:not([contenteditable=true]) h4,
:not([contenteditable=true]) h5,
:not([contenteditable=true]) h6 {
  text-wrap: balance;
}
[contenteditable=true] h1,
[contenteditable=true] h2,
[contenteditable=true] h3,
[contenteditable=true] h4,
[contenteditable=true] h5,
[contenteditable=true] h6 {
  text-wrap: initial;
}

:host(limel-markdown.truncate-paragraphs) p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

p,
li {
  font-size: var(--limel-theme-default-font-size);
  word-break: break-word;
}

a {
  word-break: break-all;
}

p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
p:only-child {
  margin-bottom: 0;
}

a {
  transition: color 0.2s ease;
  color: var(--markdown-hyperlink-color, rgb(var(--color-blue-dark)));
  text-decoration: none;
}
a:hover {
  color: var(--markdown-hyperlink-color--hovered, rgb(var(--color-blue-default)));
}

hr {
  margin: 1.75rem 0 2rem 0;
  border-width: 0;
  border-top: 1px solid rgb(var(--contrast-500));
}

ul {
  list-style: none;
}
ul li {
  position: relative;
  margin-left: 0.75rem;
}
ul li:before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 0.5rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: rgb(var(--contrast-700));
  display: block;
}

ol {
  margin-top: 0.25rem;
  padding-left: 1rem;
}

ul {
  margin-top: 0.25rem;
  padding-left: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin-left: 0;
}

li {
  margin-bottom: 0.25rem;
}

:host(limel-markdown:not(.no-table-styles)) table {
  table-layout: auto;
  min-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: transparent;
  margin: 0.75rem 0;
}
:host(limel-markdown:not(.no-table-styles)) tbody {
  border: 1px solid rgb(var(--contrast-400));
  border-radius: 0.25rem;
}
:host(limel-markdown:not(.no-table-styles)) th,
:host(limel-markdown:not(.no-table-styles)) td {
  text-align: left;
  vertical-align: top;
  transition: background-color 0.2s ease;
  font-size: var(--limel-theme-default-font-size);
}
:host(limel-markdown:not(.no-table-styles)) td {
  padding: 0.5rem 0.375rem 0.75rem 0.375rem;
}
:host(limel-markdown:not(.no-table-styles)) tr th {
  background-color: rgb(var(--contrast-400));
  padding: 0.25rem 0.375rem;
  font-weight: normal;
}
:host(limel-markdown:not(.no-table-styles)) tr th:only-child {
  text-align: center;
}
:host(limel-markdown:not(.no-table-styles)) tbody tr:nth-child(odd) td {
  background-color: rgb(var(--contrast-200));
}
:host(limel-markdown:not(.no-table-styles)) tbody tr:hover td {
  background-color: rgb(var(--contrast-300));
}

table {
  display: block;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

blockquote {
  position: relative;
  max-width: 100%;
  margin: 0.75rem 0;
  padding: 0.5rem;
  border-left: 0.25rem solid rgb(var(--contrast-500));
  background-color: rgb(var(--contrast-200));
}
blockquote:before, blockquote:after {
  position: absolute;
  line-height: 0;
  font-size: 2rem;
  opacity: 0.4;
}
blockquote:before {
  content: "“";
  left: -0.5rem;
  top: 0.5rem;
}
blockquote:after {
  content: "”";
  right: -0.25rem;
  bottom: -0.25rem;
}
blockquote blockquote {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0.25rem;
  border-color: rgb(var(--contrast-700));
  border-left-width: 1px;
}
blockquote blockquote:before, blockquote blockquote:after {
  display: none;
}
blockquote:has(> blockquote) {
  padding-left: 0.25rem;
  padding-bottom: 0;
}

dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr;
  margin-bottom: 2rem;
  border: 1px solid rgb(var(--contrast-400));
  border-radius: 0.375rem;
  background-color: rgb(var(--contrast-200));
}
dl dt,
dl dd {
  padding: 0.375rem 0.5rem;
  font-size: var(--limel-theme-default-font-size);
  margin: 0;
}
dl dt:nth-of-type(even),
dl dd:nth-of-type(even) {
  background-color: rgb(var(--contrast-300));
}
dl dt:first-child {
  border-top-left-radius: 0.375rem;
}
dl dt:last-child {
  border-bottom-left-radius: 0.375rem;
}
dl dd:first-child {
  border-top-right-radius: 0.375rem;
}
dl dd:last-child {
  border-bottom-right-radius: 0.375rem;
}

img {
  max-width: 100%;
  border-radius: 0.25rem;
}

kbd {
  display: inline-block;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  font-weight: 600;
  color: rgb(var(--contrast-1100));
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: normal;
  border-radius: 0.125rem;
  border-style: solid;
  border-color: rgb(var(--contrast-500));
  border-width: 0 1px 0.1875rem 1px;
  padding: 0.0625rem 0.375rem;
  margin: 0 0.25rem;
  background-color: rgb(var(--contrast-200));
  box-shadow: var(--button-shadow-normal), 0 0.625rem 0.375rem -0.5rem rgb(var(--color-black), 0.02), 0 0.025rem 0.5rem 0 rgb(var(--contrast-100)) inset;
}

:host(limel-markdown.adjust-for-table-cell) img {
  max-height: 1.25rem;
  vertical-align: middle;
}
:host(limel-markdown.adjust-for-table-cell) p {
  display: inline;
}
:host(limel-markdown.adjust-for-table-cell) h1,
:host(limel-markdown.adjust-for-table-cell) h2,
:host(limel-markdown.adjust-for-table-cell) h3,
:host(limel-markdown.adjust-for-table-cell) h4,
:host(limel-markdown.adjust-for-table-cell) h5,
:host(limel-markdown.adjust-for-table-cell) h6 {
  display: inline-block;
  vertical-align: bottom;
  font-size: var(--limel-theme-default-font-size);
  margin: 0 0.25rem 0 0;
  letter-spacing: normal;
  font-weight: 500;
}
:host(limel-markdown.adjust-for-table-cell) h1:before,
:host(limel-markdown.adjust-for-table-cell) h2:before,
:host(limel-markdown.adjust-for-table-cell) h3:before,
:host(limel-markdown.adjust-for-table-cell) h4:before,
:host(limel-markdown.adjust-for-table-cell) h5:before,
:host(limel-markdown.adjust-for-table-cell) h6:before {
  opacity: 0.6;
  vertical-align: middle;
  font-size: 0.5rem;
  border-radius: 0.25rem 0 0 0.25rem;
  padding: 0.25rem;
  padding-right: 2rem;
  margin-right: -1.75rem;
  background: linear-gradient(to right, rgb(var(--contrast-800), 0.6), rgb(var(--contrast-800), 0));
}
:host(limel-markdown.adjust-for-table-cell) h1:before {
  content: "H1";
}
:host(limel-markdown.adjust-for-table-cell) h2:before {
  content: "H2";
}
:host(limel-markdown.adjust-for-table-cell) h3:before {
  content: "H3";
}
:host(limel-markdown.adjust-for-table-cell) h4:before {
  content: "H4";
}
:host(limel-markdown.adjust-for-table-cell) h5:before {
  content: "H5";
}
:host(limel-markdown.adjust-for-table-cell) h6:before {
  content: "H6";
}
:host(limel-markdown.adjust-for-table-cell) pre {
  margin: 0;
}
:host(limel-markdown.adjust-for-table-cell) pre > code {
  padding: 0.125rem;
  margin: 0;
}
:host(limel-markdown.adjust-for-table-cell) dl {
  margin: 0;
}
:host(limel-markdown.adjust-for-table-cell) dl dt,
:host(limel-markdown.adjust-for-table-cell) dl dd {
  padding: 0.00625rem 0.125rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
* :where(:not(img, video, svg, canvas, iframe)),
*::before :where(:not(img, video, svg, canvas, iframe)),
*::after :where(:not(img, video, svg, canvas, iframe)) {
  min-width: 0;
  min-height: 0;
}

hr {
  border-top: 1px solid rgb(var(--contrast-700));
}

.MsoNormal {
  margin: 0;
}

:host(limel-markdown.reset-img-height) #markdown img {
  height: auto;
}