@keyframes lum-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lum-fadeZoom {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes lum-loader-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes lum-loader-before {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(6px);
  }
  25% {
    transform: scale(1.3) translateX(8px);
  }
  40% {
    transform: scale(1.2) translateX(6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(6px);
  }
  75% {
    transform: scale(0.7) translateX(8px);
  }
  90% {
    transform: scale(0.8) translateX(6px);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lum-loader-after {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(-6px);
  }
  25% {
    transform: scale(1.3) translateX(-8px);
  }
  40% {
    transform: scale(1.2) translateX(-6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(-6px);
  }
  75% {
    transform: scale(0.7) translateX(-8px);
  }
  90% {
    transform: scale(0.8) translateX(-6px);
  }
  100% {
    transform: scale(1);
  }
}

.lum-lightbox {
  background: rgba(0, 0, 0, 0.6);
}

.lum-lightbox-inner {
  top: 2.5%;
  right: 2.5%;
  bottom: 2.5%;
  left: 2.5%;
}

.lum-lightbox-inner img {
  position: relative;
}

.lum-lightbox-inner .lum-lightbox-caption {
  margin: 0 auto;
  color: #fff;
  max-width: 700px;
  text-align: center;
}

.lum-loading .lum-lightbox-loader {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 20px;
  animation: lum-loader-rotate 1800ms infinite linear;
}

.lum-lightbox-loader:before,
.lum-lightbox-loader:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.lum-lightbox-loader:before {
  left: 0;
  animation: lum-loader-before 1800ms infinite linear;
}

.lum-lightbox-loader:after {
  right: 0;
  animation: lum-loader-after 1800ms infinite linear;
  animation-delay: -900ms;
}

.lum-lightbox.lum-opening {
  animation: lum-fade 180ms ease-out;
}

.lum-lightbox.lum-opening .lum-lightbox-inner {
  animation: lum-fadeZoom 180ms ease-out;
}

.lum-lightbox.lum-closing {
  animation: lum-fade 300ms ease-in;
  animation-direction: reverse;
}

.lum-lightbox.lum-closing .lum-lightbox-inner {
  animation: lum-fadeZoom 300ms ease-in;
  animation-direction: reverse;
}

.lum-img {
  transition: opacity 120ms ease-out;
}

.lum-loading .lum-img {
  opacity: 0;
}

.lum-gallery-button {
  overflow: hidden;
  text-indent: 150%;
  white-space: nowrap;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  max-height: 100%;
  width: 60px;
  cursor: pointer;
}

.lum-previous-button {
  left: 12px;
}

.lum-next-button {
  right: 12px;
}

.lum-gallery-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  border-top: 4px solid rgba(255, 255, 255, 0.8);
}

.lum-previous-button:after {
  transform: translateY(-50%) rotate(-45deg);
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: -2px 0 rgba(0, 0, 0, 0.2);
  left: 12%;
  border-radius: 3px 0 0 0;
}

.lum-next-button:after {
  transform: translateY(-50%) rotate(45deg);
  border-right: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 2px 0 rgba(0, 0, 0, 0.2);
  right: 12%;
  border-radius: 0 3px 0 0;
}

/* This media query makes screens less than 460px wide display in a "fullscreen"-esque mode. Users can then scroll around inside the lightbox to see the entire image. */
@media (max-width: 460px) {
  .lum-lightbox-image-wrapper {
    display: flex;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lum-lightbox-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
  }

  /* Used to centre the image in the container, respecting overflow: https://stackoverflow.com/a/33455342/515634 */
  .lum-lightbox-position-helper {
    margin: auto;
  }

  .lum-lightbox-inner img {
    max-width: none;
    max-height: none;
  }
}
/*

Dracula Theme v1.2.0

https://github.com/zenorocha/dracula-theme

Copyright 2015, All rights reserved

Code licensed under the MIT license
http://zenorocha.mit-license.org

@author Éverton Ribeiro <nuxlli@gmail.com>
@author Zeno Rocha <hi@zenorocha.com>

*/

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: #282a36;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-section,
.hljs-link {
  color: #8be9fd;
}

.hljs-function .hljs-keyword {
  color: #ff79c6;
}

.hljs,
.hljs-subst {
  color: #f8f8f2;
}

.hljs-string,
.hljs-title,
.hljs-name,
.hljs-type,
.hljs-attribute,
.hljs-symbol,
.hljs-bullet,
.hljs-addition,
.hljs-variable,
.hljs-template-tag,
.hljs-template-variable {
  color: #f1fa8c;
}

.hljs-comment,
.hljs-quote,
.hljs-deletion,
.hljs-meta {
  color: #6272a4;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-title,
.hljs-section,
.hljs-doctag,
.hljs-type,
.hljs-name,
.hljs-strong {
  font-weight: bold;
}

.hljs-emphasis {
  font-style: italic;
}
@charset "UTF-8";
/**
 * Jikuu - Tumblr Theme - CSS Code
 * © 2009-2018, Michiel Sikma. MIT license.
 */
/** Jikuu - Tumblr Theme - Mixins */
/** Jikuu - Tumblr Theme - Basic settings */
html, body {
  margin: 0; }

body {
  line-height: 1; }

a {
  text-decoration: none;
  color: #006AFF; }

a:hover,
a:focus {
  text-decoration: underline;
  color: #FF086B; }

a:visited {
  color: #5E0FFF; }

a:visited:hover,
a:visited:focus {
  color: #FF086B; }

#root {
  padding: 0 25px;
  font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", sans-serif;
  font-size: 12px;
  line-height: 19px; }
  #root.use-system-font {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
  #root .grid-container {
    width: 718px;
    margin: auto; }
    @media only screen and (max-width: 768px) {
      #root .grid-container {
        width: 100%; } }
    #root .grid-container #header {
      margin: 0 0 25px 0;
      border-bottom: 5px solid #006AFF; }
      #root .grid-container #header #title {
        font-size: 31px;
        line-height: 23px;
        padding: 29px 0 14px;
        color: #006AFF;
        text-align: center;
        text-decoration: none;
        margin: 0; }
        #root .grid-container #header #title.std-logo {
          padding: 0; }
          #root .grid-container #header #title.std-logo > a {
            width: 329px;
            margin: auto;
            display: block;
            padding: 29px 40px 14px; }
            #root .grid-container #header #title.std-logo > a svg .st0 {
              fill: #FF086B; }
            #root .grid-container #header #title.std-logo > a svg .st1 {
              fill: #006AFF; }
            #root .grid-container #header #title.std-logo > a svg .st2 {
              fill: #0A0A0B; }
        #root .grid-container #header #title.img .text {
          display: none; }
    #root .grid-container #content {
      margin: 25px 0; }
      #root .grid-container #content .sidebar {
        margin-bottom: 45px;
        float: left;
        min-height: 1px;
        width: 173px; }
      #root .grid-container #content .main {
        float: right;
        min-height: 1px;
        width: 500px; }

