@import url('bootstrap-icons.css');

/* #### THEMECOLORS ############################### */

:root {
    --darkred: rgb(144, 30, 52);
    --red: #AB1832;
    --lightred: rgba(192, 12, 47, 0.7);
    --bluegrey: #868E93;
    --lightbluegrey: #b3bec3;
    --darkblue: rgba(1, 130, 194, 1);
    --blue: rgba(0, 164, 246, 1);
    --lightblue: rgba(0, 164, 246, 0.05);
    --darkgrey: rgba(82, 84, 88, 0.9);
    --grey: rgba(82, 84, 88, 0.75);
    --lightgrey: rgba(82, 84, 88, 0.2);
    --lightergrey: rgba(82, 84, 88, 0.05);
    --green: rgba(83, 194, 28, 1);
    --lightgreen: rgba(83, 194, 28, 0.05);
    --yellow: rgba(253, 196, 0, 1);
    --lightyellow: rgba(253, 196, 0, 0.05);
    --darkerblue: #0075cc;
    --info: #e7f3fb;
}

.color-red {
    color: #444444;
}

.color-bluegrey {
    color: var(--bluegrey);
}

.color-blue {
    color: var(--blue);
}

.color-grey {
    color: var(--grey);
}

.color-green {
    color: var(--green);
}

.color-yellow {
    color: var(--yellow);
}

.color-darkerblue {
    color: var(--darkerblue);
}

.green {
    color: var(--green);
    font-size: 0.9rem;
}


/* #### ALLGEMEIN ############################### */

body, p, h1, h2, h3, h4, h5, input, textarea, select, button, table {
    font-family: Sans-Serif, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--grey);
    /*line-height:1rem;*/
    font-size: 1rem;
}

body {
    background-color: var(--lightergrey);
    margin: 0;
    font-size: 1rem;
    color: #444444;
}

img {
    border: 0;
}

h3 {
    color: #444444;
}

h4 {
    color: var(--darkgrey);
    margin-bottom: 10px;
}

p {
    margin: 1rem 0;
}

a {
    color: #444444;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

a:hover {
    color: #444444 !important;
    text-decoration: none !important;
}

a:link {
    color: #444444;
    text-decoration: none !important;
}

a:active, .active_nav_entry {
    color: #444444 !important;
    text-decoration: none !important;
}

a:hover {
    color: #444444 !important;
    text-decoration: none !important;
}

a:link.tabhead {
    color: var(--grey) !important;
    text-decoration: none;
}

a.navi {
    color: var(--grey);
    text-decoration: none;
}

a:hover.navi, a:active.navi, a.active {
    color: #444444 !important;
    text-decoration: none;
}

a:link.white {
    color: #ffffff;
    text-decoration: none;
}

a:active.white {
    color: #ffffff;
    text-decoration: none;
}

a:hover.white {
    color: #ff8888;
    text-decoration: none;
    font-weight: bold;
}

a:hover.tabhead {
    color: #303030;
    /*text-decoration: underline;*/
}

a:link > img {
    margin-bottom: 0.3rem;
}

.small {

    font-size: .8rem;
}

.verysmall {

    font-size: .7rem;
}

.smallhead {

    font-size: 0.9rem;
    font-weight: bold;
    background-color: #eeeeee;
}

hr {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 1rem;
}


/* #### FORMULARE EINGABE ############################### */

input, textarea, select {
    font-size: 0.9rem;
    border-radius: 4px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition-property: color, background-color, border-color, box-shadow;
    transition-duration: 0.15s, 0.15s, 0.15s, 0.15s;
    transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
    transition-delay: 0s, 0s, 0s, 0s;
    background: var(--lightergrey);
    border: 1px solid var(--lightgrey);
    margin: 5px;
    padding: 5px !important;
    border-radius: 3px !important;
    color: var(--grey);
    box-sizing: border-box;
}

input:focus-within {
    border-color: #1E7AFA;
}

input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=number],
input[type=tel],
input[type=date] {
    height: 35px;
}

input[type=checkbox], input[type=radio] {
    margin-right: 7px;
}

input[type=checkbox].tree {
    margin: 0 0 0 0.3rem;
    transform: scale(1.2);
}

select[size="6"] {
    font-size: 0.9rem;
}

