.post-header>*,
.post>* {
    margin-left: 20px;
    margin-right: 20px
}

.post p {
    word-break: break-word
}

.post h1 .header-link,
.post h2 .header-link,
.post h3 .header-link,
.post h4 .header-link,
.post h5 .header-link,
.post h6 .header-link {
    display: none;
    padding: 0 15px
}

.post h1:hover .header-link,
.post h2:hover .header-link,
.post h3:hover .header-link,
.post h4:hover .header-link,
.post h5:hover .header-link,
.post h6:hover .header-link {
    display: inline-block
}

.post h1 .header-link i,
.post h2 .header-link i,
.post h3 .header-link i {
    font-size: 22px
}

.post h4 .header-link i {
    font-size: 20px
}

.post h5 .header-link i {
    font-size: 18px
}

.post h6 .header-link i {
    font-size: 16px
}

.post-meta__tags {
    font-size: 12px;
    padding: 0 5px
}

.post-meta__tags a {
    text-decoration: none
}

a.post-link,
.tags a,
.categories a {
    text-decoration: none
}

.game-container-error {
    display: none;
}

.quote-icon {
    height: 32px;
    width: 32px;
    display: inline-block;
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
}

.thumbnail {
    height: 200px;
    width: 300px;
    display: inline-block;
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
}

blockquote a {
    font-style: normal;
    text-decoration: none;
    line-height: 80px;
}

blockquote a:hover {
    text-decoration: underline;
}

.code-block {
    display: flex;
    align-items: start;
    align-content: flex-start;
}

pre.src {
    position: sticky;
    overflow: hidden;
    padding-top: 1.2em;
}

.copy-btn {
    float: right;
    margin-left: -55px;
    margin-top: -12px;
    background: #2cb290 url("/static/imgs/icons/copy-small.png") no-repeat center left;
    color: white;
    padding: 4px 4px 4px 18px;
    border-radius: 6px;
    border-style: none;
    font-size: 14px;
    font-family: monospace;
    font-style: inherit;
    text-align-last: right;
    -ms-text-align-last: right;
    transition-duration: 0.2s;
}

.copy-btn:hover {
    background-color: #259679;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.copy-icon {
    height: 16px;
    width: 16px;
    display: inline-block;
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #2cb290;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@media all and (min-width: 1300px) {
    .post-header>*,
    .post>* {
        margin-left: 80px;
        margin-right: 80px;
        max-width: 800px
    }

    .post hr {
        display: block;
        width: 30%;
        margin: 50px 80px;
        border-top: 1px solid #dddddd
    }
}

@media all and (max-width: 1100px) {
    .game-container {
        display: none !important;
    }

    .game-container-error {
        display: block;
    }

    .thumbnail {
        max-height: 50px;
        max-width: 100px;
    }
}

@media all and (max-width: 800px) {
    .copy-icon {
        height: 8px;
        width: 8px;
    }

    .copy-btn{
        font-size: 10px;
        margin-left: -45px;
        margin-top: -8px;
    } 
}