/**
 * Curious 3.2.0
 * By Just Good Themes - https://justgoodthemes.com/
 */

/**
 * Table of Contents
 *
 *  1. Reset
 *  2. Variables
 *  3. Base
 *  4. Structure
 *  5. Header
 *  6. Hero
 *  7. Post cards
 *  8. Featured posts carousel
 *  9. Post feed
 * 10. Pagination
 * 11. Post
 * 12. Comments
 * 13. Next/prev post navigation
 * 14. Author and tag archives
 * 15. Blank template
 * 16. Footer
 * 17. Sidebar
 * 18. Ghost content cards
 * 19. Animations
 * 20. Swiper
 * 21. SimpleLightbox
 * 22. Text colors (custom meu)
 * 23. Bg colors (custom meu)
 * 24. Miscelaneos (custom meu)
 */

/* 1. Reset
----------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bold}code,kbd,samp,pre{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button;cursor:pointer}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:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{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"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}


/* 2. Variables
----------------------------- */
:root {
  /* Colours */
  --color-white:    #fff;
  --color-gray-50:  #fafafa;
  --color-gray-100: #f4f4f5;
  --color-gray-200: #e4e4e7;
  --color-gray-300: #d4d4d8;
  --color-gray-400: #a1a1aa;
  --color-gray-500: #71717a;
  --color-gray-600: #52525b;
  --color-gray-700: #3f3f46;
  --color-gray-800: #27272a;
  --color-gray-900: #18181b;

  /* Fonts */
  --font-primary: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Light (default) color mode */
:root {
  /* Backgrounds */
  --color-bg: var(--color-white);
  --color-bg-muted: var(--color-gray-100);
  --color-bg-inverse: var(--color-gray-900);

  /* Texts */
  --color-text: var(--color-gray-600);
  --color-text-muted: var(--color-gray-400);
  --color-text-highlight: var(--color-gray-900);
  --color-text-inverse: var(--color-gray-200);
  --color-text-highlight-inverse: var(--color-white);
  --color-text-on-accent: var(--color-white);

  /* Borders */
  --color-border: var(--color-gray-200);
  --color-border-highlight: var(--color-gray-900);
  --color-border-inverse: var(--color-gray-800);
  --color-border-highlight-inverse: var(--color-white);
}

/* Dark color mode */
html.dark-mode {
  /* Backgrounds */
  --color-bg: var(--color-gray-900);
  --color-bg-muted: var(--color-gray-800);
  --color-bg-inverse: var(--color-gray-800);

  /* Texts */
  --color-text: var(--color-gray-200);
  --color-text-muted: var(--color-gray-400);
  --color-text-highlight: var(--color-white);

  /* Borders */
  --color-border: var(--color-gray-800);
  --color-border-highlight: var(--color-white);
}

/* 3. Base
----------------------------- */
html {
  font-family: var(--font-primary);
  font-size: 100%;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Links */
a {
  color: var(--color-text-highlight);
  text-decoration: underline;
  text-decoration-color: var(--ghost-accent-color);
  text-decoration-thickness: 1px;
  text-underline-position: from-font;
}

a:hover,
a:focus {
  text-decoration-thickness: 2px;
}

/* Headings */
h1,.h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-highlight);
  font-weight: 700;
  line-height: 1.125;
  margin: 0;
}

h1,.h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.3125rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  h1,.h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.3125rem;
  }

  h5 {
    font-size: 1.125rem;
  }

  h6 {
    font-size: 1rem;
  }
}

@media (min-width: 960px) {
  h1,.h1 {
    font-size: 3rem;
    letter-spacing: -0.015em;
  }

  h2 {
    font-size: 2.25rem;
  }
}

/* Strong */
b,strong{
  color: var(--color-text-highlight);
}

/* Paragraphs */
p {
  margin: 1.5rem 0 0;
}

/* Lists */
ul,
ol {
  margin: 1.5rem 0 0;
  padding: 0 0 0 1.5em;
}

ul {
  list-style: disc;
}

li > ul,
li > ol {
  margin: 0.5rem 0 0;
}

dl {
  margin: 1.5rem 0 0;
}

dt {
  color: var(--color-text-highlight);
  font-weight: 600;
}

li,
dd {
  margin: 0 0 0.5rem;
}

li:last-child,
dd:last-child {
  margin-bottom: 0;
}

/* Highlights */
mark,
ins {
  padding: 0.05em 0.25em;
  text-decoration: none;
}

/* Code blocks */
pre {
  background: var(--color-bg-inverse);
  color: var(--color-text-inverse);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 1.5rem 0 0;
  overflow: auto;
  padding: 1.5rem 1.25rem;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
}

@media (min-width: 640px) {
  pre {
    font-size: 1rem;
  }
}

/* Blockquotes */
blockquote {
  border-left: 5px solid var(--color-border);
  color: var(--color-text-highlight);
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 1.5rem 0 0;
  padding-left: 1em;
  text-align: left;
}

blockquote p {
  margin-top: 0.5em;
}

blockquote p:first-child {
  margin: 0;
}

blockquote small,
blockquote cite {
  color: var(--color-text);
  display: block;
  font-size: 0.75em;
  font-style: normal;
  font-weight: normal;
  margin-top: 1em;
}

@media (min-width: 640px) {
  blockquote {
    font-size: 1.375rem;
  }
}

/* Horizontal rule */
hr {
  background-color: var(--color-border);
  border: 0;
  height: 1px;
  margin: 0;
  width: 100%;
}

/* Tables */
table {
  background-color: transparent;
  border-collapse: collapse;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  max-width: 100%;
  text-align: left;
  width: 100%;
}

:not(.responsive-table) > table {
  margin: 1.5rem 0 0;
}

.responsive-table {
  display: block;
  margin: 1.5rem 0 0;
  overflow-x: auto;
  width: 100%;
}

th,
td {
  border: 1px solid var(--color-border);
  padding: 0.5em;
}

th {
  color: var(--color-text-highlight);
  font-weight: 600;
}

@media (min-width: 640px) {
  table {
    font-size: 1rem;
  }
}

/* Media */
embed,
iframe,
object,
video {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure,
.js-reframe {
  margin: 1.5rem 0 0;
}

figure img {
  display: block;
}

figure p {
  margin: 0;
}

/* Captions */
caption,
figcaption {
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.5;
  text-align: left;
}

caption {
  margin: 0 0 0.75rem;
}

figcaption {
  margin: 0.5rem 0 0;
}

@media (min-width: 640px) {
  caption,
  figcaption {
    font-size: 0.875rem;
  }
}

/* Buttons */
.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 0;
  box-sizing: border-box;
  box-shadow: none;
  color: inherit;
  display: inline-flex;
  font-size: 0.8125rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.075em;
  line-height: 1.25;
  padding: 0.75em 1.25em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition-duration: .25s;
  transition-property: background-color, border-color, color, opacity;
  transition-timing-function: ease-in-out;
  vertical-align: middle;
  white-space: nowrap;
}

.button:hover,
.button:focus,
.button:active {
  outline: 0;
}

.button-small {
  font-size: 0.6875rem;
  padding: 0.25em 0.5em;
}

.button-icon {
  font-size: 1.125rem;
  height: 1.5em;
  line-height: 1;
  padding: 0;
  width: 1.5em;
}

.button svg {
  fill: currentColor;
  flex-shrink: 0;
  height: 1em;
  width: 1em;
}

@media (min-width: 640px) {
  .button {
    font-size: 0.9375rem;
  }

  .button-small {
    font-size: 0.75rem;
  }

  .button-icon {
    font-size: 1.25rem;
  }
}

.button-solid,
.button-solid-alt {
  background-color: var(--ghost-accent-color);
  border-color: var(--ghost-accent-color);
  color: var(--color-text-on-accent);
}

.button-solid:hover,
.button-solid:focus,
.button-solid:active {
  opacity: .85;
}

