@charset "UTF-8";
:root {
  --color-brand: #00136c;
  --color-text: #262626;
  --color-text-blog: #738a94;
  --color-text-muted: #a7a7a7;
  --color-text-white: #ffffff;
  --color-background: #ffffff;
  --color-border: #e3e3e3;
  --color-error: #d61a1a;
  --color-success: #83c54f;
  --color-warning: #f0b546;
  --color-gradient-start: #53a0fd;
  --color-gradient-end: #b4ec51; }

html {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text); }
  @media screen and (max-width: 1300px) {
    html {
      font-size: 14px; } }

body {
  margin: 0; }

a {
  text-decoration: none;
  display: inline-block;
  color: inherit; }

.container {
  width: calc(100% - 4rem);
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box; }
  .container--big {
    max-width: 1680px; }
  .container--small {
    max-width: 780px; }
  @media screen and (max-width: 1300px) {
    .container {
      max-width: 1040px;
      width: calc(100% - 2rem); } }

h1, h2, h3, p {
  margin: 0;
  line-height: 1; }

h1 {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--color-brand); }

h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-brand); }

h3 {
  font-size: 1.5rem;
  font-weight: 600; }

@media screen and (max-width: 680px) {
  h1 {
    font-size: 2.5rem; }
  h2 {
    font-size: 2rem; } }

@media screen and (max-width: 440px) {
  h1 {
    font-size: 2rem; }
  h2 {
    font-size: 1.75rem; } }

.navigation {
  width: 100%; }
  @media screen and (max-width: 900px) {
    .navigation {
      height: 6.5rem; } }
  @media screen and (max-width: 440px) {
    .navigation {
      height: 4rem; } }

.navigation-desktop {
  height: 8.75rem;
  padding: 3rem;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between; }
  @media screen and (max-width: 1100px) {
    .navigation-desktop {
      padding: 2rem 1rem;
      height: 6.75rem; } }
  @media screen and (max-width: 900px) {
    .navigation-desktop {
      display: none; } }

.navigation__side {
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 1; }

.navigation__brand {
  margin-bottom: 3px;
  display: block; }

.navigation__menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center; }

.navigation__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  margin: 0 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.875rem;
  cursor: pointer; }

.navigation__tor {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  background: var(--color-background);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 25px 0 rgba(106, 107, 152, 0.1); }

.navigation-mobile {
  position: fixed;
  top: 0;
  height: 6rem;
  width: 100%;
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  z-index: 10;
  background: var(--color-background); }
  @media screen and (max-width: 900px) {
    .navigation-mobile {
      display: flex; } }
  @media screen and (max-width: 440px) {
    .navigation-mobile {
      height: 4rem;
      padding: 0 1rem; } }

.navigation-mobile__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  z-index: 13; }
  .navigation-mobile__burger svg {
    width: 2rem;
    height: 2rem; }
  @media screen and (max-width: 440px) {
    .navigation-mobile__burger {
      width: 2.5rem;
      height: 2.5rem; }
      .navigation-mobile__burger svg {
        width: 1.75rem;
        height: 1.75rem; } }

.navigation-mobile__close {
  display: none; }

@media screen and (max-width: 440px) {
  .navigation-mobile__brand img {
    width: 175px; } }

.navigation-mobile-menu {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s; }

.navigation-mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 11; }

.navigation-mobile-menu__content {
  position: fixed;
  top: 0;
  right: 0;
  background: var(--color-background);
  height: 100%;
  width: 300px;
  z-index: 12;
  transform: translateX(100%);
  transition: transform 0.3s; }

.navigation-mobile-menu__items {
  display: flex;
  flex-direction: column;
  width: 100%; }
  .navigation-mobile-menu__items > a {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 700; }

.navigation-mobile-menu__header {
  height: 6rem;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box; }

.navigation-mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer; }

.cta {
  background: url("https://mycryptomixer.com/blog/assets/images/background-cta.png") no-repeat center;
  background-size: cover; }

.cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 8.5rem 0 9rem; }
  @media screen and (max-width: 440px) {
    .cta__content {
      padding: 4.5rem 0 5rem; } }

.cta__coins {
  margin-top: 3rem; }

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .section-title--inverted > h2 {
    color: var(--color-text-white); }
  .section-title > h2 {
    margin: 0 auto;
    max-width: 500px;
    line-height: 1.25; }

.section-title__emblem {
  margin-bottom: 2.25rem;
  height: 2rem;
  align-self: center; }
  @media screen and (max-width: 440px) {
    .section-title__emblem {
      margin-bottom: 1rem;
      height: 2rem; } }

.coins {
  display: grid;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: center;
  grid-gap: 2rem; }
  .coins--inverted .coin {
    background: var(--color-brand);
    color: var(--color-text-white);
    --color-background: var(--color-brand); }
  .coins--inverted .coin__soon {
    color: var(--color-text-white); }
  @media screen and (max-width: 440px) {
    .coins {
      grid-gap: 1rem; } }

