﻿

body {
    /*min-height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;*/
    margin: 0; /* fixes stackoverflow's markup */
    /*overflow: auto;*/
    /*test 15.05.*/
    overflow: auto;
    height: 100%;
    padding: 0;
}

body,
html {
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, Verdana, "san-serif";
    /*box-sizing: border-box;*/
}

html {
    border: 5px solid rgba(191, 191, 191, 0.25);
    /*padding: 5px;*/
}

/*ALTERNATIVE*/
.wrapperY {
    box-sizing: border-box;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 100px;
}

headerY {
    /*z-index: 3;
    flex-grow: 0;
    flex-shrink: 0; */
    z-index: 1;
    width: 100%;
    background-color: white;
    border: 1px solid rgba(191, 191, 191, 0.25);
    padding: 5px;
    top: 0;
    position: fixed;
}

mainY {
    /*background-color: orange;*/
    z-index: 1;
    grid-area: main;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
    /*-webkit-overflow-scrolling: auto;*/
    overflow: auto;
    /*padding: 15px 5px 10px 5px;*/
    /*overflow-y: scroll;
    overflow-x: scroll;*/
    /*overflow-y: scroll;
    overflow-x: scroll;*/
    /*padding: 20px;
    min-height: 300px;*/
    /*min-height: 300px;
    height: 300px !important;
    overflow: auto;*/
    /*top: 15%;
    height: 80%;
    position: relative;
    
    width: 100%;*/
}

footerY {
    /*background: lightblue;*/
    /*z-index: 3;
    flex-grow: 0;
    flex-shrink: 0;*/
    padding: 5px;
    border: 2px solid rgba(191, 191, 191, 0.25);
    background-color: white;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

/*aktuell*/
wrapper {
    /*overflow: auto;*/

    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-areas: "header" "main" "footer";
    grid-template-rows: auto 1fr auto;
    /*grid-template-rows: 50px calc(100vh - 100px) 50px;*/
    grid-template-columns: 50% 50%;
    padding: 0 20px;
}

.wrapper > div {
    /*border: 1px solid rgba(191, 191, 191, 0.25);*/
    padding: 5px;
}
/*aktuell*/
header {
    z-index: 3;
    position: sticky;
    position: -webkit-sticky; /* For macOS/iOS Safari */
    top: 0;
    grid-area: header;
    /*display: grid;
    grid-template-areas: "leftheader" "rightheader";
    grid-template-columns: auto auto auto;
    grid-auto-flow: column;
    position: fixed;
    top: 0;
    height: 3rem;
    width: 100%;*/
    background-color: white; /*//wichtig, sonst funktioniert sticky nicht*/
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
    /*top: 0px;
    position: fixed !important;
    position: absolute;*/
    /*height: 15%;*/
    /*width: 100%;
    height: 100px;*/
    border-bottom: 3px solid rgba(191, 191, 191, 0.25);
    padding: 5px;
}


headerbox {
    z-index: 3;
    position: sticky;
    position: -webkit-sticky; /* For macOS/iOS Safari */
    top: 0;
    /*grid-area: header;*/
    /*display: grid;
    grid-template-areas: "leftheader" "rightheader";
    grid-template-columns: auto auto auto;
    grid-auto-flow: column;
    position: fixed;
    top: 0;
    height: 3rem;
    width: 100%;*/
    background-color: #eee;
    /*white;*/
    /*top: 0px;
    position: fixed !important;
    position: absolute;*/
    /*height: 15%;*/
    /*width: 100%;
    height: 100px;*/
    border: 2px solid rgba(191, 191, 191, 0.25);
    padding: 5px;
    float: left;
    width: 30%;
    margin-right: 3.33333%;
}

.leftheaderbox .rightheaderbox1 .rightheaderbox2 {
    float: left;
    width: 32%;
    margin-right: 2%;
    padding: 20px;
    /*background: #eee;*/
    box-sizing: border-box;
}

.headerbox:last-child {
    margin-right: 0;
}

.rightheaderbox1 {
    float: right;
}

.rightheaderbox2 {
    float: right;
}



.fillheader {
    margin-top: 4px;
    border-top: 2px solid rgba(191, 191, 191, 0.25);
    margin-bottom: 2px;
    padding: 5px;
    grid-column-start: 1;
    grid-column-end: 3;
    /*background-color: white;*/
    height: 5px;
    width: 100%;
}

.leftheader {
    float: left;
    grid-column-start: 1;
    grid-column-end: 2;
    /*background-color: white;*/
    /*width: 200px;
    margin: 10px;*/
    min-width: 100px;
    /*padding: 0 5px 5px 20px;*/
    /*border:1px solid;*/
    width: 260px;
    margin-top: 10px;
    /*text-align: center;*/
    /*line-height: 100px;*/
    /*font-size: 50px;*/
    /*border-bottom: 1px solid rgba(191, 191, 191, 0.25);*/
}

.rightheader {
    float: right;
    grid-column-start: 2;
    grid-column-end: 3;
    /*background-color: white;*/
    /*width: 200px;
    margin: 10px;*/
    min-width: 60px;
    /*padding: 0 5px 5px;*/
    /*border:1px solid;*/
    width: 60px; /* 160px;*/
    /*text-align: center;*/
    /*line-height: 100px;*/
    /*font-size: 50px;*/
    /*border-bottom: 1px solid rgba(191, 191, 191, 0.25);*/
}

nav {
    bottom: 0px;
    height: 30%;
    left: 0px;
    position: absolute;
    width: 100%;
}

/*aktuell*/
main {
    /*background-color: orange;*/
    z-index: 1;
    grid-area: main;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
    /*-webkit-overflow-scrolling: auto;*/
    overflow: auto;
    /*padding: 15px 5px 10px 5px;*/
    /*overflow-y: scroll;
    overflow-x: scroll;*/
    /*overflow-y: scroll;
    overflow-x: scroll;*/
    /*padding: 20px;
    min-height: 300px;*/
    /*min-height: 300px;
    height: 300px !important;
    overflow: auto;*/
    /*top: 15%;
    height: 80%;
    position: relative;
    
    width: 100%;*/
}

/*aktuell*/
footer {
    /*background: lightblue;*/
    z-index: 3;
    grid-area: footer;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
    padding: 5px;
    border-top: 2px solid rgba(191, 191, 191, 0.25);
    background-color: white;
    /*bottom: 0px;
    position: absolute;
    height: 5%;
    width: 100%;*/
    position: fixed;
    position: sticky;
    position: -webkit-sticky; /*For macOS/iOS Safari */
    bottom: 0;
}

footerbox {
    z-index: 3;
    position: sticky;
    position: -webkit-sticky; /* For macOS/iOS Safari */
    bottom: 0;
    /*grid-area: header;*/
    /*display: grid;
    grid-template-areas: "leftheader" "rightheader";
    grid-template-columns: auto auto auto;
    grid-auto-flow: column;
    position: fixed;
    top: 0;
    height: 3rem;
    width: 100%;*/
    background-color: #eee;
    /*white;*/
    /*top: 0px;
    position: fixed !important;
    position: absolute;*/
    /*height: 15%;*/
    /*width: 100%;
    height: 100px;*/
    border: 2px solid rgba(191, 191, 191, 0.25);
    padding: 5px;
    float: left;
    width: 30%;
    margin-right: 3.33333%;
}


#drawercontent {
    /*min-height: 300px !important;*/
    min-height: calc(100vmax * (10/16));
    /* 100vh;*/
    /*min-height: -webkit-fill-available;*/
    padding: 5px;
}

