@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/raleway-400.woff2) format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/raleway-700.woff2) format('woff2');
}

@media (prefers-color-scheme: dark) {
  :root {
    --tableBackground-color: #000000;
    --cellBackground-color: #1C1C1E;
    --cellBorder-color: #3e3d41;
    --cellText-color: #FAFAFA;
    --cellDetailText-color: #a19f9f;
    --cellTextRed-color: #E23124;
    --cellLink-color: #2F81B7;
  }
}

@media (prefers-color-scheme: light) {
  :root {
    --tableBackground-color: #F2F2F7;
    --cellBackground-color: #FFFFFF;
    --cellBorder-color: #c6c6c8;
    --cellText-color: #000000;
    --cellDetailText-color: #5e5e5e;
    --cellTextRed-color: #E23124;
    --cellLink-color: blue;
  }
}

a {
  color: var(--cellLink-color);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  text-decoration: none;
}

body {
  margin: 10px auto;
  max-width: 40em;
  background-color: var(--tableBackground-color);
  font-family: 'Raleway', sans-serif;
}

div.app_items {
  background-color: var(--cellBackground-color);
  border-radius: 5px;
  border: 1px solid var(--cellBorder-color);
  display: block;
  margin: 20px auto;
  padding: 12px;
  width: 90%;
}

table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

td {
  color: var(--cellText-color);
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center-vertical {
  vertical-align: middle;
}

.paddingR5 {
  padding-right: 5px;
}

.spacer {
  padding-top: 10px;
}


.heading {
  color: var(--cellText-color);
  text-transform: none;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: bold;
}

.description {
  color: var(--cellDetailText-color);
  text-transform: none;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: normal;
}

img.app-icons {
  height: 64px;
  width: 64px;
  object-fit: contain;
}

td.paddingR5 {
  width: 74px;
}

td.store-link {
  white-space: nowrap;
}

footer a {
  display: inline-block;
  padding: 12px 16px;
  min-height: 44px;
  line-height: 44px;
  font-size: 15px;
  font-weight: 700;
}

.footer-links {
  text-align: center;
  padding: 8px 0;
}

.footer-dot {
  color: var(--cellDetailText-color);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  vertical-align: middle;
}

.hot {
  background-color: #4e69a2;
  border-radius: 5px;
  color: white;
  font-family: 'Arial';
  font-size: 11px;
  font-weight: 600;
  padding: 2px 5px;
}