/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}



/* open-sans-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/open-sans-v40-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open-sans-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



html,
body {
    font-family: "Open Sans", "Helvetica Neue", "Lucida Grande", Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    color: rgb(51, 51, 51);
}

.textcontainer {
    display:flex;
    flex-direction:column;
    gap: 8px;
}

    .textcontainer .greenclock,
    .textcontainer .green {
        color: #006400;
        font-weight: bold
    }

    .textcontainer .redclock {
        color: #DE380E;
        font-weight: bold
    }

    .textcontainer .mt {
        margin-top: 8px;
    }

    .textcontainer strong {
        display: block;
        font-weight: bold;
        font-size: 15px;
        line-height: 15px;
    }

    .detailcontainer a,
    .textcontainer a {
        display: inline-block;
        box-sizing: border-box;
        width: auto;
        text-decoration: none;
        max-width: 100%;
        height: auto;
        min-height: 40px;
        user-select: none;
        font-size: 14px;
        line-height: 20px;
        overflow-wrap: break-word;
        padding: 10px 16px;
        margin: 0px;
        border-radius: 3px;
        cursor: pointer;
        background-color: rgb(226, 0, 26);
        color: rgb(252, 252, 252);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

        .detailcontainer a:hover,
        .textcontainer a:hover {
            text-decoration: none;
            background-color: rgb(226, 0, 26);
            opacity: 0.8;
        }


.detailcontainer {
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    gap: 8px;
}

    .detailcontainer h1 {
        font-weight: 300;
        font-size: 27px;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        padding: 5px 2% 20px;
        margin-top: 0;
        color: #E2001A;
        text-rendering: inherit;
        -webkit-font-smoothing: inherit;
    }

    .detailcontainer a {
        margin-bottom: 16px;
    }

    .detailcontainer strong {
        font-weight: bold;
    }

    .detailcontainer .grid {
        margin-bottom: 32px
    }

    .detailcontainer .biggrid,
    .detailcontainer .grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }

    .detailcontainer .noline {
        border: 0 !important;
    }

    .detailcontainer .biggrid dt,
    .detailcontainer .grid dt {
        font-weight: bold;
        padding: 4px 8px;
        border-top: 1px solid #f4f4f4;
    }

    .detailcontainer .biggrid dd,
    .detailcontainer .grid dd {
        padding: 4px 8px;
        border-top: 1px solid #f4f4f4;
    }