/*layout*/
.flexbox-parent-layout {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* align items in Main Axis */
    align-items: stretch; /* align items in Cross Axis */
    align-content: stretch; /* Extra space in Cross Axis */
    /*background: rgba(255, 255, 255, .1);*/
    border: 2px solid rgba(191, 191, 191, 0.25);
}

/*layout header*/
.flexbox-item.header {
    /*background: rgba(255, 0, 0, .1);*/ /*blue;*/
    border-bottom: 2px solid rgba(191, 191, 191, 0.25);
}
/*layout footer*/
.flexbox-item.footer {
    /*background: yellow;*/ /*rgba(0, 255, 0, .1);*/
    margin-top: 5px;
    padding: 3px;
    flex: 1;
    border: 2px solid rgba(191, 191, 191, 0.25);
}

/*layout content*/
.layoutcontent {
    flex: 1;
    display: flex;
    flex-direction: column;
    /*overflow: scroll;*/
}
/*fill-area-content flexbox-item-grow*/

/*drawer mnu*/
.drawermnu {
    height: 400px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/*drawer content*/
.content {
    /*min-height:500px;*/
    /*min-height: calc(100vh - 90px); */
    /*height: 100%;*/
    height: calc(100vmax * (9/16));
    overflow: scroll; /*;auto*/
    /*padding: 40px 40px 0 40px;*/
    /*border: 2px solid rgba(191, 191, 191, 0.25);*/ /*red;*/
    display: flex;
    flex-direction: column;
    flex: 1;
}


.divdashboard {
    display: flex;
    border: 2px solid rgba(191, 191, 191, 0.25);
    padding: 5px;
}

/*.divdp {*/
/*height: calc(100vh - 160px);*/
/*height: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}*/
/*dp.cshtml*/
.divdp {
    height: calc(100vh - 160px);
    height: inherit;
    display: flex;
    flex-direction: row;
    flex: 1;
}

.divnav {
    border: 2px solid rgba(191, 191, 191, 0.25);
    padding: 3px;
    height: 45px;
}

.btnnavgoback {
    width: 34px;
    height: 34px;
    border-radius: 3px;
    background-image: url('../img/195333_backward_back_previous_icon.png');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.navheader {
    font-size: medium;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    font-weight: bold;
}

.btndategoback {
    width: 32px;
    height: 32px;
    border-radius: 3px;
    background-image: url('../img/134948_button_backward_previous_icon.png');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btndategoforward {
    width: 32px;
    height: 32px;
    border-radius: 3px;
    background-image: url('../img/8612366_next_arrow_button_navigation_direction_icon.png');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btndatetoday {
    width: 32px;
    height: 32px;
    border-radius: 3px;
    background-image: url('../img/961990_calendar_date_event_schedule_today_icon.png');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btndatesel {
    width: 32px;
    height: 32px;
    border-radius: 3px;
    background-image: url('../img/134666_calendar_icon.png');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}


.mnulst {
    background-color: rgba(191, 191, 191, 0.25) !important;
    fill: rgba(191, 191, 191, 0.25) !important;
    /*background-color: rgba(224, 224, 224, 1) !important;
    fill: rgba(224, 224, 224, 1) !important;*/
    bottom: 10px;
    top: 0;
}

#list .dx-list-group-header {
    color: #1c4157; /*#f05b41;grün Logo #6a8539 #fff*/
    font-weight: bold; /*normal;*/
    font-size: 14px;
}

#list .dx-list-item {
    color: #6a8539;
}

.ueberschrift {
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 5px;
    font-size: 120%;
    font-weight: bold;
    border-bottom: 2px solid rgba(191, 191, 191, 0.25);
}

/*.flexbox-item {
    padding: 8px;
    
}

.flexbox-item-grow {
    flex: 1;*/ /* same as flex: 1 1 auto; */

/*}



.flexbox-item.content {
    background: rgba(0, 0, 255, .1);
    
}

.fill-area {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;*/ /* align items in Main Axis */
/*align-items: stretch;*/ /* align items in Cross Axis */
/*align-content: stretch;*/ /* Extra space in Cross Axis */
/*}

.fill-area-content {
    background: rgba(0, 0, 0, .3);
    border: 5px solid #000000;
    display: flex;
    flex-direction: row;
    flex: 1;*/
/* Needed for when the area gets squished too far and there is content that can't be displayed */
/*overflow: auto;
}

.footer {
    height: 80px;
}*/

.dxDataGrid {
    /*height: calc(100vh - 140px);*/
}



.acc {
    /*overflow:auto;*/
    /* height: calc(100vh - 200px);*/
    /* height: auto !important;*/
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: auto;
}

.dx-theme-material #accordion .dx-accordion-item-opened .dx-accordion-item-title {
    display: flex;
}

/*html, body {
    margin: 10px;
    height: 100%;
    
}

body {
    display: flex;
    flex-direction: column;
    padding: 5px;
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, Verdana, "san-serif";
    box-sizing: border-box;
    border: 3px solid rgba(191, 191, 191, 0.25);
}

.content {
    flex: 1 0 auto;
    padding: 20px;
}

.footer {
    flex-shrink: 0;
    padding: 20px;
}*/

.container {
    /*position: relative;*/
    box-sizing: border-box;
    /*overflow-y: scroll;*/
}

.container, .left-content {
    min-height: 530px;
}

left-content {
    display: inline-block;
    width: 220px;
    min-width: 100px;
    padding: 0 10px 10px;
    background-color: rgba(191, 191, 191, 0.15);
    box-shadow: -5px 0px 14px -8px rgba(0, 0, 0, 0.25) inset;
    height: 100%;
}

right-content {
    position: absolute;
    right: 0;
    left: 240px;
    top: 0;
    height: 100%;
}

.right-content .sub-title {
    font-size: 120%;
    color: rgba(152, 152, 152, 0.8);
}

sup {
    font-size: 0.8em;
    vertical-align: super;
    line-height: 0;
}

.dx-scheduler-date-table-other-month.dx-scheduler-date-table-cell {
    opacity: 1;
    color: rgba(0, 0, 0, 0.3);
}

.dx-scheduler-group-header-content {
    position: relative;
}

.user-photo {
    display: inline-block;
    /*margin-right: 0;*/
    height: 140px;
    width: 140px;
    /*margin-right: 10px;*/
    border: 1px solid #d2d3d5;
    /*border-radius: 50%;*/
    border-radius: 10%;
    /*overflow: hidden;*/
}

.user-photohome {
    display: inline-block;
    /*margin-right: 0;*/
    height: 80px;
    width: 80px;
    border-radius: 20px 20px 20px 20px;
    -moz-border-radius: 20px 20px 20px 20px;
    -webkit-border-radius: 20px 20px 20px 20px;
    /*margin-right: 10px;*/
    border: 1px solid #d2d3d5;
    /*border-radius: 50%;*/
    /*border-radius: 10%;*/
    /*overflow: hidden;*/
}

.user-photohomehide {
    height: 0px;
    width: 0px;
}

.user-photoadmin {
    display: inline-block;
    /*margin-right: 0;*/
    height: 100px;
    width: 100px;
    /*margin-right: 10px;*/
    border: 1px solid #d2d3d5;
    /*border-radius: 50%;*/
    border-radius: 10%;
    /*overflow: hidden;*/
}

.kulogo {
    display: inline-block;
    max-width: 300px;
    max-height: 150px;
    /*height: 150px;
    width: 300px;*/
    object-fit: contain;
    background-size: auto,auto;
}

.kulogo1 {
    display: inline-block;
    text-align: left;
    max-width: 160px;
    max-height: 80px;
    height: auto;
    width: 100%;
    margin-left: 2px;
    margin-top: 2px;
    margin-right: auto;
    object-fit: contain;
    background-size: auto,auto;
}

.maphoto {
    display: inline-block;
    text-align: right;
    max-width: 80px;
    max-height: 80px;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: auto;
    object-fit: contain;
    background-size: auto,auto;
    border-radius: 9px;
}

.imglive {
    display: inline-block;
    text-align: right;
    max-width: 40px;
    max-height: 40px;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: auto;
    object-fit: contain;
    background-size: auto,auto;
}

.appcalendar {
    background-color: beige;
    color: aqua;
}

.avatar {
    width: 140px;
    float: left;
    overflow: hidden;
    position: relative;
    height: 140px;
}



.title-container {
    min-height: 140px;
    margin-bottom: 10px;
}

    .title-container .country-name {
        font-size: 240%;
        font-weight: bold;
        line-height: 34px;
        margin-bottom: 10px;
    }

    .title-container > div:not(.flag) {
        margin-left: 204px;
    }

.stats {
    display: table;
    width: 100%;
    margin-bottom: 20px;
}

    .stats > div {
        display: table-cell;
        text-align: center;
        border: 1px solid rgba(191, 191, 191, 0.25);
        padding: 20px 0 25px;
        width: 33%;
    }

        .stats > div:first-child, .stats > div:last-child {
            border-right-width: 0;
            border-left-width: 0;
        }

    .stats .stat-value {
        font-size: 200%;
    }

#tabpanel {
    margin-top: 10px;
}

    #tabpanel .dx-multiview-wrapper {
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }

    #tabpanel .tab-panel-title {
        font-size: 120%;
        font-weight: bold;
    }

    #tabpanel .dx-multiview-item-content {
        padding: 20px 0 22px;
        min-height: 178px;
        position: relative;
    }

    #tabpanel .right-content {
        top: 15px;
        left: 202px;
    }

    #tabpanel .stats {
        width: 398px;
        margin-top: 20px;
        border-top: 1px solid rgba(191, 191, 191, 0.25);
    }

        #tabpanel .stats > div {
            padding: 7px 0;
            text-align: left;
            border: 0;
        }

            #tabpanel .stats > div:first-child {
                width: 40%;
            }

            #tabpanel .stats > div:not(:first-child) {
                width: 30%;
            }