@media only screen and (min-width: 1100px) {
  #root.layout-wide {
    font-size: 14px;
    line-height: 21px; }
    #root.layout-wide .grid-container {
      width: 1070px; }
      #root.layout-wide .grid-container #content .sidebar {
        width: 170px; }
      #root.layout-wide .grid-container #content .main {
        width: 770px; } }

.aural-only {
  display: none; }

/** Jikuu - Tumblr Theme - Common UI items */
.icon-link {
  line-height: 18px;
  padding-left: 0;
  margin: 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative; }
  .icon-link .icon {
    background-position: 0 0;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: text-top;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    margin-top: -1px;
    position: relative;
    background-size: 100%;
    top: 1px; }
  .icon-link.icon-button {
    left: -2px; }
    .icon-link.icon-button .icon {
      top: 1px;
      left: 1px; }
    .icon-link.icon-button.rss .icon {
      background-image: url(https://letsdeliver.com/tumblr/jikuu/c59aebbc0c0fbe18a1d7e0905d62d0f9.png); }
      @media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
        .icon-link.icon-button.rss .icon {
          background-image: url(https://letsdeliver.com/tumblr/jikuu/5892ef957d0a51a88f9e9c58d3c39c14.png); } }
    .icon-link.icon-button.twitter .icon {
      background-image: url(https://letsdeliver.com/tumblr/jikuu/3524499642fc6f14cd65416d466ca908.png); }
      @media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
        .icon-link.icon-button.twitter .icon {
          background-image: url(https://letsdeliver.com/tumblr/jikuu/cc4cd8df76dc1254c8df0445a42d741f.png); } }

@media only screen and (min-width: 1100px) {
  #root.layout-wide .icon-link .icon {
    top: 2px; } }

hr {
  background: url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAMAAADXEh96AAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAATSURBVAjXY2BkAEEGBkYkiJUHAAGkABNgY9FfAAAAAElFTkSuQmCC") scroll repeat #CDCACA;
  image-rendering: optimizeSpeed;
  height: 3px;
  padding: 0;
  border: none;
  margin: 14px 0; }

.post-content p {
  margin: 8px 0; }
  .post-content p:first-child {
    margin-top: 0; }
  .post-content p:last-child {
    margin-bottom: 0; }

/** Jikuu - Tumblr Theme - Footer and page navigation */
.section.pagenav {
  margin-bottom: 80px; }
  .section.pagenav > hr {
    display: none; }
  .section.pagenav .menu {
    margin: 8px 0;
    padding: 0 0 1px 0; }
    .section.pagenav .menu li,
    .section.pagenav .menu li a,
    .section.pagenav .menu li a span {
      display: block; }
    .section.pagenav .menu li a {
      background: #ffffff;
      line-height: 15px;
      margin-bottom: -1px;
      position: relative;
      border: 1px solid #0A0A0B;
      text-decoration: none; }
      .section.pagenav .menu li a span {
        border: none;
        padding: 4px 9px;
        color: #0A0A0B;
        margin: -1px; }
      .section.pagenav .menu li a:hover {
        border-color: #006AFF;
        z-index: 12; }
        .section.pagenav .menu li a:hover span {
          color: #006AFF; }
    .section.pagenav .menu li.active a {
      background: url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAMAAADXEh96AAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAATSURBVAjXY2BkAEEGBkYkiJUHAAGkABNgY9FfAAAAAElFTkSuQmCC") scroll repeat #CDCACA;
      image-rendering: optimizeSpeed;
      border: none;
      padding: 1px;
      margin-bottom: 5px;
      position: relative;
      line-height: 15px;
      top: 1px;
      z-index: 10; }
      .section.pagenav .menu li.active a > span, .section.pagenav .menu li.active a > div {
        border: 1px solid #0A0A0B;
        padding: 3px 8px;
        margin: -1px;
        background: #ffffff;
        color: #0A0A0B;
        position: relative;
        top: -3px;
        left: -3px; }
      .section.pagenav .menu li.active a:hover {
        background: #006AFF; }
        .section.pagenav .menu li.active a:hover span {
          color: #006AFF;
          border-color: #006AFF; }
    .section.pagenav .menu li {
      display: inline-block; }
      .section.pagenav .menu li a span:after {
        content: '' !important; }
    .section.pagenav .menu li {
      margin-right: 2px; }
      .section.pagenav .menu li.active a {
        background-color: #0A0A0B;
        z-index: 50; }
        .section.pagenav .menu li.active a span {
          background-color: #0A0A0B;
          color: white;
          border-color: #0A0A0B; }
        .section.pagenav .menu li.active a:hover {
          background: url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAMAAADXEh96AAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAATSURBVAjXY2BkAEEGBkYkiJUHAAGkABNgY9FfAAAAAElFTkSuQmCC") scroll repeat #CDCACA;
          image-rendering: optimizeSpeed;
          background-color: #006AFF; }
          .section.pagenav .menu li.active a:hover span {
            background-color: #006AFF;
            color: white;
            border-color: #006AFF; }
  .section.pagenav.hidden {
    display: none; }

/** Jikuu - Tumblr Theme - Sidebar */
#content_sidebar {
  margin-bottom: 45px; }
  #content_sidebar .section-container > hr:last-child {
    display: none; }
  #content_sidebar .title, #content_sidebar h3.copyright-statement {
    margin: 0 0 8px;
    font-size: 12px; }
  #content_sidebar .build-info a {
    font-size: 11px;
    color: #585151;
    line-height: 17px;
    text-decoration: none; }
    #content_sidebar .build-info a:hover {
      text-decoration: underline;
      color: #FF086B; }
  #content_sidebar .section {
    margin-top: 14px; }
    #content_sidebar .section.navigation ul.menu.nav {
      margin: 8px 0;
      padding: 0 0 1px 0; }
      #content_sidebar .section.navigation ul.menu.nav li,
      #content_sidebar .section.navigation ul.menu.nav li a,
      #content_sidebar .section.navigation ul.menu.nav li a span {
        display: block; }
      #content_sidebar .section.navigation ul.menu.nav li a {
        background: #ffffff;
        line-height: 15px;
        margin-bottom: -1px;
        position: relative;
        border: 1px solid #0A0A0B;
        text-decoration: none; }
        #content_sidebar .section.navigation ul.menu.nav li a span {
          border: none;
          padding: 4px 9px;
          color: #0A0A0B;
          margin: -1px; }
        #content_sidebar .section.navigation ul.menu.nav li a:hover {
          border-color: #006AFF;
          z-index: 12; }
          #content_sidebar .section.navigation ul.menu.nav li a:hover span {
            color: #006AFF; }
      #content_sidebar .section.navigation ul.menu.nav li.active a {
        background: url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAMAAADXEh96AAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAATSURBVAjXY2BkAEEGBkYkiJUHAAGkABNgY9FfAAAAAElFTkSuQmCC") scroll repeat #CDCACA;
        image-rendering: optimizeSpeed;
        border: none;
        padding: 1px;
        margin-bottom: 5px;
        position: relative;
        line-height: 15px;
        top: 1px;
        z-index: 10; }
        #content_sidebar .section.navigation ul.menu.nav li.active a > span, #content_sidebar .section.navigation ul.menu.nav li.active a > div {
          border: 1px solid #0A0A0B;
          padding: 3px 8px;
          margin: -1px;
          background: #ffffff;
          color: #0A0A0B;
          position: relative;
          top: -3px;
          left: -3px; }
        #content_sidebar .section.navigation ul.menu.nav li.active a:hover {
          background: #006AFF; }
          #content_sidebar .section.navigation ul.menu.nav li.active a:hover span {
            color: #006AFF;
            border-color: #006AFF; }
    #content_sidebar .section.blogs .blog-list {
      margin: 0;
      padding: 0;
      list-style: none; }
    #content_sidebar .section .subsection {
      margin-bottom: 5px; }
      #content_sidebar .section .subsection .avatar {
        display: block;
        margin-bottom: 10px; }
        #content_sidebar .section .subsection .avatar img {
          display: block;
          width: 100%;
          height: auto; }
      #content_sidebar .section .subsection .form-search {
        position: relative; }
        #content_sidebar .section .subsection .form-search:hover .search-submit input, #content_sidebar .section .subsection .form-search:focus .search-submit input {
          background-color: #006AFF; }
        #content_sidebar .section .subsection .form-search:hover .search-input input, #content_sidebar .section .subsection .form-search:focus .search-input input {
          border-color: #006AFF;
          color: #006AFF; }
        #content_sidebar .section .subsection .form-search .search-submit input {
          content: '';
          color: #0A0A0B;
          background: url(https://letsdeliver.com/tumblr/jikuu/355cac90a50c67823728aa17245b97a3.png) #696161;
          background-size: 26px 21px;
          height: 21px;
          width: 26px;
          position: absolute;
          z-index: 20;
          top: 1px;
          right: 1px;
          text-indent: -9999px;
          border: 0;
          cursor: pointer; }
          @media only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
            #content_sidebar .section .subsection .form-search .search-submit input {
              background-image: url(https://letsdeliver.com/tumblr/jikuu/7391077a89f2679d2dd340f6a742d888.png); } }
        #content_sidebar .section .subsection .form-search .search-input input {
          width: 100%;
          border: 1px solid #CDCACA;
          font-size: 12px;
          padding: 3px 8px;
          line-height: 15px;
          height: 23px;
          box-sizing: border-box; }
      #content_sidebar .section .subsection.follow-links ul {
        list-style: none;
        margin: 0;
        padding: 0; }
    #content_sidebar .section:first-child {
      margin-top: 0; }

