body {
    background-color: #fff;
}

.top-bar-article {
    margin-bottom: 60px;
}

    .top-bar-article .section {
        top: 24px;
    }

        .top-bar-article .section .date, .top-bar-article .section .cat {
            color: #fff;
        }

.article {
    background-color: #fff;
    font-family: 'Lato', sans-serif;
}

    .article .authors {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 2rem;
        color: var(--colour);
    }

    .article .post-details h4 {
        width: 100%;
        margin-bottom: .7rem;
        font-size: 1rem;
    }

    .article a:not(.btn) {
        color: var(--colour);
        font-weight: 700;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .article a:hover {
            color: #003c4d;
        }

    .article h1 {
        font-size: 30px;
        margin: 20px 0;
        color: #007589;
    }

    .article h2 {
        font-size: 26px;
        margin-bottom: 20px;
        color: #5E9DAB;
        color: #007589;
    }

    .article h3 {
        font-size: 22px;
        margin-bottom: 20px;
        color: #007589;
    }

    .article h4 {
        font-size: 20px;
        margin-bottom: 1rem;
        color: #007589;
    }

    .article h5 {
        display: none;
    }

    .article h6 {
        font-size: 16px;
        margin-bottom: 10px;
        color: #007589;
    }

    .article p {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .article .figure-table {
        color: var(--colour);
        font-weight: 700;
    }

    .article h4.abstract, .article h4.abstract p {
        color: #444444;
        margin-bottom: 20px;
        text-transform: unset;
        font-weight: 700;
        font-size: 18px;
        line-height: 1.2;
    }

    .article ul, .article ol {
        margin-bottom: 30px;
    }

        .article ul:not(.pages) li {
            list-style: none;
            margin-bottom: 16px;
            font-size: 16px;
            position: relative;
            padding-left: 25px;
            line-height: 1.2;
            color: #606060;
        }

            .article ul li:before {
                content: " ";
                display: block;
                position: absolute;
                left: 0;
                top: 5px;
                width: 0;
                height: 0;
                border-top: 6px solid transparent;
                border-bottom: 6px solid transparent;
                border-left: 10px solid #007589;
            }

            .article ul li:after {
                content: " ";
                display: block;
                position: absolute;
                left: 2px;
                top: 8px;
                width: 0;
                height: 0;
                border-top: 3px solid transparent;
                border-bottom: 3px solid transparent;
                border-left: 4px solid #fff
            }

        .article ol li {
            margin-bottom: 16px;
            font-size: 16px;
            position: relative;
            padding-left: 6px;
            line-height: 1.2;
            color: #606060;
        }

    .article blockquote {
        background: white;
        margin-bottom: 20px;
    }

        .article blockquote p {
            color: #00a795;
            text-align: center;
            font-style: normal;
            font-size: 20px;
            font-weight: 300;
            margin-bottom: 0;
        }

            .article blockquote p cite {
                font-size: 16px;
                font-weight: 400;
            }

    .article img {
        margin-bottom: 20px;
    }

    .article #container-wrap {
        position: relative;
        background: none;
    }

        .article #container-wrap .pages {
            height: auto;
        }

        .article #container-wrap .pages:after {
            height: auto;
        }

    .article #container-wrap .page {
        border: none;
    }

h4.side-heading {
    font-size: 16px;
}

.image-box {
    border: 1px solid #007589;
    padding: 20px;
    background: #fff;
    margin-bottom: 20px;
}

.box.image-box img {
    width: 100%;
    height: 100%;
}

.figure-box {
    position: relative;
    color: var(--colour);
    font-weight: 700;
}

    .figure-box .tooltip-text {
        font-size: 1em;
        visibility: hidden;
        max-width: 400px;
        min-width: 180px;
        background-color: #fff;
        color: var(--colour);
        text-align: center;
        border-radius: 6px;
        border: 1px solid #007589;
        padding: 10px;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        opacity: 0;
        transition: .3s;
        transform: translate3d(0px, 20px, 0px);
    }

        .figure-box .tooltip-text a {
            font-size: 14px;
            color: #007589;
            font-weight: 700;
            line-height: 1.1;
            display: block;
        }


            .figure-box .tooltip-text a img {
                width: 200px;
                margin-bottom: 10px;
            }

        .figure-box .tooltip-text span {
            font-size: 18px;
            color: #007589;
            font-weight: 400;
            line-height: 1.1;
        }

            .figure-box .tooltip-text span.desc {
                display: none;
                font-size: 14px;
                color: #606060;
            }

        .figure-box .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #007589 transparent transparent transparent;
        }

    .figure-box:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
        transform: translate3d(-50%, 0px, 0px);
        color: #007589;
    }