.button-solid-alt:hover,
.button-solid-alt:focus,
.button-solid-alt:active {
  background-color: transparent;
  border-color: var(--color-border-highlight);
  color: var(--color-text-highlight);
  opacity: 1
}

.button-solid-alt:hover,
.button-solid-alt:focus,
.button-solid-alt:active {
  border-color: var(--color-border-highlight-inverse);
  color: var(--color-text-highlight-inverse);
}

.button-outlined {
  background-color: transparent;
  border-color: var(--color-border-highlight);
  color: var(--color-text-highlight);
}

.bg-dark .button-outlined {
  border-color: var(--color-border-highlight-inverse);
  color: var(--color-text-highlight-inverse);
}

.button-outlined:hover,
.button-outlined:focus,
.button-outlined:active {
  background-color: var(--ghost-accent-color);
  border-color: var(--ghost-accent-color);
  color: var(--color-text-on-accent);
}

.button-clear {
  background-color: transparent;
  border: 0;
  color: inherit;
  transition: opacity .25s;
}

.button-clear:hover,
.button-clear:focus,
.button-clear:active {
  background-color: transparent;
  color: inherit;
  opacity: .7;
}

/* Form fields */
label {
  color: var(--color-text-highlight);
  font-weight: 600;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="url"],
select,
textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  color: var(--color-text);
  display: block;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  max-width: 100%;
  padding: 0.625em 0.75em;
  transition: border-color .25s;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-border-highlight);
  outline: 0;
}

.form-control {
  margin-bottom: 1em;
}

/* Placeholder text color */
::-webkit-input-placeholder {
  color: var(--color-text-muted);
}

:-moz-placeholder {
  color: var(--color-text-muted);
}

::-moz-placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--color-text-muted);
}

