/* roboto-mono-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: 'Roboto Mono';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-mono-v22-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-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: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - 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: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
    font-family:"Roboto", sans-serif;
}
label {
    display:inline-block;
    width:195px;
}
input, select {
    margin-bottom:10px;
    margin-right:10px;
}
.ticketContainer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.tickets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    page-break-after: always;
}
ul.tickets > li.ticket {
    margin:5px 0 5px 0;
    width:calc(50% - 5px);
    box-sizing:border-box;
    border: 1px solid black;
}
ul.tickets > li.ticket:nth-child(10n) {
    page-break-after:always;
}
ul.tickets > li.ticket > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
ul.tickets > li.ticket > ul li.text {
    margin-left: 20px;
    line-height:1;
}
ul.tickets > li.ticket > ul li.text .logo {
    -webkit-print-color-adjust: exact;
    display:block;
    position:relative;
    height:50px;
    width:100%;
    margin-top:2px;
    margin-bottom:10px;
    background-image: url('../img/logo-dunkel.svg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
}
ul.tickets > li.ticket > ul li.text .item {
    font-size:1.25rem;
    font-weight:bold;
    margin-bottom:6px;
}
ul.tickets > li.ticket > ul li.text .code {
    font-family:"Roboto Mono", monospace;
    font-size:1rem;
    margin-bottom:6px;
}
ul.tickets > li.ticket > ul li.text .dateFrom {
    font-size:1rem;
}
ul.tickets > li.ticket > ul li.text .qrCode {
    display:none;
    font-size:0.8rem;
    font-family:"Roboto Mono", monospace;
}
ul.tickets > li.ticket > ul li.qrCodeImage {
    display:flex;
    align-items: center;
}
ul.tickets > li.ticket > ul li.qrCodeImage img {
    width:160px;
    height:160px;
}

hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

table {
    border-collapse: collapse;
}
table th,
table td{
    text-align:left;
    border: 1px solid grey;
    padding: 5px 10px;
}
table tr:nth-child(odd) {
    background-color:#eee;
}
table tr.currentDay td {
    background-color:#b2b2ff;
}
.googleChart {
    height:450px;
    width:700px;
}