.flag {
    width: 172px;
    max-height: 122px;
    border: 1px solid rgba(191, 191, 191, 0.25);
    float: left;
    margin: 0 30px 10px 0;
}

.infotext {
    font-size: small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
}

.infotextuname {
    font-size: medium;
    font-family: Verdana;
    text-align: left;
    opacity: 0.75;
    font-weight: bold;
}

.infotextboldcenter {
    font-size: medium;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    font-weight: bold;
}

.infotextleft {
    font-size: small;
    font-family: Verdana;
    text-align: left;
    opacity: 0.75;
}

.infotextleftnavy {
    font-size: small;
    font-family: Verdana;
    text-align: left;
    opacity: 0.75;
    color: navy;
}

.infotextcenternavy {
    font-size: small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    color: navy;
}

.infotextlefterror {
    font-size: small;
    font-family: Verdana;
    text-align: left;
    opacity: 0.75;
    color: red;
}

.infotextsession {
    font-size: x-small;
    font-family: Verdana;
    text-align: left;
    opacity: 0.75;
    color: brown;
}

.infotextku {
    font-size: x-small;
    font-family: Verdana;
    text-align: right;
    opacity: 0.75;
    color: navy;
    /*font-size: 0.8em;*/
}

.infotextkuleft {
    /*font-size: small;*/
    font-family: Verdana;
    text-align: left;
    opacity: 0.75;
    color: navy;
    font-size: 0.8em;
}

.infotextkuboldcenter {
    font-size: medium;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    font-weight: bold;
}

.infotextmnu {
    font-size: small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    color: Highlight;
    font-weight: bold;
}

.lstitemheader {
    font-size: small;
    font-family: Verdana;
    text-align: left;
    opacity: 0.75;
    color: navy;
    white-space: normal;
}

.lstitemtext {
    font-size: small;
    font-family: Verdana;
    text-align: left;
    opacity: 0.75;
    white-space: normal;
}

.seltext {
    font-size: small;
    font-family: Verdana;
    text-align: left;
    opacity: 0.75;
    font-weight: bold;
}

.gdpcell {
    /*font-size: x-small;
    font-family: Verdana;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    visibility: visible;*/
}

.gdpmaname {
    /*font-size: x-small;
    font-family: Verdana;
    text-align: center;*/
    /*width: 100px;*/
    visibility: visible;
}

.gsz {
    /*font-size: x-small;
    font-family: Verdana;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
    visibility: visible;*/
}

.gpfrei {
    background-color: rgb(0, 204, 0); /*#00CC00;*/
}

.noData {
    background-color: transparent;
}

.dpanderesteam {
    /*font-size: x-small;
    font-family: Verdana;
    text-align: center;
    width: 30px;*/
    background-color: rgb(247, 206, 190);
    visibility: visible;
}

.gdpsaso {
    /*font-size: x-small;
    font-family: Verdana;
    text-align: center;
    width: 30px;
    visibility: visible;*/
    background-color: rgb(238, 236, 225);
}

.gdpurlaub {
    /*font-size: x-small;
    font-family: Verdana;
    text-align: center;
    width: 30px;
    visibility: visible;*/
    background-color: rgb(144, 238, 144);
}


.gdpft {
    /*font-size: x-small;
    font-family: Verdana;
    text-align: center;
    width: 30px;
    visibility: visible;*/
    background-color: rgb(221, 217, 195);
}

.gdpcell0 {
    visibility: hidden;
}

.gdpcellidma {
    /*font-size: x-small;
    font-family: Verdana;*/
    /*font-weight: bold;*/
    color: navy;
    /*text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 30px;
    visibility: visible;*/
    /*background-color: rgb(172, 170, 160);*/
}

