body,
html {
    height: 100%
}

body {
    /*background-image: url('../img/bebop_400.jpg');*/
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}

/*
loading screen
*/
.screen {
    height: 800px;
    background: transparent;
    display: flex;
    align-items: center;
}

.hide {
    display: none;
    opacity: 0;
    z-index: -1;
    transition: all 1s ease-in-out;
}

.loader {
    width: 100%;
    height: 15px;
    text-align: center;
}

.dot {
    position: relative;
    width: 15px;
    height: 15px;
    margin: 0 2px;
    display: inline-block;
}

.dot:first-child:before {
    animation-delay: 0ms;
}

.dot:first-child:after {
    animation-delay: 0ms;
}

.dot:last-child:before {
    animation-delay: 200ms;
}

.dot:last-child:after {
    animation-delay: 200ms;
}

.dot:before {
    content: "";
    position: absolute;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: blue;
    animation-name: dotHover;
    animation-duration: 900ms;
    animation-timing-function: cubic-bezier(.82, 0, .26, 1);
    animation-iteration-count: infinite;
    animation-delay: 100ms;
    background: #5bbb8d;
    border-radius: 100%;
}

.dot:after {
    content: "";
    position: absolute;
    z-index: -1;
    background: black;
    box-shadow: 0px 0px 1px black;
    opacity: .20;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -2px;
    border-radius: 100%;
    animation-name: dotShadow;
    animation-duration: 900ms;
    animation-timing-function: cubic-bezier(.82, 0, .26, 1);
    animation-iteration-count: infinite;
    animation-delay: 100ms;
}

@keyframes dotShadow {
    0% {
        transform: scaleX(1);
    }

    50% {
        opacity: 0;
        transform: scaleX(.6);
    }

    100% {
        transform: scaleX(1);
    }
}

@keyframes dotHover {
    0% {
        top: 0px;
    }

    50% {
        top: -50px;
        transform: scale(1.1);
    }

    100% {
        top: 0;
    }
}

.tag {
    background: grey;
    border-radius: 3px 3px 3px 3px;
    color: whitesmoke;
    display: inline-block;
    height: 25px;
    line-height: 26px;
    padding: 0 5px 0 5px;
    position: relative;
    margin: -4px -10px 0px 4px;
    text-decoration: none;
    float: right;
    font-weight: bolder;
    font-size: 11px;
    /* -webkit-transition: color 0.2s; */
}

.blue {
    background: cornflowerblue;
}

.orange {
    background: #E56B31
        /*rgb(255, 166, 0);*/
}

.green {
    background: rgb(139, 211, 139);
}

.spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    left: 47%;
    top: 40px;
    margin-bottom: 30%;
    /* color:rgb(139, 211, 139) !important; */
}

.spinner div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #3b9b6d80;
    animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.spinner div:nth-child(1) {
    left: 8px;
    animation-delay: -0.84s;
}

.spinner div:nth-child(2) {
    left: 32px;
    animation-delay: -0.50s;
}

.spinner div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
}

@keyframes spinner {
    0% {
        top: 8px;
        height: 64px;
    }

    50%, 100% {
        top: 24px;
        height: 32px;
    }
}


#particles-js canvas {
    display: block;
    vertical-align: bottom;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: opacity .8s ease, -webkit-transform 1.4s ease;
    transition: opacity .8s ease, transform 1.4s ease
}

#particles-js {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -10;
    top: 0;
    left: 0
}

.nav {
    float: right;
    color: #424242;
    position: relative;
    /* line-height: 130px; */
    top: 45px;
    background-color: #fafafa;
    border: none;
    margin: 10px;
    /* margin: 4px 2px; */
}

.nav:hover {
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    background-color: #3b9b6d;
    cursor: pointer;
    border-radius: 3%;
}

.nav-active {
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    background-color: #3b9b6d;
    cursor: pointer;
    border-radius: 3%;
}

.btn-box {
    margin-top: 3%;
    margin-bottom: 3%;
}

.btn-outline {
    color: #3b9b6d !important;
    border: 1px solid #3b9b6d !important;
}

