@font-face {
    font-family: 'Akrobat Regular';
    font-weight: 400;
    src: url('font/WEB/Akrobat-Regular.woff2') format('woff2'),  /* Moderne Browser */
    url('font/WEB/Akrobat-Regular.woff') format('woff'),    /* IE 11 */
    url('font/WEB/Akrobat-Regular?#iefix') format('embedded-opentype'),  /* IE6-IE8 */
    url('font/WEB/Akrobat-Regular.ttf') format('truetype')   /* Safari, Android, iOS */
}
@font-face {
    font-family: 'Akrobat Regular';
    font-weight: bold;
    src: url('font/WEB/Akrobat-Bold.woff2') format('woff2'),  /* Moderne Browser */
    url('font/WEB/Akrobat-Bold.woff') format('woff'),    /* IE 11 */
    url('font/WEB/Akrobat-Bold?#iefix') format('embedded-opentype'),  /* IE6-IE8 */
    url('font/WEB/Akrobat-Bold.ttf') format('truetype')   /* Safari, Android, iOS */
}
@font-face {
    font-family: 'Akrobat Bold';
    src: url('font/WEB/Akrobat-Bold.woff2') format('woff2'),  /* Moderne Browser */
    url('font/WEB/Akrobat-Bold.woff') format('woff'),    /* IE 11 */
    url('font/WEB/Akrobat-Bold?#iefix') format('embedded-opentype'),  /* IE6-IE8 */
    url('font/WEB/Akrobat-Bold.ttf') format('truetype')   /* Safari, Android, iOS */
}
::selection {
    background: #af151a;
    color: white;
}
* {
    padding: 0;
    margin: 0;
    border: 0;
    font-family: 'Akrobat Regular', sans-serif, arial;
}
body {
    background-color: rgba(0,0,0,0.1);
    height: 100%;
}
strong {
    font-family: 'Akrobat Bold', sans-serif, arial;
    font-weight: 400;
}
header#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 70px;
    z-index: 1000;
    background-color: #181818;
    -moz-box-shadow:0 5px 5px rgba(182, 182, 182, 0.75);
    -webkit-box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
    box-shadow: 0 5px 5px rgba(182, 182, 182, 0.75);
}
header#main-header #inner-header {
    max-width: 1200px;
    margin: auto;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