/* Menus */
.menu,
.actions {
  font-size: 0.875rem;
  letter-spacing: 0.075em;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.menu-item,
.action-item {
  margin: 0;
}

.menu-item a,
.action-item a {
  color: inherit;
  text-decoration: none;
  transition: opacity .25s;
}

.menu-item-current a,
.menu-item a:hover,
.menu-item a:focus,
.action-item a:hover,
.action-item a:focus {
  opacity: .7;
}

.menu-item-more a {
  align-items: center;
  display: inline-flex;
}

.menu-item-more svg {
  fill: currentColor;
  flex-shrink: 0;
  height: 1em;
  width: 1em;
}

/* Social links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Dark background */
.bg-dark {
  background-color: var(--color-bg-inverse);
  color: var(--color-text-inverse);
}

/* Full-width background */
.bg-full {
  position: relative;
}

.bg-full-image {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Image animations */
.bg-fade-in {
  animation-delay: .15s;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeIn55;
}

.image-fade-in {
  animation-delay: .15s;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}

/* Avatars */
.avatar {
  border-radius: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* Text meant only for screen readers */
.screen-reader-text {
  border-width: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/* 4. Structure
----------------------------- */
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.content {
  flex-grow: 1;
}

.outer {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

@media (min-width: 480px) {
  .outer {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 740px;
}

.inner-wide {
  margin-left: auto;
  margin-right: auto;
  max-width: 1600px;
}

/* 5. Header
----------------------------- */
.navbar {
  color: var(--color-text-highlight);
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.navbar-inside {
  align-items: center;
  display: flex;
}

@media (min-width: 1024px) {
  .navbar {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
  }
}

/* Branding */
.navbar-branding {
  margin-right: 1.5rem;
}

.navbar-branding a {
  color: inherit;
  text-decoration: none;
}

.navbar-logo {
  display: block;
}

.navbar-logo img {
  display: block;
  max-height: 3rem;
}

.navbar-title {
  color: var(--color-text-highlight);
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.125;
  margin: 0;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .navbar-title {
    font-size: 1.5rem;
  }
}

/* Menu */
.navbar-menu {
  align-items: center;
  display: flex;
  flex-grow: 1;
}

.navbar-menu .menu,
.navbar-menu .menu-item-sidebar {
  display: none;
}

.navbar-menu .menu-item {
  margin-right: 1.5rem;
}

.navbar-menu .actions {
  align-items: center;
  display: flex;
  margin-left: auto;
}

.navbar-menu .action-item-signup,
.navbar-menu .action-item-signin,
.navbar-menu .action-item-account {
  display: none;
  margin-left: 1rem;
}

.navbar-menu .action-item-search {
  margin-left: 0.75rem;
}

.navbar-menu .action-item-sidebar {
  margin-left: 0.375rem;
}

.navbar-menu .action-item:first-child {
  margin-left: 0;
}

@media (min-width: 768px) {
  .navbar-menu .action-item-signup,
  .navbar-menu .action-item-signin,
  .navbar-menu .action-item-account {
    display: block;
  }
}

@media (min-width: 1024px) {
  .navbar-menu .menu {
    align-items: center;
    display: flex;
    flex-grow: 1;
  }

  .navbar-menu .action-item-sidebar {
    display: none;
  }
}

/* 6. Hero
----------------------------- */
.hero {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin-bottom: 0.9375rem;
  min-height: 400px;
  width: 100%;
}

.hero:before {
  padding-bottom: 56.25%;
  content: '';
  float: left;
}

.hero:after {
  display: table;
  content: '';
  clear: both;
}

.hero-inside {
  padding: max(12vmin, 5rem) 1.875rem;
  position: relative;
  width: 100%;
}

.hero-content {
  border-left: 5px solid var(--ghost-accent-color);
  padding: 0 0 0 1.5625rem;
  text-align: left;
}

.hero-title {
  color: var(--color-text-highlight-inverse);
  margin: 0;
}

.hero-text {
  color: var(--color-text-highlight-inverse);
  margin: 1.25rem 0 0;
}

.hero-subscribe {
  margin: 1.875rem 0 0;
}

@media (min-width: 480px) {
  .hero {
    margin-bottom: 1.875rem;
    min-height: 450px;
  }
}

@media (min-width: 640px) {
  .hero-inside {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

  .hero-content {
    border-left-width: 7px;
    padding-left: 2.5rem;
  }

  .hero-text {
    font-size: 1.125rem;
  }
}

@media (min-width: 960px) {
  .hero-text {
    font-size: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

/* 7. Post cards
----------------------------- */
.post-card:before {
  padding-bottom: 56.25%;
  content: '';
  float: left;
}

.post-card:after {
  display: table;
  content: '';
  clear: both;
}

.post-card a:not(.button) {
  color: var(--color-text-highlight-inverse);
  text-decoration: none;
}

.post-card a:not(.button):hover,
.post-card a:not(.button):focus {
  text-decoration: underline;
  text-decoration-color: var(--ghost-accent-color);
  text-decoration-thickness: 1px;
}

.post-card-inside {
  box-sizing: border-box;
  height: 100%;
  overflow: hidden;
  padding: 1.875rem;
  position: relative;
  width: 100%;
}

.post-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  width: 100%;
}

.post-card-title {
  color: var(--color-text-highlight-inverse);
  margin: 0 0 0.9375rem;
}

.post-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  margin: 0 0 0.9375rem;
}

.post-card-meta {
  font-size: 0.75rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.post-card-access {
  margin-right: 0.125em;
}

.post-card-access svg {
  fill: currentColor;
  flex-shrink: 0;
  height: 1em;
  width: 1em;
}

.post-card-author {
  font-weight: 600;
}

.post-card-read-more {
  margin-top: 1.875rem;
}

@media (min-width: 640px) {
  .post-card-inside {
    padding: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .post-card-meta {
    font-size: 0.875rem;
  }
}

/* 8. Featured posts carousel
----------------------------- */
.featured-posts {
  margin-bottom: 0.9375rem;
}

.featured-posts .post-card {
  height: 100%;
  min-height: 400px;
}

.featured-posts .post-card-content {
  justify-content: center;
}

.featured-pagination {
  display: none;
}

.featured-button-prev.button,
.featured-button-next.button {
  bottom: 1.875rem;
  height: 2.5rem;
  opacity: 1;
  position: absolute;
  right: 1.875rem;
  width: 2.5rem;
  z-index: 1000;
}

.featured-button-prev {
  transform: translateX(-3rem);
}

@media (min-width: 480px) {
  .featured-posts {
    margin-bottom: 1.875rem;
  }

  .featured-posts .post-card {
    min-height: 450px;
  }
}

@media (min-width: 960px) {
  .featured-posts .post-card-inside {
    padding-left: 9.375rem;
    padding-right: 9.375rem;
  }

  .featured-button-prev.button,
  .featured-button-next.button {
    bottom: auto;
    height: 2.8125rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.8125rem;
  }

  .featured-button-prev.button {
    left: 3.75rem;
    right: auto;
  }

  .featured-button-next.button {
    right: 3.75rem;
  }

  .featured-pagination {
    bottom: 3.5rem;
    color: var(--color-text-inverse);
    display: block;
    font-size: 0.75rem;
    line-height: 1;
    left: auto;
    letter-spacing: 0.0875em;
    position: absolute;
    right: 3.5rem;
    width: auto;
    z-index: 1000;
  }
}

@media (min-width: 1280px) {
  .featured-posts .post-card-title {
    font-size: 3.5rem;
  }

  .featured-button-prev.button,
  .featured-button-next.button {
    height: 3.125rem;
    width: 3.125rem;
  }
}

@media (max-width: 479px) {
  .featured-posts .post-card-title {
    font-size: 1.5rem;
  }
}

/* 9. Post feed
----------------------------- */
.post-feed {
  display: grid;
  gap: 0.9375rem;
}

.post-feed .post-card {
  min-height: 400px;
}

.post-feed .post-card-header {
  flex-grow: 1;
}

@media (min-width: 480px) {
  .post-feed {
    gap: 1.875rem;
  }

  .post-feed .post-card {
    min-height: 450px;
  }
}

@media (min-width: 960px) {
  .post-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-feed:first-child .post-card:nth-child(3n+1),
  .post-feed:not(:first-child) .post-card:nth-child(3n+3) {
    grid-column: span 2 / span 2;
  }

  .post-feed .post-card-title {
    font-size: 1.875rem;
  }

  .post-feed:first-child .post-card:nth-child(3n+1) .post-card-title,
  .post-feed:not(:first-child) .post-card:nth-child(3n+3) .post-card-title {
    font-size: 2.5rem;
    max-width: 80%;
  }
}

@media (min-width: 1280px) {
  .post-feed .post-card-title {
    font-size: 2.25rem;
  }

  .post-feed:first-child .post-card:nth-child(3n+1) .post-card-title,
  .post-feed:not(:first-child) .post-card:nth-child(3n+3) .post-card-title {
    font-size: 3rem;
  }
}

/* 10. Pagination
----------------------------- */
.pagination {
  margin-bottom: 3.75rem;
  margin-top: 1.875rem;
  padding: 0.5rem 3.75rem;
  position: relative;
  text-align: center;
}

.pagination-page-number {
  font-size: 0.75rem;
  letter-spacing: 0.075em;
  line-height: 1.25;
  text-transform: uppercase;
}

.pagination-next,
.pagination-prev {
  height: 2.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
}

.pagination-prev {
  left: 0;
}

.pagination-next {
  right: 0;
}

@media (min-width: 960px) {
  .pagination {
    margin-bottom: 5.625rem;
    margin-top: 3.75rem;
    padding-bottom: 0.65625rem;
    padding-top: 0.65625rem;
  }

  .pagination-next,
  .pagination-prev {
    height: 2.8125rem;
    width: 2.8125rem;
  }
}

@media (min-width: 1280px) {
  .pagination {
    padding-bottom: 0.8125rem;
    padding-top: 0.8125rem;
  }

  .pagination-page-number {
    font-size: 0.875rem;
  }

  .pagination-next,
  .pagination-prev {
    height: 3.125rem;
    width: 3.125rem;
  }
}

/* 11. Post
----------------------------- */
.post-full {
  margin-bottom: 3.75rem;
}

.post-full:last-child {
  margin-bottom: 5.625rem;
}

.post-header {
  margin-bottom: 1.875rem;
  text-align: center;
}

.post-header-image {
  margin: 0;
}

.post-header-caption {
  font-size: 0.8125rem;
  padding-top: 0.5em;
  text-align: left;
}

.post-title {
  margin: 0;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  justify-content: center;
  margin: 0 0 0.9375rem;
  position: relative;
}

.post-meta,
.post-reading-time {
  font-size: 0.75rem;
  letter-spacing: 0.075em;
  position: relative;
  text-transform: uppercase;
}

.post-reading-time {
  margin-top: 0.375rem;
}

.post-meta {
  margin-top: 0.9375rem;
}

.post-meta a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.post-meta a:hover,
.post-meta a:focus {
  text-decoration: underline;
  text-decoration-color: var(--ghost-accent-color);
  text-decoration-thickness: 1px;
}

@media (min-width: 640px) {
  .post-full:last-child {
    margin-bottom: 7.5rem;
  }

  .post-header {
    margin-bottom: 2.8125rem;
  }
}

@media (min-width: 960px) {
  .post-meta,
  .post-reading-time {
    font-size: 0.875rem;
  }
}

/* Post header with bg image */
.post-header-inside.bg-dark {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.post-header-inside.bg-dark:before {
  padding-bottom: 56.25%;
  content: '';
  float: left;
}

.post-header-inside.bg-dark:after {
  display: table;
  content: '';
  clear: both;
}

.post-full:not(.is-page) .post-header-inside.bg-dark .post-header-content {
  padding: max(12vmin, 5rem) 1.875rem max(14vmin, 7rem);
}

.post-full.is-page .post-header-inside.bg-dark .post-header-content {
  padding: max(12vmin, 5rem) 1.875rem;
}

.post-header-inside.bg-dark .post-title {
  color: inherit;
  position: relative;
}

.post-header-inside.bg-dark .post-reading-time {
  bottom: 1.875rem;
  left: 0;
  position: absolute;
  right: 0;
}

@media (min-width: 960px) {
  .post-header-inside.bg-dark .post-reading-time {
    left: auto;
    right: 1.875rem;
  }
}

/* Post header with vert/horiz image */
.post-header.is-horizontal,
.post-header.is-vertical {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.post-header.is-horizontal-bottom,
.post-header.is-vertical-right {
  flex-direction: column-reverse;
  margin-top: 2.8125rem;
}

.post-header-image,
.post-header-content {
  width: 100%;
}

.post-image-container {
  height: 0;
  position: relative;
}

.post-image-container .post-image {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.post-header.is-horizontal .post-image-container {
  padding-top: 56.25%;
}

.post-header.is-vertical .post-image-container {
  padding-top: 133.33%;
}

@media (min-width: 640px) {
  .post-header.is-horizontal,
  .post-header.is-vertical {
    gap: 2.5rem;
  }

  .post-header.is-horizontal-bottom,
  .post-header.is-vertical-right {
    margin-top: 3.75rem;
  }
}

@media (min-width: 960px) {
  .post-header.is-vertical-left {
    align-items: center;
    flex-direction: row;
  }

  .post-header.is-vertical-right {
    align-items: center;
    flex-direction: row-reverse;
    margin-top: 0;
  }

  .post-header.is-vertical .post-header-image {
    flex-shrink: 0;
    width: 50%;
  }

  .post-header.is-vertical .post-header-content {
    padding: 1.875rem 0;
  }
}

@media (min-width: 960px) and (max-width: 1280px) {
  .post-header.is-vertical .post-title {
    font-size: 2.5rem;
  }
}

/* Post header without image */
.post-header.no-image {
  margin-top: 2.8125rem;
}

@media (min-width: 640px) {
  .post-header.no-image {
    margin-top: 3.75rem;
  }
}

/* Post content */
.post-content {
  --main: min(740px, 100%);
  --wide: minmax(0, 180px);
  --full: 1fr;

  display: grid;
  grid-template-columns:
    [full-start] var(--full)
    [wide-start] var(--wide)
    [main-start] var(--main) [main-end]
    var(--wide) [wide-end]
    var(--full) [full-end];
  line-height: 1.625;
}

.post-content > * {
  grid-column: main-start / main-end;
}

.post-content > :first-child {
  margin-top: 0 !important;
}

.post-content > :last-child {
  margin-bottom: 0 !important;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6,
.post-content hr,
.post-content hr + * {
  margin-top: 3rem;
}

.post-content h1 + h2,
.post-content h2 + h3,
.post-content h3 + h4,
.post-content h4 + h5,
.post-content h5 + h6 {
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .post-content {
    font-size: 1.125rem;
    line-height: 1.66667;
  }

  .post-content h1,
  .post-content h2,
  .post-content h3,
  .post-content h4,
  .post-content h5,
  .post-content h6,
  .post-content hr,
  .post-content hr + * {
    margin-top: 3.75rem;
  }
}

/* Post sharing */
.post-sharing {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  margin-top: 2.8125rem;
}

.post-sharing-title {
  color: var(--color-text);
  margin-right: 0.75rem;
}

.post-sharing .button {
  color: var(--color-text-muted);
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

@media (min-width: 640px) {
  .post-sharing {
    margin-top: 3.75rem;
  }
}

/* Post author box */
.post-author-box {
  border: 1px solid var(--color-border);
  margin-top: 2.8125rem;
  padding: 0 0.9375rem;
  position: relative;
}

.post-author-box a {
  color: inherit;
  text-decoration: none;
}

.post-author-box a:hover,
.post-author-box a:focus {
  text-decoration: underline;
  text-decoration-color: var(--ghost-accent-color);
  text-decoration-thickness: 1px;
}

.post-author-box-title {
  background-color: var(--color-border);
  color: var(--color-text-highlight);
  font-size: 0.75rem;
  font-weight: 600;
  left: 50%;
  letter-spacing: 0.075em;
  line-height: 1.25;
  padding: 0.375em 0.5em;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  transform: translate(-50%,-50%);
}

.post-author {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.8125rem 0;
  text-align: center;
}

.post-author + .post-author {
  border-top: 1px solid var(--color-border);
}

.post-author-avatar {
  border-radius: 50%;
  flex-shrink: 0;
  height: 70px;
  width: 70px;
}

.post-author-name {
  font-size: 1.125rem;
  margin: 0;
}

.post-author-description {
  font-size: 0.875rem;
  margin: 0.625rem 0 0;
}

.post-author-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1rem;
  justify-content: center;
  margin: 0.9375rem 0 0;
}

.post-author-links .button-icon {
  font-size: 1rem;
}

@media (min-width: 480px) {
  .post-author {
    align-items: flex-start;
    flex-direction: row;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    text-align: left;
  }

  .post-author-links {
    justify-content: flex-start;
  }
}

@media (min-width: 640px) {
  .post-author-box {
    margin-top: 3.75rem;
  }

  .post-author {
    padding-left: 2.8125rem;
    padding-right: 2.8125rem;
  }

  .post-author-description {
    font-size: 0.9375rem;
  }
}

/* Members CTA */
.post-teaser {
  position: relative;
}

.post-teaser:before {
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 20%, var(--color-bg) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 20%, var(--color-bg) 100%);
  bottom: 0;
  content: "";
  height: 90%;
  left: 0;
  position: absolute;
  right: 0;
}

.post-teaser > :first-child {
  margin-top: 0;
}

.post-teaser > :last-child {
  margin-bottom: 0;
}

.subscribe-box {
  background-color: var(--color-bg-muted);
  box-sizing: border-box;
  margin-bottom: 2.8125rem;
  margin-top: 2.8125rem;
  padding: 2.8125rem 1.25rem;
  text-align: center;
}

.subscribe-box-title {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.subscribe-box-text {
  font-size: 0.9375rem;
  margin: 0 auto 1.25rem;
  max-width: 35rem;
}

.subscribe-box-note {
  font-size: 0.8125rem;
  margin: 0.9375rem 0 0;
}

@media (min-width: 640px) {
  .subscribe-box {
    margin-bottom: 3.75rem;
    margin-top: 3.75rem;
    padding: 3.75rem 1.875rem;
  }

  .subscribe-box-title {
    font-size: 1.3125rem;
  }

  .subscribe-box-text {
    font-size: 1rem;
  }

  .subscribe-box-note {
    font-size: 0.875rem;
  }
}

/* 12. Comments
----------------------------- */
.comments-area {
  margin-top: 2.8125rem;
}

.comments-header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.comments-title {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin: 0 1rem .625rem 0;
  text-transform: uppercase;
}

.comments-count {
  font-size: 0.875rem;
  margin: 0 0 .625rem;
}

@media (min-width: 640px) {
  .comments-area {
    margin-top: 3.75rem;
  }
}

/* Disqus comments */
.comments-area-disqus {
  border: 1px solid var(--color-border);
  box-sizing: border-box;
  padding: 2.5rem 0.9375rem;
  position: relative;
}

.comments-title-disqus {
  background-color: var(--color-border);
  color: var(--color-text-highlight);
  font-size: 0.75rem;
  left: 50%;
  letter-spacing: 0.075em;
  line-height: 1.25;
  margin: 0;
  padding: 0.375em 0.5em;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  transform: translate(-50%,-50%);
}

@media (min-width: 640px) {
  .comments-area-disqus {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

/* 13. Next/prev post navigation
----------------------------- */
.post-navigation {
  display:flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 3.75rem;
  margin-top: 2.8125rem;
  width: 100%;
}

.post-navigation .post-card {
  max-height: 450px;
  min-height: 300px;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
}

.post-navigation .post-card-image {
  transform: scale(1, 1);
  transition: 1s;
}

.post-navigation .post-card:hover .post-card-image {
  transform: scale(1.05, 1.05);
}

.post-navigation .post-card-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-bottom: 0.9375rem;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .post-navigation {
    margin-bottom: 5.625rem;
    margin-top: 3.75rem;
  }

  .post-navigation .post-card-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 960px) {
  .post-navigation {
    flex-direction: row;
  }

  .post-navigation .post-card {
    flex: 1 1 0%;
  }

  .post-navigation-prev .post-card-inside {
    text-align: right;
  }
}

@media (min-width: 1280px) {
  .post-navigation .post-card-title {
    font-size: 1.875rem;
  }

  .post-navigation .post-card-badge {
    font-size: 0.875rem;
  }
}

/* 14. Author and tag archives
----------------------------- */
.archive-header {
  text-align: center;
}

.archive-header.no-image {
  margin-bottom: 2.8125rem;
  margin-top: 2.8125rem;
}

.archive-header.has-image {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0.9375rem;
  min-height: 300px;
  padding: 2.8125rem 1.875rem;
  width: 100%;
}

.archive-header.has-image .archive-header-content {
  position: relative;
  width: 100%;
}

.archive-header a {
  color: inherit;
  text-decoration: none;
}

.archive-header a:hover,
.archive-header a:focus {
  text-decoration: underline;
  text-decoration-color: var(--ghost-accent-color);
  text-decoration-thickness: 1px;
}

.archive-title {
  margin: 0;
}

.archive-header.has-image .archive-title {
  color: inherit;
}

.archive-author-avatar {
  border: 3px solid var(--color-border);
  border-radius: 50%;
  height: 120px;
  margin: 1.25rem auto 0;
  width: 120px;
}

.archive-meta {
  font-size: 0.75rem;
  letter-spacing: 0.075em;
  margin-bottom: 0.9375rem;
  text-transform: uppercase;
}

.archive-author-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1rem;
  justify-content: center;
  margin: 1.25rem 0 0;
}

.archive-description {
  font-size: 0.875rem;
  font-style: italic;
  margin: 0.9375rem auto 0;
  max-width: 640px;
}

.archive-author-avatar + .archive-description,
.archive-author-avatar + .archive-author-links {
  margin-top: 1.25rem;
}

@media (min-width: 480px) {
  .archive-header.has-image {
    margin-bottom: 1.875rem;
  }
}

@media (min-width: 640px) {
  .archive-header.has-image {
    padding-bottom: 3.75rem;
    padding-top: 3.75rem;
  }

  .archive-description {
    font-size: 1rem;
  }
}

@media (min-width: 960px) {
  .archive-header.has-image {
    min-height: 360px;
  }
}

@media (min-width: 1280px) {
  .archive-meta {
    font-size: 0.875rem;
  }
}

/* 15. Blank template
----------------------------- */
.blank-template {
  min-height: 100vh;
}

.blank-template .site:before {
  animation-delay: .15s;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeIn55;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0; 
}

.blank-template .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blank-template .page-body {
  color: var(--color-text-highlight-inverse);
  margin-bottom: 5.625rem;
  margin-top: 3.75rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.blank-template .page-title {
  color: inherit;
}

.blank-template .page-text {
  margin: 1.25rem 0 0;
}

.blank-template .page-home-link {
  margin: 1.875rem 0 0;
}

@media (min-width: 640px) {
  .blank-template .page-text {
    font-size: 1.125rem;
  }
}

@media (min-width: 1280px) {
  .blank-template .page-title {
    font-size: 3.5rem;
  }
}

/* 16. Footer
----------------------------- */
.footer-grid {
  border: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  padding: 0.9375rem;
}

.footer-section {
  box-sizing: border-box;
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
}

.footer-section:not(:first-child) {
  border-top: 1px solid var(--color-border);
  padding-top: 0.9375rem;
}

.footer-section:not(:last-child) {
  padding-bottom: 0.9375rem;
}

.footer-section-inside {
  flex-grow: 1;
  padding: 0.9375rem 0.9375rem 1.875rem;
}

@media (min-width: 640px) {
  .footer-section:first-child:nth-last-child(2),
  .footer-section:first-child:nth-last-child(2) ~ .footer-section,
  .footer-section:first-child:nth-last-child(3),
  .footer-section:nth-child(2):nth-last-child(2),
  .footer-section:first-child:nth-last-child(4),
  .footer-section:first-child:nth-last-child(4) ~ .footer-section {
    flex-basis: 50%;
    max-width: 50%;
  }

  .footer-section:first-child:nth-last-child(2),
  .footer-section:first-child:nth-last-child(3),
  .footer-section:first-child:nth-last-child(4),
  .footer-section:nth-child(3):nth-last-child(2) {
    border-right: 1px solid var(--color-border);
    padding-right: 0.9375rem;
  }

  .footer-section:nth-child(2):last-child,
  .footer-section:nth-child(2):nth-last-child(2),
  .footer-section:nth-child(2):nth-last-child(3),
  .footer-section:nth-child(4):last-child {
    padding-left: 0.9375rem;
  }

  .footer-section:nth-child(2):last-child,
  .footer-section:nth-child(2):nth-last-child(2),
  .footer-section:nth-child(2):nth-last-child(3) {
    border-top: 0;
    padding-top: 0;
  }

  .footer-section:first-child:nth-last-child(2),
  .footer-section:nth-child(3):nth-last-child(2) {
    padding-bottom: 0;
  }
}

@media (min-width: 960px) {
  .footer-section:first-child:nth-last-child(3),
  .footer-section:first-child:nth-last-child(3) ~ .footer-section {
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .footer-section:nth-child(2):nth-last-child(2) {
    border-right: 1px solid var(--color-border);
    padding-right: 0.9375rem;
  }

  .footer-section:nth-child(3):last-child {
    border-top: 0;
    padding-left: 0.9375rem;
    padding-top: 0;
  }

  .footer-section:first-child:nth-last-child(3),
  .footer-section:nth-child(2):nth-last-child(2) {
    padding-bottom: 0;
  }

  .footer-section:first-child:nth-last-child(4) .footer-section-inside,
  .footer-section:first-child:nth-last-child(4) ~ .footer-section .footer-section-inside {
    padding: 1.875rem 2.8125rem 2.8125rem;
  }
}

@media (min-width: 1280px) {
  .footer-section-inside {
    padding: 1.875rem 2.8125rem 2.8125rem;
  }
}

/* Footer sections */
.footer-section-title {
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

.footer-section-text p {
  font-size: 0.875rem;
  max-width: 840px;
}

.footer-section-text p:first-child {
  margin-top: 0;
}

.footer-section-text p:last-child {
  margin-bottom: 0;
}

.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 840px;
}

.author-list,
.post-list {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  max-width: 840px;
  padding: 0;
}

.author-list {
  grid-template-columns: repeat(auto-fill, minmax(min(14rem, 100%), 1fr));
}

.post-list {
  grid-template-columns: repeat(auto-fill, minmax(min(14rem, 100%), 1fr));
}

.author-list-item,
.post-list-item {
  display: flex;
  justify-content: flex-start;
}

.author-list-item-link,
.post-list-item-link {
  display: flex;
  text-decoration: none;
}

.author-list-item-link {
  align-items: center;
}

.author-list-item-avatar,
.post-list-item-image {
  flex-shrink: 0;
  height: 70px;
  margin-right: 0.9375rem;
  width: 70px;
}

.post-list-item-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.author-list-item-name,
.post-list-item-title {
  font-size: 1rem;
  margin: 0;
}

.author-list-item-link:hover .author-list-item-name,
.author-list-item-link:focus .author-list-item-name,
.post-list-item-link:hover .post-list-item-title,
.post-list-item-link:focus .post-list-item-title {
  text-decoration: underline;
  text-decoration-color: var(--ghost-accent-color);
  text-decoration-thickness: 1px;
}

.author-list-item-count,
.post-list-item-meta {
  color: var(--color-text);
  font-size: 0.6875rem;
  letter-spacing: 0.075em;
  margin-top: 0.375em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .footer-section-title {
    font-size: 1.125rem;
  }

  .footer-section-text p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 960px) {
  .author-list-item-count,
  .post-list-item-meta {
    font-size: 0.75rem;
  }
}

/* Footer bottom */
.footer-bottom {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 3.75rem;
  padding-top: 1.875rem;
}

.footer-bottom:first-child {
  border-top: 1px solid var(--color-border);
}

.footer-nav {
  margin-bottom: 1.25rem;
}

.footer-nav .menu {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75rem;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}

.footer-bottom .social-links {
  justify-content: center;
}

.footer-info {
  font-size: 0.6875rem;
  letter-spacing: 0.075em;
  margin: 0.5rem 0;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.footer-info a {
  text-decoration: none;
}

.footer-info a:hover,
.footer-info a:focus {
  text-decoration: underline;
  text-decoration-color: var(--ghost-accent-color);
  text-decoration-thickness: 1px;
}

@media (min-width: 960px) {
  .footer-bottom {
    align-items: flex-start;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: space-between;
  }

  .footer-nav .menu {
    font-size: 0.875rem;
    justify-content: flex-start;
  }

  .footer-info {
    font-size: 0.75rem;
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .footer-bottom {
    grid-template-columns: repeat(auto-fill, minmax(min(32rem, 100%), 1fr));
  }
}

/* 17. Sidebar
----------------------------- */
.sidebar {
  background: var(--color-bg);
  bottom: 0;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  right: -100%;
  top: 0;
  transition: right .3s ease-in-out, visibility 0s .3s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: 10002;
}

.sidebar--opened .site {
  height: 100vh;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transform: translate3d(0,0,0);
  width: 100%;
  z-index: 10000;
}

.sidebar--opened .sidebar {
  right: 0;
  transition: right .3s ease-in-out;
  visibility: visible;
}

.sidebar-inside {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  position: relative;
}

.sidebar-top {
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 1.25rem;
  text-align: center;
}

.sidebar-menu {
  padding: 1.875rem 0.9375rem;
}

.sidebar-menu-title {
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin: 0 0 1.875rem;
  text-transform: uppercase;
}

.sidebar-menu .menu,
.sidebar-menu .actions {
  margin-bottom: 1.875rem;
}

.sidebar-menu .menu-item {
  margin-bottom: 0.5em;
}

.sidebar-menu .menu-item-more {
  display: none;
}

.sidebar .actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.sidebar .action-item-signup {
  display: inline-flex;
  margin-right: 0.5em;
}

.sidebar .action-item-signup:after {
  content: "/";
  margin-left: 0.5em;
}

@media (min-width: 480px) {
  .sidebar {
    box-shadow: 0 0 25px -5px rgba(0,0,0,0.1);
    width: 480px;
  }

  .sidebar-overlay {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-image: linear-gradient(to bottom right, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
    bottom: 0;
    cursor: ew-resize;
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10001;
  }

  .sidebar--opened .sidebar-overlay {
    -webkit-animation: fadeIn .15s;
    animation: fadeIn .15s;
    display: block;
  }

  .sidebar-menu {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

@media (min-width: 640px) {
  .sidebar-menu-title {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }

  .sidebar-menu {
    padding-top: 2.5rem;
  }

  .sidebar-menu .menu,
  .sidebar-menu .actions {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

/* 18. Ghost content cards
----------------------------- */
.kg-card,
.kg-card + * {
  margin-top: 1.5rem;
}

.kg-card > pre,
.kg-card > .js-reframe {
  margin: 0;
}

@media (min-width: 640px) {
  .kg-card,
  .kg-card + * {
    margin-top: 2.5rem;
  }
}

.kg-card figcaption {
  margin-left: auto;
  margin-right: auto;
  max-width: 740px;
}

.kg-image-card img {
  margin-left: auto;
  margin-right: auto;
}

/* Split, wide and full-width content */
.kg-header-card.kg-content-wide,
.kg-signup-card.kg-content-wide {
  --split-gap: max(3vw, 0.9375rem);
  --split-main: min(1100px, 100% - var(--split-gap) * 2);
  --split-full: minmax(var(--split-gap), 1fr);

  display: grid;
  grid-template-columns:
    [full-start] var(--split-full)
    [main-start] var(--split-main) [main-end]
    var(--split-full) [full-end];
}

.kg-content-wide > div {
  grid-column: main-start / main-end;
}

.kg-width-wide,
.kg-blockquote-alt {
  grid-column: wide-start / wide-end;
}

.kg-width-full {
  grid-column: full-start / full-end;
}

.kg-width-wide img,
.kg-width-full img {
  width: 100%;
}

/* Buttons */
#main .kg-btn,
#main .kg-product-card-button,
#main .kg-header-card-button,
#main .kg-signup-card-button {
  border: 2px solid transparent;
  border-radius: 0;
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  height: auto;
  justify-content: center;
  letter-spacing: 0.075em;
  line-height: 1.25;
  padding: 0.75em 1.25em;
  text-transform: uppercase;
}

#main .kg-product-card-button:hover {
  opacity: .85;
}

@media (min-width: 640px) {
  #main .kg-btn,
  #main .kg-product-card-button,
  #main .kg-header-card-button,
  #main .kg-signup-card-button {
    font-size: 0.9375rem;
  }
}

/* Alt blockquote */
.kg-blockquote-alt,
.kg-blockquote-alt + * {
  margin-top: 1.875rem;
}

.kg-blockquote-alt {
  border: 0;
  font-size: 1.5rem;
  font-style: normal;
  line-height: 1.375;
  padding: 1.875rem 0;
  position: relative;
  text-align: center;
}

.kg-blockquote-alt::before {
  background-color: var(--color-border);
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 25%;
}

.kg-blockquote-alt::after {
  background-color: var(--color-border);
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 25%;
}

@media (min-width: 640px) {
  .kg-blockquote-alt,
  .kg-blockquote-alt + * {
    margin-top: 2.5rem;
  }

  .kg-blockquote-alt {
    font-size: 1.875rem;
    padding: 2.5rem 0;
  }
}

/* Audio, file upload */
#main .kg-audio-card,
#main .kg-audio-thumbnail,
#main .kg-file-card-container,
#main .kg-file-card-icon:before {
  border-radius: 0;
}

#main .kg-file-card-container {
  border-color: var(--color-border);
}

#main .kg-audio-card {
  box-shadow: inset 0 0 0 1px var(--color-border);
}

#main .kg-audio-play-icon,
#main .kg-audio-playback-rate,
#main .kg-audio-unmute-icon,
#main .kg-audio-volume-slider {
  color: inherit;
}

#main .kg-audio-title,
#main .kg-file-card-title {
  color: var(--color-text-highlight);
  font-size: 1.125rem;
  line-height: 1.2;
}

#main .kg-file-card-caption {
  font-size: 0.875rem;
  margin: 0;
}

#main .kg-file-card-metadata {
  font-size: 0.875rem;
  word-break: break-word;
}

@media (min-width: 640px) {
  #main .kg-file-card-title,
  #main .kg-audio-title {
    font-size: 1.3125rem;
  }
}

/* Bookmark card */
.kg-bookmark-card {
  width: 100%;
}

.kg-bookmark-container {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: flex;
  flex-direction: column-reverse;
  min-height: 140px;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
}

.kg-bookmark-thumbnail {
  position: relative;
  flex-grow: 1;
  min-height: 160px;
  min-width: 33%;
}

.kg-bookmark-thumbnail img {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.kg-bookmark-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: start;
  padding: 1.25rem;
}

.kg-bookmark-title {
  color: var(--color-text-highlight);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 0.9375rem;
}

.kg-bookmark-description {
  display: -webkit-box;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
  max-height: 4.5em;
  overflow-y: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.kg-bookmark-metadata {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.9375rem;
  width: 100%;
}

.kg-bookmark-icon {
  height: 1.5rem;
  margin-right: 0.75em;
  width: 1.5rem;
}

.kg-bookmark-author {
  color: inherit;
}

.kg-bookmark-publisher:before {
  content: "\00b7";
  margin: 0 0.375rem;
}

@media (min-width: 480px) {
  .kg-bookmark-container {
    flex-direction: row;
  }

  .kg-bookmark-thumbnail {
    min-height: 0;
  }
}

@media (min-width: 640px) {
  .kg-bookmark-content {
    padding: 1.875rem;
  }

  .kg-bookmark-title {
    font-size: 1.3125rem;
  }

  .kg-bookmark-description {
    font-size: 1rem;
  }
}

/* Callout */
#main .kg-callout-card {
  border-radius: 0;
  padding: 1.25rem;
}

#main .kg-callout-card-white {
  box-shadow: inset 0 0 0 1px var(--color-border);
}

#main .kg-callout-card-accent a {
  color: inherit;
  text-decoration: underline;
}

#main .kg-callout-card-accent a:hover,
#main .kg-callout-card-accent a:focus {
  text-decoration-thickness: 2px;
}

@media (min-width: 640px) {
  #main .kg-callout-card {
    padding: 1.25rem 1.875rem;
  }
}

/* Gallery */
.kg-gallery-container {
  display: flex;
  flex-direction: column;
}

.kg-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.kg-gallery-row:not(:first-of-type) {
  margin: 3px 0 0;
}

.kg-gallery-image:not(:first-of-type) {
  margin: 0 0 0 3px;
}

.kg-gallery-image img {
  border-radius: 0;
  cursor: zoom-in;
  display: block;
  height: 100%;
  margin: 0;
  width: 100%;
}

/* Header, signup */
#main .kg-header-card.kg-style-dark {
  background-color: var(--color-bg-inverse);
}

#main .kg-header-card.kg-style-light {
  background-color: var(--color-bg-muted);
}

#main .kg-header-card-header,
#main .kg-header-card-heading,
#main .kg-signup-card-heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.125;
  max-width: 740px;
}

#main .kg-header-card-subheader,
#main .kg-header-card-subheading,
#main .kg-signup-card-subheading {
  font-size: 1rem;
  font-weight: 400;
  max-width: 740px;
}

@media (min-width: 640px) {
  #main .kg-header-card-header,
  #main .kg-header-card:not(.kg-layout-split) .kg-header-card-heading,
  #main .kg-signup-card:not(.kg-layout-split) .kg-signup-card-heading {
    font-size: 2.5rem;
  }

  #main .kg-header-card-subheader,
  #main .kg-header-card-subheading,
  #main .kg-signup-card-subheading {
    font-size: 1.125rem;
  }
}

@media (min-width: 960px) {
  #main .kg-header-card-header,
  #main .kg-header-card:not(.kg-layout-split) .kg-header-card-heading,
  #main .kg-signup-card:not(.kg-layout-split) .kg-signup-card-heading {
    font-size: 3rem;
    letter-spacing: -0.015em;
  }

  #main .kg-header-card.kg-layout-split .kg-header-card-heading,
  #main .kg-signup-card.kg-layout-split .kg-signup-card-heading {
    font-size: 2.25rem;
  }

  #main .kg-header-card-subheader,
  #main .kg-header-card-subheading,
  #main .kg-signup-card-subheading {
    font-size: 1.25rem;
  }
}

