:root {
    --main-color: #fabc20;
    --main-color: #005070;
    --sec-color: #002042;
    --sec-color: #8ae7cb;
    --gradient: linear-gradient(90deg, var(--main-color) 0%, var(--main-color) 54%, var(--main-button-hover) 90%);
    --gradient-hover: linear-gradient(90deg, var(--main-color) 0%, var(--main-color) 25%, var(--main-button-hover) 90%);
    --table-select-forecolor: var(--sec-color);

    --grey-color: #efefef;
    --grey-sec-color: #5555;
    --button-color: #31c826;
    --button-hover-color: #5ad352;
    --grey-font-color: #a1a2aa;
    --grey-font-color-dark: #717171;

    --red-button: maroon;
    --red-button-hover: rgb(170, 0, 0);

    --blue-button: #002042;
    --blue-button-hover: #0a3b6f;
    --main-button-hover: #0a3f77;

    --background-color: rgb(241, 241, 241);
    --header-forecolor: var(--sec-color);
    --h2-color: rgb(110, 110, 110);
    --h3-color: rgb(110, 110, 110);
    --tooltip-background-color: #333;
    --tooltip-foreground-color: rgb(245, 245, 245);
    --main-font-color: white;
    --sec-font-color: white;
    --font-color: black;

    color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
    :root {
        --main-color: #fabc20;
        --main-color: #005070;
        --sec-color: #002042;
        --sec-color: #0e9d72;
        --gradient: linear-gradient(90deg, var(--main-color) 0%, var(--main-color) 54%, var(--main-button-hover) 90%);
        --gradient-hover: linear-gradient(90deg, var(--main-color) 0%, var(--main-color) 25%, var(--main-button-hover) 90%);
        --table-select-forecolor: var(--sec-color);

        --grey-color: #efefef;
        --grey-sec-color: #5555;
        --button-color: #31c826;
        --button-hover-color: #5ad352;
        --grey-font-color: #a1a2aa;
        --grey-font-color-dark: #717171;

        --red-button: maroon;
        --red-button-hover: rgb(170, 0, 0);

        --blue-button: #002042;
        --blue-button-hover: #0a3b6f;
        --main-button-hover: #0a3f77;

        --background-color: rgb(241, 241, 241);
        --header-forecolor: var(--sec-color);
        --h2-color: hsl(0, 0%, 100%);
        --h3-color: rgb(110, 110, 110);
        --tooltip-background-color: #333;
        --tooltip-foreground-color: rgb(245, 245, 245);
        --main-font-color: white;
        --sec-font-color: white;
        --font-color: white;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --grey-sec-color: rgb(230, 230, 230);
        --red-button: #e46b6b;
    }
}

.p-horizontal-0{
    padding-left: 0;
    padding-right: 0;
}

.honeycomb-bg{
    background-image: url('../storage/img/Background-Waben.png');
}

@media (prefers-color-scheme: dark){
    .honeycomb-bg{
        background-image: url('../storage/img/Background-Waben-dark.png');
    }
}

/* Header */
header{
    position: fixed;
    /* height: 8%; */
    width: 100%;
    z-index: 200;
    top: 0px;
}

.background{
    background: var(--main-color);
    height: 75px;
    position: fixed;
    width: 100%;
    /* border-bottom: 12px solid var(--sec-color); */
    top: 0;
    left: 0;
}

/* .background.right{
    height: 7%;
    position: fixed;
    width: 80%;
    margin-left: 0%;
    background: var(--gradient);
} */

.background.blue{
    height: 10%;
    background-color: var(--sec-color);
    background: var(--sec-color);
    z-index: 201;
}

.background.right.blue{
    height: 9%;
    margin-left: 20%;
}

.background h2{
    margin-top: 2vh;
    font-size: 2em;
    text-align: center;
    color: var(--main-font-color);
}

header .background .info{
    display: none;
}


div.menu-buttons{
    position: fixed;
    top: 10px;
    right: 10px;
}

div.menu-buttons a.btn{
    background-color: white;
    border: 1px solid var(--grey-sec-color);
}

div.menu-buttons a.btn.menu i{
    color: var(--main-color);
    font-size: 3em;
    transition: .2s;
}