.coin {
  position: relative;
  background: var(--color-background);
  border-radius: 0.25rem;
  cursor: pointer;
  user-select: none; }
  .coin--soon {
    cursor: default; }
    .coin--soon .coin__content-wrapper {
      opacity: 0.2; }
  .coin:hover:not(.coin--soon) .coin__content:hover:after {
    transform: scale(2) rotate(45deg) translateY(-100%); }
  .coin:hover:not(.coin--soon) .coin__name {
    color: var(--color-text-white); }

.coin__content-wrapper {
  background: linear-gradient(to right, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%);
  border-radius: 0.25rem;
  padding: 3px;
  width: 175px;
  height: 140px;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 25px 0 rgba(106, 107, 152, 0.1); }
  @media screen and (max-width: 440px) {
    .coin__content-wrapper {
      width: 130px;
      height: 105px; } }

.coin__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative; }
  .coin__content > * {
    z-index: 1; }
  .coin__content:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--color-background);
    transform: scale(2) rotate(45deg);
    z-index: 0;
    transition: transform .4s; }

.coin__name {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  text-align: center;
  transition: color .3s; }

.coin__soon {
  position: absolute;
  top: 1rem;
  right: 0.875rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-brand);
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 1; }

.coin__image {
  height: 65px; }
  @media screen and (max-width: 440px) {
    .coin__image {
      height: 45px; } }

.footer {
  display: flex;
  padding: 8.125rem 0;
  box-sizing: border-box;
  background: url("https://mycryptomixer.com/blog/assets/images/polka-dots.png") no-repeat calc(100% + 11rem) calc(100% + 28.5rem); }
  @media screen and (max-width: 1100px) {
    .footer {
      padding: 6.125rem 1rem; } }
  @media screen and (max-width: 680px) {
    .footer {
      padding: 2.25rem 1rem; } }

.footer__content {
  display: grid;
  grid-template-columns: 425px repeat(3, 1fr); }
  @media screen and (max-width: 1100px) {
    .footer__content {
      grid-template-columns: 2fr repeat(3, 1fr); } }
  @media screen and (max-width: 680px) {
    .footer__content {
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 2rem; } }

@media screen and (max-width: 680px) {
  .footer__brand {
    grid-column: span 2; } }

.footer__navigation {
  display: flex;
  flex-direction: column;
  padding-top: 0.75rem;
  line-height: 1; }
  @media screen and (max-width: 680px) {
    .footer__navigation:last-child {
      grid-column: span 2; } }

.footer__navigation-title {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  letter-spacing: 0.5px; }

.footer__link {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  cursor: pointer; }
  .footer__link:last-child {
    margin-bottom: 0; }

.landing {
  padding-top: 8.5rem;
  padding-bottom: 0.5rem;
  background: url("https://mycryptomixer.com/blog/assets/images/background-landing.png") no-repeat center 10rem, url("https://mycryptomixer.com/blog/assets/images/polka-dots.png") no-repeat center 2.75rem; }
  @media screen and (max-width: 440px) {
    .landing {
      padding-top: 4.5rem;
      background: url("https://mycryptomixer.com/blog/assets/images/polka-dots.png") no-repeat center 2.75rem;
      background-size: 125%; } }

.landing__featured-posts {
  margin-top: 4rem; }

.landing__posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  margin-bottom: 6rem; }
  @media screen and (max-width: 960px) {
    .landing__posts {
      grid-template-columns: repeat(2, 1fr);
      margin-bottom: 2rem; } }
  @media screen and (max-width: 440px) {
    .landing__posts {
      grid-template-columns: 1fr;
      grid-gap: 1rem;
      margin-bottom: 0; } }

.landing__featured-post-wrapper {
  margin-bottom: 2rem; }
  @media screen and (max-width: 440px) {
    .landing__featured-post-wrapper {
      margin-bottom: 1rem; } }

.post-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 0.25rem;
  background: white;
  box-sizing: border-box;
  transition: box-shadow .3s;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 25px 0 rgba(106, 107, 152, 0.1); }
  .post-card:hover {
    box-shadow: 0 4px 25px 0 rgba(106, 107, 152, 0.25); }
  .post-card--featured {
    flex-direction: row; }
    .post-card--featured .post-card__content {
      width: 400px; }
    .post-card--featured .post-card__image-wrapper {
      padding-top: calc((100% - 400px) * 9 / 16); }
    @media screen and (max-width: 440px) {
      .post-card--featured {
        flex-direction: column; }
        .post-card--featured .post-card__content {
          widtH: auto; }
        .post-card--featured .post-card__image-wrapper {
          padding-top: calc(100% * 9 / 16); } }

.post-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: calc(100% * 9 / 16);
  /* 1:1 Aspect Ratio */ }

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

.post-card__content {
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  font-weight: 600;
  line-height: 1; }

.post-card__date {
  display: flex;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  align-items: center; }

.post-card__title {
  margin: 0.5rem 0 0.375rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text); }

