/*!
 * https://css.github.io/csso/csso.html
 */
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --c-light-text: #333;
    --c-light-background: #fff;
    --c-light-focus: #00ff00;
    --c-light-interactive: #007bff;
    --c-light-callout: #e6f2ff;
    --c-dark-text: #fff;
    --c-dark-subtext: #a6a6a6;
    --c-dark-background: #333;
    --c-dark-focus: #00ff00;
    --c-dark-interactive: #66b0ff;
    --c-dark-callout: #004a99;

    --c-text: var(--c-light-text);
    --c-background: var(--c-light-background);
    --c-focus: var(--c-light-focus);
    --c-interactive: var(--c-light-interactive);
    --c-callout: var(--c-light-callout);
}

*, ::after, ::before {
    box-sizing: border-box
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    height: 100%;
}

.dark-mode-checkbox:checked ~ .theme-container {
    --c-text: var(--c-dark-text);
    --c-background: var(--c-dark-background);
    --c-focus: var(--c-dark-focus);
    --c-interactive: var(--c-dark-interactive);
    --c-callout: var(--c-dark-callout);
}

body {
    background-color: var(--c-background);
    color: var(--c-text);
    height: 100%;
    display: flex; /* 1. */
    flex-direction: column; /* 1. */
}

.grow {
    flex-grow: 1; /* 1. */
}

.theme-container {
    background-color: var(--c-background);
    color: var(--c-text);
}

.dark-mode-checkbox:checked ~ .theme-container p.callout, .dark-mode-checkbox:checked ~ .theme-container div.callout {
    background-color: var(--c-dark-callout)
}

.dark-mode-checkbox:checked ~ .theme-container .cp-title a, .dark-mode-checkbox:checked ~ .theme-container a.cp-title, .dark-mode-checkbox:checked ~ .theme-container .home-bullets-posts .code-date {
    color: var(--c-dark-text)
}

.dark-mode-checkbox:checked ~ .theme-container .cp-title a:hover, .dark-mode-checkbox:checked ~ .theme-container a.cp-title a:hover {
    color: var(--c-dark-interactive);
    text-decoration: none
}

.dark-mode-checkbox:checked ~ .theme-container .header a:hover {
    color: var(--c-dark-text);
}

.dark-mode-checkbox:checked ~ .theme-container .header a.active {
    color: var(--c-dark-text);
}

.dark-mode-checkbox:checked ~ .theme-container .footer *, .dark-mode-checkbox:checked ~ .theme-container .header a, .dark-mode-checkbox:checked ~ .theme-container blockquote {
    color: var(--c-dark-subtext)
}

.dark-mode-checkbox:checked ~ .theme-container .tag {
    background-color: #3e3e3e;
    color: var(--c-dark-interactive);
}

.dark-mode-checkbox:checked ~ .theme-container a.tag:hover {
    background-color: var(--c-dark-interactive);
    color: #3e3e3e;
}

.dark-mode-checkbox:checked ~ .theme-container .subscribe-container {
    background-color: #4d4d4d;
    color: #fff
}

.dark-mode-checkbox:checked ~ .theme-container .about-container span.t2who {
    color: var(--c-dark-text)
}

.dark-mode-checkbox:checked ~ .theme-container .about-container span.t2when {
    color: var(--c-dark-text)
}

.dark-mode-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    visibility: hidden;
    height: 1px;
    width: 1px;
    position: fixed;
    cursor: pointer;
    right: 2em;
    top: 1.1em;
    font-size: 1.3em;
    outline: 0
}

input[name=dark-mode-checkbox]:before {
    visibility: visible;
    content: "🕯"
}

input:checked[name=dark-mode-checkbox]:before {
    visibility: visible;
    content: "💡"
}