#brand-marker {
    margin-top: 4px;
    height: 70px;
    padding: 0px 5px;
}
#switzerlan-logo {
    width: 90px;
}
.menu-link {
    cursor: pointer;
}
#user-info, #head-menu {
    float: right;
}
#head-menu > i {
    color: white;
    font-size: 12px;
    margin-left: 10px;
    cursor: pointer;
}
#user-menu-wrapper {
    padding-top: 35px;
    position: absolute;
    margin-left: -190px;
    display: none;
}
#user-menu {
    background-color: white;
    width: 220px;
    border-radius: 3px;
}
.dark-mode #user-menu {
    background-color: black;
}
#user-menu ul {
    list-style-type: none;
}
#user-menu ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.6);
}
.dark-mode #user-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.6);
}
#user-menu ul li a {
    color: rgba(0, 0, 0, 0.6);
    display: block;
    text-decoration: none;
    padding: 10px;
}
.dark-mode #user-menu ul li a {
    color: white;
}
#user-menu ul li a.logout-link {
    color: #af151a;
}
#user-menu ul li:last-of-type {
    border: none;
}
.clear {
    clear: both;
}
#login-info {
    margin-right: 20px;
}
#login-info h4 {
    color: white;
    font-weight: 400;
}
#site-wrapper {
    max-width: 1280px;
    margin: auto;

}
#site-wrapper form#create-new {
    align-items: center;
    display: flex;
    justify-content: center;
}
#form-wrapper {
    margin: 150px 25px 0 25px;
}
#form-inner {
    padding: 25px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
    margin-bottom: 35px;
    background-color: white;
}
#category-wrapper {
    min-width: 640px;
    max-width: 50%;
    margin: 150px 25px 0 25px;
}
ul#category-list li.active-category {
    background-color: rgba(0,0,0,0.6) !important;
}
ul#category-list li.active-category p, ul#category-list li.active-category h4, ul#category-list li.active-category i {
    color: #ffffff !important;
}
#form-wrapper label {
    display: block;
    margin-bottom: 10px;
    font-family: 'Akrobat Bold', sans-serif, arial;
}
#form-wrapper input, #form-wrapper button {
    background-color: white;
    border-bottom: 1px solid #292841;
    width: calc(100% - 16px);
    padding: 8px;
    margin-bottom: 30px;
    font-size: 1rem;
}
#form-wrapper input.seat-checker {
    width: 80px;
    text-transform: uppercase;
}
#form-wrapper input.seat-checker::placeholder {
    text-transform: none;
}
#form-wrapper input.usertag, #form-wrapper input.note {
    width: 330px;
}
#form-wrapper input:focus, #form-wrapper textarea:focus, #form-wrapper button:focus {
    outline: none;
}
#form-wrapper textarea {
    background-color: white;
    border-bottom: 1px solid #292841;
    width: 450px;
    padding: 8px;
    margin-bottom: 30px;
    font-size: 1rem;
    height: 5rem;
    max-width: 466px;
}
#form-wrapper #reset_button, #form-wrapper .resetter {
    border-bottom: none;
    background-color: rgba(0, 0, 0, 0.05);
    margin-right: 10px;
    cursor: pointer;
    max-width: 160px;
}
#form-wrapper #submit_issue {
    width: 100%;
    border: none;
    color: white;
    background-color: #af151a;
    font-size: 16px;
    cursor: pointer;
    opacity: 1;
    transition: opacity .12s ease-in-out;
}
#form-wrapper #submit_issue:hover {
    opacity: 0.8;
    transition: opacity .1s ease-in-out;
}
#reset_button, .resetter {
    border-bottom: none;
    background-color: rgba(0, 0, 0, 0.05);
    margin-right: 5px;
    font-size: 16px;
    cursor: pointer;
    max-width: 160px;
    padding: 10px 25px;
}
#delete-ticket-button-confirm, #delete-doc-button-confirm, #create-shift-button-confirm {
    border: none;
    color: white;
    background-color: #af151a;
    font-size: 16px;
    cursor: pointer;
    opacity: 1;
    transition: opacity .12s ease-in-out;
    padding: 10px 25px;
    margin-left:5px;
}
#delete-ticket-button-confirm:hover, #delete-doc-button-confirm:hover, #create-shift-button-confirm:hover {
    opacity: 0.8;
    transition: opacity .1s ease-in-out;
}
.info-icon-seat {
    position: absolute;
    margin-top: -58px;
    margin-left: 69px;
    cursor: help;
}
.info-icon-seat i {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
}
hr {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.6);
    margin-top: 20px;
    margin-bottom: 40px;
}
h2 {
    font-size: 2.8rem;
    font-family: 'Akrobat Bold', sans-serif, arial;
    margin-bottom: 35px;
    font-weight: 400;
}
.stickhead.headerbar {
    position: sticky;
    top: 65px;
    margin-top: -15px;
    padding: 15px 0 7px 0;
    width: 100%;
    background-color: #ffffff;
}
.dark-mode .stickhead.headerbar {
    background-color: #0a0c0c;
}
h2.stickyheading {
    margin-bottom: 0;
}
h2#category_title {
    font-size: 1.8rem;
    font-family: 'Akrobat Bold', sans-serif, arial;
    font-weight: 400;
    color: rgba(0,0,0,0.6);
}
h3 {
    font-size: 2.0rem;
    font-family: 'Akrobat Regular', sans-serif, arial;
    margin-bottom: 25px;
    color: rgba(0,0,0,0.6);
    font-weight: 400;
}
#category-wrapper p {
    color: rgba(0,0,0,0.6);
}
#form_buttons {
    display: flex;
    justify-content: space-between;
}
p.not-possible {
    color: rgba(0,0,0,0.6);
}
p a {
    color: #af151a;
}
#tickets-link a {
    color: #fff;
    text-decoration: none;
}
#tickets-link a i {
    color: white;
}
ul#category-list {
    margin-top: 45px;
    margin-bottom: 30px;
}
ul#category-list li {
    border-bottom: 1px solid rgba(0,0,0,0.6);
    list-style-type: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}
