/* new default CSS */

/* <uniquifier>: Use a unique and descriptive class name */
/* <weight>: Use a value from 200 to 900 

.source-sans-3-font {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
*/

:root {
    --box-radius: 4px;
    --note-box-radius: 12px;
    --box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    --primary-blue: rgb(21, 52, 148);
    --accent-blue: rgb(50, 0, 200);
    --boxes-border: rgba(0, 0, 0, 0.075);

    --accent-light: rgba(21, 52, 148, .1);
    --code-background: rgba(217, 217, 217, 0.7);

    --accent-color-3: 150, 150, 150;
    --accent-color-4: 255, 255, 255;
    --font-size: calc(16px * var(--font-zoom));
    --font-size-monospace: calc(13px * var(--font-zoom));
    --font-size-anmerkungen: calc(15px * var(--font-zoom));
    --font-size-code: calc(11px * var(--font-zoom));
    --font-zoom: 1;
    --font-size-hero: 2.5rem;
    --font-size-technical-details: calc(11px * var(--font-zoom));
}

@media (min-width: 768px) {
    :root {
        --box-padding: 4rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --font-zoom: 1.1;
    }
}

@media (min-width: 1280px) {
    :root {
        --font-zoom: 1.2;
    }
}

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

html {
    box-sizing: border-box;
    scroll-behavior: smooth;

    background: rgba(1, 1, 1, 0.05);
/ / background-color: lightgrey;
}

