@charset "UTF-8";
/* We need to add display:inline in order to align the '>>' of the 'read more' link */
.post-excerpt p {
  display: inline;
}

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --link-color: #00ab6b;
  --link-hover: #038252;
  --nav-bg: #ffffff;
  --nav-border: rgba(0, 0, 0, .125);
  --card-bg: #ffffff;
  --border-color: rgba(0, 0, 0, .125);
  --input-bg: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  --code-bg: #272822;
  --code-text: #f8f8f2;
  --post-name-color: rgba(0, 0, 0, 0.8);
  --theme-toggle-color: #212529;
  --navbar-toggler-filter: none;
}

[data-theme=dark] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --text-primary: #e4e4e4;
  --text-secondary: #a0a0a0;
  --link-color: #4ade80;
  --link-hover: #86efac;
  --nav-bg: #242424;
  --nav-border: rgba(255, 255, 255, .1);
  --card-bg: #2d2d2d;
  --border-color: #2d2d2d;
  --input-bg: #3a3a3a;
  --shadow: rgba(0, 0, 0, 0.5);
  --code-bg: #1e1e1e;
  --code-text: #f8f8f2;
  --post-name-color: rgba(255, 255, 255, 0.6);
  --theme-toggle-color: #fbbf24;
  --navbar-toggler-filter: invert(1) brightness(1.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #e4e4e4;
    --text-secondary: #a0a0a0;
    --link-color: #4ade80;
    --link-hover: #86efac;
    --nav-bg: #242424;
    --nav-border: rgba(255, 255, 255, .1);
    --card-bg: #2d2d2d;
    --border-color: #2d2d2d;
    --input-bg: #3a3a3a;
    --shadow: rgba(0, 0, 0, 0.5);
    --code-bg: #1e1e1e;
    --code-text: #f8f8f2;
    --post-name-color: rgba(255, 255, 255, 0.6);
    --theme-toggle-color: #fbbf24;
    --navbar-toggler-filter: invert(1) brightness(1.5);
  }
}
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: var(--link-color) !important;
}

a:hover {
  color: var(--link-hover);
}

.navbar,
.mediumnavigation {
  background-color: var(--nav-bg) !important;
  border-bottom: 1px solid var(--nav-border);
}

.card, .listrecent, .jumbotron {
  border-color: var(--border-color);
}

.card,
.card-body,
.listrecent .wrapthumbnail {
  background-color: var(--card-bg);
}

.mainheading {
  color: var(--text-primary);
}

.post-top-meta,
blockquote,
h4.card-text,
span.post-date {
  color: var(--text-secondary) !important;
}

blockquote {
  border-left-color: var(--link-color);
}

.form-control {
  background-color: var(--input-bg);
  color: var(--text-primary);
  border-color: var(--border-color);
}

.alertbar {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
}

.site-content,
.bg-white {
  background-color: var(--bg-primary) !important;
}

.section-title h1,
.section-title h2,
.section-title span {
  border-bottom-color: var(--border-color) !important;
}

.article-post,
.text-dark {
  color: var(--text-primary) !important;
}

.footer {
  background-color: var(--bg-secondary) !important;
  border-top-color: var(--border-color) !important;
  color: var(--text-secondary) !important;
}

.bottompagination span.navigation {
  border-top-color: var(--border-color) !important;
  color: var(--text-secondary) !important;
}

.share,
.share a {
  color: var(--text-secondary) !important;
  fill: var(--text-secondary) !important;
}