ul#category-list li .category-icon {
    font-size: 36px;
    color: rgba(0,0,0,0.6);
    margin-right: 15px;
    width: 50px;
    text-align: center;
    padding-left: 10px;
}
ul#category-list li:hover {

}
ul#category-list .category-tile {
    margin-bottom: 5px;
}
ul#category-list h4 {
    font-size: 18px;
    font-family: 'Akrobat Bold', sans-serif, arial;
    font-weight: 400;
    margin-bottom: 8px;
    padding-top: 15px;
    color: rgba(0,0,0,0.6);
}
ul#category-list p {
    margin-bottom: 8px;
    line-height: 26px;
}
#login-wrapper {
    margin: 45px auto;
}
#login-wrapper h1 {
    font-family: 'Akrobat Bold', sans-serif, arial;
    color: white;
    margin-top: 20px;
    margin-bottom: 35px;
    font-weight: 400;
    font-size: 3rem;
}
#login-wrapper p {
    color: white;
    font-size: 18px;
    line-height: 33px;
}
#login-wrapper .content-box {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
}
#login-wrapper .content-box h2 {
    font-family: 'Akrobat Bold', sans-serif, arial;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255, 0.5);
}

#login-wrapper .content-box > div {
    text-align: left;
    max-width: 49%;
}
.discord-logo {
    max-width: 250px;
}



:root {
    --size: 30;
    --line-width: 3;
    --check-green: #00aa1c;
    --checkbox-grey: #5b5b5b;
}

.category-checker {
    /*margin-top: -30px;*/
}

/* hide default radio button */
.category-checker input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox {
    position: absolute;
    height: calc(var(--size) * 1px);
    width: calc(var(--size) * 1px);
    cursor: pointer;
    color: var(--checkbox-grey);
    border: calc(var(--line-width) * 1px) solid;
    border-radius: 50%;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    transform: translate(-50%, -50%);
}