figure, footer {
    display: block
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

hr {
    box-sizing: content-box;
    overflow: visible;
    margin-top: 1rem;
    border: 0;
    height: 1px;
    color: #d9d9d9;
    background-color: #d9d9d9
}

h1 {
    margin-bottom: .5rem
}

.site-title {
    margin-bottom: 1.25em;
}

h2, h3, h4, ol, p, pre, ul {
    margin-top: 0;
    margin-bottom: .5rem
}

h4 {
    font-weight: 500;
    line-height: 1.2
}

ol, p, pre, ul {
    margin-bottom: 1.8rem
}

hr, ol, pre, ul {
    margin-bottom: 1rem
}

ul ul {
    margin-bottom: 0
}

b, strong {
    font-weight: bolder
}

a {
    text-decoration: none;
    background-color: transparent;
    color: var(--c-interactive)
}

a:hover {
    color: #0056b3;
    text-decoration: underline
}

code {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

body, pre {
    color: #212529
}

pre {
    overflow: auto;
    display: block
}

figure {
    margin: 0 0 1rem
}

img {
    vertical-align: middle;
    border-style: none
}

.img-circle {
    border-radius: 50%
}

button {
    border-radius: 0
}

button:focus {
    outline: 5px auto -webkit-focus-ring-color
}

button, input {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    overflow: visible
}

button {
    text-transform: none;
    -webkit-appearance: button
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer
}

button::-moz-focus-inner {
    padding: 0;
    border-style: none
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

code {
    font-size: 95%;
    color: #e83e8c;
    word-break: break-word
}

a > code {
    color: inherit
}

pre code {
    font-size: inherit;
    word-break: normal
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.col-sm-4, .col-sm-8 {
    position: relative;
    width: 100%
}

.col-sm-3, .col-sm-9 {
    width: 100%
}

@media (min-width: 576px) {
    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }
}

.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before, .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #28a745
}

.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #dc3545
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5)
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b
}

.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5)
}

.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430
}

.btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5)
}

.btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f
}

.btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5)
}

.btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500
}

.btn-warning:not(:disabled):not(.disabled).active:focus, .btn-warning:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5)
}

.btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d
}

.btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5)
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df
}

.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5)
}

.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d
}

.btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5)
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
}

.btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

.btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #80bdff
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
    opacity: .75
}

.carousel, .carousel-inner {
    position: relative
}

.carousel-inner {
    width: 100%;
    overflow: hidden
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: ""
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0s ease-in-out, -webkit-transform 0s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item.active {
    display: block
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
    transition: opacity .15s ease
}

@media (prefers-reduced-motion: reduce) {
    .carousel-control-next, .carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none
}

.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease
}

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators li {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1;
    display: block;
    background-color: #ff003c
}

@media (min-width: 576px) {
    .float-sm-right {
        float: right !important
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.p-4 {
    padding: 1.5rem !important
}

.text-center {
    text-align: center !important
}

.text-muted {
    color: #6c757d !important
}

@media print {
    *, ::after, ::before {
        text-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.btn) {
        text-decoration: underline
    }

    pre {
        white-space: pre-wrap !important
    }

    blockquote, pre {
        border: 1px solid #adb5bd
    }

    blockquote, img, pre {
        page-break-inside: avoid
    }

    h2, h3, p {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    .container, body {
        min-width: 992px !important
    }
}

h1, h2, h3 {
    font-family: 'Merriweather', Georgia, Times, serif;
    font-style: normal;
}

h1 {
    font-size: 32px;
    line-height: 42px;
    margin-top: 10px;
    font-weight: 400;
}

h2, h3 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
}

h1, h3 {
    margin-bottom: 10px
}

h3 {
    font-size: 22px;
    line-height: 30px
}

.header h1, p {
    font-weight: 400
}

h1, h2, h3, p, pre {
    font-variant: normal
}

p, pre {
    line-height: 24px
}

blockquote {
    border-left: .25em solid #e8b500;
    color: #6a737d;
    padding: 0 1em;
    margin-left: 1.28em;
    margin-top: 2em;
    margin-bottom: 2em
}

pre {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px
}

body, p, pre {
    font-family: 'Merriweather', Georgia, Times, serif
}

.header ul, .sans-serif {
    font-family: 'Raleway', Helvetica, sans-serif
}

.no-italics, p, pre {
    font-style: normal
}

.header {
    margin-bottom: 20px
}

.header h1 {
    font-size: 24px;
    font-family: 'Raleway', Helvetica, sans-serif;
    text-transform: lowercase;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 40px;
    padding-bottom: 19px
}

.header ul, body, p {
    font-size: 16px
}

.header ul {
    margin-top: 8px
}

.header li {
    margin: 0 0.8em 0 0
}

.header li:last-child {
    margin: 0
}

li {
    margin: 0 20px 0 0
}

.home-bullets li {
    margin-left: -22px;
    margin-bottom: 12px
}

.home-bullets-posts li {
    margin-left: -38px;
    margin-bottom: 5px;
    list-style: none
}

.code-date {
    color: #000;
}

h1.text-muted a {
    text-decoration: none;
    color: #999
}

h1.text-muted a:hover {
    text-decoration: none;
    color: #000
}

.nav-margin {
    margin-bottom: 10px
}

img.avatar {
    margin-bottom: 30px;
    padding: 0 30px;
    max-width: 260px
}

.carousel-content {
    display: flex;
    align-items: center;
    justify-content: center
}

.carousel-content img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    margin-left: 0
}

.note p.date, img.carousel-avatar {
    margin-bottom: 30px
}

.container > hr {
    margin: 30px 0
}

.note {
    width: 100%;
    margin: 0 auto;
    line-height: 26px
}

.note p.date {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    margin-top: 0;
    color: #6a737d
}

.note h2, .note h3 {
    font-size: 25px;
    margin-bottom: 20px;
    margin-top: 30px
}

.note h3 {
    font-size: 18px
}

.note p.image-caption {
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: -20px;
    font-style: italic;
    text-align: center
}

details p.image-caption {
    margin-top: 5px !important
}

p.callout, div.callout {
    margin-top: -8px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #e6f2ff;
    padding: 15px
}

div.callout > :last-child {
    margin-bottom: 0;
}

.note p.tweet-caption {
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 0;
    font-style: italic;
    text-align: center
}

.note details, pre.highlight {
    margin-bottom: 25px
}

.note summary {
    font-weight: bolder;
    margin-top: 20px;
    margin-bottom: 20px
}

.note table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    border-spacing: 2px;
    border-color: gray;
    max-width: 100%;
    width: 100%;
    border-top: 2px solid #828282;
    border-bottom: 2px solid #828282;
    margin: 20px auto;
    font-size: 90%
}