@media (min-width: 1280px) {
  #main .kg-header-card.kg-size-large .kg-header-card-header,
  #main .kg-header-card.kg-width-full:not(.kg-layout-split) .kg-header-card-heading,
  #main .kg-signup-card.kg-width-full:not(.kg-layout-split) .kg-signup-card-heading {
    font-size: 3.5rem;
  }
}

#main .kg-header-card-subheader:not(:first-child),
#main .kg-header-card-subheading:not(:first-child),
#main .kg-signup-card-subheading:not(:first-child) {
  margin: 1.25rem 0 0;
}

#main .kg-header-card-button:not(:first-child),
#main .kg-signup-card-form:not(:first-child) {
  margin: 1.875rem 0 0;
}

#main .kg-signup-card-disclaimer {
  font-size: clamp(0.875rem, calc(0.75rem + 0.416vw), 1rem);
  line-height: 1.5;
}

#main .kg-signup-card-fields {
  border-radius: 0;
  border-color: var(--color-gray-200);
  gap: 3px;
  max-width: 480px;
  padding: 3px;
}

#main .kg-signup-card-input,
#main .kg-signup-card-button {
  height: 2.75rem;
}

#main .kg-signup-card-input {
  background-color: transparent;
  border: 0;
  color: var(--color-gray-600);
  margin: 0;
}