div.menu-buttons a.btn.menu:hover i{
    color: var(--sec-color);
}

.hidden{
    visibility: hidden;
    display: none;
}


section{
    position: relative;
}


/* Fonts */
h2{
    color: var(--h2-color);
}
h3{
    color: var(--h3-color);
}

hr{
    max-width: 98%;
}

main .container{
    margin-top: 0px;
    padding-top: 0px;
}

#logo{
    width: 150px;
    height: 102px;
    z-index: 999;
    position: fixed;
    top: 5px;
    left: 30px;
    /* border-bottom: 10px solid var(--sec-color); */
    box-shadow: 1px 2px 4px rgba(0,0,0,.4);
    background-color: white;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.mobile{
    display: none;
}


#menu-toggle{
    position: fixed;
    right: 10px;
    top: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid black;
    background-color: white;
}

#menu-toggle i{
    font-size: 30px;
    margin: 0 auto;
    margin-top: 9px;
}

@media (min-width: 767px){

	#menu-toggle{
        display: none;
    }

    .menu-content.frontend-menu{
        display: none;
    }
}

@media (min-width: 1360px){
    #logo{
        left: calc(50vw - 650px) !important;
    }
}

.menu-content{
    z-index: 1;
}



header .background .info a{
    color: white;
}



/*-------------
 	Footer
-------------*/

footer{
    box-shadow: 1px 2px 4px rgba(0,0,0,.4);
    position: relative;
    bottom: 0;
    background-color: #414a4f;
    width: 100%;
    text-align: center;
    padding: 10px;
}

footer ul{
	display: flex;
	margin-bottom: 25px;
	font-size: 32px;
}

footer ul li{
	margin: 0 8px;
}

footer ul li:first-child{
	margin-left: 0;
}

footer ul li:last-child{
	margin-right: 0;
}

footer p{
	text-transform: uppercase;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 10px;
}

footer .copyright{
    font-size: .7em;
}

footer a{
	color: white;
	box-shadow: none;

}

footer .logo{
	width: 8em;
	height: 8em;
}

footer .row:first-child{
	text-align: left;
}

footer .row:last-child{
	text-align: right;
}

footer .row{
	margin-bottom: 30px;
}

footer .row .row{
	text-align: center;
}

footer h5{
	margin-bottom: 0px;
}

footer .row .row a{
	line-height: 2em;
}

footer{
	text-transform: uppercase;
}

footer .container .container{
	margin-top: 0px !important;
}

@media (max-width: 800px){

	footer .col{
		width: 100vw;
		text-align: center;
	}

}

footer a:hover{
	color: var(--main-color);
	text-decoration: none;
}

@media (max-width: 700px){

	footer{
		padding: 80px 15px;
	}

}

footer img.CG-logo{
    filter: grayscale(100%);
    transition: .3s;
    cursor: pointer;
}

footer img.CG-logo:hover{
    filter: grayscale(0%);
}


/* Custom Buttons for the application */
a.btn{
    color: white !important;
    box-shadow: 2px 2px 3px 1px hsl(0, 0%, 10%) !important;
}

.btn.save{
    color: white;
    background-color: var(--button-color);
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    float: right;
    margin: 5px;
}

.btn.save:hover{
    color: white;
    background-color: var(--button-hover-color);
}

a.btn.cancel{
    color: white;
    background-color: var(--red-button);
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    float: right;
    margin: 5px;
    box-shadow: 2px 2px 3px 1px hsl(0, 0%, 10%) !important;
}

a.btn.close{
    color: rgb(84, 84, 84) !important;
}

.btn.cancel:hover{
    color: white;
    background-color: var(--red-button-hover);
}

.btn.edit{
    color: white;
    background-color: rgb(42, 42, 42);
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    float: right;
    margin: 5px;
    box-shadow: 2px 2px 3px 1px hsl(0, 0%, 0%);
}

.btn.edit.two{
    background-color: rgb(42, 42, 42);
    box-shadow: 2px 2px 3px 1px hsl(0, 0%, 0%);
}


.btn.edit:hover{
    color: white;
    background-color: rgb(50, 50, 50);
}