.select2-container .select2-selection--single {
    height: auto !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    background: var(--lightergrey) !important;
    border-radius: 3px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 35px !important;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    padding-left: 5px !important;
    color: var(--grey);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--grey) !important;
    line-height: 35px !important;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid var(--lightgrey) !important;
    border-radius: 3px !important;
    /*width: min-content;*/
}

.select2-container {
    margin: 5px 0 !important;
}

#PGPersonal .select2-container {
    margin: 5px 10px 5px 0 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    background: var(--lightergrey) !important;
    border-radius: 3px;
    height: auto;
    min-height: 35px;
}

.select2-container--default .select2-selection--multiple {
    margin: 5px 0 10px 0;
    height: auto;
    border: 1px solid var(--lightgrey) !important;
}

/* #### BUTTONS ############################### */

button {
    /*border: medium none transparent;*/
    margin: 10px 10px 10px 0;
    cursor: pointer;
    padding: 3px 10px;
    border-radius: 3px !important;
    border: 1px solid var(--lightbluegrey) !important;
    background: #ffffff;
    height: 35px;
    line-height: 100%;
    font-size: 15px !important;
    grid-row-start: none;
}

button:hover {
    background: var(--lightbluegrey) !important;
    border: 1px solid var(--lightbluegrey);
    color: #fff !important;
}

button i {
    /* -webkit-transition: all .3s ease; */
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    /* transition: all .3s ease; */
    margin-right: .3rem;
}

button:hover i {
    color: #fff !important;
}

a.btn, .btn {
    display: block;
    width: auto;
    /* line-height: 100%; */
    background: #fff;
    position: relative;
    /* padding: .5rem !important; */
    /* font-size: 15px!important; */
    color: var(--bluegrey) !important;
    /* text-align:left; */
    /* height:35px; */
}

.btn:has( > i) {
    /* padding: .5rem 1rem .5rem 2.5rem !important; */
}

a.btn:hover, btn:hover {
    color: #fff !important;
    text-decoration: none;
    background: var(--lightbluegrey);
    border: 1px solid var(--lightbluegrey);
}

a.btn i, .btn i {
    /* position:absolute; */
    /* font-size: 18px!important; */
    /* display: inline-block; */
    /* left:10px; */
    /* top:8px; */
     margin-right:0.5em;
    /* -webkit-transition: all .3s ease; */
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    /* transition: all .3s ease; */
}

a.btn:hover i, .btn:hover i {
    color: #fff;
}

a.btn br, .btn br {
    display: none;
}

button.danger {
    background: #dd2b0e !important;
    color: #ffffff;
}

button:hover.danger {
    background-color: #c91c00;
}

button.send > img {
    display: none;
}

button.send, button.sendsmall {
    cursor: pointer;
}

button[type=submit].send {
    cursor: pointer;
    background-color: rgb(16, 133, 72);
    border-color: rgb(33, 118, 69);
    color: #ffffff;
}

button[type=button].send {
    /*background-color: #108548;*/
    /*color: #ffffff;*/
}

button[type=submit]:hover.send {
    background-color: #217645;
    border-color: #24663b;
    color: #ffffff;
}

button[type=button].sendsmall {
    background-color: #1f75cb;
    color: #ffffff;
}

button[type=button]:hover.sendsmall {
    background-color: #1068bf;
    border-color: #0b5cad;
    color: #ffffff;
}

button[type=submit].sendsmall > img {
    display: none;
}

button[type=button].sendsmall > img {
    display: none;
}

button.sendsmall24 > img {
    transform: scale(1.3);
    /*background-color: #ffffff;*/
    /*color: #303030;*/
    /*background-image: url('../images/btn_bg_smal_144.gif');*/

    /*border: medium none transparent;*/
    /*width: 144px;*/
    /*background-position: 0 50%;*/
    /*background-repeat: repeat-x;*/
    /*height: 32px;*/
    /*cursor: pointer;*/
    /*!*padding: 12px;*!*/
    /*padding-left: 12px;*/
    /*padding-right: 12px;*/
}

button.send_wo_bg {
    border: medium none transparent;
    background-color: transparent;
    height: 21px;
    cursor: pointer;
}

button.sendsmallleft {
    /*background-image: url('../images/btn_bg_smal_144.gif');*/
    text-align: left;
    /*border: medium none transparent;*/
    width: 10rem;
    /*background-position: 0 50%;*/
    /*background-repeat: repeat-x;*/
    /*padding-left: 15px;*/
    cursor: pointer;
}