@media (max-width: 480px) {
  #main .kg-signup-card-fields {
    flex-direction: column;
  }
}

@media (max-width: 900px) and (min-width: 641px) {
  #main .kg-layout-split .kg-signup-card-fields {
    flex-direction: column;
  }
}

/* Product */
#main .kg-product-card-container {
  border-radius: 0;
  padding: 1.25rem;
}

#main .kg-product-card-image {
  border-radius: 0;
}

#main .kg-product-card-title {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
}

#main .kg-product-card-description {
  font-family: var(--font-primary);
}

.kg-product-card-rating {
  color: var(--color-text-highlight);
}

@media (min-width: 640px) {
  #main .kg-product-card-container {
    padding: 1.875rem;
  }

  #main .kg-product-card-title {
    font-size: 1.3125rem;
  }
}

/* Toggle */
#main .kg-toggle-card {
  border-radius: 0;
  box-shadow: inset 0 0 0 1px var(--color-border);
  padding: 1.25rem;
}

#main .kg-toggle-heading-text {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
}

#main .kg-toggle-card-icon svg {
  color: var(--color-text);
}

@media (min-width: 640px) {
  #main .kg-toggle-card {
    padding: 1.5rem;
  }

  #main .kg-toggle-heading-text {
    font-size: 1.3125rem;
  }
}

