.add-subscription-button {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    background: var(--primary-action);
    border: 1px solid #d6a13d;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 3rem;
    text-align: center;
    line-height: 2.5rem;
    color: white;
    cursor: pointer;
}

.add-subscription-modal-content {
    background: var(--primary-background);
    padding: 1rem;
    min-height: 100%;
}

.lightbox-action {
    position: sticky;
    bottom: 0;
    display: flex;
    padding: 0.5rem 1rem;
    border-top: 1px solid var(--primary-border);
    background: var(--primary-background);
    justify-content: right;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}
:root {
    --font: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
    --font-mono: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;

    --primary-text: #222222;
    --primary-background: #eeeeee;
    --text-background: #f2f2f2;

    --primary-action: #ffc048;

    --primary-border: #c9c9c9;

    --hightlight-color: rgba(48, 117, 231, 0.65);

    --default-spacing: 1rem;
}

body {
    color: var(--primary-text);
    background-color: var(--primary-background);
    font-family: var(--font);
}

button {
    border: 0;
    background: none;
    padding: 0;
}

.button {
    background: var(--text-background);
    border: 1px solid var(--primary-border);
    border-radius: 2px;
    padding: 0.5rem 1rem;
    cursor: pointer;
}
.button:hover {

}
.lightbox .lightbox-bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
}

.lightbox .lightbox-wrap {
  margin: 0 auto;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.lightbox .lightbox-ctrl {
  width: 100%;
  position: relative;
  z-index: 1001;
}

.lightbox .lightbox-content {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: relative;
  background: var(--primary-background);
}

@media (min-width: 40rem) {
  .lightbox .lightbox-wrap {
    max-width: 40rem;
    padding: 0 1rem;
  }

  .lightbox .lightbox-content {
    max-height: 80%;
  }
}

.lightbox .lightbox-close {
  border: 0;
  background: none;
  position: absolute;
  top: 0;
  right: 1rem;
  padding: 0 0.5rem;
  line-height: 1rem;
  font-size: .75rem;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.card {
    border: 1px solid var(--primary-border);
    border-radius: 4px;
    padding: 1rem;
    background: var(--text-background);
    margin-bottom: var(--default-spacing);
}

.card p {
    margin-bottom: 0.5rem;
}

.card > *:last-child {
    margin-bottom: 0;
}
.pager {
    height: calc(100vh - 1rem);
    max-width: 60rem;
    margin: 0 auto;
}

.remove-page {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: right;
    padding: 0 1rem;
}

.remove-page-button {

}

.pager-content {
    height: 100vh;
    display: flex;
    column-gap: 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.pager-content::-webkit-scrollbar {
    display: none;
}

.pager-indicator-wrap {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 0;
    right: 0;
}

.pager-indicator {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 1rem 1rem 0 0;
    background: rgba(0, 0, 0, 0.6);
}

.pager-indicator a {
    font-size: 0;
    width: 12px;
    height: 12px;
    background: #222222;
    border-radius: 50%;
    border: 1px solid black;
}

.pager-indicator a.active {
    transform: scale(1.5);
}

.pager-page {
    width: 100%;
    scroll-snap-align: start;
    flex-shrink: 0;
    overflow-y: auto;
    padding: 1rem;
}