.theme-toggle {
  cursor: pointer;
  background: none;
  border: none;
  color: var(--theme-toggle-color) !important;
  font-size: 1.2rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

.theme-toggle .theme-icon {
  display: none;
}

.theme-toggle .theme-icon.active {
  display: inline-block;
}

.navbar-light .navbar-toggler-icon {
  filter: var(--navbar-toggler-filter);
}

.modal-content {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.modal-header {
  border-bottom-color: var(--border-color);
}

.modal-footer {
  border-top-color: var(--border-color);
}

.close {
  color: var(--text-primary);
}

a {
  color: #00ab6b;
  transition: all 0.2s;
  text-decoration: none;
}

a:hover {
  color: #038252;
  text-decoration: none;
}

pre {
  box-sizing: border-box;
  border: 1px solid #e3edf3;
  width: 100%;
  padding: 7px;
  font-family: monospace, sans-serif;
  font-size: 0.9rem;
  white-space: pre;
  overflow: auto;
  background: #fff;
  line-height: 1.6;
  color: #333;
  margin-bottom: -rem;
}

blockquote {
  border-left: 4px solid #00ab6b;
  padding: 0 20px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

img {
  max-width: 100%;
}

img[alt=fivehundred] {
  width: 500px;
}

img[alt=marco] {
  width: 600px;
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

iframe {
  max-width: 100%;
}

@media screen and (min-width: 1500px) {
  html {
    font-size: 18px;
  }
  .container {
    max-width: 80%;
  }
}
.mainheading {
  padding: 1rem 0rem;
}

.main-content {
  min-height: 300px;
}

.site-content {
  min-height: 60vh;
  padding-top: 1.5rem;
  margin-top: 57px;
  transition: all 0.4s;
}

.site-content.homepage {
  margin-top: 0;
}

section {
  margin-bottom: 20px;
}

section.recent-posts {
  margin-bottom: 0;
}

.section-title h1 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 27px;
}

.section-title h2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 27px;
}

.section-title span {
  border-bottom: 1px solid rgba(0, 0, 0, 0.44);
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: -1px;
}

.graybg {
  background-color: #fafafa;
  padding: 40px 0 46px;
  position: relative;
}

.transpdark {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}

.sticky-top-offset {
  top: 100px;
}

.sticky-top-80 {
  top: 80px;
}

.about-me a {
  white-space: nowrap;
}

.about-me .signature {
  text-align: right;
  margin-top: -1rem;
}

.mediumnavigation {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.15);
  transition: top 0.2s ease-in-out;
}

.mediumnavigation .form-control {
  font-size: 0.8rem;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.09);
  min-width: 180px;
}

.mediumnavigation .form-inline {
  margin-left: 15px;
}

.mediumnavigation .form-inline .btn {
  margin-left: -50px;
  border: 0;
  border-radius: 30px;
  cursor: pointer;
}

.mediumnavigation .form-inline .btn:hover, .mediumnavigation .form-inline .btn:active {
  background: transparent;
  color: green;
}

.mediumnavigation .navbar-brand {
  font-weight: 500;
}

.mediumnavigation .navbar-brand img {
  max-height: 30px;
  margin-right: 5px;
}

.mediumnavigation .dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0.5rem 0 0;
}

.mediumnavigation .nav-item,
.mediumnavigation .dropdown-menu {
  font-size: 0.9rem;
}

.mediumnavigation .navbar-text {
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: auto;
}

.mediumnavigation .navbar-collapse {
  justify-content: flex-end;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }
}
.article-post {
  font-family: Merriweather;
  font-size: 1.1rem;
  line-height: 1.84;
  color: rgba(0, 0, 0, 0.8);
}

.article-post p,
.article-post blockquote {
  margin: 0 0 1.5rem 0;
}

.article-post ol,
.article-post ul {
  margin-bottom: 1.5rem;
}

.article-post ol ol,
.article-post ul ul {
  list-style: disc;
  margin-bottom: 0;
}

.article-post .h1, .article-post .h2, .article-post .h3, .article-post .h4, .article-post .h5, .article-post .h6,
.article-post h1, .article-post h2, .article-post h3, .article-post h4, .article-post h5, .article-post h6 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.article-post img.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.layout-page .article-post {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
}

.layout-page .article-post p {
  margin-bottom: 1rem;
}

.featured-image {
  display: block;
  margin-bottom: 1.5rem;
}