.note table td {
    vertical-align: top;
    padding-right: 1em
}

summary::-webkit-details-marker {
    display: none
}

details summary {
    list-style-type: none;
}

summary:before {
    background: url(/assets/point-right.png) center no-repeat;
    display: inline-block;
    float: left;
    height: 25px;
    width: 45px;
    content: " ";
    margin-bottom: 1em
}

summary:hover {
    cursor: pointer
}

summary:focus {
    outline: 0
}

details > summary {
    background-color: var(--c-callout);
    border-radius: 5px;
    padding: 0.5em 0;
}

details[open] > summary {
    background-color: var(--c-background);
    border-radius: 5px;
    padding: 0.5em 0;
}

details[open] summary:before {
    display: inline-block;
    background: url(/assets/point-down.png) center no-repeat;
}

.detail-highlight {
    border-left: .25em solid var(--c-callout);
    margin-left: 1.28em;
    padding: 0 1em
}

.twitter-tweet {
    margin: auto
}

div.theme-container {
    padding-top: 20px;
    padding-bottom: 40px
}

div.note-twitter {
    max-width: 70%;
    margin: 2em auto;
}

div.subscribe-social-parent {
    width: 800px;
    max-width: 100%;
    text-align: center
}

div.subscribe-social {
    display: inline-block;
    width: 355px;
    max-width: 100%;
    margin: auto;
    vertical-align: top
}

img.linkedin, img.tweet {
    margin-bottom: 5px;
    border-radius: 11px
}

img.linkedin {
    padding: 1px;
    border: 1px solid #dce2e5;
    border-radius: 12px
}

.note ol, .note p + ul {
    margin-top: -15px
}

pre > code {
    color: #dedede;
    overflow: scroll;
    -webkit-overflow-scrolling: auto
}

.t2when {
}

.t2who {
}

.carousel-item, img {
    text-align: center;
    height: auto
}

img {
    display: block;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 3px
}

.carousel-item {
    max-width: 100%
}

.carousel-indicators li {
    height: 8px;
    background-color: #b3b3b3
}

.cp {
    padding: 0
}

.cp-title {
    font-family: 'Merriweather', Helvetica, sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: 0
}

.cp-title a {
    border-bottom: none;
    color: #333333
}

.cp-title a:hover, .footer a:hover, .header a:hover, .search-link a:hover {
    color: #007bff;
    text-decoration: none
}

.home-title {
    font-size: 1em;
    display: inline;
}

.cp-date {
    font-size: 0.8em;
    font-family: 'Raleway', Helvetica, sans-serif;
    margin-top: -0.1em;
    color: #8c8c8c;
}

.cp-desc, .search-link {
    font-family: 'Raleway', Helvetica, sans-serif;
    font-size: 0.85em;
}

.cp-desc {
    margin: 0;
    color: #8c8c8c;
}

.search-desc {
    margin: 0 0 2em;
    color: #737373;
    font-family: 'Raleway', Helvetica, sans-serif;
    font-size: 14px;
}

.search-link {
    display: inline-block;
    margin-bottom: -2em
}