@media only screen and (min-width: 1100px) {
  #root.layout-wide #content_sidebar .section .subsection .form-search .search-input input {
    font-size: 14px;
    height: 25px; }
  #root.layout-wide #content_sidebar .section .subsection .form-search .search-submit input {
    margin-top: 1px; }
  #root.layout-wide #content_sidebar .section.navigation ul.menu.nav li a span {
    padding-top: 5px;
    padding-bottom: 5px; } }

#root .grid-container {
  transition: width 1s; }

/** Jikuu - Tumblr Theme - Common post styles */
#container_posts .post {
  position: relative; }
  #container_posts .post:first-child h2.title {
    margin-top: 0; }
  #container_posts .post h2.title {
    font-weight: normal;
    font-size: 21px;
    line-height: 27px;
    margin-bottom: 10px; }
  #container_posts .post .html-content h1 {
    font-weight: normal;
    border-bottom: 1px solid #CDCACA;
    padding-bottom: 6px;
    display: inline-block;
    margin: 10px 0 5px 0;
    font-size: 17px;
    line-height: 17px; }
  #container_posts .post .html-content h2 {
    font-weight: bold;
    border-bottom: 1px solid #CDCACA;
    display: inline-block;
    padding-bottom: 4px;
    margin: 3px 0 4px;
    font-size: 15px;
    line-height: 18px; }
  #container_posts .post .html-content h3 {
    font-weight: bold;
    font-size: 14px;
    line-height: 18px; }
  #container_posts .post .html-content ul {
    padding-left: 24px; }
  #container_posts .post .html-content pre, #container_posts .post .html-content code {
    font-family: "Menlo", "Andale Mono", "Ubuntu Mono", monospace; }
  #container_posts .post .html-content pre {
    overflow: auto;
    padding: 0; }
  #container_posts .post .html-content code {
    font-size: 100%; }
  #container_posts .post .html-content pre code {
    display: block;
    border-radius: 2px;
    padding: 12px 16px; }
  #container_posts .post .html-content pre code.hljs a {
    color: #f8f8f2;
    text-decoration: underline; }
  #container_posts .post .html-content pre code.hljs a:hover,
  #container_posts .post .html-content pre code.hljs a:focus {
    color: rgba(248, 248, 242, 0.7);
    text-decoration: none; }
  #container_posts .post .html-content pre code.hljs a:visited {
    color: rgba(248, 248, 242, 0.7); }
  #container_posts .post .html-content pre code.hljs a:visited:hover,
  #container_posts .post .html-content pre code.hljs a:visited:focus {
    text-decoration: none; }
  #container_posts .post .html-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 8px 0; }
    #container_posts .post .html-content table thead th, #container_posts .post .html-content table thead td {
      border-top: 1px solid #CDCACA; }
    #container_posts .post .html-content table thead th:first-child, #container_posts .post .html-content table thead td:first-child {
      border-top-left-radius: 2px;
      border-left: 1px solid #CDCACA; }
    #container_posts .post .html-content table thead th:last-child, #container_posts .post .html-content table thead td:last-child {
      border-top-right-radius: 2px; }
    #container_posts .post .html-content table tbody tr th:first-child, #container_posts .post .html-content table tbody tr td:first-child {
      border-left: 1px solid #CDCACA; }
    #container_posts .post .html-content table tbody tr:last-child th:first-child, #container_posts .post .html-content table tbody tr:last-child td:first-child {
      border-bottom-left-radius: 2px; }
    #container_posts .post .html-content table tbody tr:last-child th:last-child, #container_posts .post .html-content table tbody tr:last-child td:last-child {
      border-bottom-right-radius: 2px; }
    #container_posts .post .html-content table th, #container_posts .post .html-content table td {
      padding: 6px 8px;
      border-right: 1px solid #CDCACA;
      border-bottom: 1px solid #CDCACA; }
  #container_posts .post .caption.html-content {
    margin-top: 10px; }
    #container_posts .post .caption.html-content blockquote {
      margin-left: 14px;
      padding-left: 14px;
      border-left: 1px solid #CDCACA; }
  #container_posts .post > .info {
    overflow: hidden;
    margin-top: 8px; }
    #container_posts .post > .info .avatar {
      float: left; }
      #container_posts .post > .info .avatar p {
        margin: 2px 8px 0 0; }
    #container_posts .post > .info .meta {
      font-size: 11px;
      color: #585151;
      line-height: 17px; }
      #container_posts .post > .info .meta p {
        margin: 0; }
      #container_posts .post > .info .meta a {
        color: #585151; }
        #container_posts .post > .info .meta a:hover {
          color: #FF086B; }
      #container_posts .post > .info .meta .shorturl a {
        width: 11px;
        height: 11px;
        display: inline-block;
        position: relative;
        overflow: hidden;
        top: 2px;
        text-indent: -9999px; }