.checkmark {
    position: absolute;
    width: calc(var(--size) * 1px);
    height: calc(var(--size) * 1px);
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.checkmark::before {
    position: absolute;
    left: 0;
    bottom: calc(var(--size) / 2.5 * 1px);
    height: calc(var(--line-width) * 1px);
    width: 0%;
    background-color: var(--check-green);
    content: "";
    transform: translateX(0px) rotate(45deg);
    transform-origin: left bottom;
    opacity: 1;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    transition-delay: 0.2s;
}

.checkmark::after {
    position: absolute;
    left: calc(var(--size) / 4.3 * 1px);
    bottom: calc(var(--size) / 23 * 1px);
    height: calc(var(--line-width) * 1px);
    width: 0%;
    background-color: var(--check-green);
    content: "";
    transform: translateX(calc(var(--size) / 8 * 1px)) rotate(-45deg);
    transform-origin: left bottom;
    opacity: 1;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    transition-delay: 0.4s;
}

.category-checker input:checked ~ .checkmark::before {
    opacity: 1;
    width: 50%;
}

.category-checker input:checked ~ .checkmark::after {
    opacity: 1;
    width: 100%;
}

.category-checker input:checked ~ .checkbox {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
    pointer-events: none;
}

.category-checker input:not(:checked) ~ .checkmark::before {
    transition-delay: 0.1s;
}

.category-checker input:not(:checked) ~ .checkmark::after {
    transition-delay: 0s;
}

.category-checker input:not(:checked) ~ .checkbox {
    /*transition-delay: 0.4s;*/
}
.tooltip {
    display: inline;
    position: relative;
    text-decoration: none;
    cursor: help;
}
.tooltip:hover:after{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    background: #444;
    border-radius: 3px;
    color: #fff;
    content: attr(title);
    margin: -82px auto 0;
    font-size: 13px;
    padding: 13px;
    width: 220px;
}
.tooltip:hover:before{
    border: solid;
    border-color: #444 transparent;
    border-width: 12px 6px 0 6px;
    content: "";
    margin-left: 3px;
    margin-top: -21px;
    /*left: 20%;
    bottom: 30px;*/
    position: absolute;
}
.dark-mode .reveal_note i {
    color: white;
}

#discord-button .icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
}
#discord-button .icon svg {
    fill: white;
}
#discord-button a {
    color: white;
    font-weight: 400;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #7289da;
    text-decoration: none;
}
#discord-button a span {
    font-family: 'Akrobat Bold', sans-serif, arial;
    font-size: 20px;
}
#discord-button a:hover {
    background-color: #6a7fc9;
}
.content-store {
    max-width: calc(1200px - 40px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 110px;
    width: calc(100% - 40px);
    background-color: white;
    padding: 20px;
    border-radius: 3px;
}
#data-table .content-store h2 {
    margin-right: 65px;
}
#data-table {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: auto 25px auto 25px;
}
h1 {
    margin-bottom: 35px;
}
.cat-chip {
    border-radius: 16px;
    background-color: #181818;
    padding: 3px 10px;
    margin-right: 8px;
    color: white;
    text-decoration: none;
}
table.dataTable thead th, table.dataTable tfoot th {
    font-size: 17px;
    font-weight: 600;
}

.dark-mode div.dt-container .dt-paging .dt-paging-button.disabled, .dark-mode div.dt-container .dt-paging .dt-paging-button.disabled:hover, .dark-mode div.dt-container .dt-paging .dt-paging-button.disabled:active {
    color: rgba(255, 255, 255, 0.7) !important;
}

.dataTables_length {
    margin-bottom: 35px;
}
.dataTables_length label {
    font-size: 16px;
}
.dataTables_length select {
    margin-right: 10px;
    font-size: 16px;
}
table.dataTable.display tbody tr td, .dataTables_wrapper .dataTables_filter input {
    font-size: 16px;
}
.ticket-deeplink {
    color: #af151a;
}
table.dataTable.display {
    margin-bottom: 35px;
}
i.empty-value {
    color: rgba(0,0,0,0.4);
}
.dark-mode i.empty-value {
    color: rgba(255,255,255,0.4);
}
.logo-title {
     color: rgba(255,255,255,0.4);
 }