button.sendsmallleft > img {
    transform: scale(1.3);
    margin-right: 0.7rem;
}

button.sendlarge {
    background-image: url('../images/btn_bg_large.gif');
    border: medium none transparent;
    width: 288px;
    background-position: 0 50%;
    background-repeat: repeat-x;
    height: 31px
}

button.transparent {
    background-color: transparent;
    border: 0;
}

button.sendsmallred {
    /*background-image: url('../images/btn_bg_smal_red_144.gif');*/

    /*border: medium none transparent;*/
    /*width: 144px;*/
    /*background-position: 0px 50%;*/
    /*background-repeat: repeat-x;*/
    /*height: 21px*/
}

button.sendbig {
    background-color: transparent;
    border-bottom: 1px solid #aaa;
    border-right: 1px solid #aaa;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    padding: 5px;
}

button.sendsmall24 {
    /*background-color: rgba(255,255,255,0.7);*/

    /*!*!*!*!*!*background-image: url('../images/btn_bg_smal_24.gif');*!*!*!*!*!*/
    /*!*!*!*!*!*background-color: transparent;*!*!*!*!*!*/
    /*!*!*!*!*text-align: center;*!*!*!*!*/
    /*!*!*!*!*border: medium none transparent;*!*!*!*!*/
    /*!*!*!*width: 24px;*!*!*!*/
    /*!*!*background-position: 0 50%;*!*!*/
    /*!*height: 23px;*!*/
    /*cursor: pointer;*/
    /*padding: 1rem;*/
}

button[type="submit"].send > .bi::before {
    color: #fff;
}

button[type="button"].sendsmall > .bi::before {
    color: #fff;
    margin-right: 5px;
}

.content_head button {
    min-width: auto !important;
}


#mainCP {
    margin: 0;
}


/* ####### FIELDSET ##################################################################*/

fieldset {
    border: 1px solid rgb(0 0 0 / 4%);
    /* margin: 0 0 1rem; */
    padding: 1rem 1rem;
    border-radius: 10px;
}


/* ####### LISTEN ##################################################################*/

table.listview {
    border: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 1rem;
}

table.listview tr {
    border-bottom: 1px solid var(--lightergrey) !important;
}

table.listview tr:HOVER {
    background: var(--lightergrey);
}

table.listview th {
    padding-left: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-left: none;
    border-right: none;
    height: 30px;
    border-top: 1px solid var(--lightgrey);
    border-bottom: 1px solid var(--lightgrey);
    background: var(--lightergrey);
    color: var(--grey) !important;
    text-align: left;
    border-bottom: 3px solid #53ad31; /* KEBA green shadow */
}


/* ####### TABLES ##################################################################*/

td {
    font-size: .9em;
    padding: 0;
}

.entry a {
    padding: 0 5px;
}

td.list {
    padding: 15px 5px;
    /*margin: 0;*/
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden; /* "overflow"-Wert darf nicht "visible" sein */
    text-overflow: ellipsis;
    font-size: 0.9rem;
}

tr.empty > td {
    text-align: center;
    height: 3rem;
    color: #c0c0c0;
    font-size: 0.9rem;
    background-color: #fcfcfc;
    /*opacity: 0.5;*/
    border-top: 1px solid #f0f0f0;
}

td.list img {
    transform: scale(1.3);
    margin-right: 0.3rem;
    margin-left: 0.3rem;
}

.sticky {
    /*background-color: #1E7AFA;*/
    position: sticky;
    left: 0;
    right: 0;
    top: 80px; /* Don't forget this, required for the stickiness */
}

table.listnav {
    background-image: url(../images/tabnavbg.gif);

}

td.listnav {
    font-size: 11px;
    padding-left: 5px;
    padding-right: 5px;
    color: #444;
}

td.navi {
    background-color: #ffffff;
    color: #000000;
    vertical-align: top;
    text-align: left;
}

td.rand {
    background-color: #939393;
    color: #ffffff;
    width: 0;
}

td.head {
    color: #444444;
    text-align: center;
    font-size: 16px;
}

td.subhead {
    background-color: #ffffee;
    text-align: left;
    font-size: 11px;
}

td.contenthead {
    background-color: #939393;
    color: #ffffff;
    vertical-align: middle;
    font-size: 12px;
    padding-left: 6px;
}