.btn-outline:hover {
    background-color: #3b9b6d;
    color: white !important;
    border: 1px solid #3b9b6d !important;
}

.filter-green {
    margin-bottom: 11px;
    width: 29px;
    float: left;
    padding-top: 44px;
    margin-right: 6px;
}

.filter-green:hover {
    /* filter: invert(53%) sepia(60%) saturate(387%) hue-rotate(99deg) brightness(86%) contrast(90%); */
    filter: invert(55%) sepia(12%) saturate(1885%) hue-rotate(99deg) brightness(92%) contrast(86%);
    /* background-color: #3b9b6d; */
    cursor: pointer;
}

/* .img-loading { */
/* border: 1px solid white; */
/* width: 100%; */
/* height: 100%; */
/* background-color: #babbbc; */
/* } */

/* .container.loading .img-loading, .container.loading .stripe { */
/* animation: hintloading 2s ease-in-out 0s infinite reverse; */
/* -webkit-animation: hintloading 2s ease-in-out 0s infinite reverse; */
/* } */

@keyframes hintloading {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

@-webkit-keyframes hintloading {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}



.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.form-control, .btn {
    border: 0;
    border-radius: 2px;
}

button, select {
    text-transform: none;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    border-radius: 0;
}

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

/***
* Modifications from original css
*/

/* Style the Image Used to Trigger the Modal */

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}

/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

/* Modal Content (Image) */

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */

.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

.site-title {
    font-size: 26px;
    line-height: 130px;
    letter-spacing: -1px;
    margin-bottom: 0;
    float: left;
}

.link {
    line-height: 115px !important;
    letter-spacing: -1px;
    margin-right: 15px;
    margin-bottom: 0;
    float: left;
}

.box {
    /* border: 0.5px solid gray; */
    border-radius: .8em;
    background-color: white;
    box-shadow: rgb(234, 235, 236) 0px 2px 4px 0px;
    margin: 1.5%;
    padding: 1em 1.5em;
}

.box:hover {
    /* font-size: 140%; */
    /* width: 120%; */
    transition: 1200ms ease-in-out;
    box-shadow: 1.2px 1.2px 1.2px 1.2px lightgrey
        /* border: 2px solid #3b9b6d; */
}

/**
 * Reset some basic elements
 */

body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, hr, dl, dd, ol, ul, figure {
    margin: 0;
    padding: 0;
}

/**
 * Basic styling
 */