footer#copy p {
    text-align: center;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 40px;
    margin-bottom: 40px;
}
.support-desc p {
    font-size: 18px;
    line-height: 32px;
}
#ticket-chips {
    margin-top: -25px;
    margin-bottom: 40px;
}
.ticket-options {
    position: relative;
    right: 0;
    float: right;
    top: -79px;
}
.ticket-options i {
    font-size: 24px;
    cursor: pointer;
    color: #af151a;
}
#alert-blur, #alert-blur-management {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
#alert-blur-management #create-shift-alert, #alert-blur-management #edit-shift-alert, #alert-blur-management #delete-shift-alert  {
    background-color: white;
    width: 430px;
    display: flex;
    border-radius: 6px;
    padding: 25px 25px;
}
#alert-blur #delete-ticket-alert {
    background-color: white;
    width: 430px;
    display: flex;
    border-radius: 6px;
    padding: 25px 25px;
}
.delete-ticket-group {
    width:100%;
}
#form_buttons-delete {
    margin: 30px auto 0 auto;
    display: flex;
    justify-content: center;

}
.ticket-edit {
    display: none;
}
input.ticket-edit {
    font-size: 18px;
    border-bottom: 1px solid black;
    width: 480px;
}
textarea.ticket-edit {
    font-size: 18px;
    border-bottom: 1px solid black;
    width: 480px;
    height: 80px;
}
.save-edit-the-ticket {
    display: none;
}
.remove-cat {
    display: none;
    margin-left: 10px;
}
.remove-cat:hover {
    color: red;
}
.error-not {
    background-color: white;
    border-radius: 5px;
    border-left: 4px solid red;
    margin-bottom: 50px;
    padding: 5px 10px;
    text-align: left;
}
#login-wrapper {
    max-width: 1200px; width: 1200px; margin: 20px; padding: 20px; text-align: center; background-color: #181818; border-radius: 3px;
}
.arrow-box {
    background-image: url('/images/arrow.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 70px;
    position: absolute;
    left: 44%;
transform: rotate(8deg);
margin-top: -50px;
}
.icon-box {
    width: 49%;
    color: rgba(255, 255, 255, 0.6);
}
#login-wrapper .icon-box p {
    color: white;
    font-size: 15px;
    line-height: 22px;
}
.icon-box i {
    font-size: 52px;
    margin-top: 60px;
    margin-bottom: 30px;
}
button.dt-button {
    background-color: #af151a;
    color: white;
    border: none;
    font-size: 16px;
    margin-bottom: 35px;
}
button.dt-button:hover:not(.disabled), div.dt-button:hover:not(.disabled), a.dt-button:hover:not(.disabled), input.dt-button:hover:not(.disabled) {
    background-color: #af151a;
    color: white;
    filter: none;
    border: none;
}

html body.dark-mode {
    background-color: #23272a;
}
body.dark-mode h2#category_title {
    color: rgba(255, 255, 255, 0.7);
}
body.dark-mode #category-wrapper p, body.dark-mode #category-list li .category-icon {
    color: rgba(255, 255, 255, 0.7);
}
body.dark-mode footer#copy p {
    color: rgba(255, 255, 255, 0.7);
}
body.dark-mode header#main-header {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.75);
}
body.dark-mode ul#category-list h4 {
    color: rgba(255, 255, 255, 0.7);
}
body.dark-mode #form-inner {
    background-color: rgba(0,0,0,0.7);
}
body.dark-mode #form-wrapper input, body.dark-mode  #form-wrapper button, body.dark-mode  #form-wrapper textarea {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    color: white;
}
body.dark-mode #form-wrapper label {
    color: rgba(255, 255, 255, 0.7);
}
body.dark-mode h2, body.dark-mode h3, body.dark-mode p.not-possible, body.dark-mode table, body.dark-mode select, body.dark-mode .support-desc p, body.dark-mode p {
    color: rgba(255, 255, 255, 0.7);
}
body.dark-mode .tooltip i {
    color: rgba(255, 255, 255, 0.7);
}
body.dark-mode #form-wrapper #reset_button, body.dark-mode #form-wrapper .resetter {
    background-color: rgba(255, 255, 255, 0.05);
}
body.dark-mode hr {
    border-bottom: 1px solid rgba(255,255,255,0.6);
}
body.dark-mode .content-store {
    background-color: rgba(0,0,0,0.7);
}

fieldset.document-meta {
    display: flex;
    justify-content: left;
}
fieldset.document-meta > div {
    margin-right: 48px;
}

body #sig-canvas, body #sig-canvas-client {
    
}

