/* =========================================================================== */
/* Basics */
/* =========================================================================== */
@font-face {
    font-family: "ContentFont";
    src: url(../fonts/Jura-Regular.ttf) format("truetype");
    font-family: "NavigationFont";
    src: url(../fonts/Michroma.ttf) format("truetype");
    /* src: url(../fonts/Michroma.ttf) format("truetype"); */
}

/* =========================================================================== */
/* Root */
/* =========================================================================== */
:root {
    --TextCol: #000;
    --BGCol: #fff;
    --BtnTextCol: #000;
    --BtnBGCol: #bbb;
    --BtnBGHoverCol: #fbb;
    --BtnBGClickCol: #ffc;
    --BtnFrameCol: #000;
    --NavBGCol: #000;
    --NavTextCol: #FFF;
    --NavTextHoverCol: #F00;
    --SubNavBGCol: #444;
    --SubNavTextCol: #FFF;
    --SubNavTextHoverCol: #F00;
}

/* =========================================================================== */
/* HTML */
/* =========================================================================== */
html {
    /* Font-Size relative according to Screen width */
    font-size: 1.2vw;
    color: var(--TextCol);
    background-color: var(--BGCol);
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    font-family: system-ui, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
}
/* ---------------------------------------------------- */
main {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}
/* =========================================================================== */
/* Navigation */
/* =========================================================================== */
nav {
    position: -webkit-sticky;
    position: sticky;
    z-index: 500;
    padding: 1vw;
    background-color: var(--NavBGCol);
    color: var(--NavTextCol);
}

    nav::after {
        content: "";
        display: block;
        clear: both;
    }

sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

/* ---------------------------------------- */
/* Global Navi Elements */
/* ---------------------------------------- */
nav a,
nav a:hover,
nav a:active,
nav a:checked,
nav a:visited {
    font-size: 2vw;
    white-space: nowrap;
    transition-duration: 1.0s;
    text-decoration: none;
    font-weight: 700;
    color: var(--NavTextCol);
    margin-right: 1vw;
}

    nav a:hover {
        color: var(--NavTextHoverCol);
        transition-duration: 1.0s;
    }
/* ---------------------------------------- */
.NavLeft {
    float: left;
    right: 0.5vw;
}

.NavRight {
    float: right;
    right: 0.5vw;
}
/* =========================================================================== */
/* Sub Navigation (aside)*/
/* =========================================================================== */
aside {
    float: left;
    width: 10%;
    padding: 0.3rem;
    color: var(--SubNavTextCol);
    /* background-color: var(--SubNavBGCol); */
}

    aside::after {
        content: "";
        display: block;
        clear: both;
    }

    aside a,
    aside a:hover,
    aside a:active,
    aside a:checked,
    aside a:visited {
        font-size: 1vw;
        white-space: nowrap;
        transition-duration: 1.0s;
        text-decoration: none;
        font-weight: 700;
        color: var(--SubNavTextCol);
    }

        aside a:hover {
            color: var(--SubNavTextHoverCol);
            transition-duration: 1s;
        }

/* =========================================================================== */
/* main structure */
/* =========================================================================== */
section {
    float: left;
    width: 90%;
    padding: 0.3rem;
    color: var(--TextCol);
    background-color: var(--BGCol);
}
/* =========================================================================== */
/* Buttons */
/* =========================================================================== */
.DivBtn {
    position: relative;
    /* width: 100%; */
    text-align: center;
    border-radius: 1rem;
    border-style: solid;
    border-width: 0.1rem;
    color: var(--BtnTextCol);
    background-color: var(--BtnBGCol);
    margin: 0;
    padding: 0.1rem;
    box-sizing: border-box;
    padding: 0.2rem 1rem;
}
    .DivBtn:hover {
        background-color: var(--BtnBGHoverCol);
        transition-duration: 1.0s;
    }
    .DivBtn:active {
        background-color: var(--BtnBGClickCol);
        transition-duration: 0.1s;
    }
/* =========================================================================== */
/* elements */
/* =========================================================================== */

/* --------------------------------------------- */
/* Table */
/* --------------------------------------------- */
/* Standard */
table {
    width: 100%;
    border-spacing: 0;
    text-align: left;
}

    table p,
    a {
        margin: 0;
        padding: 0;
    }

    table td {
        white-space: nowrap;
        padding: 0.2rem 0px;
        vertical-align: middle;
        text-align: left;
    }

    table td {
        border-bottom-style: solid;
        border-color: #EEE;
        border-width: 0.1vw;
    }

    table img {
        margin-top: 0.5rem;
    }

    table thead p {
        font-size: 1.7rem;
    }

/* table tbody>tr:nth-child(odd) {
    background-color: #FAFAFA;
}

table tbody>tr:nth-child(even) {
    background-color: #FAFAFA;
} */
/* =========================================================================== */
/* Table Product Details */
.TableProdDetails > table {
    width: 100%;
    border-spacing: 0;
}

    .TableProdDetails > table td {
        padding: 0.5rem 0.5rem;
        vertical-align: top;
        text-align: left;
    }

        .TableProdDetails > table td:nth-child(1) {
            white-space: nowrap;
        }

        .TableProdDetails > table td:nth-child(2) {
            white-space: nowrap;
            text-align: right;
        }

        .TableProdDetails > table td:nth-child(3) {
            width: 100%;
        }

.TableProdDetails table tbody > tr:nth-child(odd) {
    background-color: #EEE;
}

.TableProdDetails table tbody > tr:nth-child(even) {
    background-color: #DDDD;
}
/* --------------------------------------------- */
/* Paragraphs, anchors, ...
/* --------------------------------------------- */
        p {
    font-size: 1.0rem;
    margin: 0.4rem 0;
}

a {
    font-size: 1.0rem;
    color: inherit;
    text-decoration: none;

    /* transition-duration: 1.0s; */
}

/* --------------------------------------------- */
h1 {
    font-size: 2.0rem;
    margin: .7rem 0;
}

h2 {
    font-size: 1.8rem;
    margin: 0.5rem 0;
}

h3 {
    font-size: 1.6rem;
    margin: 0.4rem 0;
}

h4 {
    font-size: 1.4rem;
    margin: 0.3rem 0;
}

h5 {
    font-size: 1.2rem;
    margin: 0.2rem 0;
}

h6 {
    font-size: 1.1rem;
    margin: 0.2rem 0;
}

/* ------------------------------------ */
small {
    font-size: .675rem;
}

/* ------------------------------------ */
Ul {
    margin-left: 0rem;
}

li {
    margin-left: 0rem;
}

/* ------------------------------------ */
img {
    width: 100%;
}

/* =========================================================================== */
/* aligns */
/* =========================================================================== */
.TxtAlgnL {
    text-align: left;
}

.TxtAlgnC {
    text-align: center;
}

.TxtAlgnR {
    text-align: right;
}

.TxtAlgnJ {
    text-align: justify;
}

.TxtTop {
    vertical-align: top;
}

.TxtMiddle {
    vertical-align: middle;
}

.TxtBottom {
    vertical-align: bottom;
}

.HighLight {
    text-align: justify;
    padding: 0.5rem;
    margin: 0.8rem 0;

    /* color: black; */
    /* border-radius: 0.8rem; */
    background-image: linear-gradient(45deg, #222, #444, #222);
}