body {
    /* font: 400 14px/1.1 "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; */
    font-family: "Open Sans", "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #fafafa;
    -webkit-text-size-adjust: 100%;
    -webkit-font-feature-settings: "kern"1;
    -moz-font-feature-settings: "kern"1;
    -o-font-feature-settings: "kern"1;
    font-feature-settings: "kern"1;
    font-kerning: normal;
    /*transform: scale(1.15);*/
    /*transform-origin:  60% 0px;*/
    /*margin-top: 20px;*/
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */

h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, dl, figure, .highlight {
    /*margin-bottom: 15px;*/
}

/**
 * Images
 */

img {
    max-width: 100%;
    vertical-align: middle;
}

/**
 * Figures
 */

figure>img {
    display: block;
}

figcaption {
    font-size: 15.75px;
}

/**
 * Lists
 */

ul, ol {
    margin-left: 30px;
}

li>ul, li>ol {
    margin-bottom: 0;
}

/**
 * Headings
 */

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

/***************************
   Override _sass/_base.css
 ***************************/

a {
    color: #2a7ae2;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: #333;
}

/*****************************
   Override _sass/_layout.css
 *****************************/

/**
 * Blockquotes
 */

blockquote {
    color: #828282;
    border-left: 4px solid #e8e8e8;
    padding-left: 15px;
    font-size: 18px;
    letter-spacing: -1px;
    font-style: italic;
}

blockquote> :last-child {
    margin-bottom: 0;
}

/**
 * Code formatting
 */

pre, code {
    font-size: 15px;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    background-color: #eef;
}

code {
    padding: 1px 5px;
}

pre {
    padding: 8px 12px;
    overflow-x: auto;
}

pre>code {
    border: 0;
    padding-right: 0;
    padding-left: 0;
}

/**
 * Wrapper
 */

.wrapper {
    max-width: -webkit-calc(800px - (30px * 2));
    max-width: calc(800px - (30px * 2));
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
}

@media screen and (max-width: 1000px) {
    .wrapper {
        max-width: -webkit-calc(1000px - (30px));
        max-width: calc(1000px - (30px));
        padding-right: 15px;
        padding-left: 15px;
        margin-right: 3%;
        margin-left: 3%;
        font-size: 10px;
    }
}

/**
 * Clearfix
 */

.wrapper:after, .footer-col-wrapper:after {
    content: "";
    display: table;
    clear: both;
}

/**
 * Icons
 */

.icon>svg {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.icon>svg path {
    fill: #828282;
}

/**
 * Site header
 */

.site-header {
    border-top: 5px solid #424242;
    border-bottom: 1px solid #e8e8e8;
    min-height: 56px;
    position: relative;
}

.site-title {
    font-size: 26px;
    /* line-height: 56px; */
    letter-spacing: -1px;
    margin-bottom: 0;
    float: left;
}

.site-nav {
    float: right;
    /* line-height: 9.7 !important; */
}

.site-nav .menu-icon {
    display: none;
}

.site-nav .page-link {
    color: #333;
    font-size: large;
    /* line-height: 1.5; */
}

.page-link:active {
    border-bottom: 3px solid #3b9b6d;
    padding-bottom: 4px;
    -webkit-transition: border-bottom 0.025s ease;
    -moz-transition: border-bottom 0.025s ease;
    -o-transition: border-bottom 0.025s ease;
    transition: border-bottom 0.025s ease;
}

.active {
    border-bottom: 3px solid #3b9b6d;
    padding-bottom: 5px;
}

.site-nav .page-link:not(:first-child) {
    margin-left: 20px;
}

@media screen and (max-width: 600px) {
    .site-nav {
        position: absolute;
        top: 9px;
        right: 30px;
        background-color: #fdfdfd;
        border: 1px solid #e8e8e8;
        border-radius: 5px;
        text-align: right;
    }

    .site-nav .menu-icon {
        display: block;
        float: right;
        width: 36px;
        height: 26px;
        line-height: 0;
        padding-top: 10px;
        text-align: center;
    }

    .site-nav .menu-icon>svg {
        width: 18px;
        height: 15px;
    }

    .site-nav .menu-icon>svg path {
        fill: #424242;
    }

    .site-nav .trigger {
        clear: both;
        display: none;
    }

    .site-nav:hover .trigger {
        display: block;
        padding-bottom: 5px;
    }

    .site-nav .page-link {
        display: block;
        padding: 5px 10px;
    }
}

/**
 * Site footer
 */

.site-footer {
    border-top: 1px solid #e8e8e8;
    padding: 30px 0;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-list, .social-media-list {
    list-style: none;
    margin-left: 0;
}

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

.footer-col {
    float: left;
    margin-bottom: 15px;
    padding-left: 15px;
}

.footer-col-1 {
    width: -webkit-calc(35% - (30px / 2));
    width: calc(35% - (30px / 2));
}

.footer-col-2 {
    width: -webkit-calc(20% - (30px / 2));
    width: calc(20% - (30px / 2));
}

.footer-col-3 {
    width: -webkit-calc(45% - (30px / 2));
    width: calc(45% - (30px / 2));
}

@media screen and (max-width: 800px) {
    .footer-col-1, .footer-col-2 {
        width: -webkit-calc(50% - (30px / 2));
        width: calc(50% - (30px / 2));
    }

    .footer-col-3 {
        width: -webkit-calc(100% - (30px / 2));
        width: calc(100% - (30px / 2));
    }
}

@media screen and (max-width: 600px) {
    .footer-col {
        float: none;
        width: -webkit-calc(100% - (30px / 2));
        width: calc(100% - (30px / 2));
    }
}

/**
 * Page content
 */

.page-content {
    padding: 30px 0;
}

.page-heading {
    font-size: 20px;
}

.post-list {
    margin-left: 0;
    list-style: none;
}

.post-list>li {
    margin-bottom: 30px;
}

.post-meta {
    font-size: 15.75px;
    color: #828282;
}

.post-link {
    /*    display: block;*/
    /*    font-size: 24px;*/
}

/**
 * Posts
 */

.post-header {
    margin-bottom: 30px;
}

/*
.post-title {
    font-size: 42px;
    letter-spacing: -1px;
    line-height: 1;

    @include media-query($on-laptop) {
        font-size: 36px;
    }
}
*/

.post-content {
    margin-bottom: 30px;
}

.post-content h2 {
    /*        font-size: 32px;*/
}

@media screen and (max-width: 800px) {
    .post-content h2 {
        font-size: 28px;
    }
}

.post-content h3 {
    /*        font-size: 26px;*/
}

@media screen and (max-width: 800px) {
    .post-content h3 {
        font-size: 22px;
    }
}

.post-content h4 {
    /*        font-size: 20px;*/
    padding-top: 2em;
}

@media screen and (max-width: 800px) {
    .post-content h4 {
        font-size: 18px;
    }
}

/**
 * Syntax highlighting styles
 */

.highlight {
    background: #fff;
}

.highlighter-rouge .highlight {
    background: #eef;
}

.highlight .c {
    color: #998;
    font-style: italic;
}

.highlight .err {
    color: #a61717;
    background-color: #e3d2d2;
}

.highlight .k {
    font-weight: bold;
}

.highlight .o {
    font-weight: bold;
}

.highlight .cm {
    color: #998;
    font-style: italic;
}

.highlight .cp {
    color: #999;
    font-weight: bold;
}

.highlight .c1 {
    color: #998;
    font-style: italic;
}

.highlight .cs {
    color: #999;
    font-weight: bold;
    font-style: italic;
}

.highlight .gd {
    color: #000;
    background-color: #fdd;
}

.highlight .gd .x {
    color: #000;
    background-color: #faa;
}

.highlight .ge {
    font-style: italic;
}

.highlight .gr {
    color: #a00;
}

.highlight .gh {
    color: #999;
}

.highlight .gi {
    color: #000;
    background-color: #dfd;
}

.highlight .gi .x {
    color: #000;
    background-color: #afa;
}

.highlight .go {
    color: #888;
}

.highlight .gp {
    color: #555;
}

.highlight .gs {
    font-weight: bold;
}

.highlight .gu {
    color: #aaa;
}

.highlight .gt {
    color: #a00;
}

.highlight .kc {
    font-weight: bold;
}

.highlight .kd {
    font-weight: bold;
}

.highlight .kp {
    font-weight: bold;
}

.highlight .kr {
    font-weight: bold;
}

.highlight .kt {
    color: #458;
    font-weight: bold;
}

.highlight .m {
    color: #099;
}

.highlight .s {
    color: #d14;
}

.highlight .na {
    color: #008080;
}

.highlight .nb {
    color: #0086B3;
}

.highlight .nc {
    color: #458;
    font-weight: bold;
}

.highlight .no {
    color: #008080;
}

.highlight .ni {
    color: #800080;
}

.highlight .ne {
    color: #900;
    font-weight: bold;
}

.highlight .nf {
    color: #900;
    font-weight: bold;
}

.highlight .nn {
    color: #555;
}

.highlight .nt {
    color: #000080;
}

.highlight .nv {
    color: #008080;
}

.highlight .ow {
    font-weight: bold;
}

.highlight .w {
    color: #bbb;
}

.highlight .mf {
    color: #099;
}

.highlight .mh {
    color: #099;
}

.highlight .mi {
    color: #099;
}

.highlight .mo {
    color: #099;
}

.highlight .sb {
    color: #d14;
}

.highlight .sc {
    color: #d14;
}

.highlight .sd {
    color: #d14;
}

.highlight .s2 {
    color: #d14;
}

.highlight .se {
    color: #d14;
}

.highlight .sh {
    color: #d14;
}

.highlight .si {
    color: #d14;
}

.highlight .sx {
    color: #d14;
}

.highlight .sr {
    color: #009926;
}

.highlight .s1 {
    color: #d14;
}

.highlight .ss {
    color: #990073;
}

.highlight .bp {
    color: #999;
}

.highlight .vc {
    color: #008080;
}

.highlight .vg {
    color: #008080;
}

.highlight .vi {
    color: #008080;
}

.highlight .il {
    color: #099;
}

/**
 * Links
 */

a {
    color: #3b9b6d;
    text-decoration: none;
}

/**
 * Site navigation
 */

.site-nav {
    line-height: 130px !important;
}

.active:not(:first-child) {
    margin-left: 20px;
}

/**
 * Page content
 */

h1 {
    font-size: 1.50em;
    font-weight: 500;
    /*padding-top: 1.0em;*/
}

h2 {
    font-size: 1.25em;
    font-weight: 500;
    /*padding-top: 1.0em;*/
}

h3 {
    font-size: 1.10em;
    font-weight: 500;
    /*padding-top: 0.5em;*/
}

h4 {
    font-size: 1.00em;
    font-weight: 500;
    padding-top: 0.5em;
}

h1 {
    color: #3b9b6d;
    font-weight: 700;
    /* font-variant: small-caps; */
    /*border-bottom: 1.5px dotted #3b9b6d;*/
    width: 100%;
    /*letter-spacing: +0.025em;*/
    /*padding-left: +2.5%;
    margin-left: -2.5%;*/
}

h1.border-bottom {
    color: #3b9b6d;
    font-weight: 700;
    /* font-variant: small-caps; */
    /* border-bottom: 2.5px dotted #3b9b6d; */
    width: 100%;
    /* padding-top: 0.5em; */
    margin-bottom: .8em;
    /*padding-bottom: 1.5em;*/
    /*letter-spacing: +0.025em;*/
    /*padding-left: +2.5%;
    margin-left: -2.5%;*/
}

strong {
    font-weight: 400;
}

.site-header strong {
    color: #3b9b6d;
    font-weight: 600;
}

.site-header {
    border: none;
    min-height: 150px;
}

.site-title {
    line-height: 130px;
    /*    margin-left: -50px;*/
}

a.site-title:hover {
    text-decoration: none;
    color: #3b9b6d;
}

a.site-title {
    color: #333;
}

.site-nav a {
    font-size: 14px;
    color: #ff4a4a;
    font-weight: 400;
}

.site-nav a:hover {
    border-bottom: 3px solid #3b9b6d;
    padding-bottom: 5px;
    -webkit-transition: border-bottom 0.1s ease;
    -moz-transition: border-bottom 0.1s ease;
    -o-transition: border-bottom 0.1s ease;
    transition: border-bottom 0.1s ease;
}

.site-nav a:active {
    border-bottom: 3px solid #3b9b6d;
    padding-bottom: 5px;
}

pre, code {
    border: none;
    color: #555555;
    /*  background-color: #f5f5f5;*/
}

.post-tag, .post-tag a {
    font-size: 12px;
    color: #fff;
    background-color: #ff4a4a;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    line-height: 1.0;
    border-radius: 3px;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    position: relative;
    margin: 0 0 10px 0;
    padding: 0 10px 0 12px;
    background: #ff4a4a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.footer-col-wrapper {
    font-size: 12px;
    text-align: center;
    border-top: 1px solid #e8e8e8;
    padding: 10px 0;
}

.site-footer {
    border: none;
    padding: 0;
}

.artwork-portrait {
    border: 1px solid #828282;
    margin: 2px 0px;
    padding: 3px;
    height: 220px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.artwork-landscape {
    border: 1px solid #828282;
    margin: 2px 0px;
    padding: 3px;
    height: 120px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
}

img.small {
    width: 25%;
}

img.medium {
    width: 33%;
}

img.half {
    width: 45%;
}

img.large {
    width: 66%;
}

img.full {
    width: 100%;
}

img.right {
    float: right;
    margin-left: 10px;
}

img.left {
    float: left;
    margin-right: 10px;
}

img.border {
    padding: 5px;
    border: solid 1px #efefef;
}

img.round {
    border-radius: 5px;
}

.altmetric-embed {
    float: right;
    margin-left: 10px;
}

/* old style */

/*body {*/

/*font-family: 'Roboto', serif;*/

/*color: #263238;*/

/*background-color: #eceff1;*/

/*}*/

/*h1, h2, h3, h4, h5, h6 { font-weight: 300 }*/

/*p { font-size: 18px }*/

/*a, a:active, a:hover, a:active, a:focus, a:visited { text-decoration: none }*/

/*a { color: #3f51b5 }*/

/*a:hover { color: #5c6bc0 }*/

/*a:active, a:focus { color: #3949ab }*/

/*a:visited { color: #9c27b0 }*/

.btn-primary {
    background-color: #3b9b6d
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #000000;
    color: white
}

.btn-primary:focus, .btn-primary:active:focus {
    outline: 0 none
}

a.btn-primary:visited {
    color: #fff
}

::selection {
    background: rgba(103, 58, 183, 0.2)
}

::-moz-selection {
    background: rgba(103, 58, 183, 0.2)
}

.page-header {
    margin-top: 0;
    /*padding: 40px;*/
    color: #fff;
}

.page-header h1 {
    font-size: 30pt
}

.user-bar {
    padding: 16px 40px 0 40px;
    color: #fff;
    background-color: #512da8;
}

.user {
    float: left
}

.user .material-icons {
    margin-right: 8px;
    font-size: 30px;
    vertical-align: top;
}

.logout {
    float: right
}

.logout a {
    color: #fff
}

.logout * {
    font-size: 16px
}

.logout .material-icons {
    margin-left: 8px;
    font-size: 28px;
    vertical-align: top;
}

.btn-submit {
    float: right;
    margin-top: 10px;
    width: auto !important;
}

.form-title {
    margin: 64px 20px 0 20px
}

.post-form {
    margin: 32px 20px 128px 20px
}

.post-form textarea, .post-form input {
    width: 100%;
    margin-bottom: 20px;
}

.post-form .errorlist {
    list-style-type: none;
    padding-left: 0;
    color: #d32f2f;
}

.error-text {
    font-size: 16px;
    color: #d32f2f;
}

.top-menu {
    float: right;
    margin-left: 16px;
    color: #fff;
}

.top-menu:hover, .top-menu:visited {
    color: #fff
}

.material-icons {
    color: #3b9b6d;
}

.top-menu .material-icons {
    font-size: 36px;
    display: block;
    padding-bottom: 8px;
}

.post .material-icons {
    display: block;
    padding-bottom: 8px;
}

.post-stat {
    color: #78909c;
    font-size: 16px;
}

.post-stat .material-icons {
    font-size: 22px;
    display: inline;
    vertical-align: top;
}

/*.post-stat[name="date"] { float: left }
.post-stat[name="comments"] { float: left }*/

.breadcrumb {
    padding-left: 0;
    padding-top: 32px;
    margin-bottom: -32px;
}

.breadcrumb-item.active {
    color: #607d8b
}


.post {
    margin: 30px 0;
    padding: 20px;
    border-radius: 1em;
    background-color: #fff;
    font-size: 70%;
}

.post:hover {
    margin: 30px 0;
    padding: 20px;
    border-radius: 1em;
    background-color: #FAFAFA;
    transition: linear 100ms;
    cursor: pointer;
}

.post-action {
    float: right;
    margin-left: 16px;
    font-size: 14px;
}

.comment {
    margin: 20px 0px 20px 10px;
    padding: 0 10px 0 20px;
    border-left: 3px solid #3b9b6d;
}

.comment p {
    font-size: 16px;
    padding: 0;
    margin: 2px auto;
}

.comment p[name="author"] {
    color: #3b9b6d
}

.login-box {
    margin: 48px auto;
    max-width: 330px;
    padding: 20px;
}

.form-control, .btn {
    border: 0;
    border-radius: 2px;
}

.centre {
    text-align: center
}

@media screen and (max-width: 620px) {
    .page-header, .user-bar {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding-left: 0px;
        padding-right: 0px;
    }

    .breadcrumb {
        padding-left: 20px;
    }

    .post {
        border-radius: 0
    }

    .comment {
        margin: 20px 0px 20px 0;
        padding: 0 0 0 10px;
    }
}