@media only screen and (max-width: 1258px) {
    #create-new, #site-wrapper .content-box {
        flex-direction: column-reverse;
    }
    fieldset.document-meta > div {
        margin-right: 0;
    }
    fieldset {
        flex-direction: column;
    }
    #form-wrapper #form-inner input, #form-wrapper #form-inner textarea {
        width: calc(100% - 15px);
        margin-right: 20px;
        max-width: calc(100% - 15px);
    }
    .category-tile p {
        display: none;
    }
    #category-wrapper {
        max-width: initial;
        min-width: auto;
    }
    .dataTables_wrapper {
        max-width: 100vw;
    }
    .dataTables_wrapper #example, .dataTables_wrapper #manager {
        overflow-x: scroll;
        display: block;
    }
    #login-wrapper {
        width: calc(100% - 80px);
    }
    #login-wrapper .content-box > div {
        max-width: 100%;
    }
    .arrow-box {
        display: none;
    }
    #form-wrapper {
        margin: 25px 25px 0 25px;
    }
    .dt-layout-table {
        overflow-x: scroll;
        max-width: 100%;
    }
    h2 {
        font-size: 1.8rem;
        padding-top: 8px;
    }
   
    #sig-submitBtn, #sig-submitBtn-client {
        margin-bottom: 35px;
    }
    body #sig-canvas, body #sig-canvas-client {
        /*zoom: 0.7 !important;*/
       /* width: calc(100% - 4px);
        height: 150px;*/
    }
}
@media only screen and (max-width: 580px) {
    #tickets-link {
        display: none;
    }
    #sig-submitBtn, #sig-clearBtn, #sig-submitBtn-client, #sig-clearBtn-client {
        font-size:14px !important;
        padding: 7px 10px !important;
        height: 19px;
    }
    #alert-blur #delete-ticket-alert, #alert-blur-management #create-shift-alert, #alert-blur-management #edit-shift-alert, #alert-blur-management #delete-shift-alert {
        width: 330px;
    }
    
}
@media only screen and (max-width: 488px) {

    .category-tile p {
        display: none;
    }
}




:root {
    --darkmode-toggle-size: 1.3rem; /* enlarged to show texture */
    --background-color: #ffffff;
    --color-text: #060606;
    --color-fore-1: #e8eced;
    --color-fore-2: #03adfc;
    --color-fore-3: #c9c9c9;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #060606;
        --color-text: #ebe8e8;
    }
}

/* These classes are for when a user decides to not go with their browser setting */


body {
    transition: background 0.2s ease-in;
}
.darkmode-toggle-wrapper {
    --darkmode-toggle-height: var(--darkmode-toggle-size);
    --darkmode-toggle-width: calc(var(--darkmode-toggle-height) * 2);
    background: var(--color-fore-1);
    width: var(--darkmode-toggle-width);
    height: var(--darkmode-toggle-height);
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid var(--color-fore-3);
    position: absolute;
    margin-left: -53px;
    margin-top: -2px;
}

.darkmode-toggle-checkbox {
    opacity: 0;
    height: var(--darkmode-toggle-height);
    width: var(--darkmode-toggle-width);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
}

.darkmode-toggle-circle {
    position: absolute;
    top: 0;
    left: 0;
    right: calc(var(--darkmode-toggle-width) / 2);
    height: var(--darkmode-toggle-height);
    width: calc(var(--darkmode-toggle-width) / 2);
    border-radius: 50%;
    background: var(--background-color);
    border: 2px solid var(--color-fore-2);
    box-sizing: border-box;
    box-shadow: 0 0 calc(var(--darkmode-toggle-width) / 10) var(--color-fore-2);
    transition: 0.1s ease-in;
}

.darkmode-toggle-checkbox:checked + .darkmode-toggle-circle {
    left: calc(var(--darkmode-toggle-width) / 2);
    right: 0;
}

.darkmode-toggle-emoji {
    font-size: calc(var(--darkmode-toggle-height) * 0.6);
    line-height: 0;
}

table.dataTable thead > tr > th.dt-orderable-asc, table.dataTable thead > tr > th.dt-orderable-desc, table.dataTable thead > tr > td.dt-orderable-asc, table.dataTable thead > tr > td.dt-orderable-desc {
    font-size: 17px;
    font-weight: 600;
}

.dark-mode table.dataTable thead > tr > th.dt-orderable-asc, .dark-mode table.dataTable thead > tr > th.dt-orderable-desc, .dark-mode table.dataTable thead > tr > td.dt-orderable-asc, .dark-mode table.dataTable thead > tr > td.dt-orderable-desc {
    border-color: rgba(255,255,255,0.3);
}