#container_posts .post-sep {
  margin: 25px 0;
  height: 5px; }

@media only screen and (min-width: 1100px) {
  #root.layout-wide #container_posts .post h2.title {
    font-size: 28px;
    line-height: 40px; } }

#root.use-system-font #container_posts .post .html-content pre, #root.use-system-font #container_posts .post .html-content code {
  font-size: 94%; }

/** Jikuu - Tumblr Theme - Answer post */
.post.type-answer .question .avatar {
  display: inline-block;
  vertical-align: top;
  width: 71px; }
  .post.type-answer .question .avatar img {
    display: block; }

.post.type-answer .question .content {
  font-size: 18px;
  line-height: 24px;
  max-width: 396px; }

.post.type-answer .question .asker {
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 11px;
  text-decoration: none; }

.post.type-answer .question .arr-outer,
.post.type-answer .question .arr-inner {
  display: block;
  position: absolute;
  z-index: 20;
  left: 0;
  top: 5px; }

.post.type-answer .question .arr-outer {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #696161 transparent transparent; }

.post.type-answer .question .arr-inner {
  width: 0px;
  height: 0px;
  margin: 1px 0 0 1px;
  border-style: solid;
  border-width: 7px 7px 7px 0;
  border-color: transparent #ffffff transparent transparent; }

.post.type-answer .question .inner {
  display: block;
  position: relative;
  z-index: 12;
  background: white;
  border: 1px solid #696161;
  margin-left: 7px;
  padding: 6px 10px;
  min-height: 50px; }

.post.type-answer .question .bevel-container {
  position: relative;
  display: inline-block; }
  .post.type-answer .question .bevel-container:before {
    background: url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAMAAADXEh96AAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAATSURBVAjXY2BkAEEGBkYkiJUHAAGkABNgY9FfAAAAAElFTkSuQmCC") scroll repeat #CDCACA;
    image-rendering: optimizeSpeed;
    position: absolute;
    content: '';
    z-index: 11;
    top: 3px;
    right: -3px;
    left: 10px;
    bottom: -3px;
    border: 0; }

.post.type-answer .question .bevel-container:before {
  background-color: #0A0A0B; }

.post.type-answer .question .arr-outer {
  display: none; }

.post.type-answer .question .arr-inner {
  border-color: transparent #0A0A0B transparent transparent; }

.post.type-answer .question .inner {
  background: #0A0A0B;
  color: white;
  border-color: #0A0A0B; }

.post.type-answer .answer {
  margin: 20px 0 0; }
  .post.type-answer .answer .inner {
    min-height: 0 !important; }
  .post.type-answer .answer .arr-outer,
  .post.type-answer .answer .arr-inner {
    display: block;
    position: absolute;
    z-index: 20;
    left: 0;
    top: 5px; }
  .post.type-answer .answer .arr-outer {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent #696161 transparent transparent; }
  .post.type-answer .answer .arr-inner {
    width: 0px;
    height: 0px;
    margin: 1px 0 0 1px;
    border-style: solid;
    border-width: 7px 7px 7px 0;
    border-color: transparent #ffffff transparent transparent; }
  .post.type-answer .answer .inner {
    display: block;
    position: relative;
    z-index: 12;
    background: white;
    border: 1px solid #696161;
    margin-left: 7px;
    padding: 6px 10px;
    min-height: 50px; }
  .post.type-answer .answer .bevel-container {
    position: relative;
    display: inline-block; }
    .post.type-answer .answer .bevel-container:before {
      background: url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAMAAADXEh96AAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAATSURBVAjXY2BkAEEGBkYkiJUHAAGkABNgY9FfAAAAAElFTkSuQmCC") scroll repeat #CDCACA;
      image-rendering: optimizeSpeed;
      position: absolute;
      content: '';
      z-index: 11;
      top: 3px;
      right: -3px;
      left: 10px;
      bottom: -3px;
      border: 0; }
  .post.type-answer .answer .arr-outer {
    border-width: 8px 8px 0 8px;
    border-color: #696161 transparent transparent transparent;
    bottom: -8px;
    top: auto;
    left: 6px; }
  .post.type-answer .answer .arr-inner {
    border-width: 7px 7px 0px 7px;
    border-color: #ffffff transparent transparent transparent;
    bottom: -6px;
    top: auto;
    left: 6px; }
  .post.type-answer .answer .inner {
    margin-left: 0; }
  .post.type-answer .answer .bevel-container {
    width: 100%;
    margin-bottom: 7px; }

/** Jikuu - Tumblr Theme - Audio post */
.post .audio {
  background: url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAMAAADXEh96AAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAATSURBVAjXY2BkAEEGBkYkiJUHAAGkABNgY9FfAAAAAElFTkSuQmCC") scroll repeat #CDCACA;
  image-rendering: optimizeSpeed;
  border: none;
  padding: 1px;
  margin-bottom: 5px;
  position: relative;
  line-height: 15px;
  top: 1px;
  z-index: 10;
  display: inline-block; }
  .post .audio > span, .post .audio > div {
    border: 1px solid #0A0A0B;
    padding: 3px 8px;
    margin: -1px;
    background: #ffffff;
    color: #0A0A0B;
    position: relative;
    top: -3px;
    left: -3px; }
  .post .audio:hover {
    background: #006AFF; }
    .post .audio:hover span {
      color: #006AFF;
      border-color: #006AFF; }
  .post .audio > div {
    display: block; }
  .post .audio .player {
    display: flex;
    padding: 0; }
    .post .audio .player .art, .post .audio .player .art img {
      height: 27px;
      width: 27px; }
    .post .audio .player .embed {
      flex: 1 0;
      height: 27px; }
  .post .audio .info {
    color: #444444;
    height: 27px;
    line-height: 27px;
    padding: 0 0 0 8px;
    font-size: 10px; }
  .post .audio:hover .player, .post .audio:hover .info, .post .audio:focus .player, .post .audio:focus .info {
    border-color: #006AFF; }
  .post .audio:hover .info p, .post .audio:focus .info p {
    color: #006AFF; }

.post .meta .playcount p {
  margin: 8px 0;
  color: #585151; }

/** Jikuu - Tumblr Theme - Chat post */
.post.type-chat .chat {
  list-style: none;
  border-bottom: 1px solid #CDCACA;
  font-family: "Menlo", "Andale Mono", "Ubuntu Mono", monospace;
  font-size: 100%;
  padding: 0;
  margin: 8px 0; }
  .post.type-chat .chat li {
    border: 1px solid #CDCACA;
    border-bottom: none;
    padding: 3px 6px; }
    .post.type-chat .chat li .label {
      display: inline-block;
      color: #006AFF;
      font-style: italic; }

#root.use-system-font .post.type-chat .chat {
  font-size: 94%; }

/** Jikuu - Tumblr Theme - Link post */
.post.type-link .post-content > .link-container a {
  padding: 12px 14px;
  display: block;
  color: #0A0A0B;
  border-radius: 2px;
  margin-bottom: 15px;
  background-color: #ebf3ff; }
  .post.type-link .post-content > .link-container a .host {
    font-size: 12px;
    font-weight: bold;
    padding: 0 0 10px; }
  .post.type-link .post-content > .link-container a .name {
    color: #006AFF;
    font-size: 22px;
    line-height: 22px; }
    .post.type-link .post-content > .link-container a .name:after {
      content: "\2303";
      transform: rotate(90deg);
      display: inline-block;
      position: relative;
      top: 1px;
      font-size: 84%;
      font-weight: bold; }
  .post.type-link .post-content > .link-container a .excerpt {
    margin-top: 10px; }
  .post.type-link .post-content > .link-container a:hover, .post.type-link .post-content > .link-container a:focus {
    text-decoration: none;
    border-color: #FF086B;
    background-color: #ffebf3; }
  .post.type-link .post-content > .link-container a:visited {
    border-color: #5E0FFF;
    background-color: #f2ecff; }
  .post.type-link .post-content > .link-container a:hover .name,
  .post.type-link .post-content > .link-container a:focus .name {
    color: #FF086B; }
  .post.type-link .post-content > .link-container a:visited .name {
    color: #5E0FFF; }

/** Jikuu - Tumblr Theme - Photo post */
/** Jikuu - Tumblr Theme - Photoset post */
.post.type-photo.photoset .first {
  margin-left: 0; }

.post.type-photo.photoset .last {
  margin-right: 0; }

.post.type-photo.photoset .media.photoset-grid .row {
  display: flex;
  overflow: hidden; }
  .post.type-photo.photoset .media.photoset-grid .row:first-child {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px; }
  .post.type-photo.photoset .media.photoset-grid .row:last-child {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom: 0 !important; }

.post.type-photo.photoset .media.photoset-grid .image-container {
  flex: 1 auto;
  align-self: center;
  justify-self: center;
  position: relative; }
  .post.type-photo.photoset .media.photoset-grid .image-container img {
    width: 100%;
    height: auto;
    display: block; }
  .post.type-photo.photoset .media.photoset-grid .image-container .caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    color: white; }

.post.type-photo.photoset .media.photoset-grid .photoset-image-1 {
  flex-basis: 100%; }

.post.type-photo.photoset .media.photoset-grid .photoset-image-2 {
  flex-basis: 50%; }

.post.type-photo.photoset .media.photoset-grid .photoset-image-3 {
  flex-basis: 33.33333%; }

/** Jikuu - Tumblr Theme - Quote post */
.post.type-quote .quote {
  font-size: 24px;
  line-height: 34px;
  padding: 0;
  margin: 0;
  text-align: left;
  font-style: italic;
  color: #FF086B; }
  .post.type-quote .quote:before {
    content: '\201C'; }
  .post.type-quote .quote:after {
    content: '\201D'; }

.post.type-quote .source {
  margin-top: 6px;
  margin-bottom: 16px; }
  .post.type-quote .source .dash {
    margin-left: 4px;
    margin-right: 6px; }
    .post.type-quote .source .dash:after {
      content: '\2500\2500\2500\2500'; }
  .post.type-quote .source .dash, .post.type-quote .source .content {
    display: inline-block; }

/** Jikuu - Tumblr Theme - Text post */
.post.type-text .post-content h2 + .date {
  color: #696161;
  margin-bottom: 18px; }

/** Jikuu - Tumblr Theme - Video post */
.post.type-video .meta .playcount {
  margin: 8px 0;
  color: #585151; }

/** Jikuu - Tumblr Theme - Lightbox overrides */
.lum-lightbox {
  background: rgba(10, 10, 11, 0.8); }

.lum-lightbox-inner .lum-lightbox-caption {
  background: rgba(10, 10, 11, 0.9);
  font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", sans-serif;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 19px;
  display: table;
  border-radius: 2px; }
  .lum-lightbox-inner .lum-lightbox-caption:empty {
    display: none; }

#root.use-system-font .lum-lightbox-inner .lum-lightbox-caption {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif; }
