@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;1,300&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@200;300;400;500;600&display=swap');
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



#app {
    position: relative;
}

body {
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Roboto Mono', sans-serif; */
    /* font-family: 'IBM Plex Mono', monospace; */
    display: grid;
    padding: 0;
    color: #4f546c;
    font-size: 0.8rem;
    background-color: #f9fbff;
    ;
}

table {
    border-collapse: collapse;
    box-shadow: 0 5px 10px #e1e5ee;
    background-color: white;
    text-align: left;
    overflow-x: hidden;
    width: 100%;
}

thead {
    box-shadow: 0 5px 10px #e1e5ee;
}

/* th {
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 0.7rem;
    font-weight: 900;
}

td {
    padding: 1rem 2rem;
} */

a {
    text-decoration: none;
    color: #2962ff;
}

.status {
    border-radius: 0.2rem;
    background-color: red;
    padding: 0.2rem 1rem;
    text-align: center;
}

.status-pending {
    background-color: #fff0c2;
    color: #a68b00;
}

.status-paid {
    background-color: #c8e6c9;
    color: #388e3c;
}

.status-unpaid {
    background-color: #ffcdd2;
    color: #c62828;
}


.amount {
    text-align: right;
}


tr:nth-child(even) {
    background-color: #f4f6fb;
}

.checkbox-con {
    margin: 10px;
    display: flex;
    align-items: center;
}

.checkbox-con input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 48px;
    height: 27px;
    border: 2px solid #ff0000;
    border-radius: 20px;
    background: #f1e1e1;
    position: relative;
    box-sizing: border-box;
}

.checkbox-con input[type=checkbox]::before {
    content: "";
    width: 14px;
    height: 14px;
    background: rgba(234, 7, 7, 0.5);
    border: 2px solid #ea0707;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 0;
    transform: translate(13%, 15%);
    transition: all 0.3s ease-in-out;
}

.checkbox-con input[type=checkbox]::after {
    /* content: url(https://svgshare.com/i/YrQ.svg); */
    position: absolute;
    top: 0;
    left: 20px;
}

.checkbox-con input[type=checkbox]:checked {
    border: 2px solid #02c202;
    background: #e2f1e1;
}

.checkbox-con input[type=checkbox]:checked::before {
    background: rgba(2, 194, 2, 0.5);
    border: 2px solid #02c202;
    transform: translate(133%, 13%);
    transition: all 0.3s ease-in-out;
    left: 8px;
}

.checkbox-con input[type=checkbox]:checked::after {
    /* content: url(https://svgshare.com/i/Yr4.svg); */
    position: absolute;
    top: 3px;
    left: 5px;
}

.checkbox-con label {
    margin-left: 10px;
}

.a11y-hidden {
    position: absolute;
    left: -1000in;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0);
}

.search {
    width: 90%;
    max-width: 30rem;
    position: relative;
}

.search .input-bar {
    --active: #eee;
    align-items: center;
    background: #fff;
    border: 2px solid #0000;
    border-radius: 4rem;
    box-sizing: border-box;
    box-shadow: 0 1rem 2rem -1.5rem #0005;
    display: inline-flex;
    height: 4rem;
    overflow: hidden;
    transition: box-shadow 0.5s;
    width: 100%;
}

.search .input-bar:focus-within {
    background: #fffffc;
    border: 2px solid #444;
    box-shadow: 0 1rem 2rem -1.5rem #0007;
}

.search .input-bar:hover {
    box-shadow: 0 1rem 2rem -1.5rem #0007;
}

.search .input-bar label {
    position: absolute;
    color: #888;
    left: 1.625rem;
    font-family: Lato, Arial, sans-serif;
    font-size: 1.25rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: calc(100% - 8rem);
    max-width: calc(100% - 8rem);
    display: flex;
    align-items: center;
    z-index: 0;
}

.search .input-bar label span {
    visibility: hidden;
    overflow: hidden;
    max-width: 0;
    display: inline-block;
    margin: 0 0.125rem;
    transition: max-width 1s, margin 0.125s;
    transition-delay: 1s;
}

.search .input-bar label span.show {
    visibility: visible;
    margin: 0 0.25rem;
    max-width: calc(100% - 8rem);
}

.search .input-bar input {
    background: transparent;
    border: 0;
    box-sizing: border-box;
    flex: 1;
    font-size: 1.25rem;
    margin-left: 0.5rem;
    min-width: 8rem;
    outline: none;
    padding-left: 1rem;
    position: relative;
    z-index: 1;
}

.search .input-bar input::-ms-clear,
.search .input-bar input::ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

.search .input-bar input::-webkit-search-decoration,
.search .input-bar input::-webkit-search-cancel-button,
.search .input-bar input::-webkit-search-results-button,
.search .input-bar input::-webkit-search-results-decoration {
    display: none;
    width: 0;
    height: 0;
}

.search .input-bar button {
    background: transparent;
    border: 0;
    border-radius: 50%;
    color: #444;
    font-size: 1.25rem;
    margin: 0;
    outline: none;
    width: 3rem;
    min-width: 3rem;
    height: 3rem;
    transition: background-color, color;
    transition-duration: 0.25s;
    box-shadow: 0 0 2rem #0000;
}

.search .input-bar button:hover {
    background: #eee;
}

.search .input-bar button:focus {
    background: #444;
    color: #fff;
}

.search .input-bar button:active,
.search .input-bar button.active {
    background: #000;
}

.search .input-bar button#dictate {
    transform: scale(0);
    transition: transform 0.5s;
    transition-delay: 1s;
    visibility: hidden;
}

.search .input-bar button#dictate svg {
    display: none;
    margin: auto auto;
}

.search .input-bar button#dictate.show {
    visibility: visible;
    transform: scale(1);
}

.search .input-bar button#dictate.active i {
    display: none;
}

.search .input-bar button#dictate.active svg {
    display: block;
}

.search .input-bar button:last-child {
    margin-right: 0.5rem;
}

@media (prefers-reduced-motion) {
    * {
        transition: none !important;
        transition-delay: 0s !important;
    }
}

.userkonto-bestell-filter-von {
    width: 20%;
    margin-right: 10%;
}

.userkonto-bestell-filter-bis {
    width: 20%;
}

body {
    padding-left:0;
    padding-right:0;
}

.navbar{
    padding-left:50px;
}

.required-input, .required-input:focus {
    background-color: lightyellow;
}