.dark-mode table.dataTable tfoot > tr > th, .dark-mode table.dataTable tfoot > tr > th, .dark-mode table.dataTable tfoot > tr > td, .dark-mode table.dataTable tfoot > tr > td {
    border-color: rgba(255,255,255,0.3);
}

.dark-mode table.dataTable.stripe > tbody > tr:nth-child(2n+1) > *, .dark-mode table.dataTable.display > tbody > tr:nth-child(2n+1) > * {
    box-shadow: inset 0 0 0 9999px rgba(255, 255, 255, 0.023)
}

.rent_desc * {
    line-height: 25px;
}

.rent_desc ul, .rent_desc ol {
    margin-left: 30px;
}

.rent_desc_wrapper {
    overflow: scroll;
    width: calc(100% - 34px); 
    height: 250px; 
    border: 2px solid gray; 
    padding: 15px;
}

.rent_desc {
    display: none;
}

.dark-mode .rent_desc {
    color: rgba(255, 255, 255, 0.7);
}

.dark-mode div.dt-container {
    color: rgba(255, 255, 255, 0.7);
}

.dark-mode #sig-canvas-client, .dark-mode #sig-canvas {
    background-color: rgba(255, 255, 255, 0.5)
}

#rent-desc {
    background-color: transparent; 
    border-bottom: 1px solid black; 
    width: 330px; 
    padding: 8px; 
    margin-bottom: 30px; 
    font-size: 1rem;
}

.dark-mode #rent-desc {
    background-color: black;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7); 
}

.dark-mode #documents > tbody:nth-child(3) > tr > td:nth-child(5) img, .dark-mode #documents > tbody:nth-child(3) > tr > td:nth-child(6) img {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    padding: 3px;
}

.dark-mode #alert-blur #delete-ticket-alert, .dark-mode #alert-blur-management #create-shift-alert, .dark-mode #alert-blur-management #edit-shift-alert, .dark-mode #alert-blur-management #delete-shift-alert {
    background-color: #312d2d;
}

.dark-mode #alert-blur #delete-ticket-alert h3.delete-ticket-alert-c, .dark-mode #alert-blur-management #create-shift-alert h3.create-shift-alert-c, .dark-mode #alert-blur-management #edit-shift-alert h3.create-shift-alert-c, , .dark-mode #alert-blur-management #delete-shift-alert h3.create-shift-alert-c {
    color: rgba(255, 255, 255, 0.7);
}

.dark-mode #reset_button, .dark-mode .resetter {
    background-color: rgba(255, 255, 255, 0.6) !important;
}

#alert-blur-management > div {
    display: none;
}

#create-shift-alert, #edit-shift-alert, #delete-shift-alert {
    display: none;
}


body.overflowed {
    overflow-y: hidden;
}

svg.lock {
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
}
.fill-mask, .top-part, .bottom-part{
	fill:none;
}
.fill-mask-group{
	clip-path:url(#clip-path);
}
.fill-circle{
	fill:#000;
	transition: all 300ms;
}
.top-part, .bottom-part{
	stroke:#000;
	stroke-miterlimit:10;
}
.dark-mode .fill-circle{
	fill:#fff;
	transition: all 300ms;
}
.dark-mode .top-part, .dark-mode .bottom-part{
	stroke:#fff;
	stroke-miterlimit:10;
}
.top-part{
	stroke-linecap:round;
	stroke-width:15.39px;
	transition: all 300ms;
	transition-delay: 200ms;
}
.bottom-part{
	stroke-width:15px;
}



.lock.closed .fill-circle {
	transition-delay: 270ms;
	r: 180;
}
.lock.closed .top-part {
	transition-delay: 150ms;
	d: path("M41.5,93.69V56.93A49.24,49.24,0,0,1,90.73,7.69h2.54A49.24,49.24,0,0,1,142.5,56.93v33");
}



@-webkit-keyframes LinearShake {
	0%   { transform: translateY(0px); }
	70%  { transform: translateY(-20px); }
	100% { transform: translateY(0px); }
}
@-webkit-keyframes AngularShake {
	0%   { transform: rotate(0deg); }
	20%  { transform: rotate(8deg); }
	70%  { transform: rotate(-3deg); }
	100% { transform: rotate(0deg); }
}

#document-icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 25px;
}