.mainheading h1.sitetitle {
  font-family: Righteous;
}

.mainheading h1.posttitle {
  font-weight: 500;
  margin-bottom: 1rem;
}

.mainheading img.sitetitle {
  max-width: 80%;
}

.post-top-meta {
  margin-bottom: 2rem;
}

.post-top-meta .author-thumb {
  width: 72px;
  height: 72px;
}

.post-top-meta.authorpage .author-thumb {
  margin-top: 40px;
}

.post-top-meta span {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.3);
  display: inline-block;
}

.post-top-meta .author-description {
  margin-bottom: 5px;
  margin-top: 5px;
  font-size: 0.95rem;
}

.toc ul {
  list-style: decimal;
  font-weight: 400;
}

span.post-name, span.post-date, span.author-meta {
  display: inline-block;
}

span.post-date, span.post-read {
  color: rgba(0, 0, 0, 0.44);
}

span.post-read-more {
  align-items: center;
  display: block;
  float: right;
  margin-top: 8px;
}

span.post-read-more a {
  color: rgba(0, 0, 0, 0.44);
}

span.post-read-more a:hover {
  color: rgba(0, 0, 0, 0.8);
}

span.post-name {
  color: var(--post-name-color);
}

.dot:after {
  content: "·";
  margin-left: 3px;
  margin-right: 3px;
}

.wrapfooter {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.author-thumb {
  width: 40px;
  height: 40px;
  margin-right: 13px;
  border-radius: 100%;
}

.author-meta {
  flex: 1 1 auto;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  overflow: hidden !important;
}

@media (max-width: 1024px) {
  .post-top-meta .col-md-10 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .post-top-meta.authorpage {
    text-align: center;
  }
}
.listfeaturedtag {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.listfeaturedtag .wrapthumbnail {
  height: 290px;
  flex: 0 0 auto;
  height: 100%;
}

.listfeaturedtag .card,
.listfeaturedtag .card-footer {
  border: 0;
}

.listfeaturedtag .thumbnail {
  background-size: cover;
  height: 100%;
  display: block;
  background-position: 38% 22% !important;
  background-origin: border-box !important;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.listfeaturedtag .card-block {
  padding-left: 0;
}

.listfeaturedtag h2.card-title {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.25;
}

.listfeaturedtag h4.card-text {
  color: rgba(0, 0, 0, 0.44);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
}

@media (max-width: 991px) {
  .listfeaturedtag .card {
    height: auto;
  }
  .listfeaturedtag .wrapfooter {
    position: relative;
    margin-top: 30px;
  }
  .listfeaturedtag .card-block {
    padding: 20px;
  }
}
@media (min-width: 576px) {
  .listfeaturedtag.card-columns {
    column-count: 2;
  }
}
.listrecent h2.card-title {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.25;
}

.listrecent h4.card-text {
  color: rgba(0, 0, 0, 0.44);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
}

.maxthumb {
  max-height: 300px;
  overflow: hidden;
}

.featured-box-img-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

@media (max-width: 991px) {
  .featured-box-img-cover {
    height: auto;
    width: 100%;
  }
}
.listrelated .card {
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.05);
  border: 0;
}

.card .img-fluid {
  width: 100%;
}

.authorpage h1 {
  font-weight: 500;
  font-size: 30px;
}

.authorpage .author-description {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
}

.authorpage.graybg {
  border-top: 1px solid #f0f0f0;
}

.post-top-meta.authorpage .author-thumb {
  float: none;
}

.post-top-meta.authorpage .btn.follow {
  padding: 7px 20px;
  margin-top: 10px;
  margin-left: 0;
  font-size: 0.9rem;
}

.authorpostbox {
  width: 760px;
  margin: 0 auto 1.5rem;
  max-width: 100%;
}

.authorpostbox .img-thumb {
  width: 100%;
}

.sociallinks {
  margin: 1rem 0;
}

.sociallinks a {
  background: #666;
  color: #fff;
  width: 22px;
  height: 22px;
  display: inline-block;
  text-align: center;
  line-height: 22px;
  border-radius: 50%;
  font-size: 12px;
}

.bottompagination span.navigation {
  display: block;
  font-size: 0.93rem;
  padding: 15px 0 0 0;
  text-align: center;
  margin-bottom: 0rem;
  color: #999;
  border-top: 1px solid #ddd;
}

.bottompagination span.navigation i {
  display: inline-block;
}

span.navigation {
  display: inline-block;
  font-size: 0.93rem;
  font-weight: 500;
  text-align: center;
}

.pagination {
  display: block;
}

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  padding-top: 15px;
  padding-bottom: 12px;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.44);
  margin-top: 50px;
  margin-bottom: 62px;
  position: relative;
  background: #fff;
}