.search-link, .search-link a {
    color: #737373
}

.tag, a.tag {
    display: inline-block;
    vertical-align: central;
    font-family: monospace;
    font-size: 90%;
    line-height: 1.5em;
    padding: 0 .5em;
    color: #007bff;
    background-color: #f2f2f2;
    border-radius: 5px
}

a.tag:hover {
    color: #FFFFFF;
    background-color: #007bff;
    text-decoration: none;
}

.archive {
    margin-top: -1em;
    margin-bottom: 2.5em;
}

.archive-tag, a.archive-tag {
    font-size: 13px;
}

.subscribe {
    width: 100%;
    text-align: center
}

.subscribe-container {
    border-radius: 8px;
    background-color: #e5e8eb;
    padding: 18px 10px 10px
}

.subscribe h4, .subscribe p {
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 0;
    text-align: center
}

.subscribe h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600
}

.PageNavigation {
    font-size: 14px;
    display: block;
    width: auto;
    overflow: hidden
}

.PageNavigation a {
    display: block;
    width: 48%;
    float: left;
    margin: 1em 0
}

.PageNavigation .next {
    text-align: right
}

@media screen and (max-width: 768px) {
    .footer {
        max-width: 100%;
        padding-right: 0;
        padding-left: 0
    }

    .footer-col {
        float: none;
        width: -webkit-calc(100% - (10px / 2));
        width: calc(100% - (10px / 2))
    }
}

.footer {
    max-width: 100%;
    margin: auto;
    display: block;
    padding-top: 12px;
    color: #777;
    border-top: 1px solid #e5e5e5
}

.copyright, .footer a, .footer p {
    font-family: 'Raleway', Helvetica, sans-serif;
    font-size: 12px
}

.footer a, .footer p {
    margin-bottom: 15px;
    color: #777
}

.copyright {
    text-align: center;
    padding: 0
}

.contact-list {
    list-style: none;
    padding: 0
}

.footer-col-wrapper {
    font-size: 15px;
    color: #828282
}

.footer-col, .icon {
    display: inline-block
}

.footer-col {
    float: left;
    padding-left: 5px
}

.icon {
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: .2em;
    filter: invert(57%) sepia(8%) saturate(11%) hue-rotate(73deg) brightness(88%) contrast(94%)
}

.icon-search {
    height: 14px !important;
    margin-bottom: 4px;
    margin-left: 2px;
}

.header {
    padding-left: 15px;
    padding-right: 15px;
    border-bottom: 1px solid #e5e5e5
}

.header a {
    color: #999
}

.header a:hover {
    color: #000
}

.header a.active {
    color: #000;
}

@media (min-width: 750px) {
    .container {
        max-width: 750px
    }
}

.about-container {
    margin: 10px 0
}

.about-lead {
    font-size: 1.2em;
    line-height: 1.5em
}

.about-container p {
    margin-bottom: 18px
}

@media screen and (min-width: 768px) {
    .about-container, .footer {
        padding-left: 0;
        padding-right: 0
    }

    .header {
        margin-bottom: 30px
    }
}

.MathJax_Display {
    margin-bottom: 30px !important;
}

.MathJax, .element.style {
    left: -10%;
}

.math {
    font-size: 12px;
}

div.formkit-slide-in {
    position: fixed;
    bottom: 0;
    right: 40px;
    min-width: 300px;
    width: 80vw;
    max-width: 300px;
    padding-bottom: 40px;
    transform: translateY(100%);
    transition: transform 400ms ease-in-out;
}

.formkit-close {
    width: 0 !important;
}

.formkit-header {
    font-size: 22px !important;
    margin-top: -10px !important;
    margin-bottom: -10px !important
}

.formkit-header h1 {
    line-height: 1.3em
}

.formkit-subheader p {
    margin-bottom: -.5em
}

.centered-iframe {
    margin: auto;
    display: block;
    top: 50%;
    left: 50%;
}

iframe {
    max-width: 100% !important;
}

.cp-listing {
    margin-bottom: 2em;
}

.calendly-inline-widget {
    margin-top: -1em;
}

.start-here li {
    margin-left: -1.25em;
    margin-bottom: 0.75em;
}

.start-here-desc {
    font-family: 'Raleway', Helvetica, sans-serif;
    font-size: 0.9em;
    color: #8c8c8c;
    font-style: italic;
    margin-top: -0.5em;
    margin-bottom: 1em;
}

.start-here h3 {
    margin-top: -1em;
}

.github-button {
    vertical-align: text-bottom !important;
}

.utterances {
}