:root {
    --sidebarwidth: 290px;
    --sidebarcollapsedwidth: 105px;
    --colorGray00: #FFFFFF;
    --colorGray10: #F6F8FA;
    --colorGray20: #E3EBF1;
    --colorGray30: #B9C8E3;
    --colorGray40: #9EAFBC;
    --colorGray50: #7D8D9A;
    --colorGray60: #586A77;
    --colorGray80: #3E4E59;
    --colorGray100: #1F2325;
    --colorRed10: #FFF1F5;
    --colorRed50: #E4003A;
    --colorRed70: #b2002D;
    --colorGreen: #37CE85;
    --colorOrange: #FF6D04;
}

/* manrope-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: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/manrope-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html, body {
    /* manrope-regular - latin */
    font-display: swap;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
}

footer {
    background-color: var(--colorGray00);
    border-top: 0.5px solid var(--colorGray30);
}

.containerside {
    background-color: var(--colorGray00);
    z-index: 3;
}

.menu {
    position: relative;
    background-color: var(--colorGray00);
    /*to avoid, that background elements can be seen at the sides during scrolling*/
    width: auto;
    margin-right: -12px;
    overflow-x: hidden;
    z-index: 3;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/*=======Definition List===========*/
dl, dt, dd {
    margin: 0;
    padding: 0;
}

dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "language coffee";
}

dt {
    font-weight: bold;
    grid-column: language;
}

dd {
    grid-column: coffee;
}
/*=======Definition List End===========*/

.titel {
    padding-top: 10px;
    padding-bottom: 10px;
}

hr {
    background-color: #e4003a;
}

.btn {
    border-radius: 6px;
}

    .btn:hover {
        translate: 0px 3px;
    }

.badge {
    border-radius: 5px;
}

    .badge:hover {
        translate: 0px 3px;
    }

table {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    border-collapse: separate;
}

.table-header {
    background-color: var(--colorGray20);
    color: var(--colorGray100);
}

.modal-body .table-header {
    background-color: var(--colorRed10);
    color: var(--colorGray100);
}

table th:first-child {
    border-radius: 6px 0 0 6px;
}

table th:last-child {
    border-radius: 0 6px 6px 0;
}

table tr {
    border-color: var(--colorGray00);
    color: var(--colorGray100)
}

.table-marked {
    background-color: var(--colorRed10);
}

table tr td:first-child {
    border-radius: 6px 0 0 6px;
}

table tr td:last-child {
    border-radius: 0 6px 6px 0;
}

.table-run {
    color: var(--colorGray00);
    background-color: var(--colorRed70);
}

.menu-sticky-header {
    background-color: var(--colorGray00);
    position: sticky;
    position: -webkit-sticky;
    z-index: 10;
}

.table-sticky-header {
    position: sticky;
    position: -webkit-sticky;
    transition: 0.4s ease-out;
}

/* pin-settings for page header */
.pin {
    font-size: 1.5em;
    cursor: pointer;
    color: #e4003a;
    transform: rotate(-40deg);
}
    .pin:hover {
        translate: 0px 3px;
    }


.sortcol {
    cursor: pointer;
}

.modal-header {
    border: none;
}

.modal-footer {
    border: none;
}

/* Remove default bullets */
ul, #myUL {
    list-style-type: none;
}

/* Remove margins and padding from the parent ul */
#myUL {
    margin: 0;
    padding: 0;
}

.green-dot { /* use on empty div */
    width: 12px;
    height: 12px;
    background: var(--colorGreen);
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}

.grey-dot { /* use on empty div */
    width: 12px;
    height: 12px;
    background: var(--colorGray30);
    border-radius: 50%;
    padding: 0;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}

.yellow-dot { /* use on empty div */
    width: 12px;
    height: 12px;
    background: var(--bs-yellow);
    border-radius: 50%;
    padding: 0;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}

.red-dot { /* use on empty div */
    width: 12px;
    height: 12px;
    background: var(--colorRed70);
    border-radius: 50%;
    padding: 0;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}

.selectWrapper {
    border-radius: 6px;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    margin-bottom: -7px;
}

select {
    width: 100%;
    border: 0px;
    outline: 0px;
    background: var(--colorGray00);
}


input[type="text"] {
    border-radius: 6px;
}

input[type="number"] {
    border-radius: 6px;
}

input[type="password"] {
    border-radius: 6px;
}

input[type="submit"] {
    border-radius: 6px;
}

input[type="range"] {
    accent-color: var(--colorRed50);
}

input[type="checkbox"] {
    accent-color: var(--colorRed50);
}

/*checkboxes & radiobuttons*/
.form-check-input {
    background-color: var(--colorGray20);
}

    .form-check-input:hover {
        background-color: var(--colorGray30);
    }

    .form-check-input:checked {
        /* Change the color of the toggle when it is checked */
        background-color: var(--colorRed50);
        border-color: var(--colorRed50);
    }

        .form-check-input:checked:hover {
            /* Change the color of the toggle when it is checked */
            background-color: var(--colorRed70);
            border-color: var(--colorRed70);
        }