td.tabhead {
    background-image: url(../images/tab_top_m.gif);
    background-color: #A91829;
    color: #ffffff;
    vertical-align: middle;
    font-size: 12px;
}

td.tabheadlogo {
    background-image: url(../images/tab_top_m.gif);
    vertical-align: middle;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 20px;
}

td.tabheadl {
    background-image: url(../images/tab_top_l.gif);
    width: 2px;
}

td.tabcontent {
    text-align: center;
    border-left: 1px solid #a91829;
    border-right: 1px solid #a91829;
    padding: 10px 10px 20px;
}

td.tabbl {
    width: 3px;
    height: 3px;
}

td.tabbr {
    width: 3px;
    height: 3px;
}

td.tabbm {
    background-image: url(../images/tab_bottom_m.gif);
    height: 3px;
    width: 100%;
}

td.content {
    background-color: #FFFFFE;
    color: #222;
    vertical-align: top;
    text-align: left;
}

td.content1 {
    background-color: White;
    color: #222;
}

td.content2 {
    background-color: #F0F0F0;
    color: #222;
}

td.content3 {
    background-color: #eeeeaa;
    color: #222;
}

td.contentredwhite {
    background-color: #FF7860;
    color: White;
    padding: 4px;
}

td.contentgreenwhite {
    background-color: #66C266;
    color: White;
    padding: 2px;
}

td.contentgreyblack {
    background-color: #F5F5DC;
    color: #0E0E0E;
    padding: 4px;
}

td.contentwhiteblack {
    background-color: #FEFEFE;
    color: #0E0E0E;
    padding: 2px;
}

td.content2body {
    background-color: #85adc0;
    color: #ffffff;
}

td.contentbluewhite {
    background-color: #85adc0;
    color: #ffffff;
    padding: 2px;
}


/* ####### CARDS ##################################################################*/

.card_block {
    line-height: 1.2rem;
    display: flex;
    width: auto;
    background: var(--info);
    color: #444444;
    /*display: flex;*/
    /*display: table-caption;*/
    border: none;
    border-radius: 10px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    padding: 20px;
    margin-bottom: 30px;
}

.card_content_inline {
    display: inline-block;
    vertical-align: top;
    padding: 0 1rem;
}

.card_content_inline button {
    width: 100%;
    text-wrap: nowrap;
    text-align: left;
}

.card_content_inline .f-front::before {
    font-size: 30px;
}

.card_content_inline > div a {
    margin: 0 0 10px;
    display: block;
    width: auto;
    line-height: 30px;
    border: 1px solid var(--lightbluegrey);
    border-radius: 3px;
    background: #fff;
    position: relative;
    padding: 5px 20px 5px 50px;
    font-size: 0.9rem;
    color: var(--bluegrey) !important;
    text-align: left;
    height: 30px;
}

.card_content_inline > div a:hover {
    color: #fff !important;
    text-decoration: none;
    background: var(--lightbluegrey);
    border: 1px solid var(--lightbluegrey);
}

.card_content_inline > div a i {
    position: absolute;
    font-size: 20px;
    display: inline-block;
    left: 20px;
    top: 11px;
    margin-right: 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.card_content_inline > div a:hover i {
    color: #fff;
}

.card_content_inline > div a br {
    display: none;
}

.card_block .content_text {
    padding: 0;
}

#AutoNumber1 {
    valign: top;
    padding: 0;
    margin: 0;
    cell-spacing: 0;
    cell-padding: 0;
}


.head {

    font-size: 1.2rem;
    font-weight: bold;
    /*     background-color:#eeeeee; */
}

table.navibox {
    border: 0;
    padding: 0;
}

td.navihead {
    background-image: url('../images/navi_head_bg.gif');
    background-repeat: repeat-x;
}

table.navi {
    border-collapse: collapse;
    margin-bottom: 2px;
    margin-left: 2px;
    width: 160px;
    border: 1px solid #595959;;
}

table.navigroup {
    width: 100%;
    height: 24px;
}

table.navigroup td {
    height: 10px;
    border: 0;
    background-color: transparent;

}


.white {
    color: #ffffff;
    margin: 0;
    padding: 0;
    border: 0;
}

.whitehand {
    cursor: n-resize;
    color: #ffffff;
    padding-left: 5px;
}

td.naviitems {
    color: #ffffff;
    background: #939393 url('../images/navi_sub_bg.jpg') repeat-x top;
    padding-left: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
}