.post-card__excerpt {
  line-height: 1.5;
  text-align: left;
  margin-top: 0.5rem;
  color: var(--color-text-blog); }

.post-template .site-main,
.page-template .site-main {
  margin-top: 64px;
  padding-bottom: 4vw;
  background: #fff; }

.post-full-header {
  position: relative;
  margin: 0 auto;
  padding: 70px 170px 50px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

.post-full-tags {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--midgrey);
  font-size: 1.3rem;
  line-height: 1.4em;
  font-weight: 600;
  text-transform: uppercase; }

.post-full-meta-date {
  color: var(--midgrey);
  font-size: 1.2rem;
  font-weight: 400; }

@media (max-width: 1170px) {
  .post-full-header {
    padding: 60px 11vw 50px; } }

@media (max-width: 800px) {
  .post-full-header {
    padding-right: 5vw;
    padding-left: 5vw; } }

@media (max-width: 500px) {
  .post-full-header {
    padding: 20px 0 35px; } }

.post-full-title {
  margin: 0 0 0.2em;
  color: var(--darkgrey); }

.post-full-custom-excerpt {
  margin: 20px 0 0;
  color: var(--midgrey);
  font-family: Georgia, serif;
  font-size: 2.3rem;
  line-height: 1.4em;
  font-weight: 300; }

.date-divider {
  display: inline-block;
  margin: 0 6px 1px;
  font-weight: 300; }

.post-full-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  margin: 25px 0 50px;
  background: var(--lightgrey);
  border-radius: 3px; }

.post-full-image img {
  max-width: 1040px;
  width: 100%;
  height: auto; }