.btn.edit.two:hover{
    background-color: rgb(60, 60, 60);
    box-shadow: 2px 2px 3px 1px hsl(0, 0%, 10%) !important;
}

.btn.disabled{
    cursor: not-allowed;
    background-color: #9c9c9c !important;
    color: #212529 !important;
}

.btn.with-tooltip{
    pointer-events: painted !important;
}

/* Images */

.description img{
    max-width: 100%;
    max-height: 200px;
    cursor: zoom-in;
}

.ql-snow .ql-editor img{
    max-width: 100%;
    max-height: 200px; 
}



/* Loading Circle */
.loadingCircle{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
	padding-top: 20%;
	background-color: rgba(0,0,0,.7);
	z-index: 99999;
}

.loadingCircle img{
    max-height: 130px;
}

.loadingCircle .logo{
    width: 210px;
    height: 20%;
    margin-bottom: 10px;
    margin: auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.loadingCircle.hidden{
	display: none;
}

.loadingCircle #loadingCircle_text{
    color: white;
    font-size: 2em;
}

.loadingCircle #loadingCircle_text.hidden{
    display: none;
}

.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
  }
  .lds-ellipsis div {
	position: absolute;
	top: 27px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--main-color);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
	left: 6px;
	animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
	left: 6px;
	animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
	left: 26px;
	animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
	left: 45px;
	animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
	0% {
	  transform: scale(0);
	}
	100% {
	  transform: scale(1);
	}
  }
  @keyframes lds-ellipsis3 {
	0% {
	  transform: scale(1);
	}
	100% {
	  transform: scale(0);
	}
  }
  @keyframes lds-ellipsis2 {
	0% {
	  transform: translate(0, 0);
	}
	100% {
	  transform: translate(19px, 0);
	}
  }



/* Customer Data for normal input forms e.g. */

input{
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    font-family: inherit;
    font-size: inherit;
}

.customer-data{
    display: flex;
    flex-flow: column;
    max-height: 70vh;
    overflow: auto;
}

.customer-data.row{
  flex-flow: row;
}

.customer-data input{
    width: 100%;
    flex-basis: 100%;
}

.customer-data .groupTitle{
    position: absolute;
    top: 0px;
    right: 0px;
    color: white;
    padding: 2px;
    padding-right: 10px;
}

.customer-data .group{
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    box-shadow: 1px 2px 2px 2px hsl(0, 0%, 10%);
    border-radius: 10px;
    max-width: 650px;
    margin: 0 auto;
    margin-top: 20px;
    width: 100%;
    background-color: hsla(214, 10%, 100%, 70%);
}
@media (prefers-color-scheme: dark){
    .customer-data .group{
        background-color: hsl(0, 0%, 0%);
    }
}

.customer-data .row .group{
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    /* margin-left: 0px; */
}

.customer-data .price{
    font-weight: bold;
    color: var(--main-color);
    font-size: 2em;
    width: 100%;
    text-align: center;
}

.customer-data .price.small{
    font-size: 1.2em;
}

.customer-data p{
    color: #a1a2aa;
    padding-top: 10px;
    font-size: 0.9em;
}

.customer-data input[type=button]{
    padding: 10px;
    color: white;
    background-color: var(--main-color);
    cursor: pointer;
}

.customer-data input[type=button]:hover{
    opacity: .9;
}

i.fa-exclamation{
    color: var(--red-button);
}



/* Label Info Hover Tooltip */
label i.fa-info-circle:hover, label i.fa-question-circle:hover{
    color: var(--main-color);
    cursor: pointer;
}

label{
    position: relative;
}

label .tooltip{
    visibility: hidden;
    width: 300px;
    background-color: #aaa;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    left: 50%;
    margin-left: -60px;
    text-align: left;
    padding: 5px;

    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity .5s;
}

label i.fa-info-circle:hover + .tooltip{
    visibility: visible;
    opacity: 1;
}


/* -------------------------------------------
    Custom Checkbox
-----------------------------------------*/