th.listheadbarfill {
    color: #303030;
    padding-left: 5px;
    /*background: #606060 url('../images/list_head_fill.jpg') repeat-x top;*/
    padding-top: 2px;
    padding-bottom: 2px;
    /*border-left: 1px solid #e0e0e0;*/
    /*border-right: 1px solid #e0e0e0;*/
    vertical-align: middle;
    font-weight: bold;
    font-size: 0.8rem;
    /*width: auto !important;*/
    /*text-align: left;*/
}

th.nopadd {
    color: #ffffff;
    padding: 1px;
    /*border: 1px solid #C4C4C4;*/
    vertical-align: middle;
}


th.listheadbarfillover {
    color: #303030;
    padding-left: 5px;
    /*background: #A86868 url('../images/list_hea/d_over.jpg') repeat-x top;*/
    padding-top: 2px;
    padding-bottom: 2px;
    vertical-align: middle;
    font-weight: bold;
    font-size: 0.8rem;

}


th.listheadbarfillover b img {
    margin-top: 12px;
}


tr.listov {
    background-color: #fff5b0;
}

td.tabinfo {
    border-bottom: 1px solid #ccc;
    padding-left: 5px;
    height: 20px;
    font-weight: bold;
    margin-bottom: 2rem;
}

td.tabinfo_light {
    border-bottom: 1px solid #ccc;
    background-color: #eee;
    padding-left: 5px;
    height: 20px;

}


td.formatpre {
    font-family: Courier, serif;
}


td.statuslist {
    padding-right: 10px;

    font-size: 11px;
}

td.statuslist_alt {
    padding-right: 10px;

    font-size: 11px;
    background-color: #f8f8f8;
}


.boxlayout_depotno {
    padding-right: .3rem;
    font-size: .9rem;
}

.boxlayout_depotno1 {
    padding-right: .3rem;
    font-size: .9rem;
    background-color: #C1E2FF;
}

.boxlayout_depotno_green {
    padding-right: .3rem;
    font-size: .9rem;
    background-color: #ddffee;
}

.boxlayout_depotno_green1 {
    padding-right: .3rem;
    font-size: .9rem;
    background-color: #ddffee;
}

.boxlayout_element {
    padding-right: 2px;
    text-align: center;
}

.boxlayout_element_in_use {
    padding-right: 0;

    width: 30px;
    text-align: center;
    border-right: 5px solid Red;
}

.boxlayout_element_not_in_use {
    padding-right: 0;

    width: 30px;
    text-align: center;
    border-right: 5px solid #00C402;
}


.cardnoread {
    border: 2px solid Green;
    color: #008040;
}

.cardnowrite {
    border: 2px solid Red;
    color: Red;
}

.reiter {
    height: 20px;
    border: 1px solid Silver;
    border-right: 0 solid Silver;
    background: #EBEBEB;
    padding: 3px 15px;
    font-size: 12px;
}

.reiter_selected {
    height: 20px;
    padding: 3px 15px;
    border: 1px solid Silver;
    background: #FEFEFE;
    border-bottom-color: #FEFEFE;
    border-right: 0 solid Silver;
    font-size: 12px;
}

.reiter_left {
    height: 20px;
    padding: 3px;
    background: #FEFEFE;
    border-bottom: 1px solid Silver;
    font-size: 0.9rem;
}

.reiter_right {
    height: 20px;
    padding: 3px;
    background: #FEFEFE;
    border-bottom: 1px solid Silver;
    border-left: 1px solid Silver;
    font-size: 12px;
}

td.border1 {
    border: 1px solid #C8C8C8;
    font-weight: bold;
}

.arrow {
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    margin-left: 5px;
    opacity: 0.66;
}

.arrow.asc {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #939393;
}

.arrow.desc {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #939393;
}


form > table, .medium {
    max-width: 1680px;
    margin: auto auto;
    border-collapse: collapse;
    border: none;
    background: #fff;
    padding: 30px;
}

.small-content {
    max-width: 500px;
    margin: auto auto;
}


#screenTabs {
    float: left;
    width: 100%;
    background: none;
    margin-bottom: 1.5rem;
    font-size: .9rem;
}

#tabs {
    float: left;
    /*width: calc(100% + 60px);*/
    width: 100%;
    line-height: normal;
    white-space: nowrap;
    background: var(--lightergrey);
    /*margin-left: -30px;*/
    /*margin-top: -30px;*/
}