.post-full-content {
  position: relative;
  margin: 0 auto;
  padding: 0 240px 6vw;
  min-height: 230px;
  font-family: Georgia, serif;
  font-size: 2.0rem;
  line-height: 1.6em;
  background: #fff; }

@media (max-width: 1170px) {
  .post-full-content {
    padding: 0 11vw; } }

@media (max-width: 800px) {
  .post-full-content {
    padding: 0 5vw;
    font-size: 1.8rem; } }

@media (max-width: 500px) {
  .post-full-custom-excerpt {
    font-size: 1.9rem;
    line-height: 1.5em; } }

.no-image .post-full-content {
  padding-top: 0; }

.no-image .post-full-content:before,
.no-image .post-full-content:after {
  display: none; }

.post-full-content h1,
.post-full-content h2,
.post-full-content h3,
.post-full-content h4,
.post-full-content h5,
.post-full-content h6,
.post-full-content p,
.post-full-content ul,
.post-full-content ol,
.post-full-content dl,
.post-full-content pre,
.post-full-content blockquote,
.post-full-comments,
.footnotes {
  margin: 0 0 1.5em 0;
  min-width: 100%; }

@media (max-width: 500px) {
  .post-full-content p,
  .post-full-content ul,
  .post-full-content ol,
  .post-full-content dl,
  .post-full-content pre,
  .post-full-comments,
  .footnotes {
    margin-bottom: 1.28em; } }

.post-full-content li {
  word-break: break-word; }

.post-full-content li p {
  margin: 0; }

.post-full-content a {
  color: var(--darkgrey);
  word-break: break-word;
  box-shadow: var(--darkgrey) 0 -1px 0 inset;
  transition: all 0.2s ease-in-out; }

.post-full-content a:hover {
  color: var(--blue);
  text-decoration: none;
  box-shadow: var(--blue) 0 -1px 0 inset; }

.post-full-content strong,
.post-full-content em {
  color: var(--darkgrey); }

.post-full-content small {
  display: inline-block;
  line-height: 1.6em; }

.post-full-content li:first-child {
  margin-top: 0; }

.post-full-content img,
.post-full-content video {
  display: block;
  margin: 1.5em auto;
  max-width: 1040px;
  height: auto; }

@media (max-width: 1040px) {
  .post-full-content img,
  .post-full-content video {
    width: 100%; } }

/* Full bleed images (#full)
Super neat trick courtesy of @JoelDrapper

Usage (In Ghost edtior):

![img](/some/image.jpg#full)

*/
.post-full-content img[src$="#full"] {
  max-width: none;
  width: 100vw; }

/* Image captions

Usage (In Ghost editor):

![img](/some/image.jpg)
<small>Your image caption</small>

*/
.post-full-content img + br + small {
  display: block;
  margin-top: -3em;
  margin-bottom: 1.5em;
  text-align: center; }

/* Override third party iframe styles */
.post-full-content iframe {
  margin: 0 auto !important; }

.post-full-content blockquote {
  margin: 0 0 1.5em;
  padding: 0 1.5em;
  border-left: #3eb0ef 3px solid; }

@media (max-width: 500px) {
  .post-full-content blockquote {
    padding: 0 1.3em; } }

.post-full-content blockquote p {
  margin: 0 0 1em 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: italic; }

.post-full-content blockquote p:last-child {
  margin-bottom: 0; }

.post-full-content code {
  padding: 0 5px 2px;
  font-size: 0.8em;
  line-height: 1em;
  font-weight: 400 !important;
  background: var(--whitegrey);
  border-radius: 3px; }

.post-full-content p code {
  word-break: break-all; }

.post-full-content pre {
  overflow-x: auto;
  margin: 1.5em 0 3em;
  padding: 20px;
  max-width: 100%;
  border: var(--darkgrey) 1px solid;
  color: var(--whitegrey);
  font-size: 1.4rem;
  line-height: 1.5em;
  background: var(--darkgrey);
  border-radius: 5px; }

.post-full-content pre ::selection {
  color: var(--midgrey); }

.post-full-content pre code {
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  background: transparent; }

.post-full-content pre code :not(span) {
  color: inherit; }

.post-full-content .fluid-width-video-wrapper {
  margin: 1.5em 0 3em; }

.post-full-content hr {
  margin: 2em 0; }

.post-full-content hr:after {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  display: block;
  margin-left: -10px;
  width: 1px;
  height: 30px;
  background: var(--lightgrey);
  box-shadow: #fff 0 0 0 5px;
  transform: rotate(45deg); }

.post-full-content hr + p {
  margin-top: 1.2em; }

.post-full-content h1,
.post-full-content h2,
.post-full-content h3,
.post-full-content h4,
.post-full-content h5,
.post-full-content h6 {
  color: var(--darkgrey);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; }

.post-full-content h1 {
  margin: 0.5em 0 0.4em;
  font-size: 4.2rem;
  line-height: 1.25em;
  font-weight: 600; }

.post-full-content p + h1 {
  margin-top: 0.8em; }

@media (max-width: 800px) {
  .post-full-content h1 {
    font-size: 3.2rem;
    line-height: 1.25em; } }

.post-full-content h2 {
  margin: 0.5em 0 0.4em;
  font-size: 3.2rem;
  line-height: 1.25em;
  font-weight: 600; }

.post-full-content p + h2 {
  margin-top: 0.8em; }

@media (max-width: 800px) {
  .post-full-content h2 {
    margin-bottom: 0.3em;
    font-size: 2.8rem;
    line-height: 1.25em; } }

.post-full-content h3 {
  margin: 0.5em 0 0.2em;
  font-size: 2.5rem;
  line-height: 1.3em;
  font-weight: 600; }

.post-full-content h2 + h3 {
  margin-top: 0.7em; }

@media (max-width: 800px) {
  .post-full-content h3 {
    margin-bottom: 0.3em;
    font-size: 2.4rem;
    line-height: 1.3em; } }

.post-full-content h4 {
  margin: 0.5em 0 0.2em;
  font-size: 2.5rem;
  font-weight: 600; }

.post-full-content h2 + h4 {
  margin-top: 0.7em; }

.post-full-content h3 + h4 {
  margin-top: 0; }

@media (max-width: 800px) {
  .post-full-content h4 {
    margin-bottom: 0.3em;
    font-size: 2.4rem;
    line-height: 1.3em; } }

.post-full-content h5 {
  display: block;
  margin: 0.5em 0;
  padding: 0.4em 1em 0.9em;
  border: 0;
  color: var(--blue);
  font-family: Georgia,serif;
  font-size: 3.2rem;
  line-height: 1.35em;
  text-align: center; }

@media (min-width: 1180px) {
  .post-full-content h5 {
    max-width: 1060px;
    width: 100vw; } }

@media (max-width: 800px) {
  .post-full-content h5 {
    margin-bottom: 1em;
    margin-left: 1.3em;
    padding: 0 0 0.5em;
    font-size: 2.4rem;
    text-align: initial; } }

.post-full-content h6 {
  margin: 0.5em 0 0.2em 0;
  font-size: 2.0rem;
  font-weight: 700; }

@media (max-width: 800px) {
  .post-full-content h6 {
    font-size: 1.8rem;
    line-height: 1.4em; } }

.footnotes-sep {
  margin-bottom: 30px; }

.footnotes {
  font-size: 1.5rem; }

.footnotes p {
  margin: 0; }

.footnote-backref {
  color: var(--blue) !important;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none !important;
  box-shadow: none !important; }

/* Some grouped styles for smaller viewports */
@media (max-width: 1170px) {
  .post-full-image {
    margin: 25px -6vw 50px;
    border-radius: 0; }
  .post-full-image img {
    max-width: 1170px; } }

@media (max-width: 700px) {
  .post-full-image {
    margin: 25px -5vw; } }

@media (max-width: 500px) {
  .post-full-meta {
    font-size: 1.2rem;
    line-height: 1.3em; }
  .post-full-title {
    margin-top: 0.2em;
    font-size: 4.2rem;
    line-height: 1.05em; }
  .post-full-image {
    margin-top: 5px;
    margin-bottom: 5vw; }
  .post-full-content {
    padding: 0; }
  .post-full-content:before,
  .post-full-content:after {
    display: none; } }

/* Tables */
.post-full-content table {
  display: inline-block;
  overflow-x: auto;
  margin: 0.5em 0 2.5em;
  max-width: 100%;
  width: auto;
  border-spacing: 0;
  border-collapse: collapse;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.6rem;
  white-space: nowrap;
  vertical-align: top; }

.post-full-content table {
  -webkit-overflow-scrolling: touch;
  background: radial-gradient(ellipse at left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 75%) 0 center, radial-gradient(ellipse at right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 75%) 100% center;
  background-attachment: scroll, scroll;
  background-size: 10px 100%, 10px 100%;
  background-repeat: no-repeat; }

.post-full-content table td:first-child {
  background-image: linear-gradient(to right, white 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 20px 100%;
  background-repeat: no-repeat; }

.post-full-content table td:last-child {
  background-image: linear-gradient(to left, white 50%, rgba(255, 255, 255, 0) 100%);
  background-position: 100% 0;
  background-size: 20px 100%;
  background-repeat: no-repeat; }

.post-full-content table th {
  color: var(--darkgrey);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: left;
  text-transform: uppercase;
  background-color: var(--whitegrey); }

.post-full-content table th,
.post-full-content table td {
  padding: 6px 12px;
  border: var(--whitegrey) 1px solid; }

/* 7.1. Post Byline
/* ---------------------------------------------------------- */
.post-full-byline {
  display: flex;
  justify-content: space-between;
  margin: 35px 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--lightgrey); }

.post-full-byline-content {
  flex-grow: 1;
  display: flex;
  align-items: flex-start; }

.post-full-byline-content .author-list {
  justify-content: flex-start;
  padding: 0 12px 0 0; }

.post-full-byline-meta {
  margin: 2px 0 0;
  color: var(--midgrey);
  font-size: 1.2rem;
  line-height: 1.2em;
  letter-spacing: 0.2px;
  text-transform: uppercase; }

.post-full-byline-meta h4 {
  margin: 0 0 3px;
  font-size: 1.3rem;
  line-height: 1.4em;
  font-weight: 500; }

.post-full-byline-meta h4 a {
  color: var(--darkgrey); }

.post-full-byline-meta h4 a:hover {
  color: var(--darkgrey); }

.post-full-byline-meta .bull {
  display: inline-block;
  margin: 0 4px;
  opacity: 0.6; }

.author-avatar {
  display: block;
  overflow: hidden;
  margin: 0 -4px;
  width: 40px;
  height: 40px;
  border: #fff 2px solid;
  border-radius: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99) 700ms; }

.author-list-item .author-card {
  position: absolute;
  bottom: 130%;
  left: 50%;
  z-index: 600;
  display: flex;
  justify-content: space-between;
  margin-left: -200px;
  width: 400px;
  font-size: 1.4rem;
  line-height: 1.5em;
  background: white;
  border-radius: 3px;
  box-shadow: rgba(39, 44, 49, 0.08) 0 12px 26px, rgba(39, 44, 49, 0.06) 1px 3px 8px;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transform: scale(0.98) translateY(15px);
  pointer-events: none; }

.author-list-item .author-card:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  display: block;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid #fff;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent; }

.author-list-item .author-card.hovered {
  opacity: 1.0;
  transform: scale(1) translateY(0px);
  pointer-events: auto; }

.author-card {
  padding: 20px 20px 22px; }

.author-card .author-info {
  flex: 1 1 auto;
  padding: 0 0 0 20px; }

.author-card .author-info h2 {
  margin: 8px 0 0;
  font-size: 1.6rem; }

.author-card .author-info p {
  margin: 4px 0 0;
  color: var(--midgrey); }

.author-card .author-info .bio h2 {
  margin-top: 0; }

.author-card .author-info .bio p {
  margin-top: 0.8em; }

.author-card .author-profile-image {
  flex: 0 0 60px;
  margin: 0;
  width: 60px;
  height: 60px;
  border: none; }

.basic-info .avatar-wrapper {
  position: relative;
  margin: 0;
  width: 60px;
  height: 60px;
  border: none;
  background: rgba(229, 239, 245, 0.1); }

.basic-info .avatar-wrapper svg {
  margin: 0;
  width: 60px;
  height: 60px;
  opacity: 0.15; }

@media (max-width: 1170px) {
  .author-list-item .author-card {
    margin-left: -50px;
    width: 430px; }
  .author-list-item .author-card:before {
    left: 50px; } }

@media (max-width: 650px) {
  .author-list-item .author-card {
    display: none; } }

@media (max-width: 500px) {
  .author-avatar {
    width: 36px;
    height: 36px; }
  .post-full-byline {
    margin-top: 20px; }
  .post-full-byline-meta {
    font-size: 1.2rem; }
  .post-full-byline-meta h4 {
    margin-bottom: 2px;
    font-size: 1.2rem; } }

/* 7.2. Members Subscribe Form
/* ---------------------------------------------------------- */
.subscribe-form {
  margin: 1.5em 0;
  padding: 6.5vw 7vw 8vw;
  border: var(--lightgrey) 1px solid;
  text-align: center;
  background: linear-gradient(to right, var(--whitegrey), var(--whitegrey));
  border-radius: 3px; }

.subscribe-form-title {
  margin: 0 0 3px 0;
  padding: 0;
  color: var(--darkgrey);
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 600; }

.subscribe-form-description {
  margin: 0.2em 0 1em;
  color: var(--midgrey);
  font-size: 2.1rem;
  line-height: 1.55em; }

.subscribe-form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 460px; }