/* 19. Animations
----------------------------- */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn55 {
  0% {
    opacity: 0;
  }
  to {
    opacity: .55;
  }
}

/* 20. Swiper
----------------------------- */
/**
 * Swiper 10.2.0
 * https://swiperjs.com
 * Copyright 2014-2023 Vladimir Kharlampidi
 * Released under the MIT License
 */
.swiper{display:block;margin-left:auto;margin-right:auto;list-style:none;overflow:hidden;overflow:clip;padding:0;position:relative;z-index:1;}.swiper-wrapper{box-sizing:content-box;display:flex;height:100%;position:relative;transition-property:transform;transition-timing-function:initial;width:100%;z-index:1;}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0);}.swiper-horizontal{touch-action:pan-y;}.swiper-slide{display:block;flex-shrink:0;height:auto;position:relative;transition-property:transform;width:100%;}.swiper-slide-invisible-blank{visibility:hidden;}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto;}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height;}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity;}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none;}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto;}

/* 21. SimpleLightbox
----------------------------- */
/**
 * SimpleLightbox 2.14.1
 * By André Rinas, www.andrerinas.de
 * Documentation, www.simplelightbox.com
 * Available for use under the MIT License
 */
body.hidden-scroll{overflow:hidden}.sl-overlay{position:fixed;left:0;right:0;top:0;bottom:0;background:var(--color-bg);display:none;z-index:1035}.sl-wrapper{z-index:1040;width:100%;height:100%;left:0;top:0;position:fixed}.sl-wrapper *{box-sizing:border-box}.sl-wrapper button{background:transparent;border:0 none;color:var(--color-text-highlight);cursor:pointer;font-size:1.25rem;height:1.875rem;line-height:1;padding:0;width:1.875rem}.sl-close svg,.sl-prev svg,.sl-next svg{fill:currentColor;height:1em;left:50%;margin-left:-0.5em;margin-top:-0.5em;position:absolute;top:50%;width:1em}.sl-wrapper .sl-close{display:none;position:fixed;right:5px;top:5px;z-index:10060}.sl-wrapper .sl-counter{color:var(--color-text);display:none;font-size:0.875rem;left:0.9375rem;position:fixed;top:0.9375rem;z-index:1060;letter-spacing:0.1em;}.sl-wrapper .sl-navigation{width:100%;display:none}.sl-wrapper .sl-prev,.sl-wrapper .sl-next{display:block;position:fixed;top:50%;transform:translateY(-50%);z-index:10060}.sl-wrapper .sl-next{right:5px}.sl-wrapper .sl-prev{left:5px}@media (min-width: 640px){.sl-wrapper .sl-close{right:0.9375rem;top:0.9375rem;}.sl-wrapper .sl-next,.sl-wrapper .sl-prev{border:2px solid currentColor;height:2.5rem;width:2.5rem}.sl-wrapper .sl-next{right:0.9375rem}.sl-wrapper .sl-prev{left:0.9375rem}}@media (min-width: 960px){.sl-wrapper .sl-close{right:1.875rem;top:1.875rem}.sl-wrapper .sl-next,.sl-wrapper .sl-prev{height:3.125rem;width:3.125rem}.sl-wrapper .sl-next{right:1.875rem}.sl-wrapper .sl-prev{left:1.875rem}.sl-wrapper .sl-counter{left:1.875rem;top:1.875rem}}.sl-wrapper.sl-dir-rtl .sl-navigation{direction:ltr}.sl-wrapper .sl-image{position:fixed;-ms-touch-action:none;touch-action:none;z-index:10000}.sl-wrapper .sl-image img{margin:0;padding:0;display:block;border:0 none;width:100%;height:auto}.sl-spinner{display:none;border:5px solid var(--color-text);border-radius:40px;height:40px;left:50%;margin:-20px 0 0 -20px;opacity:0;position:fixed;top:50%;width:40px;z-index:1007;-webkit-animation:pulsate 1s ease-out infinite;animation:pulsate 1s ease-out infinite}.sl-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.sl-transition{transition:-webkit-transform ease 200ms;transition:transform ease 200ms}@-webkit-keyframes pulsate{0%{transform:scale(0.1);opacity:0.0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@keyframes pulsate{0%{transform:scale(0.1);opacity:0.0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}


/*
* 23. Text colors
*/

.txt-color-yellowDark {
  color: #b09b5b !important;
}

.txt-color-yellow {
  color: #fff000 !important;
}

.txt-color-greenReal {
  color: #32cd32 !important;
}

.txt-color-redReal {
  color: #e45857 !important;
}

.txt-color-info-dark {
  color: #29a2d7 !important;
}

.txt-color-info {
  color: #54b5df !important;
}

.txt-color-purpleReal {
  color: #c673f4 !important;
}

.txt-color-brown {
  color: #9c5c5c !important;
}

.txt-color-gray {
  color: #808080 !important;
}

.txt-color-black {
  color: #000000 !important;
}

.txt-color-blue {
  color: #57889c !important;
}

.txt-color-blueLight {
  color: #92a2a8 !important;
}

.txt-color-blueDark {
  color: #4c4f53 !important;
}

.txt-color-green {
  color: #356e35 !important;
}

.txt-color-greenLight {
  color: #71843f !important;
}

.txt-color-greenDark {
  color: #496949 !important;
}

.txt-color-red {
  color: #a90329 !important;
}

.txt-color-yellow {
  color: #b09b5b !important;
}

.txt-color-orange {
  color: #b19a6b !important;
}

.txt-color-orangeDark {
  color: #a57225 !important;
}

.txt-color-pink {
  color: #ac5287 !important;
}

.txt-color-pinkDark {
  color: #a8829f !important;
}

.txt-color-purple {
  color: #6e587a !important;
}

.txt-color-darken {
  color: #404040 !important;
}

.txt-color-lighten {
  color: #d5e7ec !important;
}

.txt-color-white {
  color: #ffffff !important;
}

.txt-color-grayDark {
  color: #525252 !important;
}

.txt-color-magenta {
  color: #6e3671 !important;
}

.txt-color-teal {
  color: #568a89 !important;
}

.txt-color-redLight {
  color: #a65858 !important;
}


/*
* 24. Background colors
*/

.bg-color-red-yellow {
  background: rgb(255, 239, 239);
  /* Old browsers */
  background: -moz-linear-gradient(top, rgba(255, 239, 239, 1) 0%, rgba(255, 209, 209, 1) 100%, rgba(255, 107, 107, 1) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 239, 239, 1)), color-stop(100%, rgba(255, 209, 209, 1)), color-stop(100%, rgba(255, 107, 107, 1)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(255, 239, 239, 1) 0%, rgba(255, 209, 209, 1) 100%, rgba(255, 107, 107, 1) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(255, 239, 239, 1) 0%, rgba(255, 209, 209, 1) 100%, rgba(255, 107, 107, 1) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(255, 239, 239, 1) 0%, rgba(255, 209, 209, 1) 100%, rgba(255, 107, 107, 1) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(255, 239, 239, 1) 0%, rgba(255, 209, 209, 1) 100%, rgba(255, 107, 107, 1) 100%);
  /* W3C */
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffefef', endColorstr='#ff6b6b', GradientType=0);
  /* IE6-9 */
}

.bg-color-blue {
  background-color: #0066ff !important;
}

.bg-color-blueLight {
  background-color: #008aff !important;
}

.bg-color-blueDark {
  background-color: #0e0ab9 !important;
}

.bg-color-green {
  background-color: #356e35 !important;
}

.bg-color-greenLight {
  background-color: #71843f !important;
}

.bg-color-greenDark {
  background-color: #496949 !important;
}

.bg-color-red {
  background-color: #a90329 !important;
}

.bg-color-yellow {
  background-color: #b09b5b !important;
}

.bg-color-orange {
  background-color: #c79121 !important;
}

.bg-color-orangeDark {
  background-color: #a57225 !important;
}

.bg-color-pink {
  background-color: #ac5287 !important;
}

.bg-color-pinkDark {
  background-color: #a8829f !important;
}

.bg-color-purple {
  background-color: #6e587a !important;
}

.bg-color-darken {
  background-color: #404040 !important;
}

.bg-color-lighten {
  background-color: #d5e7ec !important;
}

.bg-color-white {
  background-color: #ffffff !important;
}

.bg-color-grayDark {
  background-color: #525252 !important;
}

.bg-color-magenta {
  background-color: #6e3671 !important;
}

.bg-color-teal {
  background-color: #568a89 !important;
}

.bg-color-redLight {
  background-color: #a65858 !important;
}

.bg-color-redAlfa {
  background-color: rgba(255, 0, 0, 0.2);
}

.bg-color-yellowLight {
  background-color: #fffec1 !important;
}

.bg-color-redLighten {
  background-color: #e28282 !important;
}

.bg-color-redReal {
  background-color: #e45857 !important;
}

.bg-color-greenReal {
  background-color: #32cd32 !important;
}

.bg-color-primary {
  background: #347ab6 !important;
}

.bg-color-warning {
  background: #f9a94a !important;
}

.bg-color-warning-2 {
  background: #dbab57 !important;
}

.bg-color-info {
  background: #54b5df !important;
}

.bg-color-danger {
  background: #f70c16 !important;
}

.bg-color-success {
  background: #90c657 !important;
}

.bg-color-gray {
  background: #eeeeee !important;
}

.bg-color-pink {
  background: #fb01d0 !important;
}

.bg-color-purple {
  background: #8175c7 !important;
}

.bg-color-seagreen {
  background: #01a89e !important;
}

.bg-color-yellow {
  background: #f1f924 !important;
}

.bg-color-brown {
  background: #590000 !important;
}

.bg-color-black {
  background: #000000 !important;
}

.bg-color-semi-black {
  background: #333 !important;
}

.bg-color-purple-light {
  background: #F2C3E2 !important;
}

.bg-color-grey {
  background: #eee !important;
}

.bg-color-redAlfa:hover,
.bg-color-redAlfa-dark {
  background-color: rgba(255, 0, 0, 0.5);
}

.bg-color-success:hover,
.bg-color-success-dark {
  background: #77af3b !important;
}

.bg-color-primary:hover,
.bg-color-primary-dark {
  background: #364359 !important;
}

.bg-color-warning:hover,
.bg-color-warning-dark {
  background: #f79219 !important;
}

.bg-color-info:hover,
.bg-color-info-dark {
  background: #29a2d7 !important;
}

.bg-color-danger:hover,
.bg-color-danger-dark {
  background: #a90329 !important;
}

.bg-color-purple:hover,
.bg-color-purple-dark {
  background: #6958ca !important;
}

.bg-color-yellow:hover,
.bg-color-yellow-dark {
  background: #f8d347 !important;
}

.bg-color-none {
  background: none !important;
}

.bg-color-white {
  background: #FFFFFF !important;
}


/*
* 25. Miscelaneous
*/

kbd {
  background: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 0 #fff;
  color: #343f44;
  font-size: .9em;
  margin-bottom: .4em;
  padding: 1px 8px;
  text-shadow: #fff 0 1px 0;
}

.pointer {
  cursor: pointer;
}

/*
Propaganda stuff
*/
.floating-div {
  position: fixed;
  right: 50px;
  top: 50%;
  width: 350px;
  background-color: var(--color-bg);
  z-index: 1000;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%); 
  display: block; 
}

.mobile-only {
  display: none; 
}

@media (max-width: 768px), 
       (orientation: landscape) and (max-width: 1024px) { 
    .floating-div {
        display: none; 
    }
}

@media (max-width: 768px) { 
    .mobile-only {
        display: block; 
    }
}