#tabs ul {
    margin: 0;
    padding: 0 10px 10px 0;
    list-style: none;
}

#tabs a {
    display: inline-block;
    padding: 10px;
    color: #444444 !important;
    background: rgba(255, 255, 255, 0.5);
}

#tabs a:hover {
    display: inline-block;
    background: #fff;
    padding: 10px;
    color: var(--grey);
}

#tabs li {
    float: left;
    background: none;
    margin: 0;
    padding: 0 5px 0 0;
}

#tabs #current a {
    display: inline-block;
    background: #fff;
    padding: 10px;
    color: var(--grey) !important;
}


td.smallbordergrey {
    border: 1px solid #BEBEBE;
    padding: 10px;

}

select.selfl {
    width: 160px;
}

select.sel300 {
    width: 300px;
}

span.grey {
    color: #777777;
}

td.info {
    padding: 20px 5px;
    color: #666688;
}

/* Calender */

table.cal {
    border: 1px solid #e0e0e0;
    margin: 0;
    border-collapse: collapse;
    border-spacing: 1px;
    width: 150px;
}

table.cal td {
    font-size: 11px;
    padding: 2px;
    border: 1px solid #e0e0e0;
    text-align: right;
    cursor: pointer;
}


td.cellk {
    background-color: #e0e0ff;
}

td.celln {
    background-color: #ffffff;
}

td.cells {
    background-color: #ffe0e0;
}

td.celle {
    background-color: #f0f0f0;
}

td.headn {
    background: #D6DFF7 url('../images/list_head_fill.jpg');
    color: #ffffff;
    text-align: center;
    font-weight: bold;

}

td.heads {
    background: #ABBEEF url('../images/list_head_over.jpg');
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

td.calfooter {
    text-align: center;
}

/* Dayview */

table.dayview {
    border: 1px solid #e0e0e0;
    margin: 0;
    border-collapse: collapse;
    border-spacing: 1px;
}

table.dayview td {
    font-size: 11px;
    padding: 1px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
    cursor: pointer;
    height: 20px;
}


td.dvrowh1 {
    background-color: #e0e0ff;
}

td.dvrowh2 {
    background-color: #ffffff;
}

td.dvcell1 {
    background-color: #e0e0ff;
    width: 300px;
}

td.dvcell2 {
    background-color: #ffffff;
    width: 300px;
}

span.calred {
    color: #a00;
    font-weight: bold;
}

span.calgreen {
    color: #0a0;
    font-weight: bold;
}

td.dvfooter {
    background-color: #eee;
    text-align: center;
}

table.calenders {

}

ul.list_item {
    margin-left: 0;
    display: block;
}

ul.list_item li {
    list-style: none;
    display: block;
    /*display: inline;*/
    /*float:left;*/
    padding: 2px;
    /*text-align: center;*/
}

ul.list_item a {
}

table.report {
    border-collapse: collapse;
    border: 0;
}

table.report th {
    font-size: 12px;
    border: 1px solid #ddd;
    background-color: #ddd;
}

table.report td {
    font-size: 11px;
    border: 1px solid #ddd;
    padding: 0 3px;
}

legend {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    /*padding: 1rem 0;*/
    /*font-weight:bold;*/
}

legend b {
    font-weight: normal;
}

hr.separator {
    border: none;
    border-top: 1px solid #eeeeee;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
}


/* new pdf report (line wrapping)*/

.page_header, table.pageHeader {
    width: 100%;
}

td.header_left, td.header_right {
    vertical-align: top;
}

td.header_left {
    width: 80%;
}

td.header_right {
    width: 20%;
}

span.report_title {
    font-size: 18px;
    font-weight: bold;
}

span.report_filter {
    font-size: 15px;
}

table.report {
    width: 100%;
}

table.report thead tr th {
    color: #fff;
    background-color: #1651a1;
}

table.report thead tr th, table.report tr td {
    text-align: left;
    padding: 1px 4px;
    vertical-align: top;
}

.odd {
    background-color: #efefef;
}

.even {
    background-color: #fafafa;
}

/******* Formularstyles *********************/

td.frmleft {
    text-align: right;
    padding-right: 5px;
    vertical-align: baseline;
    padding-top: 5px;
    padding-bottom: 5px;
}

td.frmright {
    text-align: left;
    padding-right: 2px;
    padding-top: 5px;
    padding-bottom: 5px;
}

table.frm {


}

select.selfl {
    width: 2rem;
}

/* Miscellaneous */
.highlight {
    background-color: silver;
}

.buildGap {
    margin: 6px;
}

.filterSetting label {
    margin-right: 4px;
    /*text-align: right;*/
}

.filterSetting img {
    margin: 2px;
}

.filterSetting select, .filterSetting input {
    margin-right: 4px;
    width: 120px;
}

#showOnlyEnabled {
    width: 20px;
}