.subscribe-form .form-group {
  align-self: stretch;
  display: flex; }

.subscribe-email {
  display: block;
  padding: 10px;
  width: 100%;
  border: var(--lightgrey) 1px solid;
  color: var(--midgrey);
  font-size: 1.8rem;
  line-height: 1em;
  font-weight: normal;
  user-select: text;
  border-radius: 5px;
  transition: border-color 0.15s linear;
  -webkit-appearance: none; }

.subscribe-email:focus {
  outline: 0;
  border-color: var(--lightgrey); }

.subscribe-form button {
  position: relative;
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 0 20px;
  height: 43px;
  outline: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 39px;
  font-weight: 400;
  text-align: center;
  background: var(--blue);
  border-radius: 5px;
  -webkit-font-smoothing: subpixel-antialiased; }

.subscribe-form button:active,
.subscribe-form button:focus {
  background: var(--blue); }

.subscribe-form .button-loader,
.subscribe-form .message-success,
.subscribe-form .message-error {
  display: none; }

.subscribe-form .loading .button-content {
  visibility: hidden; }

.subscribe-form .loading .button-loader {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  margin-left: -19px;
  transform: scale(0.7); }

.subscribe-form .button-loader svg path,
.subscribe-form .button-loader svg rect {
  fill: #fff; }

.subscribe-form .success .message-success,
.subscribe-form .invalid .message-error,
.subscribe-form .error .message-error {
  margin: 1em auto 0;
  max-width: 400px;
  color: var(--red);
  font-size: 1.6rem;
  line-height: 1.5em;
  text-align: center; }

.subscribe-form .success .message-success {
  display: block;
  color: var(--green); }

.subscribe-form .invalid .message-error,
.subscribe-form .error .message-error {
  display: block; }

@media (max-width: 650px) {
  .subscribe-form-title {
    font-size: 2.4rem; }
  .subscribe-form-description {
    font-size: 1.6rem; } }

@media (max-width: 500px) {
  .subscribe-form form {
    flex-direction: column; }
  .subscribe-form .form-group {
    flex-direction: column;
    width: 100%; }
  .subscribe-form button {
    margin: 10px 0 0 0;
    width: 100%; } }

/* 7.3. Comments
/* ---------------------------------------------------------- */
.post-full-comments {
  margin: 0 auto;
  max-width: 840px; }

/* 7.4. Related posts
/* ---------------------------------------------------------- */
.read-next {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--darkgrey); }