/* Style the caret/arrow */
.caret {
    cursor: pointer;
    user-select: none; /* Prevent text selection */
}

    /* Create the caret/arrow with a unicode, and style it */
    .caret::before {
        content: "\27A4";
        color: var(--colorRed70);
        display: inline-block;
    }

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
    transform: rotate(90deg);
}


/* Hide the nested list */
.nested {
    display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active {
    display: block;
}

/*=======Kartenterminals========*/
.slot {
    border: Solid 1.5em gray;
    border-radius: 1.5em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1em;
    width: 14em;
    height: 3.5em;
    box-shadow: 0 4px 8px 0 rgba(100, 100, 100, 0.2), 0 6px 20px 0 rgba(100, 100, 100, 0.19);
}

.geraet {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6px;
}

.terminal {
    position: relative;
    border: Solid 0.3em ivory;
    border-radius: 30px;
    background-color: #212529;
    color: white;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 18em;
    height: 30em;
    margin-bottom: 6px;
}

.subscription {
    border: Solid 0.3em ivory;
    border-radius: 30px;
    background-color: #212529;
    color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    min-width: 14em;
    max-width: 18em;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.gematiklogo {
    margin-top: 1em;
    margin-left: 11em;
    text-align: center;
}

.idle {
    position: absolute;
    top: 15em;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}

.cherrymenu {
    position: absolute;
    top: 23em;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}

.cherrylogo {
    position: absolute;
    top: 27em;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    width: 40%;
    filter: brightness(200%) contrast(0%);
}

.package {
    /*border: Solid 0.3em ivory;*/
    border-radius: 30px;
    background-color: #212529;
    color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 35em;
    min-height: 35em;
    padding-top: 15px;
    padding-bottom: 20px;
    padding-right: 15px;
    padding-left: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}


/*==========Paging==========*/
.pagination {
    cursor: pointer;
    float: right;
    padding-right: 50px;
}

    .pagination a {
        color: var(--colorGray100);
        transition: background-color .5s;
        border: 0px;
        font-size: 20px;
        padding-left: 6px;
        padding-right: 6px;
        background-color: var(--colorGray00);
        text-decoration: none;
    }

        .pagination a.active {
            border: 0px;
            color: #e4003a;
            font-weight: bold;
        }

        .pagination a:hover:not(.active) {
            transform: scale(1.10) perspective(5px);
        }

    .pagination #pageprevious:hover {
        color: var(--colorRed50);
    }

    .pagination #pagefirst:hover {
        color: var(--colorRed50);
    }

    .pagination #pagenext:hover {
        color: var(--colorRed50);
    }

    .pagination #pagelast:hover {
        color: var(--colorRed50);
    }

canvas#gSMCKT {
    border: Solid 1px lightgrey;
    border-radius: 0.3cm;
    background-color: Ivory;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: Block;
}

/*===============Sidebar================*/
.sidenav {
    height: 100%;
    width: var(--sidebarcollapsedwidth);
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    overflow-x: hidden;
    padding-top: 20px;
    -webkit-box-shadow: 5px 0px 25px 0px var(--colorGray40);
    box-shadow: 5px 0px 25px 0px var(--colorGray40);
    background-color: var(--colorGray00);
    color: var(--colorGray100);
    font-size: 16px;
    transition: width 1s;
}

.red-btn {
    position: fixed;
    top: 6%;
    font-size: 30px;
    color: var(--colorGray100);
    background-color: var(--colorGray00);
    border: none;
    border-radius: 50%;
    padding-right: 12px;
    padding-left: 12px;
    cursor: pointer;
    z-index: 11000;
}

    .red-btn:hover {
        color: var(--colorRed70);
    }

.menutext, .cherrytext {
    display: none;
    margin-left: 8px;
}

.sidenav .logo {
    height: 32px;
}

.sidenav .arrow {
    transition: transform .5s;
}

.sidenav p {
    cursor: pointer;
}

.sidenav ul {
    list-style-type: none; /* Remove bullets */
    padding-left: 15px;
}

    .sidenav ul li {
        margin-top: 25px;
    }

        .sidenav ul li ul li {
            margin-top: -10px;
        }

.sidenav .divider {
    border-top: 1px solid var(--colorGray50);
    height: 20px;
    width: 75%;
}

.sidenav p {
    padding-top: 5px;
    padding-bottom: 5px;
}

    .sidenav p.active {
        color: var(--colorRed50);
    }

    .sidenav p:hover {
        color: var(--colorRed70);
    }

.sidenav .visible {
    color: var(--colorRed70);
}

.sidenav img {
    padding-top: 0;
    padding-left: 20px;
    margin-bottom: 30px;
}

.sidenav .collapse-item {
    padding-top: 5px;
    padding-bottom: 5px;
}


.sidenav .foot {
    position: fixed;
    bottom: 0;
    padding-left: 10px;
    margin: 0;
    width: var(--sidebarwidth);
    background-color: var(--colorGray00);
    border-top: .5px solid var(--colorGray30);
}