td.categorySep {
    width: 100%;
    border-bottom: 1px solid #aaa;
    padding-top: 10px;
    font-size: 0.9rem;
    font-weight: bold;
}

.navi_box {
    width: 100%;
    margin-top: 40px;
    font-size: 0.9rem;
}

.version {
    padding: 10px 0 10px 33px;
}

.group_box {
    margin: 0;
    /*margin-bottom: 1rem;*/
    /*background-color: rgba(0, 0, 0, 0.04);*/
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.group_content {
    color: #303030;
}

.group_title {
    /*color: #ffffff;*/
    /*background-color: #e0e0e0;*/
    /*border-bottom: 1px solid #e0e0e0;*/
    /*text-transform:uppercase;*/
    cursor: pointer;
    font-size: 16px;
    color: #666;
    padding: 0.6rem .4rem 0.6rem 2rem;
    font-weight: bold;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.group_title:hover {
    background: rgba(0, 0, 0, 0.02);
}

.toogle_visible {
    float: right;
    margin-top: 6px;
    opacity: 20%;
}

.group_title:hover .toogle_visible {
    opacity: 100%;
}

.group_content ul {
    list-style-type: none;
    padding: 0 0 1.2rem 1rem;
    margin: 0;
}

.group_content ul li {
    padding-top: 8px;
    padding-left: 1rem;
}

.group_content ul li:last-child {
    padding-bottom: 8px;
}

.group_content ul li .img_wrapper img {
    width: auto;
    height: auto;
    margin-right: 12px;
}

#divnav {
    background: #fafafa;
    border-right: 1px solid rgb(219, 219, 219);
    font-size: 0.9rem;
    height: 100%;
}

#divnav > table {
    height: auto !important;
}

.logo {
    background: url('../images/logo.svg') center center no-repeat;
    width: 189px;
    height: 78px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: 190px;
    margin: 0 0 20px 2rem;
}

body.navi .version {
    color: #C0C0C0;
    font-size: 0.8rem;
    padding: 4px;
}

#navi_footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 225px;
}

#navi_footer a {
    margin-left: 50px;
}

#navi_account {
    color: #303030;
    /* background: url("../images/navi_rombus.gif") no-repeat right; */
    top: 90px;
    /*font-size: 0.9em!important;*/
    position: absolute;
    left: 0;
    padding: 0 2rem;
    width: 280px;
    box-sizing: border-box;
}

#navi_account .small {
    font-size: 0.8rem !important;
}

#navi_account div.small {
    color: var(--grey);
}

#navi_account .version {
    color: #C0C0C0;
    font-size: 0.8rem;
    padding: 4px;
}


.content {

}

.content_head {
    background: #fafafa;
    height: 4rem;
    text-align: center;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
}

.content_head h1 {
    padding-top: 1rem;
    margin: 0;
    font-size: 1.3rem;
    color: #808080;
    font-weight: normal;
    text-transform: uppercase;
}

.content_main {
    padding: 32px;
}

.align-center {
    float: end;
    text-align: center;
    width: 100%;
}

.align-center-inline {
    text-align: center;
    display: inline-block;
    margin: 0;
}

.content_main_full {
    padding-top: 24px;
}

.content_text {
    padding: 24px;
    max-width: 1000px;
    margin: auto auto;
}

.content_text p {
    max-width: 800px;
    justify-content: space-between;
    text-justify: auto;
    text-align: justify;
    line-height: 1.2rem;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;

}

.mt_h3 {
    padding-top: 2rem;
}

.goback {
    float: left;
    display: inline-block;
    margin: 10px;
}

.errors {
    background: #f8d7da;
    padding: 1rem;
    margin: 0.5rem;
    color: #721c24;
    font-size: .9rem;
}

div.info {
    background: #d1ecf1;
    padding: 1rem;
    margin: 0.5rem;
    color: #0c5460;
}