.link-dark {
  color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 999px) {
  .footer {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.btn.follow {
  border-color: #02b875;
  color: #1c9963;
  padding: 3px 10px;
  text-align: center;
  border-radius: 999em;
  font-size: 0.85rem;
  display: inline-block;
}

.btn.subscribe {
  background-color: #1c9963;
  border-color: #1c9963;
  color: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
  border-radius: 30px;
  font-size: 0.85rem;
  margin-left: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.post-top-meta .btn.follow {
  margin-left: 5px;
  margin-top: -4px;
}

.love {
  max-width: 200px;
  text-align: center;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.love-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: none;
  background: none;
  padding: 4px 8px;
  font-size: 14px;
  transition: transform 0.1s ease;
}

.love-button:hover {
  transform: scale(1.05);
}

.love-button:active {
  transform: scale(0.95);
}

.love-button svg {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
  fill: none;
}

.love-button.loved svg {
  animation: love-pop 0.3s ease;
  fill: currentColor;
}

.share .love-button svg {
  width: 24px;
  height: 24px;
}

.love-count {
  font-weight: 500;
  min-width: 20px;
  text-align: left;
  display: none;
}

@keyframes love-pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.share {
  text-align: center;
  color: rgba(0, 0, 0, 0.44);
  fill: rgba(0, 0, 0, 0.44);
}

.share p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.share a {
  color: rgba(0, 0, 0, 0.44);
  fill: rgba(0, 0, 0, 0.44);
}

.share ul {
  padding-left: 0;
  margin-left: 0;
}

.share ul li {
  display: inline-block;
  margin-bottom: 9px;
}

.share ul li i.fa {
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}

@media (min-width: 1024px) {
  .share ul li {
    display: block;
  }
}
@media (max-width: 768px) {
  .share {
    margin-top: 30px;
  }
}
.svgIcon {
  vertical-align: middle;
}

ul.tags {
  list-style: none;
  padding-left: 0;
  margin: 0 0 3rem 0;
}

ul.tags li {
  display: inline-block;
  font-size: 0.9rem;
}

ul.tags li a {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
  border-radius: 3px;
  padding: 5px 10px;
}

ul.tags li a:hover {
  background: rgba(0, 0, 0, 0.07);
  text-decoration: none;
}

.form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-control:-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-control::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.alertbar {
  box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, 0.0785);
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  padding: 14px 0;
  z-index: 1;
  display: none;
}

.alertbar form {
  display: inline-block;
}

.alertbar input[type=email] {
  font-size: 0.85rem;
  padding: 3px 5px 3px 10px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border: 1px solid #ddd;
  border-right: 0;
  margin-right: -10px;
  height: 34px;
  letter-spacing: 0.5px;
  margin-left: 5px;
}

.alertbar input[type=submit] {
  background-color: #1c9963;
  border: 1px solid #1c9963;
  color: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
  font-size: 0.85rem;
  border-radius: 0;
  padding: 4px 10px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  font-weight: 500;
  height: 34px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

@media (max-width: 999px) {
  .alertbar {
    position: relative !important;
    margin-bottom: 20px;
    margin-top: 20px;
    box-shadow: none !important;
    padding-right: 14px !important;
  }
  .alertbar form {
    margin-top: 20px;
  }
  .alertbar span,
  .alertbar form {
    display: block;
  }
  .alertbar input[type=submit] {
    border-radius: 3px !important;
  }
  .alertbar input[type=email] {
    margin-right: 0 !important;
    display: block;
    border-right: 1px solid #ddd !important;
    margin-bottom: 10px;
  }
}
.jumbotron.fortags {
  margin-top: 3rem;
  padding: 0;
  border-radius: 0;
  background-image: url(../images/jumbotron.jpg);
  background-size: cover;
}

.jumbotron.fortags a {
  padding: 5px 10px 7px;
  background: #222;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  font-size: 0.8rem;
  display: inline-block;
}

.layout-page .jumbotron.fortags {
  display: none;
}

@media (min-width: 768px) {
  .jumbotron.fortags {
    margin-bottom: -50px;
    margin-top: 3rem;
    padding: 0;
    height: 350px;
    border-radius: 0;
    background-image: url(../images/jumbotron.jpg);
    background-size: cover;
  }
  .jumbotron.fortags .col-md-4 {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
  }
  .jumbotron.fortags .row {
    margin: 0;
  }
}
@media (max-width: 999px) {
  .jumbotron.fortags {
    margin-bottom: 0 !important;
  }
  .jumbotron {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.mb-30px {
  margin-bottom: 30px;
}

.margtop3rem {
  margin-top: 3rem;
}

.sep {
  height: 1px;
  width: 20px;
  background: #999;
  margin: 0 auto 1.2rem;
}

.flex-first {
  order: -1;
}

.spoiler {
  color: transparent;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
}

.spoiler:after {
  position: absolute;
  opacity: 0;
  content: "Click to reveal spoiler";
  top: 45%;
  left: calc(50% - 100px);
  text-shadow: none;
  background: #222;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  padding: 2px 3px;
  width: 150px;
  font-family: Arial;
  text-align: center;
  border-radius: 3px;
  transition: all 0.4s;
}

.spoiler:hover:after {
  opacity: 1;
}

.lazyimg {
  display: block;
  border: 0 none;
  opacity: 1;
  transition: opacity 0.25s;
  background: #f2f2f2;
  outline: 0 none;
}

.lazyimg[data-src], .lazyimg[data-srcset] {
  opacity: 0;
  transition: opacity 0.25s;
}

@media (min-width: 768px) {
  .flex-md-unordered {
    order: 1;
  }
  .flex-first {
    order: 1;
  }
}
.highlight pre {
  background-color: #272822;
  color: #9d9b9b;
}

.highlight .hll {
  background-color: #272822;
}

.highlight .c {
  color: #75715e;
} /* Comment */
.highlight .err {
  color: #960050;
  background-color: #1e0010;
} /* Error */
.highlight .k {
  color: #66d9ef;
} /* Keyword */
.highlight .l {
  color: #ae81ff;
} /* Literal */
.highlight .n {
  color: #f8f8f2;
} /* Name */
.highlight .o {
  color: #f92672;
} /* Operator */
.highlight .p {
  color: #f8f8f2;
} /* Punctuation */
.highlight .cm {
  color: #75715e;
} /* Comment.Multiline */
.highlight .cp {
  color: #75715e;
} /* Comment.Preproc */
.highlight .c1 {
  color: #75715e;
} /* Comment.Single */
.highlight .cs {
  color: #75715e;
} /* Comment.Special */
.highlight .ge {
  font-style: italic;
} /* Generic.Emph */
.highlight .gs {
  font-weight: bold;
} /* Generic.Strong */
.highlight .kc {
  color: #66d9ef;
} /* Keyword.Constant */
.highlight .kd {
  color: #66d9ef;
} /* Keyword.Declaration */
.highlight .kn {
  color: #f92672;
} /* Keyword.Namespace */
.highlight .kp {
  color: #66d9ef;
} /* Keyword.Pseudo */
.highlight .kr {
  color: #66d9ef;
} /* Keyword.Reserved */
.highlight .kt {
  color: #66d9ef;
} /* Keyword.Type */
.highlight .ld {
  color: #e6db74;
} /* Literal.Date */
.highlight .m {
  color: #ae81ff;
} /* Literal.Number */
.highlight .s {
  color: #e6db74;
} /* Literal.String */
.highlight .na {
  color: #a6e22e;
} /* Name.Attribute */
.highlight .nb {
  color: #f8f8f2;
} /* Name.Builtin */
.highlight .nc {
  color: #a6e22e;
} /* Name.Class */
.highlight .no {
  color: #66d9ef;
} /* Name.Constant */
.highlight .nd {
  color: #a6e22e;
} /* Name.Decorator */
.highlight .ni {
  color: #f8f8f2;
} /* Name.Entity */
.highlight .ne {
  color: #a6e22e;
} /* Name.Exception */
.highlight .nf {
  color: #a6e22e;
} /* Name.Function */
.highlight .nl {
  color: #f8f8f2;
} /* Name.Label */
.highlight .nn {
  color: #f8f8f2;
} /* Name.Namespace */
.highlight .nx {
  color: #a6e22e;
} /* Name.Other */
.highlight .py {
  color: #f8f8f2;
} /* Name.Property */
.highlight .nt {
  color: #f92672;
} /* Name.Tag */
.highlight .nv {
  color: #f8f8f2;
} /* Name.Variable */
.highlight .ow {
  color: #f92672;
} /* Operator.Word */
.highlight .w {
  color: #f8f8f2;
} /* Text.Whitespace */
.highlight .mf {
  color: #ae81ff;
} /* Literal.Number.Float */
.highlight .mh {
  color: #ae81ff;
} /* Literal.Number.Hex */
.highlight .mi {
  color: #ae81ff;
} /* Literal.Number.Integer */
.highlight .mo {
  color: #ae81ff;
} /* Literal.Number.Oct */
.highlight .sb {
  color: #e6db74;
} /* Literal.String.Backtick */
.highlight .sc {
  color: #e6db74;
} /* Literal.String.Char */
.highlight .sd {
  color: #e6db74;
} /* Literal.String.Doc */
.highlight .s2 {
  color: #e6db74;
} /* Literal.String.Double */
.highlight .se {
  color: #ae81ff;
} /* Literal.String.Escape */
.highlight .sh {
  color: #e6db74;
} /* Literal.String.Heredoc */
.highlight .si {
  color: #e6db74;
} /* Literal.String.Interpol */
.highlight .sx {
  color: #e6db74;
} /* Literal.String.Other */
.highlight .sr {
  color: #e6db74;
} /* Literal.String.Regex */
.highlight .s1 {
  color: #e6db74;
} /* Literal.String.Single */
.highlight .ss {
  color: #e6db74;
} /* Literal.String.Symbol */
.highlight .bp {
  color: #f8f8f2;
} /* Name.Builtin.Pseudo */
.highlight .vc {
  color: #f8f8f2;
} /* Name.Variable.Class */
.highlight .vg {
  color: #f8f8f2;
} /* Name.Variable.Global */
.highlight .vi {
  color: #f8f8f2;
} /* Name.Variable.Instance */
.highlight .il {
  color: #ae81ff;
} /* Literal.Number.Integer.Long */
/* Generic Heading & Diff Header */
.highlight .gu {
  color: #75715e;
} /* Generic.Subheading & Diff Unified/Comment? */
.highlight .gd {
  color: #f92672;
} /* Generic.Deleted & Diff Deleted */
.highlight .gi {
  color: #a6e22e;
} /* Generic.Inserted & Diff Inserted */

/*# sourceMappingURL=main.css.map */