.gkalenderdataGREEN {
    background-color: rgb(50, 168, 82); /*#32a852;*/
}

.gkalenderdataforecolorGREEN {
    color: rgb(50, 168, 82); /*#32a852;*/
}

.gkalenderdataGELB {
    background-color: rgb(222, 230, 16); /*#dee610;*/
}

.gkalenderdataHELLBLAU {
    background-color: #9db3eb; /*#dee610;*/
}

.gkalenderdataforecolorHELLBLAU {
    color: #9db3eb; /*#dee610;*/
}

.gkalenderdataBLAU {
    background-color: rgb(49, 85, 245); /*#dee610;*/
}

.gkalenderdataforecolorBLAU {
    color: #3155f5; /*#dee610;*/
}

.gkalenderdataORANGE {
    background-color: rgb(252,132,3); /*237, 187, 24);*/ /*#edbb18;*/
}

.gkalenderdataforecolorORANGE {
    color: rgb(252,132,3); /*237, 187, 24);*/ /*#edbb18;*/
}

.gkalenderdataROT {
    background-color: rgb(242, 56, 84); /*#f23854;*/
}

.gkalenderdataforecolorROT {
    color: rgb(242, 56, 84); /*#f23854;*/
}

.gtaskDONE {
    color: green;
}

.gtaskOPEN {
    color: red;
}

.gzpmaU {
    color: forestgreen;
}

.mazeitenhueber {
    background-color: lemonchiffon;
}

.divbtnpenblack {
    background-color: rgb(13, 13, 13); /*#0d0d0d;*/
    /*color: white !important;*/
}

.divbtnpen1 {
    background-color: rgb(210, 71, 71); /*#D24747;*/
    /*color: white !important;*/
}

.calwe {
    background-color: rgba(86, 202, 133, 0.2);
}

.divselma {
    margin-top: 2px;
    margin-bottom: 2px;
    display: none;
    border: 1px solid navy;
    border-radius: 5px;
    padding: 5px;
}

.livezeitenverbucht0 {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-image: url('../img/2425180_hanger_open_sign_icon.svg'); /*'665045_open_opened_unlock_unlocked_unsafe_icon.svg');*/ /*SAFARI => quotes ''*/
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
    -webkit-print-color-adjust: exact !important; /* Chrome, Safari */
}

.livezeitenverbucht1 {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background-image: url('../img/2425173_closed_hanger_sign_icon.svg'); /*'665059_lock_locked_password_privacy_protection_icon.svg');*/ /*SAFARI => quotes ''*/
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
    -webkit-print-color-adjust: exact !important; /* Chrome, Safari */
}

.pinbtn0 {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_number-0_2431488.svg'); /*SAFARI => quotes ''*/
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
    -webkit-print-color-adjust: exact !important; /* Chrome, Safari */
}