.read-next-feed {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -25px;
  padding: 60px 0 0 0; }

.read-next .post-card {
  padding-bottom: 0;
  border-bottom: none; }

.read-next .post-card:after {
  display: none; }

.read-next .post-card-primary-tag {
  color: #fff;
  opacity: 0.6; }

.read-next .post-card-title {
  color: #fff;
  opacity: 0.8;
  transition: all 0.2s ease-in-out; }

.read-next .post-card:hover .post-card-image {
  opacity: 1.0; }

.read-next .post-card-excerpt {
  color: rgba(255, 255, 255, 0.6); }

.read-next .static-avatar {
  border-color: #000; }

.read-next .post-card-byline-content {
  color: rgba(255, 255, 255, 0.6); }

.read-next .post-card-byline-content a {
  color: rgba(255, 255, 255, 0.8); }

.read-next-card {
  position: relative;
  flex: 0 1 326px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0 25px 50px;
  padding: 25px;
  background: var(--darkgrey);
  border-radius: 3px; }

.read-next-card a {
  transition: all 0.2s ease-in-out; }

.read-next-card a:hover {
  text-decoration: none; }

.read-next-card-header h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  line-height: 1em;
  font-weight: 300;
  letter-spacing: 0.4px;
  text-transform: uppercase; }

.read-next-card-header h3 a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.8; }

.read-next-card-header h3 a:hover {
  opacity: 1; }

.read-next-card-content {
  font-size: 1.7rem; }

.read-next-card-content ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none; }

.read-next-card-content li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 20px 0;
  border-bottom: rgba(255, 255, 255, 0.1); }

.read-next-card-content li:last-of-type {
  padding-bottom: 5px;
  border: none; }

.read-next-card-content h4 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.35em;
  font-weight: 600; }

.read-next-card-content li a {
  display: block;
  color: #fff;
  opacity: 0.8; }

.read-next-card-content li a:hover {
  opacity: 1; }

.read-next-card-excerpt {
  overflow: hidden;
  max-width: 100%;
  font-size: 1.4rem;
  line-height: 1.2em;
  text-overflow: ellipsis; }