.checkbox{
    margin-bottom: 30px;
    color: #555;
    font-weight: 200;
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox .checkmark{
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: rgb(202, 202, 202);
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    left: 5px;
    width: 0px;
}

.checkbox:hover input ~ .checkmark {
    background-color: rgb(175, 175, 175);
}

.checkbox input:checked ~ .checkmark {
    background-color: var(--main-color);
}

.checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}





/* -------------------------------------------
    Custom RadioButton
-----------------------------------------*/

/* Hide the browser's default radio button */
.radiobutton input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  /* Create a custom radio button */
.radiobutton .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
    /* transition: .3s; */
  }

  /* On mouse-over, add a grey background color */
.radiobutton:hover input ~ .checkmark {
    background-color: #ccc;
  }

  /* When the radio button is checked, add a blue background */
.radiobutton input:checked ~ .checkmark {
    background-color: var(--main-color);
  }

  /* Create the indicator (the dot/circle - hidden when not checked) */
.radiobutton .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the indicator (dot/circle) when checked */
.radiobutton input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the indicator (dot/circle) */
.radiobutton .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
  }

label.radiobutton{
    padding-left: 32px;
    transition: .3s;
}







/* Input stuff */
input.disabled{
    background: #eee !important;
    cursor: not-allowed;
    margin-left: 0px;
    color: gray;
}

.btnHolder.top-right{
    position: absolute;
    top: 0;
    right: 0;
}

.btnHolder a.btn{
    float: right;
}


/* ADD NEW PRODUCT - SELECTION */
.tableAddDialog{
    position: fixed;
    width: 50%;
    margin-left: 5%;
    box-shadow: 1px 2px 4px rgba(0,0,0,.4);
    z-index: 999;
    top: 90px;
    background: url('../storage/img/Background-Waben.png'); 
    color: var(--grey-sec-color);
    padding: 10px;
    overflow-y: auto;
    max-height: 80vh;
    border: 1px solid var(--grey-sec-color);
    /* transition: .5s; */
    opacity: 0;
    visibility: hidden;
    left: 0;
}

@media (prefers-color-scheme: dark){
    .tableAddDialog{
    background: url('../storage/img/Background-Waben-black.png'); 
}
}

.tableAddDialog.wide{
    width: 90%;
}

.tableAddDialog.open{
    opacity: 1;
    visibility: visible;
    transition: .3s;
}

.tableAddDialog h3{
    float: left;
}

.tableAddDialog table{
    width: 100%;
    text-align: center;
}

.tableAddDialog table tr:nth-child(even) {
    background: white;
}
.tableAddDialog table tr:nth-child(odd) {
    background: var(--grey-color);
}

@media (prefers-color-scheme: dark){
    .tableAddDialog table tr:nth-child(even) {
    background: hsl(0, 0%, 20%);
}
.tableAddDialog table tr:nth-child(odd) {
    background: hsl(0, 0%, 30%);
}
   
}

.tableAddDialog table th{
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    border-bottom: 1px solid var(--main-color);
    background-color: var(--main-color);
    padding: 5px;
}

.tableAddDialog table th:nth-child(1){
    border-top-left-radius: 5px;
}

.tableAddDialog table th:nth-last-child(1){
    border-top-right-radius: 5px;
}


.tableAddDialog table td a{
    background-color: var(--button-color);
}

.tableAddDialog table td a:hover{
    background-color: var(--button-hover-color);
}

.tableAddDialog table td a i{
    color: white;
}

.left-search{

}

/* Street and Number Grid */
.street_and_num{
    display: grid;
    grid-template-columns: 70% auto;
    grid-column-gap: 5px;
}

.zip_and_city{
    display: grid;
    grid-template-columns: 40% auto;
    grid-column-gap: 5px;
}


/* Tooltip */