.reference {
    position: relative;
    color: var(--colour);
    font-weight: 700;
}

.article-tooltip {
    font-size: 10px;
    visibility: hidden;
    max-width: 400px;
    min-width: 180px;
    background-color: #fff;
    color: var(--colour);
    text-align: center;
    border-radius: 6px;
    border: 1px solid #007589;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    opacity: 0;
    transition: .3s;
    transform: translate3d(0px, 20px, 0px);
}

.reference:hover .article-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translate3d(-50%, 0px, 0px);
    color: var(--colour);
}

.article span.green {
    color: inherit;
    background: transparent;
}

.article h1.green,
.article h2.green,
.article h3.green,
.article h4.green,
.article h5.green,
.article h6.green {
    color: #007589;
    background: transparent;
}

.article h1.red,
.article h2.red,
.article h3.red,
.article h4.red,
.article h5.red,
.article h6.red {
    color: #007589;
    background: transparent;
}

.article h2.green, .article h2.red {
    color: #5E9DAB;
}

.article .wp-caption {
    border: 1px solid #007589;
    padding: 20px;
    background: #fff;
    margin: 0 20px 20px 20px;
    display: inline;
}

.article p.wp-caption-text {
    font-size: 16px;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #007589;
}

    .article p.wp-caption-text strong {
        font-weight: 400;
    }

img.alignleft, img.alignright {
    width: auto;
    max-width: 96%;
    margin: 20px;
    height: auto;
}

.article span.red {
    color: var(--article-highlight);
    font-weight: 700;
}

.size-full, .size-medium, .size-headshot {
    width: auto;
    margin: 20px;
    max-width: 100%;
}

.abstract .wp-block-image {
    float: left;
    max-width: 100%;
}

    .abstract .wp-block-image > img {
        width: auto;
        margin: 20px;
        max-width: 100%;
    }

table {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.2;
}

    table th {
        background-color: #003b4c;
        padding: .4em;
        color: #fff;
    }

    table td {
        padding: .4em;
        min-width: 8%;
        overflow-wrap: break-word;
        overflow: auto;
    }

        table td.break-all {
            word-break: break-all;
        }

    table caption {
        display: none;
    }

a[rel~=license] > img {
    width: auto;
}

.btn-cnt {
    margin: 20px 0;
}

.article-nav {
    padding: 20px;
    background: #f2f2f2;
    margin-bottom: 20px;
}

    .article-nav .side-heading {
        text-transform: uppercase;
    }

    .article-nav ul {
        margin: 0;
    }

    .article-nav li {
        padding: 0;
        color: #007589;
        margin-bottom: 0;
    }

    .article-nav .nav-link {
        color: #007589;
        padding: 0;
    }

    .article-nav li:before {
        display: none;
    }

/* Article content tables */
.article table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    border: none;
    outline: 0;
}

    .article table tr:nth-child(odd) {
        background: whitesmoke;
    }

    .article table th,
    .fr-view table th {
        background-color: #003b4c;
        padding: 10px;
        color: #fff;
        border: none;
    }

    .article table td,
    .article table th,
    .fr-view table td,
    .fr-view table th {
        padding: .4em;
        border: 1px solid #eee;
        font-size: 14px;
    }

    .article table td,
    .fr-view table td {
        vertical-align: top;
    }

        .article table td > p {
            font-weight: 400;
            color: #606060;
            font-size: 14px;
            margin-bottom: 0;
        }

.article .tabletabletitle .figure-table,
.article .tablecolumnhead .figure-table {
    color: #fff !important;
}

.tabletitle {
    background-color: #003b4c !important;
    padding: .4em;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 14px;
}

.tabletitle strong {
    color: #fff;
}

    .tabletitle p,
    .article .tabletitle p {
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        margin: 0;
        line-height: 1.1;
    }