.read-next-card-meta {
  margin-top: 2px;
  font-size: 1.2rem;
  line-height: 1.4em;
  font-weight: 400; }

.read-next-card-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6); }

.read-next-card-footer {
  position: relative;
  margin: 40px 0 5px; }

.read-next-card-footer a {
  padding: 7px 12px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
  border-radius: 999px;
  transition: all 0.35s ease-in-out; }

.read-next-card-footer a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  text-decoration: none; }

@media (max-width: 1170px) {
  .read-next-card {
    flex: 1 1 261px;
    margin-bottom: 5vw; } }

@media (max-width: 650px) {
  .read-next-feed {
    flex-direction: column;
    padding: 25px 0 0; }
  .read-next-card {
    flex: 1 1 auto;
    margin: 0 25px;
    padding: 0;
    background: none; }
  .read-next .post-card {
    flex: 1 1 auto;
    margin: 25px;
    padding: 25px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); } }

/* 7.5. Koenig Styles
/* ---------------------------------------------------------- */
.post-content {
  display: flex;
  flex-direction: column;
  align-items: center; }

.post-full-content .kg-image {
  margin: 0 auto;
  max-width: 100%; }

/* Preventing full-width image overlap with post image.  */
.post-full-image + .post-full-content .kg-content *:first-child .kg-image {
  width: 100%; }

.post-full-content .kg-width-wide .kg-image {
  max-width: 1040px; }

.post-full-content .kg-width-full .kg-image {
  max-width: 100vw; }

.post-full-content figure {
  margin: 0.8em 0 2.3em; }

.post-full-content h1 + figure,
.post-full-content h2 + figure,
.post-full-content h3 + figure,
.post-full-content h4 + figure {
  margin-top: 2em; }

.post-full-content figure img {
  margin: 0; }

.post-full-content figcaption {
  margin: 1.0em auto 0;
  color: var(--midgrey);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 75%;
  line-height: 1.5em;
  text-align: center;
  max-width: 1040px; }

.kg-width-full figcaption {
  padding: 0 1.5em; }

.kg-embed-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; }

.kg-embed-card .fluid-width-video-wrapper {
  margin: 0; }

@media (max-width: 1040px) {
  .post-full-content .kg-width-full .kg-image {
    width: 100vw; } }

.kg-gallery-container {
  display: flex;
  flex-direction: column;
  max-width: 1040px;
  width: 100vw; }

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

.kg-gallery-image img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%; }

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

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

.kg-gallery-card + .kg-image-card.kg-width-wide,
.kg-gallery-card + .kg-gallery-card,
.kg-image-card.kg-width-wide + .kg-gallery-card,
.kg-image-card.kg-width-wide + .kg-image-card.kg-width-wide {
  margin: -2.25em 0 3em; }

/* keep existing <pre> styles for code cards with captions */
.kg-code-card {
  width: 100%; }

.kg-code-card pre {
  margin: 0; }

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

.kg-card + .kg-bookmark-card {
  margin-top: 0; }

.post-full-content .kg-bookmark-container {
  display: flex;
  min-height: 148px;
  color: var(--darkgrey);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-decoration: none;
  border-radius: 3px;
  box-shadow: 0 2px 5px -1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.09); }

.post-full-content .kg-bookmark-container:hover {
  color: var(--darkgrey);
  text-decoration: none;
  box-shadow: 0 2px 5px -1px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.09); }

.kg-bookmark-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px; }

.kg-bookmark-title {
  color: var(--midgrey);
  font-size: 1.6rem;
  line-height: 1.5em;
  font-weight: 600;
  transition: color 0.2s ease-in-out; }

.post-full-content .kg-bookmark-container:hover .kg-bookmark-title {
  color: var(--blue); }