[data-tooltip-bottom]:hover,
[data-tooltip-bottom-right]:hover,
[data-tooltip-bottom-left]:hover,
[data-tooltip-bottom-left-wide]:hover,
[data-tooltip-left]:hover,
[data-tooltip-right]:hover,
[data-tooltip]:hover {
	position: relative;
}
[data-tooltip-bottom]:hover::after,
[data-tooltip-bottom-right]:hover::after,
[data-tooltip-bottom-left]:hover::after,
[data-tooltip-bottom-left-wide]:hover::after,
[data-tooltip-left]:hover::after,
[data-tooltip-right]:hover::after,
[data-tooltip]:hover::after {
	all: initial;
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
    border-top: 10px solid var(--tooltip-background-color);
	position: absolute;
	bottom: 100%;
	content: '';
	left: 50%;
	transform: translate(-50%, 0);
    margin-bottom: 5px;
    z-index: 5;
}
[data-tooltip-right]:hover::after {
	margin-bottom: 0;
	bottom: auto;
	transform: rotate(90deg) translate(0, -50%);
	left: 100%;
	top: 50%;
	margin-left: -5px;
	margin-top: -5px;
}
[data-tooltip-left]:hover::after {
	margin-bottom: 0;
	bottom: auto;
	transform: rotate(-90deg) translate(0, -50%);
	left: auto;
	right: 100%;
	top: 50%;
	margin-right: -5px;
	margin-top: -5px;
}
[data-tooltip-bottom]:hover::after {
	margin-bottom: 0;
	bottom: auto;
	transform: rotate(180deg) translate(-50%, 0);
	top: 100%;
	margin-left: -20px;
	margin-top: 5px;
}
[data-tooltip-bottom-right]:hover::after {
	margin-bottom: 0;
	bottom: auto;
	transform: rotate(180deg) translate(-50%, 0);
	top: 100%;
	margin-left: -20px;
	margin-top: 5px;
}
[data-tooltip-bottom-left]:hover::after {
	margin-bottom: 0;
	bottom: auto;
	transform: rotate(180deg) translate(-50%, 0);
	top: 100%;
	margin-left: -20px;
	margin-top: 5px;
}
[data-tooltip-bottom-left-wide]:hover::after {
	margin-bottom: 0;
	bottom: auto;
	transform: rotate(180deg) translate(-50%, 0);
	top: 100%;
	margin-left: -90px;
	margin-top: 5px;
}
[data-tooltip-bottom]:hover::before,
[data-tooltip-bottom-right]:hover::before,
[data-tooltip-bottom-left]:hover::before,
[data-tooltip-bottom-left-wide]:hover::before,
[data-tooltip-left]:hover::before,
[data-tooltip-right]:hover::before,
[data-tooltip]:hover::before {
	all: initial;
	font-family: Arial, Helvetica, sans-serif;
	display: inline-block;
	border-radius: 5px;
	padding: 10px;
	background-color: var(--tooltip-background-color);
	content: attr(data-tooltip);
	color: var(--tooltip-foreground-color);
    position: absolute;
    box-shadow: 1px 2px 4px rgba(0,0,0,.4);
	bottom: 100%;
	width: 200px;
	left: 50%;
	transform: translate(-50%, 0);
	margin-bottom: 15px;
	text-align: center;
    font-size: 14px;
    z-index: 5;
}
[data-tooltip-right]:hover::before {
	margin-bottom: 0;
	bottom: auto;
	transform: translate(0, -50%);
	left: 100%;
	top: 50%;
	content: attr(data-tooltip-right);
	margin-left: 15px;
}
[data-tooltip-left]:hover::before {
	margin-bottom: 0;
	bottom: auto;
	transform: translate(0, -50%);
	left: auto;
	right: 100%;
	top: 50%;
	content: attr(data-tooltip-left);
	margin-right: 15px;
}
[data-tooltip-bottom]:hover::before {
	margin-bottom: 0;
	bottom: auto;
	top: 100%;
	content: attr(data-tooltip-bottom);
	margin-top: 15px;
}
[data-tooltip-bottom-right]:hover::before {
	margin-bottom: 0;
	bottom: auto;
	top: 100%;
	content: attr(data-tooltip-bottom-right);
    margin-top: 15px;
    transform: translate(-85%);
}
[data-tooltip-bottom-left]:hover::before {
	margin-bottom: 0;
	bottom: auto;
	top: 100%;
	content: attr(data-tooltip-bottom-left);
    margin-top: 15px;
    transform: translate(-10%);
}
[data-tooltip-bottom-left-wide]:hover::before {
	margin-bottom: 0;
	bottom: auto;
    top: 100%;
    width: 500px;
	content: attr(data-tooltip-bottom-left-wide);
    margin-top: 15px;
    transform: translate(-20%);
}

