/* Main colors */
@import url("https://fonts.googleapis.com/css?family=Libre+Baskerville");
@import url("https://fonts.googleapis.com/css?family=Fira+Sans");
@import url("https://fonts.googleapis.com/css?family=Fira+Code");
@import url("https://fonts.googleapis.com/css?family=Libre+Baskerville");
@import url("https://fonts.googleapis.com/css?family=Fira+Sans");
@import url("https://fonts.googleapis.com/css?family=Fira+Code");
:root {
  --tech-blog-dark: #2E2E2E;
  --tech-blog-blue: #006699;
  --tech-blog-visited: #660099;
  --tech-blog-weak-gray: rgb(245, 245, 245);
  --tech-blog-orange: #D98F1C;
  --tech-blog-brown: #8C5500;
  --tech-blog-success: #46B450;
  --tech-blog-error: #DC3232;
  --tech-blog-text: var(--tech-blog-dark);
  --tech-blog-subheading: #595959;
  --tech-blog-background: rgb(255, 255, 255);
  --tech-blog-action: var(--tech-blog-dark);
  --tech-blog-code-background: var(--tech-blog-weak-gray);
}
@media screen and (prefers-color-scheme: dark) {
  :root {
    --tech-blog-blue: #00A0D2;
    --tech-blog-visited: #826EB4;
    --tech-blog-text: var(--tech-blog-weak-gray);
    --tech-blog-subheading: #B4B9BE;
    --tech-blog-background: var(--tech-blog-dark);
    --tech-blog-action: #191E23;
    --tech-blog-code-background: #B4B9BE;
  }
}

.full-width {
  width: 100%;
}