.kg-bookmark-description {
  display: -webkit-box;
  overflow-y: hidden;
  margin-top: 12px;
  max-height: 48px;
  color: var(--midgrey);
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 400;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.kg-bookmark-thumbnail {
  position: relative;
  min-width: 33%;
  max-height: 100%; }

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

.kg-bookmark-metadata {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
  color: var(--midgrey);
  font-size: 1.5rem;
  font-weight: 400; }

.post-full-content .kg-bookmark-icon {
  margin-right: 8px;
  width: 22px;
  height: 22px; }

.kg-bookmark-author {
  line-height: 1.5em; }

.kg-bookmark-author:after {
  content: "•";
  margin: 0 6px; }

.kg-bookmark-publisher {
  overflow: hidden;
  max-width: 240px;
  line-height: 1.5em;
  text-overflow: ellipsis;
  white-space: nowrap; }

@media (max-width: 800px) {
  .post-full-content figure {
    margin: 0.2em 0 1.3em; }
  .post-full-content h1 + figure,
  .post-full-content h2 + figure,
  .post-full-content h3 + figure,
  .post-full-content h4 + figure {
    margin-top: 0.9em; } }

@media (max-width: 500px) {
  .post-full-content .kg-width-wide,
  .post-full-content .kg-width-full {
    margin-right: -5vw;
    margin-left: -5vw; }
  .post-full-content figcaption {
    margin-bottom: 0.4em; }
  .post-full-content .kg-bookmark-container {
    flex-direction: column; }
  .kg-bookmark-title,
  .kg-bookmark-description,
  .kg-bookmark-metadata {
    font-size: 1.4rem;
    line-height: 1.5em; }
  .post-full-content .kg-bookmark-icon {
    width: 18px;
    height: 18px; }
  .kg-bookmark-thumbnail {
    order: 1;
    min-height: 160px;
    width: 100%; }
  .kg-bookmark-thumbnail img {
    border-radius: 3px 3px 0 0; }
  .kg-bookmark-content {
    order: 2; } }

.post {
  padding-top: 8.5rem;
  background: url("https://mycryptomixer.com/blog/assets/images/polka-dots.png") no-repeat center 2.75rem; }
  @media screen and (max-width: 1200px) {
    .post {
      width: 100%;
      max-width: 100%;
      padding: 0; } }
  @media screen and (max-width: 440px) {
    .post {
      padding-top: 4.5rem;
      background-size: 125%; } }

.post__image {
  width: 100%;
  margin-top: 4rem;
  border-radius: 0.25rem; }

.post__content-wrapper {
  font-size: 16px; }
  @media screen and (max-width: 440px) {
    .post__content-wrapper {
      margin: 0 1rem; } }
  .post__content-wrapper > .post__content {
    padding-top: 2.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--color-text-blog); }
    .post__content-wrapper > .post__content h2 {
      font-size: 1.75rem;
      font-weight: 600;
      color: var(--color-text); }
      .post__content-wrapper > .post__content h2 > strong {
        color: inherit; }
      @media screen and (max-width: 440px) {
        .post__content-wrapper > .post__content h2 {
          font-size: 1.5rem; } }
    .post__content-wrapper > .post__content h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--color-text); }
      @media screen and (max-width: 440px) {
        .post__content-wrapper > .post__content h3 {
          font-size: 1.375rem; } }
    .post__content-wrapper > .post__content p {
      line-height: 1.7; }
    .post__content-wrapper > .post__content ol, .post__content-wrapper > .post__content ul {
      padding-inline-start: 50px; }
      @media screen and (max-width: 440px) {
        .post__content-wrapper > .post__content ol, .post__content-wrapper > .post__content ul {
          min-width: auto;
          padding-inline-start: 2rem; } }
    .post__content-wrapper > .post__content pre {
      min-width: 80%;
      padding: 1rem;
      font-size: 1rem; }
    .post__content-wrapper > .post__content a {
      color: var(--color-brand) !important; }
    .post__content-wrapper > .post__content .kg-bookmark-container {
      max-width: 80%;
      margin: 0 auto; }
      @media screen and (max-width: 440px) {
        .post__content-wrapper > .post__content .kg-bookmark-container {
          max-width: 100%; } }

.related-posts {
  margin-bottom: 0.5rem;
  margin-top: 2rem; }
  .related-posts > h2 {
    margin-bottom: 2rem;
    text-align: center; }

.related-posts__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  margin-bottom: 6rem; }
  @media screen and (max-width: 900px) {
    .related-posts__list {
      grid-template-columns: repeat(2, 1fr);
      margin-bottom: 2rem; } }
  @media screen and (max-width: 440px) {
    .related-posts__list {
      grid-template-columns: 1fr;
      grid-gap: 1rem;
      margin-bottom: 0; } }

.page-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .page-title > h1 {
    margin: 0 auto; }

.page-title__emblem {
  margin-bottom: 2.25rem;
  height: 2rem;
  align-self: center; }
  @media screen and (max-width: 440px) {
    .page-title__emblem {
      margin-bottom: 1rem; } }

.error-body {
  padding-top: 8.5rem;
  background: url("https://mycryptomixer.com/blog/assets/images/background-landing.png") no-repeat center 10rem, url("https://mycryptomixer.com/blog/assets/images/polka-dots.png") no-repeat center 2.75rem; }
  @media screen and (max-width: 440px) {
    .error-body {
      padding-top: 4.5rem;
      background: url("https://mycryptomixer.com/blog/assets/images/polka-dots.png") no-repeat center 2.75rem;
      background-size: 125%; } }

.error-posts {
  margin-top: 6rem; }

.error-button {
  display: block;
  height: 4.25rem;
  text-transform: uppercase;
  background: var(--color-brand);
  color: var(--color-text-white);
  border: 1px solid var(--color-brand);
  border-radius: 0.25rem;
  user-select: none;
  cursor: pointer;
  font-weight: 700;
  box-sizing: border-box;
  padding: 0 2.5rem;
  transition: background-color .3s, border-color .3s, color .3s, border-width .3s, transform .3s;
  width: 15rem;
  margin: 3.5rem auto 0; }
  .error-button:hover {
    transform: translateY(-2px); }

.error-button__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%; }

::selection {
  background: var(--color-gradient-start); }

body {
  overflow-x: hidden; }