.pinbtn1 {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_number-1_2431489.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pinbtn2 {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_number-2_2431490.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pinbtn3 {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_number-3_2431491.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pinbtn4 {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_number-4_2431492.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pinbtn5 {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_number-5_2431493.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pinbtn6 {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_number-6_2431494.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pinbtn7 {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_number-7_2431495.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pinbtn8 {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_number-8_2431496.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pinbtn9 {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_number-9_2431497.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pinbtnClear {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_button-cancel_2431466.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pzbtnmin {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    /*background-image: url('../img/iconfinder_2466322_five_number_icon.svg');*/
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pzbtnmin05 {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-image: url('../img/iconfinder_2466322_five_number_icon.svg'); /*10249539_number_circle_five_icon.png*/
    background-position: center; /*Center the image */
    background-repeat: no-repeat; /*Do not repeat the image*/
    background-size: cover; /*Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pzbtnmin15 {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-image: url('../img/iconfinder_6545947_numbers_fifteen_number_icon.svg');
    background-position: center; /*Center the image */
    background-repeat: no-repeat; /*Do not repeat the image*/
    background-size: cover; /*Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pzbtnmin30 {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-image: url('../img/iconfinder_6545956_number_thirty_numbers_icon.svg');
    background-position: center; /*Center the image */
    background-repeat: no-repeat; /*Do not repeat the image*/
    background-size: cover; /*Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pzbtnmin45 {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-image: url('../img/iconfinder_6545940_number_45_numbers_icon.svg');
    background-position: center; /*Center the image */
    background-repeat: no-repeat; /*Do not repeat the image*/
    background-size: cover; /*Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.pzbtnmin60 {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-image: url('../img/iconfinder_1730925_circle_number_sixty_icon.svg');
    background-position: center; /*Center the image */
    background-repeat: no-repeat; /*Do not repeat the image*/
    background-size: cover; /*Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.livebtncome {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_enter_4600856.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.livebtngo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-image: url('../img/iconfinder_exit_4600855.svg');
    background-position: center; /*Center the image */
    background-repeat: no-repeat; /*Do not repeat the image*/
    background-size: cover; /*Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.tbPIN {
    border: none;
    border-left: medium none;
    border-right: medium none;
}

.btnhelp {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-image: url('../img/iconfinder_maybe-12_330638.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btngototop {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background-image: url('../img/4600835_top_up_upload_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnkubooking {
    width: 250px;
    height: 40px;
    border-radius: 5px;
    background-image: url('../img/9080411_brand_booking_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btntelcall {
    width: 250px;
    height: 40px;
    padding: 3px 50px 3px;
    border-radius: 5px;
    background-image: url('../img/7972961_dialer_communication_call_phone_talk_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}



.btnrefresh {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/iconfinder_reload_4600841.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnshowdp {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/8490133_calendar_date_schedule_select_event_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}


.btncalselmehreretage {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/8490133_calendar_date_schedule_select_event_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btncloudfolder {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/596740_cloud_data storage_documents_files_folder_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnfilter {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/4979887_filter_filtering_funnel_sort_sorting_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btntourbriefing {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/6293804_html_p tag_paragraph_text_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnsave {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/2808195_save_data_disk_floppy_storage_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnsavelarge {
    width: 130px;
    height: 40px;
    padding: 3px 50px 3px;
    border-radius: 3px;
    background-image: url('../img/961862_save_data_storage_guardar_floppy_icon.png');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnazbuchung30 {
    width: 130px;
    height: 35px;
    padding: 3px 3px 3px;
    border-radius: 3px;
    background-image: url('../img/2353999_record_recording_speed_stopwatch_time_icon.png');
    background-position: unset; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
    text-align: left;
}

.btnpausebuchung30 {
    width: 130px;
    height: 35px;
    padding: 3px 3px 3px;
    border-radius: 3px;
    background-image: url('../img/5862455_bike_car_parking_parking lot_sign_icon.png');
    background-position: unset; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btndel {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/1907222_cancel_close_cross_crossing_delete_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btndel35 {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background-image: url('../img/1907222_cancel_close_cross_crossing_delete_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btndel20 {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background-image: url('../img/1907222_cancel_close_cross_crossing_delete_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btndel25 {
    width: 25px;
    height: 25px;
    border-radius: 3px;
    background-image: url('../img/1907222_cancel_close_cross_crossing_delete_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnadd {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/1347806_add_attach_plus_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnadd35 {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background-image: url('../img/1347806_add_attach_plus_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnedit {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/418849_compose_draft_note_message_email_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnedit35 {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background-image: url('../img/418849_compose_draft_note_message_email_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnpreview35 {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background-image: url('../img/1892187_document_file_filetype_page_preview_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnedit20 {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background-image: url('../img/418849_compose_draft_note_message_email_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnedit25 {
    width: 25px;
    height: 25px;
    border-radius: 3px;
    background-image: url('../img/418849_compose_draft_note_message_email_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnmail35 {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background-image: url('../img/4162063_envelope_contact_message_mail_send mail_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnupload30 {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background-image: url('../img/172620_upload_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnupload {
    width: 160px;
    height: 35px;
    padding: 3px 50px 3px;
    border-radius: 3px;
    background-image: url('../img/172620_upload_icon.png');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btndownload35 {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background-image: url('../img/iconfinder_download2_172461.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btndownload {
    width: 160px;
    height: 35px;
    padding: 3px 50px 3px;
    border-radius: 3px;
    background-image: url('../img/iconfinder_download2_172461.png');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnpdf35 {
    width: 35px;
    height: 35px;
    padding: 3px;
    border-radius: 3px;
    background-image: url('../img/229169_file format_pdf_portable document format_icon.png');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnimg35 {
    width: 35px;
    height: 35px;
    padding: 3px;
    border-radius: 3px;
    background-image: url('../img/3973460_camera_image_photo_photography_picture_icon.png');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}


.btnkontakt35 {
    width: 40px;
    height: 35px;
    padding: 3px;
    border-radius: 3px;
    background-image: url('../img/4162063_envelope_contact_message_mail_send mail_icon.png');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnkontakt35wt {
    width: 100px;
    height: 35px;
    /*padding: 3px 100px 3px;*/
    padding: 3px 50px 3px;
    border-radius: 3px;
    text-align: left;
    float: right;
    background-image: url('../img/530684_chat_bubble_communication_email_mail_icon.png');
    background-position: left; /*Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /*Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
    /*padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;*/
}

.btntel35 {
    /* hier z.B. Grafik vor Telefonnr einblenden */
    width: 35px;
    height: 35px;
    border-radius: 3px;
    padding: 3px;
    background-image: url('../img/2849835_phone_telephone_cell_call_communication_icon.png');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btntabledone35 {
    /* hier z.B. Grafik vor Telefonnr einblenden */
    width: 35px;
    height: 35px;
    border-radius: 3px;
    padding: 3px;
    background-image: url('../img/1946004_checked_done_ok_schedule_table_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnmedplan35 {
    /* hier z.B. Grafik vor Telefonnr einblenden */
    width: 35px;
    height: 35px;
    border-radius: 3px;
    padding: 3px;
    background-image: url('../img/3542054_calendar_drugs_plan_schedule_treatment_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}



.btnpush {
    width: 120px;
    height: 30px;
    border-radius: 3px;
    background-image: url('../img/7421893_alarm_alert_urgent_ring_security_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnbuchekommt {
    width: 130px;
    height: 35px;
    padding: 3px 3px 3px;
    border-radius: 3px;
    background-image: url('../img/iconfinder_log_in_134696.png');
    background-position: unset; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnbuchekorr {
    width: 130px;
    height: 35px;
    padding: 3px 3px 3px;
    border-radius: 3px;
    background-image: url('../img/3927256_compose_draft_edit_modify_note_icon.png');
    background-position: unset; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnbuchegeht {
    width: 130px;
    height: 35px;
    border-radius: 3px;
    padding: 3px 3px 3px;
    background-image: url('../img/iconfinder_exit_244351.png');
    background-position: unset; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.icon-find {
    width: 34px;
    height: 35px;
    -webkit-background-size: auto;
    -moz-background-size: auto;
    -o-background-size: auto;
    background-size: auto;
    background-image: url('../img/iconfinder_log_in_134696.png');
    background-position: -42px -184px;
    background-repeat: no-repeat;
    position: absolute;
    right: 7px;
    top: 7px;
    z-index: 10;
}

.dx-button .dx-icon {
    float: right;
}

.btnmail {
    width: 180px;
    height: 35px;
    border-radius: 3px;
    padding: 3px 50px 3px;
    background-image: url('../img/4162063_envelope_contact_message_mail_send mail_icon.png');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnleavegroup {
    width: 180px;
    height: 35px;
    border-radius: 3px;
    padding: 3px 50px 3px;
    background-image: url('../img/5003966_exit_leave_people_group_user_icon.png');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnjoingroup {
    width: 200px;
    height: 35px;
    border-radius: 3px;
    padding: 3px 50px 3px;
    background-image: url('../img/7905601_group_community_join_member_recruit_icon.png');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnneuerbeitrag {
    width: 160px;
    height: 35px;
    border-radius: 3px;
    padding: 3px 50px 3px;
    background-image: url('../img/2731146_twitter_media_tweet_icon.png');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}


.btnsettings {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/3430625_alarm_bell_cloud computing_cloud notification_notification_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnkalenderdata {
    width: 140px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/3105023_calendar_check-in_check-out_date_facility_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnlogin {
    width: 60px;
    height: 60px;
    border-radius: 3px;
    background-image: url('../img/iconfinder_enter_4600856.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnspeechon {
    width: 120px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/1524796_music_on_sound_spaker_up_icon.png');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnspeechoff {
    width: 120px;
    height: 40px;
    background-image: url('../img/1524789_block_music_mute_none_sound_icon.png');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnspeechon40 {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/1524797_medium_music_on_player_song_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnspeechoff40 {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/1524789_block_music_mute_none_sound_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}


.btnsavespeech {
    width: 150px;
    height: 40px;
    padding: 3px 50px 3px;
    border-radius: 3px;
    background-image: url('../img/Apply_32x32.png');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnisonline {
    width: 150px;
    height: 40px;
    padding: 3px 50px 3px;
    border-radius: 3px;
    background-image: url('../img/2862919_live_broadcast_online_signal_icon.png');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnisonlinesmall {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/2862919_live_broadcast_online_signal_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnisoffline {
    width: 150px;
    height: 40px;
    padding: 3px 50px 3px;
    border-radius: 3px;
    background-image: url('../img/2862896_broadcast_no_off_signal_internet_icon.png');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnisofflinesmall {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/2862896_broadcast_no_off_signal_internet_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnsaveandgoonline {
    width: 200px;
    height: 40px;
    padding: 3px 50px 3px;
    border-radius: 3px;
    background-image: url('../img/2862919_live_broadcast_online_signal_icon.png');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnsaveandgoonlinemore {
    width: 200px;
    height: 40px;
    padding: 3px 50px 3px;
    border-radius: 3px;
    background-image: url('../img/183803_circle_more_menu_options_info_icon.svg');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnalarmbell {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/7421893_alarm_alert_urgent_ring_security_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btngeoON {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/2862919_live_broadcast_online_signal_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btngeoOFF {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/2862896_broadcast_no_off_signal_internet_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnstarttour {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/9111148_pin_start_icon.svg');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnmyaccount {
    width: 150px;
    height: 35px;
    padding: 3px 50px 3px;
    border-radius: 3px;
    background-image: url('../img/691962_account_avatar_boy_male_man_icon.png');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}


.btnmygroups {
    width: 150px;
    height: 35px;
    padding: 3px 50px 3px;
    border-radius: 3px;
    background-image: url('../img/183683_friends_group_people_team_users_icon.png');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btndokugroup {
    width: 180px;
    height: 35px;
    border-radius: 3px;
    padding: 3px 50px 3px;
    background-image: url('../img/5038516_document_list_paper_shopping_todo_icon.png');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}


.colkorr {
    background-color: lemonchiffon;
}

.drawer-backcolor {
    background-color: rgba(224, 224, 224, 1) !important;
    fill: rgba(224, 224, 224, 1) !important;
}

.flex-container {
    display: flex;
    background-color: white;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.flex-itemleftheader {
    background-color: white;
    /*width: 200px;
    margin: 10px;*/
    min-width: 80px;
    padding: 0 5px 5px;
    /*border:1px solid;*/
    width: 160px;
    /*text-align: center;*/
    /*line-height: 100px;*/
    /*font-size: 50px;*/
    flex: 50%;
}

.flex-itemrightheader {
    background-color: white;
    /*width: 200px;
    margin: 10px;*/
    min-width: 80px;
    padding: 0 5px 5px;
    /*border:1px solid;*/
    width: 160px;
    /*text-align: center;*/
    /*line-height: 100px;*/
    /*font-size: 50px;*/
    flex: 50%;
}

.flex-itemleft {
    background-color: white;
    /*width: 200px;
    margin: 10px;*/
    min-width: 80px;
    padding: 0 5px 5px;
    /*border:1px solid;*/
    width: 160px;
    /*text-align: center;*/
    /*line-height: 100px;*/
    /*font-size: 50px;*/
}

.flex-itemright {
    background-color: white;
    /*width: 200px;
    margin: 10px;*/
    min-width: 80px;
    padding: 0 5px 5px;
    /*border:1px solid;*/
    width: 200px;
    /*text-align: center;*/
    /*line-height: 100px;*/
    /*font-size: 50px;*/
    flex: 1;
}

.flex-itemcenter {
    background-color: white;
    width: 200px;
    min-width: 80px;
    padding: 0 5px 5px;
    /*margin: 10px;
    text-align: center;*/
    /*line-height: 100px;*/
    /*font-size: 50px;*/
    flex: 1;
}

.flex-containernav {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background-color: white; /*#f1f1f1;*/
}

.flex-item-leftnav {
    flex: 50%;
}

.flex-item-rightnav {
    flex: 50%;
}

.mapmarker {
    font-size: x-small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    color: navy;
    font-weight: bold;
}

.mapmarkerlive {
    font-size: x-small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    color: #20e2a1;
    font-weight: bold;
}

.mapmarkerOPENED {
    font-size: x-small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    color: mediumseagreen;
    font-weight: bold;
}

.mapmarkerCLOSED {
    font-size: x-small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    color: red;
    font-weight: bold;
}

.mapmarkerBELEGT {
    font-size: x-small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    color: mediumseagreen;
    font-weight: bold;
}

.mapmarkerNICHTBELEGT {
    font-size: x-small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    color: red;
    font-weight: bold;
}

.mapmarkerTASKdone {
    font-size: x-small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    color: mediumseagreen;
    font-weight: bold;
}

.mapmarkerTASKopen {
    font-size: x-small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    color: red;
    font-weight: bold;
}

.mapmarkerFAVORIT {
    font-size: x-small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    color: mediumseagreen;
    font-weight: bold;
}

.mapmarkerKEINFAVORIT {
    font-size: x-small;
    font-family: Verdana;
    text-align: center;
    opacity: 0.75;
    color: mediumblue;
    font-weight: bold;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

.agrid {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

.toolbar {
    background-color: rgba(191, 191, 191, .15);
    padding: 2px;
}


.a:link, a:visited {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

.dx-toolbar {
    background-color: rgba(191, 191, 191, .15);
    padding: 5px 10px;
}

.dx-list-item-icon-container, .dx-toolbar-before {
    width: 36px;
    padding-right: 0px !important;
    text-align: center;
}

.dx-list-item-content {
    padding-left: 10px !important;
}

.dx-button {
    background-color: rgba(191, 191, 191, -0.15);
    border: none;
}

.dx-drawer-shrink #content {
    overflow: hidden;
    transition: all 0.4s ease-out;
    column-width: 900px;
}

.dx-drawer-shrink.dx-drawer-opened #content {
    column-width: 300px;
    margin-right: -10px;
}

.calschicht {
    color: #337ab7;
}

.caltodo {
    color: #e8af93;
}

.bewschichtdone {
    color: #4ca51c; /*//green*/
}

.bewschichtopen {
    color: #3a61e1; /*//blau*/
}

.bewschichtopenfavourit {
    color: #39a0db; /*//helleres blau*/
}

.schichtgeplant {
    color: #3a61e1; /*//blau*/
}

.schichtfreigabe {
    color: #4ca51c; /*//green*/
    z-index: 5;
}

.calschichtbgc {
    background-color: transparent;
}

.schichtfreigabebgc {
    background-color: #32a852; /*//green*/
}

.schichtuebernommenbgc {
    background-color: #3155f5; /*//blau*/
}

.schichtgeplantbgc {
    background-color: #9db3eb; /* hellblau //#dee610;gelb*/
}

.schichtcandeletebgc {
    background-color: #edbb18; /*//orange*/
}

.schichtwunschbgc {
    background-color: #f23854; /*//rot*/
}

.schichtbetreffsmall {
    font-size: x-small;
    font-family: Verdana;
}

.schichtbetreffbig {
    font-size: small;
    font-family: Verdana;
}



/*CALENDAR Tag auswählen *********************************************************************/
.calendar-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

.dx-calendar-cell:not(.dx-calendar-other-month) .weekend,
.dx-calendar-cell:not(.dx-calendar-other-month) .holiday {
    text-shadow: none;
    font-weight: bold;
}

.dx-calendar-cell:not(.dx-calendar-other-month) .weekend {
    color: #3030FF;
}

.dx-state-disabled.dx-calendar .dx-calendar-cell:not(.dx-calendar-other-month) .weekend {
    color: #8080FF;
}

.dx-calendar-cell:not(.dx-calendar-other-month) .holiday {
    color: #FF3030;
}

.dx-state-disabled.dx-calendar .dx-calendar-cell:not(.dx-calendar-other-month) .holiday {
    color: #FF8080;
}

.dx-calendar-week-number-cell .week-number {
    font-style: italic;
}

.caption {
    font-weight: 500;
    font-size: 18px;
}



/*ENDE CALENDAR Tag auswählen *********************************************************************/

/*dxfilemanager upload.chtml => thumbnails*/
/*Standard 100 100 90*/
.dx-filemanager
.dx-filemanager-thumbnails
.dx-filemanager-thumbnails-view-port
.dx-filemanager-thumbnails-item
.dx-filemanager-thumbnails-item-content
.dx-filemanager-thumbnails-item-thumbnail {
    border: 0;
    height: 100px;
    width: 100px;
    font-size: 90px;
}

.dx-filemanager .dx-filemanager-thumbnails .dx-filemanager-thumbnails-view-port .dx-filemanager-thumbnails-item {
    width: 100px;
    height: unset;
}

.filter-container {
    background-color: rgba(191, 191, 191, 0.15);
    padding: 5px;
    /*width: 500px;*/
    margin-bottom: 25px;
}

.dx-filterbuilder {
    padding: 5px;
    overflow: auto;
}

    .dx-filterbuilder .dx-numberbox {
        width: 60px;
    }

    .dx-filterbuilder .dx-texteditor {
        width: 120px;
    }


#dropzone-external {
    width: 200px;
    height: 200px;
    background-color: rgba(183, 183, 183, 0.1);
    border-width: 2px;
    border-style: dashed;
    padding: 10px;
}

    #dropzone-external > * {
        pointer-events: none;
    }

    #dropzone-external.dropzone-active {
        border-style: solid;
    }

.widget-container > span {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 16px;
}

#dropzone-image {
    max-width: 100%;
    max-height: 100%;
}

#dropzone-text > span {
    font-weight: 100;
    opacity: 0.5;
}

#upload-progress {
    display: flex;
    margin-top: 10px;
}

/*dxlist Beiträge...
*/
/* Beiträge *******************************************************************************************/

.accheaderbeitrag {
    background-color: azure;
}

.beitrag {
    /*color:  white;*/
    background-color: transparent;
    padding: 10px;
}

.beitragonline {
    color: #4ca51c; /*//green*/
}



.beitragheader {
    margin-bottom: 5px;
    margin-top: 5px;
    padding: 5px;
    font-size: 110%;
    font-weight: bold;
    border-bottom: 2px solid rgba(191, 191, 191, 0.25);
    background-color: transparent;
    white-space: normal;
}
/*.beitragheader:hover {
        background-color: rgba(0,0,0,.04);*/ /*wie dxlist hover*/
/*}*/

.flex-containerbeitrag {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*display: flex;
    flex-wrap: wrap;*/
    overflow: auto;
    background-color: transparent;
    border: 2px solid rgba(191, 191, 191, 0.25);
    /*max-height: 80px;*/
}

.flex-item-leftbeitrag {
    padding: 10px;
    flex: 50%;
    max-width: 350px;
    /*display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;*/
}

.flex-item-rightbeitrag {
    padding: 10px;
    flex: 50%;
    /*display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;*/
}

/*Beitrag ohne Blickfänger*/
.flex-item-completebeitrag {
    flex: 100%;
    padding: 10px;
    /*display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-self: stretch;*/
}


.grid-container-beitragheader {
    grid-area: header;
}

.grid-container-beitragfooter {
    grid-area: footer;
}

.beitragneu {
    display: flex;
    padding: 5px;
    font-size: 14px;
    background-color: green;
    color: #ffffff;
    width: 40px;
}

.dx-tile-content .image {
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    display: block;
}

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 800px) {
    .flex-item-right, .flex-item-left {
        flex: 100%;
    }
}

.userphoto {
    border-radius: 10px;
    display: inline-block;
    text-align: right;
    max-width: 100px;
    max-height: 100px;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: auto;
    object-fit: contain;
    background-size: auto,auto;
}

.infotextleftnavydashboard {
    /*font-size: small;*/
    font-family: Verdana;
    text-align: left;
    opacity: 0.75;
    color: navy;
    font-size: 1.2em;
}

.msgdashboard {
    display: grid;
    grid-template-areas: "dashboardheader"
        "dashboardcontent"
        "dashboardfooter";
    grid-template-columns: 1fr;
    grid-template-rows: 100px 1fr 30px;
    padding: 1px;
}

.msgdashboard {
    display: grid;
    grid-template-areas: "dashboardheader"
        "dashboardcontent"
        "dashboardfooter";
    grid-template-columns: 1fr;
    grid-template-rows: 200px 1fr 30px;
    padding: 1px;
}

msgdashboardheader {
    grid-area: dashboardheader;
    display: flex;
    justify-content: center;
    background-color: blue;
}

msgdashboardcontent {
    grid-area: dashboardcontent;
    background-color: gray;
    display: flex;
}

msgdashboardfooter {
    grid-area: dashboardfooter;
    align-items: center;
    display: flex;
    justify-content: center;
    background-color: green;
}

.divmykachel {
    width: 66px;
    height: 66px;
    border: 2px solid #154769;
    border-radius: 4px;
    background-color: #fafafa; /*rgba(224, 224, 224, 1);*/ /*#18557d;*/
    box-shadow: 3px 3px 3px #ccc;
    cursor: pointer;
}

.divmykachelimage {
    width: 30px;
    height: 30px;
    display: block;
    margin: 2px auto 0px auto;
}

.divmykacheltext {
    color: black;
    margin: 2px auto 5px auto;
    font-size: 8pt;
    text-align: center;
    font-family: Arial, Helvetica, monospace;
}

.divmykachelsmall80 {
    width: 80px;
    height: 44px;
    border: 2px solid #154769;
    border-radius: 4px;
    background-color: #fafafa; /*rgba(224, 224, 224, 1);*/ /*#18557d;*/
    box-shadow: 3px 3px 3px #ccc;
    cursor: pointer;
}

.divmykachelsmall100 {
    width: 100px;
    height: 44px;
    border: 2px solid #154769;
    border-radius: 4px;
    background-color: #fafafa; /*rgba(224, 224, 224, 1);*/ /*#18557d;*/
    box-shadow: 3px 3px 3px #ccc;
    cursor: pointer;
}

.divmykachelimagesmall {
    width: 20px;
    height: 20px;
    display: block;
    margin: 5px auto 0px auto;
}

.divmykacheltextsmall {
    color: black;
    margin: 3px auto 5px auto;
    font-size: 7pt;
    text-align: center;
    font-family: Arial, Helvetica, monospace;
}

.divmykachel100x66xxx {
    width: 90px;
    height: 66px;
    border: 2px solid #154769;
    border-radius: 4px;
    background-color: rgba(224, 224, 224, 1); /*#18557d;*/
    box-shadow: 3px 3px 3px #ccc;
    cursor: pointer;
}

.divmykachelimage100x66 {
    width: 30px;
    height: 30px;
    display: block;
    margin: 10px auto 0px auto;
}

.divmykacheltext100x66 {
    color: black;
    margin: 5px auto 5px auto;
    font-size: 8pt;
    text-align: center;
    font-family: Arial, Helvetica, monospace;
}

.divmykachel80x66 {
    width: 80px;
    height: 66px;
    border: 2px solid #154769;
    border-radius: 4px;
    background-color: rgba(224, 224, 224, 1); /*#18557d;*/
    box-shadow: 3px 3px 3px #ccc;
    cursor: pointer;
}

.divmykachelimage30 {
    width: 30px;
    height: 30px;
    display: block;
    margin: 10px auto 0px auto;
}

.divmykacheltext8pt {
    color: black;
    margin: 5px auto 5px auto;
    font-size: 8pt;
    text-align: center;
    font-family: Arial, Helvetica, monospace;
}

.msgimgazure {
    /*max-width: 100%;
    height: auto;*/
    object-fit: cover;
    width: 100%;
    height: auto;
    max-width: 600px;
    max-height: 300px;
}





button:hover {
    cursor: pointer;
}

.divbeitragheaderuinfo {
    /*border: 2px solid;*/
    padding: 2px;
    width: 100%;
    resize: both;
    overflow: auto;
}

.tebeitragheader {
    border-style: none;
    border-color: transparent;
    overflow: auto;
    overflow-wrap: break-word;
    outline: none;
    background-color: transparent;
    width: 100%;
    height: auto;
    font-size: 12px;
    font-weight: bold;
}

.tebeitraginfo {
    border-style: none;
    border-color: transparent;
    overflow: auto;
    overflow-wrap: break-word;
    outline: none;
    background-color: transparent;
    width: 100%;
    height: auto;
}




/*@media screen and  (max-width: 680px) {
    .dx-list .dx-list-item {
        border: 0px;
        width: 100%;
        float: left;
    }
}

@media screen and (min-width: 680px) and (max-width: 1260px) {
    .dx-list .dx-list-item {
        border: 0px;
        width: 50%;
        float: left;
    }  
}

@media screen and (min-width: 1260px) {
    .dx-list .dx-list-item {
        border: 0px;
        width: 25%;
        float: left;
    }
}*/

/**********************************************/
/*BEITRÄGE UND SCHWARZES BRETT*/

@media screen and (min-width: 1260px) {
    .grid-container-beitrag {
        padding: 0;
        list-style: none;
        display: grid;
        grid-auto-columns: 1fr;
        grid-auto-rows: 1fr;
        grid-template-columns: repeat(4, 1fr);
        gap: .5rem;
        padding: 10px;
        overflow: auto;
        background-color: transparent;
        border: 2px solid rgba(191, 191, 191, 0.25);
    }

    .grid-container-beitragcol1 {
        padding: .5rem;
    }

    .grid-container-beitragcol2 {
        grid-column-start: 1;
        padding: .5rem;
    }

    .grid-container-beitragcol3 {
        grid-column-start: 2;
        padding: .5rem;
    }

    .grid-container-beitragcol4 {
        grid-column-start: 1;
        padding: .5rem;
    }
}

/*TOURENPLANUNG*/

.tasksdone {
    display: flex;
    padding: 5px;
    font-size: 14px;
    background-color: green;
    color: #ffffff;
    width: 50px;
}

.tasksoffen {
    display: flex;
    padding: 5px;
    font-size: 14px;
    background-color: red;
    color: #ffffff;
    width: 50px;
}

.tasktxtdone {
    color: #4ca51c; /*//green*/
}

.tasktxtoffen {
    color: red;
}

.tasktxtzeiten {
    color: brown;
}

.tasktxtallg {
    color: dodgerblue;
}

.btntaskstart {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/4937139_control_play_start_unpause_video_icon.svg');
    background-position: left; /* Center the image 1524797_medium_music_on_player_song_icon.svg*/
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btntaskstop {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/4937177_arrow_control_eject_open_stop_icon.svg');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btntaskedit {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/2808158_create post_edit_edit post_write_icon.svg');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}


.btntaskkuinfo {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/8317952_location_adress_map_pin_icon.svg');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btntaskdone {
    width: 150px;
    height: 35px;
    border-radius: 3px;
    padding: 3px 50px 3px;
    background-image: url('../img/303205_accept_check_checkbox_checkmark_done_icon.png');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btntaskcaredashboard {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/6304672_analytics_chart_dashboard_medical_medicine_icon.svg');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btntourbriefing {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/8800693_info_square_help_information_icon.svg');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}

.btnreporting {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-image: url('../img/1921105_document_report_schedule_summary_table_icon.svg');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    /*background-size: cover;*/ /* Resize the background image to cover the entire container */
    border: none;
    -webkit-box-shadow: none;
}


.divdashboardcare {
    display: flex;
    border: 2px solid rgba(191, 191, 191, 0.25);
    padding: 5px;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 5px;
}

.divmykachel100x66 {
    width: 100px;
    height: 66px;
    border: 2px solid #154769;
    border-radius: 4px;
    background-color: rgba(191, 191, 191, 0.25); /*blau*/ /*#18557d;*/
    box-shadow: 3px 3px 3px #ccc;
    cursor: pointer;
}


divvw {
    border: 1px solid #999;
    padding: 5px;
    width: 220px;
}

rowkugrid {
    vertical-align: middle !important;
    height: 50px;
}

tbcarelastmessung textarea {
    font-size: x-small;
    font-family: Verdana;
    text-align: left;
    opacity: 0.75;
    color: navy;
}

.divshadow {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /*box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;*/
    /*box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;*/
}

.collapsible {
    background-color: rgba(0, 0, 0, 0.35);
    color: navy;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

    .active, .collapsible:hover {
        background-color: #555;
    }

    .collapsible:after {
        content: '\002B';
        color: white;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }

.active:after {
    content: "\2212";
}

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f1f1f1;
}

.loginbutton {
    background-color: #04AA6D;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.dx-datagrid .dx-datagrid-headers {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.btn--action {
    margin: 2rem auto 1.2rem auto;
}

@media only screen and (min-device-width : 480px) {
    /* Styles */

    .dx-scrollable-scrollbar.dx-scrollbar-horizontal {
        top: 0px; /*Adjust this value as needed */
        /*background-color: blue;
    height: 100px;*/
    }

}



/*.dx-drawer-panel-content, .dx-overlay-content {
    background-color: rgba(224, 224, 224, 1);ghostwhite;*/ /*lightgray;*/
/*}*/
/*.drawer-view-content {
    margin-left: 10px;
    margin-top: 10px;
}*/
/*.dx-toolbar {
    background-color: rgba(191, 191, 191, .15);
    padding: 5px 10px;
}

.dx-list-item-icon-container, .dx-toolbar-before {
    width: 36px;
    padding-right: 0px !important;
    text-align: center;
}

.dx-list-item-content {
    padding-left: 10px !important;
}

.dx-button {
    background-color: rgba(191, 191, 191, -0.15);
    border: none;
}



.dx-drawer-shrink #content {
    overflow: hidden;
    transition: all 0.4s ease-out;
    column-width: 900px;
}

.dx-drawer-shrink.dx-drawer-opened #content {
    column-width: 300px;
    margin-right: -10px;
}

.panel-list {
    height: 200px;
}

    .panel-list .dx-list-item {
        color: #fff;
        text-align: center;
        border-top: 1px solid rgba(221, 221, 221, .2);
    }

.options {
    padding: 20px;
    background-color: rgba(191, 191, 191, .15);
}

#content {
    height: 100%;
    padding: 10px 20px;
}*/