.center-content {
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .center-content {
    max-width: 1280px;
    width: 90%;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .center-content {
    width: 100%;
  }
}

.center-content-narrow {
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .center-content-narrow {
    max-width: 1024px;
    width: 66.67%;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .center-content-narrow {
    width: 100%;
  }
}

.row {
  display: grid;
  max-width: 100%;
  grid-gap: 1rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .row {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .row {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.twelve-columns, .eleven-columns, .ten-columns, .nine-columns, .eight-columns, .seven-columns, .six-columns, .five-columns, .four-columns, .three-columns, .two-columns, .one-column {
  display: flex;
}

.one-column {
  grid-column: span 1;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .one-column {
    grid-column: span 1;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .one-column {
    grid-column: span 1;
  }
}

.two-columns {
  grid-column: span 2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .two-columns {
    grid-column: span 2;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .two-columns {
    grid-column: span 1;
  }
}

.three-columns {
  grid-column: span 3;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .three-columns {
    grid-column: span 2;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .three-columns {
    grid-column: span 1;
  }
}

.four-columns {
  grid-column: span 4;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .four-columns {
    grid-column: span 4;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .four-columns {
    grid-column: span 1;
  }
}

.five-columns {
  grid-column: span 5;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .five-columns {
    grid-column: span 4;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .five-columns {
    grid-column: span 1;
  }
}

.six-columns {
  grid-column: span 6;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .six-columns {
    grid-column: span 4;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .six-columns {
    grid-column: span 1;
  }
}

.seven-columns {
  grid-column: span 7;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .seven-columns {
    grid-column: span 6;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .seven-columns {
    grid-column: span 1;
  }
}

.eight-columns {
  grid-column: span 8;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .eight-columns {
    grid-column: span 6;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .eight-columns {
    grid-column: span 1;
  }
}

.nine-columns {
  grid-column: span 9;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nine-columns {
    grid-column: span 6;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .nine-columns {
    grid-column: span 1;
  }
}

.ten-columns {
  grid-column: span 10;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .ten-columns {
    grid-column: span 6;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .ten-columns {
    grid-column: span 1;
  }
}

.eleven-columns {
  grid-column: span 11;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .eleven-columns {
    grid-column: span 8;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .eleven-columns {
    grid-column: span 1;
  }
}

.twelve-columns {
  grid-column: span 12;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .twelve-columns {
    grid-column: span 8;
  }
}
@media (min-width: 180px) and (max-width: 767px) {
  .twelve-columns {
    grid-column: span 1;
  }
}

@media (min-width: 180px) and (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 180px) and (max-width: 767px) {
  .hide-tablet {
    display: none;
  }
}

body {
  position: relative;
}

/* Main colors */
:root {
  --tech-blog-dark: #2E2E2E;
  --tech-blog-blue: #006699;
  --tech-blog-visited: #660099;
  --tech-blog-weak-gray: rgb(245, 245, 245);
  --tech-blog-orange: #D98F1C;
  --tech-blog-brown: #8C5500;
  --tech-blog-success: #46B450;
  --tech-blog-error: #DC3232;
  --tech-blog-text: var(--tech-blog-dark);
  --tech-blog-subheading: #595959;
  --tech-blog-background: rgb(255, 255, 255);
  --tech-blog-action: var(--tech-blog-dark);
  --tech-blog-code-background: var(--tech-blog-weak-gray);
}
@media screen and (prefers-color-scheme: dark) {
  :root {
    --tech-blog-blue: #00A0D2;
    --tech-blog-visited: #826EB4;
    --tech-blog-text: var(--tech-blog-weak-gray);
    --tech-blog-subheading: #B4B9BE;
    --tech-blog-background: var(--tech-blog-dark);
    --tech-blog-action: #191E23;
    --tech-blog-code-background: #B4B9BE;
  }
}

* {
  box-sizing: border-box;
}

@media screen and (prefers-color-scheme: dark) {
  img {
    filter: grayscale(0.5) brightness(0.5);
  }
  img:not([disabled]):hover {
    filter: none;
  }
  img:not([disabled]):hover:visited {
    filter: none;
  }
  img:not([disabled]):hover:link {
    filter: none;
  }
}
@media screen and (prefers-color-scheme: dark) and (min-width: 180px) and (max-width: 1023px) {
  img {
    filter: none;
  }
}
@media screen and (prefers-color-scheme: dark) {
  img:focus {
    filter: none;
  }
}
@media screen and (prefers-color-scheme: dark) {
  img:focus-within {
    filter: none;
  }
}
/* Main colors */
:root {
  --tech-blog-dark: #2E2E2E;
  --tech-blog-blue: #006699;
  --tech-blog-visited: #660099;
  --tech-blog-weak-gray: rgb(245, 245, 245);
  --tech-blog-orange: #D98F1C;
  --tech-blog-brown: #8C5500;
  --tech-blog-success: #46B450;
  --tech-blog-error: #DC3232;
  --tech-blog-text: var(--tech-blog-dark);
  --tech-blog-subheading: #595959;
  --tech-blog-background: rgb(255, 255, 255);
  --tech-blog-action: var(--tech-blog-dark);
  --tech-blog-code-background: var(--tech-blog-weak-gray);
}
@media screen and (prefers-color-scheme: dark) {
  :root {
    --tech-blog-blue: #00A0D2;
    --tech-blog-visited: #826EB4;
    --tech-blog-text: var(--tech-blog-weak-gray);
    --tech-blog-subheading: #B4B9BE;
    --tech-blog-background: var(--tech-blog-dark);
    --tech-blog-action: #191E23;
    --tech-blog-code-background: #B4B9BE;
  }
}

/*!
  Theme: Default
  Description: Original highlight.js style
  Author: (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
  Maintainer: @highlightjs/core-team
  Website: https://highlightjs.org/
  License: see project LICENSE
  Touched: 2021
*/
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}

code.hljs {
  padding: 3px 5px;
}

.hljs {
  background: #f3f3f3;
  color: #444;
}

.hljs-comment {
  color: #697070;
}

.hljs-punctuation, .hljs-tag {
  color: rgba(68, 68, 68, 0.6666666667);
}

.hljs-tag .hljs-attr, .hljs-tag .hljs-name {
  color: #444;
}

.hljs-attribute, .hljs-doctag, .hljs-keyword, .hljs-meta .hljs-keyword, .hljs-name, .hljs-selector-tag {
  font-weight: 700;
}

.hljs-deletion, .hljs-number, .hljs-quote, .hljs-selector-class, .hljs-selector-id, .hljs-string, .hljs-template-tag, .hljs-type {
  color: #800;
}

.hljs-section, .hljs-title {
  color: #800;
  font-weight: 700;
}

.hljs-link, .hljs-operator, .hljs-regexp, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-symbol, .hljs-template-variable, .hljs-variable {
  color: #ab5656;
}

.hljs-literal {
  color: #695;
}

.hljs-addition, .hljs-built_in, .hljs-bullet, .hljs-code {
  color: #397300;
}

.hljs-meta {
  color: #1f7199;
}

.hljs-meta .hljs-string {
  color: #38a;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: 700;
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--tech-blog-action) var(--tech-blog-code-background);
  line-height: 1.6em;
}
body :is(.comments-heading, .comment-reply-title), body h1, body h2, body h3, body h4, body h5, body h6 {
  color: var(--tech-blog-text);
  font-weight: bold;
  line-height: 1.2em;
  margin-top: 0.5em;
  margin-bottom: 0.7em;
}
body :is(.comments-heading, .comment-reply-title) a, body h1 a, body h2 a, body h3 a, body h4 a, body h5 a, body h6 a {
  font-weight: normal;
}
body header ul {
  padding-left: 0;
}
body header ul, body header ol {
  list-style-position: inside;
  margin-left: 20px;
}
body a,
body span.link {
  color: var(--tech-blog-blue);
  font-weight: 600;
}
body a:not([disabled]):hover,
body span.link:not([disabled]):hover {
  color: var(--tech-blog-primary-color);
}
body a:not([disabled]):hover:visited,
body span.link:not([disabled]):hover:visited {
  color: var(--tech-blog-primary-color);
}
body a:not([disabled]):hover:link,
body span.link:not([disabled]):hover:link {
  color: var(--tech-blog-primary-color);
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-family: "Libre Baskerville";
}
body :is(.comments-heading, .comment-reply-title) {
  font-size: 1.4em;
}
body h1 {
  font-size: 2.2em;
}
body h2 {
  font-size: 2em;
}
body h3 {
  font-size: 1.8em;
}
body h4 {
  font-size: 1.6em;
}
body h5 {
  font-size: 1.4em;
}
body h6 {
  font-size: 1.2em;
}
body blockquote {
  border-left: 3px solid var(--tech-blog-primary-color);
  margin: 0;
  padding-left: 10px;
}
body code {
  font-family: "Fira Code", monospace;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: var(--tech-blog-code-background);
  color: var(--tech-blog-dark);
  border-bottom: 2px solid var(--tech-blog-action);
  padding: 2px 2px 0 2px;
}
body pre {
  width: 100%;
}
body pre.wp-block-code {
  padding: 0;
  border: 0;
  border-radius: 0;
}
body pre.wp-block-code code, body code.multiline {
  display: block;
  font-family: "Fira Code", monospace;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  padding: 10px;
  background-color: var(--tech-blog-code-background);
  color: var(--tech-blog-dark);
  border: 0;
  border-radius: 0;
  border-left: 3px solid var(--tech-blog-action);
}
body .wp-block-verse {
  display: block;
  font-family: "Fira Code", monospace;
  overflow-wrap: break-spaces;
  white-space: pre-wrap;
  padding: 10px;
  background-color: var(--tech-blog-code-background);
  color: var(--tech-blog-dark);
  border-left: 3px solid var(--tech-blog-complementary-color);
}
body figure {
  margin: 0;
}
body :focus {
  outline: #595959 dashed 2px;
}
body ::selection {
  background-color: var(--tech-blog-text);
  color: var(--tech-blog-background);
}
body a::selection {
  color: var(--tech-blog-primary-color);
}
body label {
  display: block;
  font-weight: bold;
  color: var(--tech-blog-action);
}
body .success-message {
  color: #46B450;
}
body .required,
body .error-message {
  color: #DC3232;
}
body .lb-formula {
  display: block;
  font-family: "Fira Code", monospace;
  overflow-wrap: break-word;
  white-space: pre-wrap;
  padding: 10px;
  background-color: var(--tech-blog-code-background);
  color: var(--tech-blog-dark);
  border: 0;
  border-radius: 0;
  border-left: 3px solid var(--tech-blog-action);
  width: 100%;
  overflow-x: auto;
  overflow-y: clip;
  height: fit-content;
}
body .is-style-is-directory-list ul {
  margin-left: 10px;
  padding-left: 20px;
  border-left: 1px dashed var(--tech-blog-text);
}
body .is-style-is-directory-list li {
  list-style: none;
  font-size: 17px;
  font-style: italic;
  font-weight: normal;
}
body .is-style-is-directory-list li > div {
  display: inline-block;
}
body .is-style-is-directory-list a {
  border-bottom: 1px solid transparent;
  color: var(--tech-blog-blue);
  text-decoration: none;
  transition: all 0.2s ease;
}
body .is-style-is-directory-list a:hover {
  border-color: var(--tech-blog-primary-color);
  color: var(--tech-blog-primary-color);
}
body .is-style-is-directory-list .is-style-is-folder,
body .is-style-is-directory-list .is-style-is-folder > a {
  color: var(--tech-blog-text);
  font-weight: bold;
}
body .is-style-is-directory-list li:before {
  margin-right: 10px;
  content: "";
  height: 20px;
  vertical-align: middle;
  width: 20px;
  background-repeat: no-repeat;
  display: inline-block;
  /* file icon by default */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path fill='lightgrey' d='M85.714,42.857V87.5c0,1.487-0.521,2.752-1.562,3.794c-1.042,1.041-2.308,1.562-3.795,1.562H19.643 c-1.488,0-2.753-0.521-3.794-1.562c-1.042-1.042-1.562-2.307-1.562-3.794v-75c0-1.487,0.521-2.752,1.562-3.794 c1.041-1.041,2.306-1.562,3.794-1.562H50V37.5c0,1.488,0.521,2.753,1.562,3.795s2.307,1.562,3.795,1.562H85.714z M85.546,35.714 H57.143V7.311c3.05,0.558,5.505,1.767,7.366,3.627l17.41,17.411C83.78,30.209,84.989,32.665,85.546,35.714z' /></svg>");
  background-position: center 2px;
  background-size: 60% auto;
}
body .is-style-is-directory-list li.is-style-is-folder:before {
  /* folder icon if folder class is specified */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><path fill='lightblue' d='M96.429,37.5v39.286c0,3.423-1.228,6.361-3.684,8.817c-2.455,2.455-5.395,3.683-8.816,3.683H16.071 c-3.423,0-6.362-1.228-8.817-3.683c-2.456-2.456-3.683-5.395-3.683-8.817V23.214c0-3.422,1.228-6.362,3.683-8.817 c2.455-2.456,5.394-3.683,8.817-3.683h17.857c3.422,0,6.362,1.228,8.817,3.683c2.455,2.455,3.683,5.395,3.683,8.817V25h37.5 c3.422,0,6.361,1.228,8.816,3.683C95.201,31.138,96.429,34.078,96.429,37.5z' /></svg>");
  background-position: center top;
  background-size: 75% auto;
}

body::-webkit-scrollbar {
  width: 11px;
}
body::-webkit-scrollbar-track {
  background: var(--tech-blog-code-background);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--tech-blog-action);
  border-radius: 6px;
  border: 3px solid var(--tech-blog-code-background);
}

html {
  height: 100%;
  font-family: "Fira Sans", "Helvetica";
  font-size: 12pt;
  margin-top: 0;
  color: var(--tech-blog-text);
  background-color: var(--tech-blog-background);
}

body {
  height: auto;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  position: static;
  flex-direction: row;
  flex-wrap: nowrap;
}
body.single-post h1, body.single-post h2, body.single-post h3, body.single-post h4, body.single-post h5, body.single-post h6 {
  font-family: "Libre Baskerville";
}
body > header {
  flex-shrink: 0;
  background-color: var(--tech-blog-background);
  overflow-x: hidden;
  z-index: 100;
  flex-direction: column;
  width: 350px;
  max-width: 90vw;
  padding: 15px;
  position: relative;
  display: inline-block;
  top: 0;
  bottom: 0;
  left: 0;
  margin: 0;
}
@media (min-width: 180px) and (max-width: 1023px) {
  body > header {
    position: fixed;
    box-shadow: 10px 0px 30px -20px rgba(0, 0, 0, 0.8);
    left: -350px;
    visibility: hidden;
  }
  body > header.active {
    visibility: visible;
    left: 0;
  }
}
body > header .main-image {
  width: 100%;
}
body > header .main-image img {
  width: 100%;
}
body > header .search-form, body > header .wp-block-search {
  width: 100%;
  height: 50px;
  display: flex;
}
body > header .search-form input, body > header .wp-block-search input {
  border: 2px solid var(--tech-blog-action);
  height: 33.3333333333px;
  flex-grow: 1;
  background-color: rgba(0, 0, 0, 0);
}
body > header .search-form button, body > header .wp-block-search button {
  border: 2px solid var(--tech-blog-action);
  border-left: 0;
  height: 33.3333333333px;
  float: right;
  background-color: var(--tech-blog-action);
  color: rgb(255, 255, 255);
}
body > header .search-form button:not([disabled]):hover, body > header .wp-block-search button:not([disabled]):hover {
  background-color: rgba(0, 0, 0, 0);
  color: var(--tech-blog-action);
}
body > header .search-form button:not([disabled]):hover:visited, body > header .wp-block-search button:not([disabled]):hover:visited {
  background-color: rgba(0, 0, 0, 0);
  color: var(--tech-blog-action);
}
body > header .search-form button:not([disabled]):hover:link, body > header .wp-block-search button:not([disabled]):hover:link {
  background-color: rgba(0, 0, 0, 0);
  color: var(--tech-blog-action);
}
body > header ul.menu {
  list-style: none;
  width: 100%;
  display: block;
  margin: 0;
}
body > header ul.menu ul {
  display: block;
}
body > header ul.menu li {
  display: block;
  width: 100%;
  height: 33.3333333333px;
  padding-top: 5px;
  padding-bottom: 5px;
}
body > header ul.menu li.menu-item-has-children {
  height: auto;
  padding-bottom: 0;
}
body > header ul.menu li.menu-item-has-children > ul {
  padding-top: 5px;
}
body > header ul.menu li a {
  color: var(--tech-blog-text);
  font-weight: bold;
  text-decoration: none;
}
body > header ul.menu li a[aria-current] {
  color: var(--tech-blog-primary-color);
}
body > header ul.menu li a:visited {
  color: var(--tech-blog-text);
}
body > header ul.menu li a:not([disabled]):hover {
  color: var(--tech-blog-primary-color);
}
body > header ul.menu li a:not([disabled]):hover:visited {
  color: var(--tech-blog-primary-color);
}
body > header ul.menu li a:not([disabled]):hover:link {
  color: var(--tech-blog-primary-color);
}
body > header aside .widget {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
body > header aside .widget input[type=text],
body > header aside .widget input[type=email],
body > header aside .widget input[type=url],
body > header aside .widget input[type=number] {
  width: 100%;
}
body > footer ul.menu {
  list-style: none;
  width: 100%;
  display: block;
  margin: 0;
}
body > footer ul.menu ul {
  display: block;
}
body > footer ul.menu li {
  display: block;
  width: 100%;
  height: 33.3333333333px;
  padding-top: 5px;
  padding-bottom: 5px;
}
body > footer ul.menu li.menu-item-has-children {
  height: auto;
  padding-bottom: 0;
}
body > footer ul.menu li.menu-item-has-children > ul {
  padding-top: 5px;
}
body > footer ul.menu li a {
  color: var(--tech-blog-text);
  font-weight: bold;
  text-decoration: none;
}
body > footer ul.menu li a[aria-current] {
  color: var(--tech-blog-primary-color);
}
body > footer ul.menu li a:visited {
  color: var(--tech-blog-text);
}
body > footer ul.menu li a:not([disabled]):hover {
  color: var(--tech-blog-primary-color);
}
body > footer ul.menu li a:not([disabled]):hover:visited {
  color: var(--tech-blog-primary-color);
}
body > footer ul.menu li a:not([disabled]):hover:link {
  color: var(--tech-blog-primary-color);
}
body .page-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  max-width: 975px;
}
@media (min-width: 180px) and (max-width: 1023px) {
  body .page-content {
    width: 100vw;
  }
}
body .page-content .action-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 50px;
}
body .page-content .action-bar a,
body .page-content .action-bar span.link {
  margin-right: 10px;
  padding: 5px;
  border: 2px solid var(--tech-blog-action);
  background-color: var(--tech-blog-action);
  color: rgb(255, 255, 255);
  cursor: pointer;
}
body .page-content .action-bar a:not([disabled]):hover,
body .page-content .action-bar span.link:not([disabled]):hover {
  border: 2px solid var(--tech-blog-primary-color);
  background-color: rgb(255, 255, 255);
  color: var(--tech-blog-primary-color);
}
body .page-content .action-bar a:not([disabled]):hover:visited,
body .page-content .action-bar span.link:not([disabled]):hover:visited {
  border: 2px solid var(--tech-blog-primary-color);
  background-color: rgb(255, 255, 255);
  color: var(--tech-blog-primary-color);
}
body .page-content .action-bar a:not([disabled]):hover:link,
body .page-content .action-bar span.link:not([disabled]):hover:link {
  border: 2px solid var(--tech-blog-primary-color);
  background-color: rgb(255, 255, 255);
  color: var(--tech-blog-primary-color);
}
body .page-content .action-bar span.phone-share-link {
  margin-right: 10px;
  padding: 5px;
  border: 2px solid var(--tech-blog-primary-color);
  background-color: var(--tech-blog-primary-color);
  color: rgb(255, 255, 255);
  cursor: pointer;
}
body .page-content .action-bar span.phone-share-link:not([disabled]):hover {
  border: 2px solid var(--tech-blog-primary-color);
  background-color: rgb(255, 255, 255);
  color: var(--tech-blog-primary-color);
}
body .page-content .action-bar span.phone-share-link:not([disabled]):hover:visited {
  border: 2px solid var(--tech-blog-primary-color);
  background-color: rgb(255, 255, 255);
  color: var(--tech-blog-primary-color);
}
body .page-content .action-bar span.phone-share-link:not([disabled]):hover:link {
  border: 2px solid var(--tech-blog-primary-color);
  background-color: rgb(255, 255, 255);
  color: var(--tech-blog-primary-color);
}
@media (min-width: 1024px) {
  body .page-content .action-bar {
    display: none;
  }
}
body .page-content > main {
  flex-grow: 1;
  word-wrap: break-word;
  word-break: break-word;
}
body .page-content > main a:visited, body .page-content > main span.link:visited {
  color: var(--tech-blog-visited);
}
body .page-content > main .post-view {
  display: flex;
  margin-top: 25px;
  padding: 15px 10px 15px 10px;
}
body .page-content > main .post-view.sticky {
  border: 2px dashed var(--tech-blog-primary-color);
}
body .page-content > main .post-view.sticky::before {
  background-color: var(--tech-blog-primary-color);
  color: rgb(255, 255, 255);
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  vertical-align: middle;
  font-size: 20px;
  padding-top: 5px;
  font-family: "Font Awesome 5 Free", monospace;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 400;
  content: "\f02e";
  translate: -12px -17px;
  z-index: 1;
}
@media (min-width: 180px) and (max-width: 767px) {
  body .page-content > main .post-view {
    flex-direction: column;
  }
}
body .page-content > main .post-view img {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 2px solid var(--tech-blog-code-background);
}
@media (min-width: 180px) and (max-width: 767px) {
  body .page-content > main .post-view img {
    width: 100%;
    object-fit: cover;
  }
}
body .page-content > main .post-view .post-vcard {
  padding-left: 15px;
}
@media (min-width: 180px) and (max-width: 767px) {
  body .page-content > main .post-view .post-vcard {
    padding-left: 0;
  }
}
body .page-content > main .post-view .post-vcard h2 {
  margin-top: 0;
  margin-bottom: 0;
  word-wrap: break-word;
  word-break: break-word;
}
body .page-content > main .post-view .post-vcard h2 a {
  text-decoration: none;
}
body .page-content > main .post-view .post-vcard h2 a:visited {
  color: var(--tech-blog-blue);
}
body .page-content > main .post-view .post-vcard h2 + p {
  margin-top: 0;
  color: var(--tech-blog-subheading);
}
body .page-content > main .post-view .post-vcard h2 + p a {
  text-decoration: none;
  color: var(--tech-blog-subheading);
}
body .page-content > main .post-view .post-vcard h2 + p a:visited {
  color: var(--tech-blog-subheading);
}
body .page-content > main .post-view .post-vcard h2 + p a:not([disabled]):hover {
  color: var(--tech-blog-primary-color);
}
body .page-content > main .post-view .post-vcard h2 + p a:not([disabled]):hover:visited {
  color: var(--tech-blog-primary-color);
}
body .page-content > main .post-view .post-vcard h2 + p a:not([disabled]):hover:link {
  color: var(--tech-blog-primary-color);
}
body .page-content > footer {
  margin-top: 25px;
  padding-top: 10px;
}
@media (min-width: 180px) and (max-width: 1023px) {
  body .desktop-right-sidebar {
    display: none;
  }
}
body.single-post h1 {
  margin-bottom: 0;
}
body.single-post h1 + p {
  margin-top: 0;
  color: var(--tech-blog-subheading);
}
body.single-post h1 + p a {
  color: var(--tech-blog-subheading);
  text-decoration: none;
}
body.single-post h1 + p a:visited {
  color: var(--tech-blog-subheading);
}
body.single-post h1 + p a:not([disabled]):hover {
  color: var(--tech-blog-primary-color);
}
body.single-post h1 + p a:not([disabled]):hover:visited {
  color: var(--tech-blog-primary-color);
}
body.single-post h1 + p a:not([disabled]):hover:link {
  color: var(--tech-blog-primary-color);
}
body.single-post .comment {
  margin-top: 10px;
  margin-bottom: 15px;
  padding-left: 15px;
}
body.single-post .comment header {
  color: var(--tech-blog-subheading);
  display: flex;
  margin-bottom: 2px;
}
body.single-post .comment header img {
  width: 50px;
  height: 50px;
  border-radius: 2px;
  display: inline-block;
}
body.single-post .comment header > div {
  display: inline-block;
  margin-left: 5px;
}
body.single-post .comment header a {
  color: var(--tech-blog-subheading);
  text-decoration: none;
}
body.single-post .comment header a:visited {
  color: var(--tech-blog-subheading);
}
body .comment-respond textarea {
  width: 100%;
  resize: vertical;
}
body a.image-zoom {
  cursor: zoom-in;
}
body q {
  border-bottom: 2px solid var(--tech-blog-primary-color);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 2px 2px 0 2px;
}
body iframe {
  width: 100%;
}
body .wp-block-image:last-child > :is(figure, image):only-child.alignright {
  float: none;
  margin-left: auto;
}
body .wp-block-image:last-child > :is(figure, image):only-child.alignleft {
  float: none;
  margin-right: auto;
}
body .wp-block-image:last-child img {
  height: auto;
}
body .skip {
  bottom: 25px;
  left: -10000px;
  position: fixed;
  background-color: var(--tech-blog-action);
  color: rgb(255, 255, 255);
  text-decoration: none;
}
body .skip:focus {
  width: auto;
  height: auto;
  left: 25px;
  padding: 15px;
}
@media (min-width: 180px) and (max-width: 767px) {
  body .skip {
    display: none;
  }
}
body input[type=checkbox] + label {
  display: inline;
  font-weight: normal;
  color: var(--tech-blog-text);
}
body input:not([type=checkbox]) {
  height: 33.3333333333px;
  font-size: 16.6666666667px;
  background-color: var(--tech-blog-background);
  border: 1px solid var(--tech-blog-action);
}
body :is(button, a.wp-block-button__link, input[type=button], input[type=submit]) {
  color: rgb(255, 255, 255);
  background-color: var(--tech-blog-action);
  border: 2px solid var(--tech-blog-action);
  margin-top: 10px;
  cursor: pointer;
  font-family: "Fira Code", monospace;
  font-weight: 600;
  border-radius: 5px;
}
body :is(button, a.wp-block-button__link, input[type=button], input[type=submit]).wp-block-button__link {
  border-radius: 9999px;
}
body :is(button, a.wp-block-button__link, input[type=button], input[type=submit]):not([disabled]):hover {
  color: var(--tech-blog-primary-color);
  background-color: rgba(0, 0, 0, 0);
  border-color: var(--tech-blog-primary-color);
}
body :is(button, a.wp-block-button__link, input[type=button], input[type=submit]):not([disabled]):hover:visited {
  color: var(--tech-blog-primary-color);
  background-color: rgba(0, 0, 0, 0);
  border-color: var(--tech-blog-primary-color);
}
body :is(button, a.wp-block-button__link, input[type=button], input[type=submit]):not([disabled]):hover:link {
  color: var(--tech-blog-primary-color);
  background-color: rgba(0, 0, 0, 0);
  border-color: var(--tech-blog-primary-color);
}
body .wp-block-button {
  text-align: center;
}
body .wp-block-button.alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}
body .wp-block-button.alignright {
  float: right;
  margin: 0.5em 1em 0.5em 0;
}
body .wp-block-button.is-style-squared a.wp-block-button__link {
  border-radius: 5px !important;
}
body .screen-reader-text {
  display: none;
}
body .pagination {
  margin-top: 10px;
}
body .pagination .page-numbers {
  padding: 4px;
}

@media print {
  body > header {
    display: none;
  }
  .action-bar {
    display: none !important;
  }
  nav {
    display: none;
  }
  #respond {
    display: none;
  }
  .wp-block-embed-repl-it {
    display: none;
  }
}