.success {
    background: #d4edda;
    padding: 1rem;
    margin: 0.5rem;
    color: #155724;
}

.pull-right {
    float: right;
}

.f-action::before {
    font-size: 18px;
    margin-bottom: 2px;
}

.f-front::before {
    font-size: 18px;
    margin-bottom: 10px;
}

.list .bi::before, .list [class^="bi-"]::before, .list [class*=" bi-"]::before {
    font-size: 1rem !important;
}

.bi {
    margin: .3rem .09rem;
}


/* ########################################################################################
########## NEWSTYLE #######################################################################
########################################################################################*/

/* ####### SERVICEMODE ##################################################################*/

#servicemode {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    grid-gap: 20px;
}

#servicemode legend {
    font-size: 18px;
}

#servicemode div {
    margin: 0 0 20px;
}

#servicemode a {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px;
}

#servicemode a:last-child {
    border-bottom: none;
}

#servicemode a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #444444 !important;
}

#servicemode i {
    float: left;
    width: 50px;
    margin-top: -3px;
}

#servicemode .f-front::before {
    font-size: 25px;
    color: #444444;
    margin-bottom: 0;
    -webkit-transition: all 0.2s ease-in;
    -webkit-transform: scale(1);
    -ms-transition: all 0.2s ease-in;
    -ms-transform: scale(1);
    -moz-transition: all 0.2s ease-in;
    -moz-transform: scale(1);
}

#servicemode a:hover .f-front::before {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -moz-transform: scale(1.3);
    transform: scale(1.3);
}

.right {
    float: right;
}

.close {
    float: right;
    margin-top: -50px;
}

.close .bi-x {
    font-size: 25px;
}


/* ####### FORM NEW ##################################################################*/


form legend {
    font-size: 1.2rem;
}
.formgrid {
    display: grid;
    grid-template-columns: auto  auto;
    grid-template-rows: auto;
    grid-template-areas:
        ". ."
        "footer footer";
    grid-gap: 20px;
}

.formgrid fieldset {
    display: inline-flex;
}
.formgrid fieldset:has(legend) {
    display: inline-block;
}

.form_div > .form_row:has(input[type=checkbox]) {
    min-height: 35px;
    margin: 0 0 10px;
    overflow: auto;
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
}
.form_div > .form_row:has(input[type=checkbox]) > .form_label {
    width: 100%;
}


.form_row {
    min-height: 35px;
    margin: 1em 0.3em;
    overflow: auto;
}

.form_label {
    min-height: inherit;
    float: left;
    margin-right: 10px;
    display: inline-flex;
    align-items: flex-end;
    flex-direction: row;
    padding: .3rem .5rem;
}

.formgrid fieldset:has(legend) .form_label {
    width: 280px;
}


.form_label input[type=radio] {
    float: left;
    margin-top: 3px;
}

.form_field {
    float: left;
}

.form_field input {
    margin: .3rem 0;
    padding: 0 .5rem !important;
}

.form_field input[type=checkbox],
.form_field input[type=radio] {
    margin-right: .3rem;
    margin-top: .2rem;
}

.form_submit button.btn {
    background-color: #ffffff !important;
    border: 1px solid #5EAA22 !important;
    color: #444444 !important;
    border-radius: 4px;
}

.form_submit button.btn:hover {
    background-color: #f5f5f5 !important;
    color: #444444 !important;
}

.form_submit button.btn:active {
    background-color: #eeeeee !important;
    color: #444444 !important;
}

.form_submit button {
    float: left;
}


.form_row button {
    margin: 5px 0;
}

.form_div {
    margin-top: 20px;
}

.form_row_reverse .form_row {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: baseline;
    margin-left: 1rem;
}

.rot {
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
    display: inline-block;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* ####### RESPONSIVE ##################################################################*/

@media only screen and (max-width: 1300px) {
    .formgrid {
        grid-template-columns:auto auto;
        grid-template-areas:
            ". ."
            "footer footer";
    }
}

@media only screen and (max-width: 1000px) {
    #servicemode {
        grid-template-columns:1fr auto;
    }

    .formgrid {
        grid-template-columns:1fr;
        grid-template-areas:
            "."
            "footer";
    }
}

@media only screen and (max-width: 769px) {
    #servicemode {
        grid-template-columns:1fr;
    }
}

.lang_switch {
    padding: 0 2rem;

}