.tablecolumnhead {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    background-color: #007589 !important;
}

    .tablecolumnhead p,
    .article .tablecolumnhead p {
        font-size: 14px;
        color: #fff;
        font-weight: 700;
        margin: 0;
        line-height: 1.1;
    }

.article .tabletabletitle .figure-table,
.article .tablecolumnhead .figure-table {
    color: #fff !important;
}

tfoot, tfoot th,
.article table tfoot th {
    font-size: 11px !important;
    line-height: 1.1 !important;
    background: transparent !important;
    color: #212529;
    font-weight: 400;
}

.article table tfoot tr {
    background: transparent !important;
}

.tablefootnote {
    font-size: 11px !important;
    line-height: 1.1;
}

    .tablefootnote p,
    .article .tablefootnote p {
        font-size: 11px !important;
        margin: 0;
        line-height: 1.1 !important;
    }

.tableborderredlr {
    border-left: 1px solid #FF4337 !important;
    border-right: 1px solid #FF4337 !important;
}

.article table td.tableborderredlr,
.article table th.tableborderredlr,
.fr-element table td.tableborderredlr,
.fr-element table th.tableborderredlr {
    border-left: 1px solid #FF4337 !important;
    border-right: 1px solid #FF4337 !important;
}

.tableborderredtop {
    border-top: 1px solid #FF4337 !important;
}

.article table td.tableborderredtop,
.article table th.tableborderredtop,
.fr-element table td.tableborderredtop,
.fr-element table th.tableborderredtop {
    border-top: 1px solid #FF4337 !important;
}

.tableborderredbottom {
    border-bottom: 1px solid #FF4337 !important;
}

.article table td.tableborderredbottom,
.article table th.tableborderredbottom,
.fr-element table td.tableborderredbottom,
.fr-element table th.tableborderredbottom {
    border-bottom: 1px solid #FF4337 !important;
}

.tableborderdashedred {
    border-top: 1px dashed #FF4337 !important;
}

.article table td.tableborderdashedred,
.article table th.tableborderdashedred,
.fr-element table td.tableborderdashedred,
.fr-element table th.tableborderdashedred {
    border-top: 1px dashed #FF4337 !important;
}

.tablenoborder {
    border: none !important;
}

.article table td.tablenoborder,
.article table th.tablenoborder,
.fr-element table td.tablenoborder,
.fr-element table th.tablenoborder {
    border: none !important;
}

.article table tr:last-child td.tablenoborder {
    border: none !important;
}

.article table tr:last-child td.fr-selected-cell {
    border: 1px double #0098f7 !important;
}

/* Table of contents */
.tocify {
    position: static;
    width: 100%;
    max-height: 100%;
    border: none;
    border-radius: 0;
}

.tocify-header {
    text-indent: 0;
}

.tocify .nav-list .tocify-item {
    width: 100%;
    margin-bottom: 12px;
}

    .tocify .nav-list .tocify-item a {
        padding: 0;
        color: #007589;
        font-size: 14px;
    }

.tocify-subheader {
    text-indent: initial;
}

.tocify .tocify-subheader {
    text-indent: initial;
    margin-left: 20px;
}

    .tocify .tocify-subheader .tocify-item a {
        font-size: 12px;
        font-weight: 400;
    }

.tocify-extend-page {
    display: none;
}

.interview-question, .article p.interview-question {
    font-family: 'Lato';
    color: #007589;
    font-weight: 400;
    line-height: 1.1;
    font-size: 22px;
    margin-bottom: 20px;
}

.interviewee-0 span {
    color: var(--interviewee-0);
}

.interviewee-1 span {
    color: var(--interviewee-1);
}

.interviewee-2 span {
    color: var(--interviewee-2);
}

.interviewee-3 span {
    color: var(--interviewee-3);
}

.interviewee-4 span {
    color: var(--interviewee-4);
}

.interviewee-5 span {
    color: var(--interviewee-5);
}

.interviewee-6 span {
    color: var(--interviewee-6);
}

.interviewee-7 span {
    color: var(--interviewee-7);
}

#showForm {
    position: absolute;
    z-index: 1;
}