.autocomplete-items{
    display: none;
}

.autocomplete{
    position: relative;
}

.autocomplete .autocomplete-items{
    display: block;
    z-index: 2;
}

.autocomplete input{
    margin-bottom: 0px !important;
}

.autocomplete-items{
    background-color: white;
    color:black;
    padding: 7px;
    position: absolute;
    width: 100%;
    box-shadow: 1px 2px 4px rgba(0,0,0,.4);
    border: 1px solid var(--header-forecolor);
    border-top: none;
    margin-top: -3px;
}

.autocomplete-items div{
    border-bottom: 1px solid var(--grey-sec-color);
    cursor: pointer;
    padding: 3px;
    transition: .2s;
}

.autocomplete-items div:hover{
    background-color: var(--main-color);
    color: white;
    box-shadow: 1px 2px 4px rgba(0,0,0,.4);
}

.autocomplete-items div:last-child{
    border-bottom: none;
}

.autocomplete-items div strong{
    color: var(--sec-color);
}

table tbody tr:hover{
    background-color: rgb(235, 235, 235);
}

table td{
    -webkit-touch-callout: none; /* iOS Safari */
          -webkit-user-select: none; /* Safari */
           -khtml-user-select: none; /* Konqueror HTML */
             -moz-user-select: none; /* Old versions of Firefox */
              -ms-user-select: none; /* Internet Explorer/Edge */
                  user-select: none; /* Non-prefixed version, currently
                                        supported by Chrome, Opera and Firefox */
}




@media (max-width: 767px){
    header.backend #logo{
        display: none;
    }

    header.backend .menu-buttons{
        top: 60px;
    }

    header.backend #menu-toggle{
        display: none;
    }

    i{
        font-size: 1.5em;
        margin-left: 5px;
    }

    header .background h2 i{
        display: none;
    }

    header .background h2{
        font-size: 1.1em;
        text-align: left;
        padding-left: 10px;
        max-width: 50%;
        float: left;
    }

    header .menu-buttons{
        position: fixed;
        top: 5px !important;
        right: 5px;
        z-index: 300;
    }

    .mobile{
        display: block;
    }

    .customer-data{
        max-height: 90vh;
    }
}










@media (prefers-color-scheme: dark) {
    body {
        background-color: hsla(209, 0%, 30%, 1);
        color: white;
    }
    h3 {
        color: white;
    }
    footer {
        background-color: #1d2022;
    }
    input, textarea, .form-control {
        background-color: rgb(42, 42, 42) !important;
        border-color: transparent !important;
        color: white;
        box-shadow: 2px 2px 3px 1px hsl(0, 0%, 10%);
    }
    input:focus, textarea:focus, .form-control:focus {
        color: white;
    }
    input:disabled, textarea:disabled, .form-control:disabled, input.disabled {
        background-color: #1d2022 !important;
        border-color: transparent;
        color: white;
    }
    label {
        color: white !important;
    }

    table tbody tr:hover{
        background-color: rgb(66, 66, 66);
    }
    .checkmark {
        background-color: rgb(150, 151, 155) !important;
    }
    .additional-information span {
        color: white;
    }
    footer a {
        position: relative;
    }
    footer p a:hover {
        color: white;
    }
    footer p a:after {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        width: 0px;
        height: 1px;
        transition-timing-function: ease-in;
        transition-duration: .2s;
        background-color: white;
    }
    footer p a:hover:after {
        width: 100%;
    }
    .card {
        color: white;
        border: none !important;
        background-color: #1d2022;
        overflow: hidden;
        border-radius: 6px;
    }
    .card-header {
        background-color: rgb(20, 21, 25);
        border-radius: 0px !important;
    }
    .table th, .table td {
        border-top: 1px solid #121326;
    }
    .checkbox .checkmark::after{
        border-color: white !important;
    }



    .addDialog .ql-snow .ql-editor img{
        max-height: 300px;
    }
}