.document-icon {
    display: flex;
    justify-content: space-between;
    max-width: 25%;
}

.document-icon img {
    max-width: 64px;
    height: max-content;
    margin-left: 25px;
    margin-right: 15px;
}

.document-icon p {
    font-size: 12px;
    line-height: 20px;
}

.dark-mode .document-icon img {
    filter: invert(0.6);
}

@media only screen and (max-width: 980px) {
    #document-icons {
        display: none;
    }
}

.reveal_note {
    position: relative;
    margin-top: 10px;
    float: right;
    z-index: 50;
    cursor: pointer;
}

@media only screen and (max-width: 403px) {
    .reveal_note {
        position: relative;
        margin-top: -58px;
        float: right;
        z-index: 50;
        cursor: pointer;
    }
}

.stat-label {
    display: block; 
    color: black;
}

.dark-mode .stat-label {
    display: block; 
    color: white;
}

.dark-mode .stat-select {
    background-color: #0a0c0c;
    padding: 10px 15px;
    font-size: 24px;
}

.stat-select {
    background-color: #fff;
    padding: 10px 15px;
    font-size: 24px;
}

.activity-logs {
    display: table-caption; 
    margin-right: 15px;
    margin-left: 5px;
    margin-top: -1px;
}

.searcher {
    padding: 10px;
    transition: 0.3s ease all;
    background-color: rgba(255, 255, 255, 0.4);
    width: 230px;
}

.searcher:focus {
    background-color: rgba(255, 255, 255, 1);
}

#sitzplan-wrapper {
    }

    .kick-header-area, .header-mainmenu-area, .sponsorbar, .kick-breadcromb-area, .kick-footer-area, .blockname {
        display: none !important;
    }

    .section_100 {
        padding: 0 !important;
    }

    body .css-popup {
        color: black;
        z-index: 99999;
        margin-left:-20px;
    }

    .seating-chip {
        border-radius: 6px;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 2px;
        padding-bottom: 2px;
    }

    .seating-chips {
        display: flex; 
        justify-content: space-between;
        margin-top: 5px;
    }

    body.dark-mode .css-popup {
        color: white;
        background-color: rgba(0, 0, 0, 0.9) !important;
    }

    body.dark-mode table.sitzplan, body.dark-mode #sitzplan-wrapper {
        background-color: #23272a;
    }
    #sitzplan-wrapper {
        
    }

   table.sitzplan {
    margin-left: calc(50% - 512px);
        transform: scale(0.8) translate(0%, 0%);
      transform-origin: 0 0;
      margin-bottom: -380px;
      position: relative;
    }

    .panel-body {
        margin: auto;
        display: table;
    }

   

    .panel-body table table table table {
        padding-left:20px;
        padding-right: 20px;
    }

    form[action="party/?do=sitzplan&id=97#plan"] {
        display: none;
    }

    .mucobox, .fusebox {
        position: absolute;
    }

    .highlight-electro {
    outline: 3px solid #FFD700; /* Gold-gelbe Farbe */
    box-shadow: 0 0 15px #FFD700;
    border-radius: 5px;
    animation: pulse-yellow 1.5s infinite;
}

@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 5px #FFD700;
    }
    50% {
        box-shadow: 0 0 20px #FFD700, 0 0 25px #FFD700;
    }
    100% {
        box-shadow: 0 0 5px #FFD700;
    }
}


* {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
}
*:focus {
    outline: none !important;
}


/* Ladeanimation */
.loader {
  border: 5px solid #f3f3f3; /* Light grey */
  border-top: 5px solid #af151a; /* Blue */
  border-radius: 50%;
  width: 15px;
  height: 15px;
  animation: spin 1s linear infinite;
  margin: 5px auto; /* Zentriert den Loader */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}