body {
    font-size: var(--font-size);
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    min-height: 100vh;

    counter-reset: h1counter h2counter h3counter;

    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.content {
    padding: 0 1.5rem;

}

h1:before {
    content: counter(h1counter) ".  \0000a0";
    counter-increment: h1counter;
    counter-reset: h2counter;
}

h1 {
    font-size: var(--font-size-hero);
    font-weight: 400;
}

h2:before {
    content: counter(h1counter) "." counter(h2counter) ".\0000a0";
    counter-increment: h2counter;
    counter-reset: h3counter;
}

h2 {
    font-size: 1.5rem;
}

h1, h2 {
    margin: 2rem 0 0 0;
    line-height: 120%;
}


h3:before {
    content: counter(h1counter) "." counter(h2counter) "." counter(h3counter) ".\0000a0";
    counter-increment: h3counter;
}

p {
    padding-top: 0.2em;
    padding-bottom: 0.1em;
}

table {
    margin-top: 2em;
    margin-bottom: 2em;
}

table > thead {
    background-color: var(--accent-light);
}

table.changes-table {
    width: 80%;
}

@media (min-width: 1024px) {
    table.changes-table {
        width: 70%;
    }
}

@media (min-width: 1280px) {
    table.changes-table {
        width: 60%;
    }
}


table.changes-table tr td, th {
    text-align: left;
}

table.references tr td.content {
    text-align: left;
    width: 400px;
}

table.finanzamts {
    font-size: var(--font-size);
}

table.finanzamts tr td:first-child + td {
    text-align: left;
    width: 350px;
}

table.finanzamts caption {
    padding-bottom: 0.5em;
}

.code-table {
    font-size: var(--font-size);
    background-color: #cceaff;
}

.code-table tr td:first-child {
    text-align: left;
    width: 250px;
}

.code-table tr td:first-child + td + td {
    text-align: right;
}

.white-background {
    background-color: white;
}

.anmerkungen {
    border: 0;
    font-size: var(--font-size-monospace);
}

.anmerkungen tr {
    border: 0;
}

.anmerkungen tr td {
    border: 0;
}

.anmerkungen tr td {
    text-align: left;
}

.reduced-visibility {
    color: lightgray;
    text-align: center;
}

.reduced-visibility-header {
    color: darkgray;
}

.ipr {
    background-color: rgba(219, 112, 147, 0.075);
}

table {
    border-collapse: collapse;
}

table {
    border: 1px solid #bbc;
}

th, tr {
    border-bottom: 1px solid #ccd;
}

td {
    border-left: 1px solid #dde;
}

th {
    border-left: 1px solid #bbc;
}

tr {
    vertical-align: top;
}

td.description {
    width: 450pt;
    text-align: left;
}

th {
    padding: 2pt;
    font-weight: bold;
}

td {
    padding: 4pt;
    text-align: center;
}

.austrian-specification {
    font-family: monospace;
}

.xml-sample {
    font-family: monospace;
    background-color: #F2F2F2;
    font-size: var(--font-size-monospace);
}

/* logo */
.big-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-logo img {
    width: 300pt;
    padding-top: 2em;
    padding-bottom: 2em;
}

.logo span {
    text-indent: -1000rem;
}

/* image and title */
.media {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/banking-background.jpg");
}

.image {
    padding: 2em 25% 4em;
}

/*
.image {
    display: flex;
    align-items: center;
}

.image img {
    padding-top: 2em;
    padding-left: 20%;
    padding-right: 20%;
}
 */


.media .caption {
    color: white;
    position: absolute;
    width: 100%;
    padding: .5rem 1.5rem .2rem 1.5rem;
    bottom: 0;
    text-align: left;
    font-size: var(--font-size-hero);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

img {
    width: 100%;
}

/* links */
a, a:visited {
    color: var(--primary-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: var(--accent-blue);
}

/* Main Nav */
.mainNav {
    /*background-color: rgba(211, 211, 211, 1);*/
    background-color: rgba(255, 255, 255, .9);
    margin-bottom: 0;
    box-shadow: var(--box-shadow);
    display: flex;
    min-height: 4.5em;
    overflow-x: auto;
    padding: 0.5rem 1.5rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1;

    flex-direction: row;
    align-items: center;
}

@supports (backdrop-filter: blur()) {
    .mainNav {
        backdrop-filter: blur(6px);
        background-color: rgba(255, 255, 255, .9);
    }
}

.mainNav .logo {
    display: flex;
    height: 100%;
    align-items: center;
}


.mainNav .logo img {
    height: auto;
    width: 7.5rem;
    border-radius: var(--box-radius);
    /*background-color: darkgray;*/
    padding: 0.15em;
}

.logo span {
    margin: auto auto auto 1rem;
    width: auto;
    white-space: nowrap;
}

.mainNav .navItems {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style-type: none;
    margin: auto 1rem auto auto;
    padding: 0.25rem 0.75rem;
}

.mainNav .langItems {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    list-style-type: none;
    margin: auto 1rem auto auto;
    padding: 0.25rem 0.25rem;
}

.mainNav li {
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}


/*
.mainNav li + li {
    margin-left: 1.5rem;
}
*/

.mainNav .navItems li a {
    color: currentColor;
    text-decoration: none;
    border-radius: var(--box-radius);
    padding: .5em 1em;
}

.mainNav .langItems li a {
    color: currentColor;
    text-decoration: none;
    border-radius: var(--box-radius);
    padding: .5em 0.3em;
}

.mainNav .logo a {
    border-radius: var(--box-radius);
}

.mainNav li a:hover, .mainNav .logo a:hover {
    /*background: rgba(255, 255, 255, 0.9);*/
    background: var(--accent-light);
    color: currentColor;
}

/* code fragments */

.codeFragment {
    font-size: var(--font-size-code);
}


/* definitions */
dl {
    display: grid;
    grid-gap: 4px 16px;
    grid-template-columns: max-content;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0;
    grid-column-start: 2;
}

/* centered tables */
.centered-table {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* centered notes with additional padding left and right */
.centered-note {
    padding-left: 0.5em;
    padding-right: 0.5em;

    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 720px) {
    .centered-note {
        padding-left: 2.5em;
        padding-right: 2.5em;
    }
}

@media screen and (min-width: 960px) {
    .centered-note {
        padding-left: 4.5em;
        padding-right: 4.5em;
    }
}

/* footer */
footer {
    /* background-color: lightgray;*/
    background-color: var(--primary-blue);
    color: #fff;
    padding: 0.25em 1.5em;
    margin-top: 4em;
    /* border-radius: var(--box-radius);*/

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .footer-item {
    font-size: var(--font-size-monospace);
    padding: 0.25em;
}

/* contacts table */

.contacts td:nth-child(1) {
    font-weight: bolder;
    text-align: left;
}

.contacts td:nth-child(5) {
    text-align: left;
}

.contacts td:nth-child(6) {
    text-align: left;
}

.technical-details {
    font-size: var(--font-size-technical-details)
}

/*
.technical-details .hash-value {
    font-family: monospace;
}

 */

.technical-details td:nth-child(1) {
    font-weight: bolder;
    text-align: left;
}

.technical-details td:nth-child(2) {
    font-family: monospace;
    text-align: left;
}

.technical-details td:nth-child(3) {
    font-family: monospace;
    text-align: left;
}

.technical-details td:nth-child(4) {
    text-align: left;
    font-family: monospace;
}

/*

contacts (flex) NEW

*/

.contacts-flex {
    display: flex;
    flex-direction: column;
    gap: 1em;

    padding: 1em;
}

@media screen and (min-width: 960px) {
    .contacts-flex {
        gap: 0.4em;
    }
}

.contacts-flex .contact-item {
    display: flex;
    flex-direction: column;
    gap: 1em;

    padding: 12px;
    border: 1px solid lightgrey;
    background-color: white;
    border-radius: 12px;
}


.contacts-flex .contact-item .naming {
    display: flex;

    flex-direction: row;
}

.contacts-flex .contact-item .naming img {
    max-width: 80px;
    max-height: 34px;

    object-fit: contain;
}

.contacts-flex .contact-item .name {
    font-weight: bold;
    min-width: 300px;
}

.contacts-flex .contact-item .details {
    display: flex;
    flex-direction: column;

    gap: 0.5em;
}

@media screen and (min-width: 960px) {
    .contacts-flex .contact-item .details {
        flex-direction: row;
    }
}

.contact-details .technical {
    display: flex;
    flex-direction: column;

    gap: 0.1em;
}

@media screen and (min-width: 960px) {
    .contact-details .technical {
        flex-direction: row;
        gap: 0.5em;
    }
}


.contact-details .technical:before {
    content: attr(section-title);
    font-style: italic;
    min-width: 120px;
}

.contact-details .technical .email {
    min-width: 400px;
}

.contact-details .technical .phone {
    min-width: 220px;
}

.contact-details .technical .phone img {
    width: 18px;
    height: 18px;
    margin-right: 0.5em;
}

/*
.contacts-flex .contact-item .technical .phone::before {
    content: '';
    background:url(../images/phone.svg);
    width: 24px;
    height: 24px;
    float: left;
    display: block;

    object-fit: contain;

}

 */

.contact-details .commercial {
    display: flex;
    flex-direction: column;

    gap: 0.1em;

}

@media screen and (min-width: 960px) {
    .contact-details .commercial {
        flex-direction: row;
        gap: 0.5em;
    }
}

.contact-details .commercial:before {
    content: attr(section-title);
    font-style: italic;
    min-width: 120px;
}

.contact-details .commercial .email {
    min-width: 400px;
}

.contact-details .commercial .phone {
    min-width: 220px;
}

.contact-details .schedule {
    flex: 2;
}

.contact-details .link {
    flex: 4;

}


/* technical details (flex) */

.history {
    padding: 1em;

    h2 {
        margin-bottom: 2em;
    }

    .entries {

        display: flex;
        flex-direction: column;

        padding: 18px;
        border: 1px solid lightgrey;
        background-color: lightgray;
        border-radius: 12px;
        gap: 0.75em;

        @media screen and (min-width: 960px) {
            gap:0;
        }

        .entry {
            display: flex;
            flex-direction: column;

            @media screen and (min-width: 960px) {
                flex-direction: row;
                gap: 1em;
            }

            .type {
                align-content: flex-start;
                min-width: 125px;
                font-style: italic;
            }
        }
    }
}

.lastModifiedSection {
    position: relative;
    display:flex;
    justify-content: center;
}

.last-modified {
    padding-top: 1em;
    color: gray;
    font-size: smaller;
}

.server-status-flex {
    display: flex;
    flex-direction: column;
    gap: 1em;

    padding: 1em;
}

@media screen and (max-width: 720px) {
    .server-status-flex {
        padding: 0;
    }
}

.server-status-flex .item {
    display: flex;
    flex-direction: row;
    gap: 1em;

    align-items: center;

    padding: 18px;
    border: 1px solid lightgrey;
    background-color: white;
    border-radius: 12px;
}

@media screen and (max-width: 720px) {
    .server-status-flex .item {
        flex-direction: column;
        gap: 1em;
        align-items: flex-start;

        padding: 12px;
    }
}


.server-status-flex .item .bankStatus {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
}

@media screen and (max-width: 720px) {
    .server-status-flex .item .bankStatus {
        justify-content: space-between;
    }
}

.server-status-flex .item .bankStatus .description {
    display: flex;
    flex-direction: row;
    gap: 0.5em;

    align-items: center;
}

@media screen and (max-width: 720px) {
    .server-status-flex .item .bankStatus .description {
        flex-direction: column;
        gap: 0.25em;

        align-items: flex-start;

    }
}

@media screen and (max-width: 720px) {
    .server-status-flex .item .server {
        padding-left: 2em;
    }
}

.server-status-flex .item .bankStatus .description .name {
    font-weight: bold;
}

.server-status-flex .item .bankStatus .description .server {
    font-family: monospace;
    font-size: smaller;
}

.server-status-flex .item .lastModified {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: flex-end;
}

@media screen and (max-width: 720px) {
    .server-status-flex .item .lastModified {
        padding-left: 2em;
        margin-left: inherit;
        align-items: start;
    }

}

.server-status-flex .item .lastModified .somePeriodAgo {
    font-size: smaller;
}

.server-status-flex .item .lastModified .lastUpdatedTimestamp {
    color: lightgray;
    font-size: smaller;
}

/* server status legend */
.legend {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1em;

    padding-top: 2em;
    padding-bottom: 1em;
}

.legend .legend-item {
    display: flex;
    flex-direction: row;
}

.legend .legend-item .description {
    color: gray;
    font-size: medium;
}

/* server versions */

.server-versions-flex {
    display: flex;
    flex-direction: column;
    gap: 1em;

    padding: 1em;
    margin-top: 1em;
}

@media screen and (max-width: 720px) {
    .server-versions-flex {
        padding: 0;

        margin-top: 2em;
    }
}

.server-versions-flex .item {
    display: flex;
    flex-direction: row;
    gap: 1em;

    align-items: center;

    padding: 18px;
    border: 1px solid lightgrey;
    background-color: white;
    border-radius: 12px;
}

@media screen and (max-width: 720px) {
    .server-versions-flex .item {
        flex-direction: column;
        gap: 1em;
        align-items: flex-start;

        padding: 12px;
    }
}

.server-versions-flex .item .name {
    font-weight: bold;
}

.server-versions-flex .item .extended-versions {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0.5em;

    .extended-version {
        display: flex;
        flex-direction: row;
        gap: 0.25em;

        .ebics-version {
            font-weight: bold;
        }
    }
}

.server-versions-flex .item .server {
    font-family: monospace;
    font-size: smaller;
}

.server-versions-flex .item .lastModified {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: flex-end;
}

@media screen and (max-width: 720px) {
    .server-versions-flex .item .lastModified {
        padding-left: 2em;
        margin-left: inherit;
        align-items: start;
    }

}

.server-versions-flex .item .lastModified .somePeriodAgo {
    font-size: smaller;
}

.server-versions-flex .item .lastModified .lastUpdatedTimestamp {
    color: lightgray;
    font-size: smaller;
}


/* --- sort controls -- */
.sort-controls {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 1em;
    width: 100%;

    .controls {
        display: flex;
        flex-direction: row;
        gap: 1.5em;

        background-color: white;
        padding: 0.75em 1.25em;
        border: 1px solid lightgrey;
        border-radius: 12px;

        a img {
            width: 36px;
            height: 36px;
            padding: 4px;
            border: 1px solid white;
            border-radius: 6px;
        }

        a img:hover {
            background: #f2f2f2
        }

    }

}

@media screen and (max-width: 720px) {
    .sort-controls {
        margin-top: 2em;
    }

}


/* -- technical details -- */

.technical-details-flex {
    display: flex;
    flex-direction: column;
    gap: 1em;

    padding: 1em;
}

.technical-details-flex .item {
    display: flex;
    flex-direction: column;
    gap: 1em;

    padding: 18px;
    border: 1px solid lightgrey;
    background-color: white;
    border-radius: 12px;
}

.technical-details-flex .item .connectivity {

    position: relative;

    display: flex;
    flex-direction: column;
    gap: 0.5em;

    border: 1px solid var(--boxes-border);
    border-radius: 6px;
    padding: 1.5em 0.5em 0.5em 1.5em;
}

.technical-details-flex .item .connectivity::before {
    content: attr(data-title);
    background: #ffffff;
    position: absolute;
    padding: 0 20px;
    margin-left: 0.75em;
    left: 0.75em;
    top: -12px;
    border-radius: 4px;
    border: 1px solid var(--boxes-border);
}


.technical-details-flex .item .connectivity .parameters {
    display: flex;
    flex-direction: column;

    gap: 0.2em;
    font-family: monospace;
}

.server-address {
    display: flex;
    flex-direction: column;
    /*align-items: flex-start;*/
    gap: 0.5em;
}

@media screen and (min-width: 960px) {
    .server-address {
        flex-direction: row;
        align-items: center;
    }
}


.server-address .name {
    min-width: 100px;
    font-style: italic;
    font-size: smaller;
}

.server-address .details {
    display: flex;
    flex-direction: row;

    .value {
        padding: 0.2em 0.6em;
        border-radius: 4px;
        background: rgba(1, 1, 1, 0.02);
        font-size: smaller;
        overflow: hidden;
        text-overflow: clip ellipsis;
        white-space: nowrap;
    }

    .clipboard-button {
        margin-left: 0.5em;
        /* background-color: #f2f2f2; */
        /* border: 1px solid black;*/
        border-radius: 4px;

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        img {
            width: 26px;
            height: 26px;
        }
    }

}

.hostname {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    align-content: center;

    .name {
        min-width: 100px;
        font-style: italic;
        font-size: smaller;
    }

    .details {

        display: flex;
        flex-direction: row;

        .value {
            padding: 0.2em 0.6em;
            border-radius: 4px;
            background: rgba(1, 1, 1, 0.02);
            font-size: smaller;
        }

        .clipboard-button {
            margin-left: 0.5em;
            /* background-color: #f2f2f2; */
            /*border: 1px solid black;*/
            border-radius: 4px;

            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;

            img {
                width: 26px;
                height: 26px;
            }
        }

    }


}

@media screen and (min-width: 960px) {
    .hostname {
        flex-direction: row;
        align-content: center;
    }
}


.technical-details-flex .item .institute {
    margin-bottom: 1.5em;

    position: relative;
    display: flex;
    flex-direction: row;
    gap: 1em;

    justify-content: space-between;
}

.technical-details-flex .item .institute .extended-name {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0.5em;
    align-items: center;
}

.technical-details-flex .item .institute .extended-name .name {
    font-weight: bold;
    /* min-width: 300px;*/
    font-size: larger;
}

.technical-details-flex .item .institute .extended-name .from {
    font-size: large;
}

.technical-details-flex .item .institute .status-indicator {
    border: 1px solid dimgray;
    border-radius: 0.25em;
    padding: 0.2em;

    background-color: #f2f2f2;

    display: flex;
    flex-direction: row;
}


.technical-details-flex .item .hashes {

    position: relative;

    display: flex;
    flex-direction: column;
    gap: 0.25em;

    border: 1px solid var(--boxes-border);
    border-radius: 6px;
    padding: 1.5em 0.5em 0.5em 1.5em;

    .hash {
        display: flex;
        flex-direction: row;
        align-items: center;

        gap: 0.5em;
    }

    .hash .name {
        content: "E002:";
        /* margin: 0.4em;*/
        font-family: "Source Sans 3", sans-serif;
        font-style: italic;
    }

    .hash .value {
        font-family: monospace;
        font-weight: lighter;
        padding: 0.2em 0.6em;
        border-radius: 4px;
        background: rgba(1, 1, 1, 0.02);
        font-size: smaller;
        text-overflow: clip ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .hash .clipboard-button {
        margin-left: 0.5em;
        /*background-color: #f2f2f2;*/
        /* border: 1px solid black;*/
        border-radius: 4px;

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        img {
            width: 26px;
            height: 26px;
        }

    }

}

@media screen and (min-width: 960px) {
    .technical-details-flex .item .hashes .hash .name {
        min-width: 100px;
    }
}

.technical-details-flex .item .hashes::before {
    content: attr(data-title);
    background: white;
    position: absolute;
    margin-left: 0.75em;
    padding: 0 20px;
    left: 0.75em;
    top: -12px;
    border-radius: 4px;
    border: 1px solid var(--boxes-border);
}



.technical-details-flex .item .security {
    position: relative;
    border: 1px solid var(--boxes-border);
    border-radius: 6px;
    padding: 1.5em 0.5em 0.5em 1.5em;
}

.technical-details-flex .item .security::before {
    content: attr(data-title);
    background: white;
    position: absolute;
    padding: 0 20px;
    margin-left: 0.75em;
    left: 0.75em;
    top: -12px;
    border-radius: 4px;
    border: 1px solid var(--boxes-border);
}

.technical-details-flex .item .security .tls {
    display: flex;
    flex-direction: row;
    margin-bottom: 0.5em;

    .version::before {
        content: "TLS:";
        padding-right: 0.4em;
    }
}


.technical-details-flex .item .security .security-algos {
    display: flex;
    flex-direction: column;

    gap: 1em;
}

@media screen and (min-width: 768px) {
    .technical-details-flex .item .security .security-algos {
        flex-direction: row;

        gap: 1.5em;
    }
}

.technical-details-flex .item .security .security-algos > * {
    display: flex;
    flex-direction: column;

    gap: 0.5em;

    .details {
        display: flex;
        flex-direction: row;

        gap: 0.25em;

        .version {
            font-weight: bolder;
        }

        .key-length::before {
            content: '('
        }

        .key-length::after {
            content: ' bits)'
        }
    }
}

.key-cards {
    position: relative;
    border: 1px solid var(--boxes-border);
    border-radius: 6px;
    padding: 1.5em 0.5em 0.5em 1.5em;
}

.key-cards::before {
    content: attr(data-title);
    background: white;
    position: absolute;
    padding: 0 20px;
    margin-left: 0.75em;
    left: 0.75em;
    top: -12px;
    border-radius: 4px;
    border: 1px solid var(--boxes-border);
}

.key-cards .key-length::after {
    content: ' bits'
}

/* code specific styles */


.code-box {
    background-color: white;
    font-family: monospace;
    padding: 1em;
    border-radius: var(--box-radius);
}

.code-fragment {
    font-family: monospace;
    font-size: var(--font-size-monospace);
}

.phase-out-visibility {
    color: darkgray;
}

/* notes */
.note {
    /*background-color: #ffffcc;*/
    background-color: rgb(255, 255, 204, 0.4);
    border-radius: var(--box-radius);
    padding: 1.0em;
}

.note-darker {
    background-color: #ffff99;
    border-radius: var(--note-box-radius);
    padding: 0.75em 1.0em;
    border: 1px solid dimgray;
}

.note-lighter {
    background-color: #ffff994f;
    border-radius: var(--note-box-radius);
    padding: 0.75em 1.0em;
    border: 1px solid dimgray;
}

.note-ipr {
    background-color: rgba(219, 112, 147, 0.075);
    border-radius: var(--box-radius);
    padding: 0.7em;
    margin: 0.7em;

    font-size: medium;
}

/* code references to EBICS */

.ebics-code {
    font-family: monospace;
    font-size: var(--font-size-monospace);
    padding: 0.2em;
    background: var(--code-background);
    border-radius: 4px;
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;

    .dot-green {
        height: 14px;
        width: 14px;
        background-color: green;
        border-radius: 50%;
        display: inline-block;
    }

    .dot-gray {
        height: 14px;
        width: 14px;
        background-color: gray;
        border-radius: 50%;
        display: inline-block;
    }

    .dot-red {
        height: 14px;
        width: 14px;
        background-color: red;
        border-radius: 50%;
        display: inline-block;
    }

}

