
.main-color {
    background-color: var(--main-color);
}

input[type="checkbox"], input[type="radio"] {
    /*accent-color: var(--main-color);*/
    accent-color: #666666;
}

*, p {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
}

#page_max_width {
    max-width: 1640px;
}

html {
    height: 100%;
}

body {
    height: calc(100% - 20px);
    background-color: #FFFFFF;
}

input:disabled, select:disabled, [readonly], select:disabled {
    background-color: #dfdfdf;
    opacity: 1;
    color: #666666;
    border: 1px solid #aaaaaa;
}

.input_readonly {
    background-color: #dfdfdf;
    border: 1px;
    border-style: solid;
    border-color: #aaaaaa;
    padding-left: 2px;
    height: 19px;
    outline: none;
}

.main {
    width: 100%;
    height: 100%;
    background-color: #eeeeee;
}

.login_page {
    background-color:#cccccc;
    height: 95%;
}
.hidden {
    display: none;
}

.inlineBlock {
    display: inline-block;
    vertical-align: top;
}
.filter_buttons {
    margin-bottom: 15px;
}
.main-left, .main-right {
    display: inline-block;
    width: 49%;
    height: 100%;
    overflow: auto;
    vertical-align: text-top;
    background-color: #eeeeee;
    padding: 10px;
    box-sizing: border-box;
}

.main-left-100 {
    width: 100%;
}

.left-inner-main, .right-inner-main {
    padding: 5px;
    box-sizing: border-box;
}

.message {
    background-color: #dff0d8;
    color: #3c763d;
    border-top: 3px solid #d6e9c6;
    border-bottom: 3px solid #d6e9c6;
    font-weight: bold;
    padding: 1em 1em 1em 0;
    line-height: 1.4em;
}

.notice {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    line-height: 1.4em;
    opacity: 0;
    animation: fade 2s linear;
}

.notice_popup {
    position: absolute;
    top: 40px; /* placeres længere nede, da der er defineret en topbjælke */
    right: 10px;
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    line-height: 1.4em;
    opacity: 0;
    animation: fade 2s linear;
}

@keyframes fade {
    0% {
        opacity: 1
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0;
    }
}

.warning {
    background-color: #efe7b8;
    color: #c00;
    border-top: 3px solid #f0dc7e;
    border-bottom: 3px solid #f0dc7e;
    font-weight: bold;
    padding: 1em 1em 1em 0;
    line-height: 1.4em;
}

.error {
    background-color: #f00;
    color: #fff;
    padding: 20px;
    line-height: 1.4em;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    /*background-color: #e6c0c0;*/
    /*color: #c00;*/
    /*border-top: 3px solid #DE7A7B;*/
    /*border-bottom: 3px solid #DE7A7B;*/
    /**/
    /*padding: 1em 1em 1em 0;*/
    /*line-height: 1.4em;*/
}

.texterror > * {
    color: #ff0000 !important;
}

.ti_table_row {
    height: 20px;
}

.display-table {
    display: table;
}

.display-table > div {
    display: table-row;
}

.display-table.striped > div:nth-child(even) {
    background: #CCC
}

.display-table.striped > div:nth-child(odd) {
    background: #FFF
}

table.striped tr:nth-child(even) {
    background: #CCC
}

table.striped tr:nth-child(odd) {
    background: #FFF
}

.display-table > div > div {
    display: table-cell;
    /*padding: 5px;*/
}

.display-table.border {
    border-collapse: collapse;
}

.display-table > div.head > div {
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: bold;
    text-overflow: ellipsis;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px 2px;
}

.display-table.border > div:not(.head) > div {
    border-bottom: 1px solid #cccccc;
    padding: 3px;
}

div.width100, div.width100 input, div.width100 select {
    width: 100%;
}

.text-right {
    text-align: right !important;
}

.padding-right-10 {
    padding-right: 10px;
}

select {
    max-height: 23px;
}

input[type=button], option, input[type="checkbox"], label {
    cursor: pointer;
}

b {
    /*font-weight: bold;*/
}

hr {
    height: 1px;
    border: none;
    color: #666;
    background-color: #666;
}

H1 {
    font-size: 18px;
    font-weight: bold;
}

H2 {
    font-size: 14px;
    font-weight: bold;
}

H3 {
    font-size: 12px;
    font-weight: bold;
}

A {
    color: #336699;
    text-decoration: underline;
}

A:Hover {
    text-decoration: underline;
}

textarea {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input {
    padding: 2px;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #767676;
}

select {
    height: 40px;
    cursor: pointer;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* menu */
.menu_container {
    margin: 0;
    height: inherit;   /* minus højden på top bjælken*/
    width: 100%;
    padding: 0;
    overflow: hidden;
}

/*Skjuler input check box*/
.menu_input {
    position: absolute;
    opacity: 0;
}
.hidden-checkbox {
    display: none;
}




/*Label styrer at man klikker på hele checkboxen*/
.menu_folder {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #eeeeee;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 0 8px 0;
    list-style-type: none;
    user-select: none;
}

/* skjuler submenu indtil man klikker på den (checked nedenfor) */
.menu_sub {
    display: none;
    list-style-type: none;
    padding: 0; /* for at få den helt til kant */
}

.bgcolor_level_1 {
    background-color: var(--main-color);
}

.bgcolor_level_2 {
    background-color: rgba(0, 0, 0, 0.25);
}

.bgcolor_level_3 {
    background-color: rgba(0, 0, 0, 0.15);
}

.bgcolor_level_4 {
    background-color: #5d3223;
}

.bgcolor_level_5 {
    background-color: #331B13;
}

/* viser menuen men underlader "parrent" via ~ (tilde) */
.menu_input:checked ~ .menu_sub {
    display: block;
    list-style-type: none;
}

/*.menu_punkt, .menu_punkt > a {*/
/*    display: inline-block;*/
/*    width: 100%;*/
/*    padding: 8px 10px 8px 0;*/
/*    font-size: 11px;*/
/*    font-weight: bold;*/
/*    color: #eeeeee;*/
/*    border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
/*    text-decoration: none;*/
/*    user-select: none;*/
/*}*/

.menu_single, .menu_single > a {
    width: calc(100% - 15px);
    padding: 8px 10px 8px 10px;
    font-size: 11px;
    font-weight: bold;
    color: #eeeeee;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    user-select: none;
}

.table_menu {
    color: #FFFFFF;
    padding: 8px 0 8px 20px;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    user-select: none;
}

.menu_folder:hover, .menu_punkt:hover, .menu_single:hover, .table_menu:hover {
    background-color: #fafafa;
    color: #666666;
    cursor: pointer;
}

/*********************************************** tooltip */
/* <div data-tooltip="Dette er en tooltip"> Hover over mig </div>*/

.tooltip {
    position: absolute;
    background-color: white;
    color: black;
    padding: 15px;
    border-radius: 3px;
    border: 1px solid black;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
}

.tooltip.red {
    background-color: red;
    color: white;
}

.tooltip.visible {
    opacity: 1;
}

/* Classer til tabelvisning */
.ti_table_faner, .ti_table_buttons {
    table-layout: fixed;
    width: 100%;
    min-width: 750px;
    border-spacing: 0px;
    border-collapse: collapse;
}

.ti_table_indhold {
    table-layout: fixed;
    width: 100%;
    min-width: 750px;
    background-color: #eeeeee;
    border-spacing: 0px;
    border-collapse: collapse;
}

.ti_table_kolonne {
    table-layout: fixed;
    width: 100%;
    min-width: 350px;
    border-spacing: 0px;
    border-collapse: collapse;
}

.ti_table_list {
    table-layout: fixed;
    width: 100%;
    min-width: 750px;
    border-spacing: 0px;
    border-collapse: collapse;
}

.ti_table_list.auto {
    width: auto;
}

.ten_px_normal {
    font-size: 10px;
    color: #000000;
    text-decoration: none;
    font-weight: normal;
}

.menu {
    font-size: 10px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.menulink {
    font-size: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.frekvens_box:hover {
    background-color: var(--main-color);
}

.goldenLink {
    display: flex;
    padding: 2px 2px 2px 20px;
    margin: 2px;
    cursor: pointer;
    background-image: url("/gfx/16x16-goldenlink-left.png");
    background-repeat: no-repeat;

    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;

}

.goldenLinkText {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    flex: 1; /* fyld tilgængelig plads */
}

.goldenLink:hover {
    background-color: var(--main-color);
    color: #ffffff;
}

.goldenDoc {
    padding: 2px;
    cursor: pointer;
    background-image: url("/gfx/16x16-icon-document.gif");
    background-repeat: no-repeat;
    padding-left: 20px;
}

.goldenDoc:hover {
    background-color: var(--main-color);
    color: #ffffff;
}

.tablelink {
    font-size: 10px;
    color: #000000;
    text-decoration: none;
    font-weight: normal;
}

.tablelink:hover {
    font-size: 10px;
    color: #000000;
    text-decoration: underline;
    font-weight: normal;
}

.ordre_table_header {
    font-size: 10px;
    color: #000000;
    font-weight: bold;
    line-height: 15px;
}

.ordre_table_content {
    font-size: 10px;
    color: #000000;
    font-weight: normal;
    line-height: 15px;
}

.print_tableheader {
    font-size: 12px;
    color: #000000;
    font-weight: bold;
}

.print_tabletext {
    font-size: 12px;
    color: #000000;
    font-weight: normal;
}

.vejl {
    color: #990000;
    font-weight: bold;
}

.menulink:hover {
    text-decoration: none;
}

.help {
    font-size: 10px;
    font-weight: normal;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-color: #000000;
    border-style: solid;
    padding: 0px;
    visibility: hidden;
    position: absolute;
    background-color: #FFFFFF;
    left: 290px;
    top: 275px;
    width: 270px;
    height: 100px;
    padding-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

.help2 {
    font-size: 10px;
    font-weight: normal;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-color: #000000;
    border-style: solid;
    padding: 0px;
    visibility: hidden;
    position: absolute;
    background-color: #FFFFFF;
    left: 290px;
    top: 220px;
    width: 270px;
    height: 40px;
    padding-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

.toolbox {
    text-decoration: none;
    font-size: 9px;
}

.One_greytable {
    border-width: 1px;
    border-color: #cccccc;
    border-style: solid;
    border-bottom-width: 0px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-left-width: 0px;
}

.One_greyinside {
    border-width: 1px;
    border-color: #cccccc;
    border-style: solid;
    border-bottom-width: 1px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-left-width: 1px;
}

.One_grey {
    border-width: 1px;
    border-color: #cccccc;
    border-style: solid;
    border-bottom-width: 1px;
    border-top-width: 1px;
    border-right-width: 1px;
    border-left-width: 1px;
}

.ti_dialog_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(102, 102, 102, 0.3);
    display: block;
    z-index: 400;
}

.ti_dialog {
    position: absolute;
    min-width: 350px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    padding: 25px 8px;
    margin: 100px 33%;
    z-index: 500;
    border-radius: 8px; /* runde hjørner */
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 1px 0px;
    text-align: center;
}

.fejl_div {
    position: absolute;
    width: 350px;
    border: 1px solid #dddddd;
    background-color: #cccccc;
    padding: 4px 8px;
    margin: 25%;
    z-index: 500;
    border-radius: 2px; /* runde hjørner */
    box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 1px 0px;
    text-align: center;
}

.width100 {
    width: 100%;
}

.multi_selector_gruppe_row {
    display: flex;
    padding: 5px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.multi_selector_gruppe_row:hover {
    background: #f0f0f0;
}

.multi_selector_gruppe_col_checkbox {
    width: 20px;
    margin-right: 10px;
}

.gruppe-col-checkbox {
    flex: 0 0 20px; /* fast bredde til checkbox */
}

.gruppe-col-text {
    flex: 1;
    word-break: break-word;
    line-height: 1.3em;
    margin-top: 3px;
}

.selector, .selector > option {
    font-size: 9px;
}

#loading {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 500;
    /*background-color: rgba(255, 255, 255, 0.70);*/
    display: none;
}

#loading > .container {
    width: 250px;
    height: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 25px;
    border-style: solid;
    background-color: #ffffff;
    border-width: 1px;
    border-radius: 8px;
    border-color: #666666;
}

#loading > .container > .image {
    float: left;
    padding-left: 25px;
}

#loading > .container > .text {
    float: left;
    padding-left: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: auto;
}

.fejlheader {
    font-size: 16px;
    font-weight: bold;
    color: #CC0000;
}

.fejltekst {
    font-size: 12px;
    font-weight: normal;
    color: #333333;
}

.vejlheader {
    font-size: 10px;
    font-weight: bold;
    color: #990000;
}

.vejltekst {
    font-size: 10px;
    font-weight: normal;
    color: #333333;
}

.indhold {
    font-size: 11px;
    font-weight: normal;
}

.pagebreakbefore {
    page-break-before: always;
}

.pagebreakafter {
    page-break-after: always;
}

.tableborder_1000 { /* Streg top */
    border-width: 1px 0 0 0;
    border-color: #000000;
    border-style: solid;
}

.tableborder_0100 { /* Streg højre */
    border-width: 0 1px 0 0;
    border-color: #000000;
    border-style: solid;
}

.tableborder_0010 { /* Streg bund */
    border-width: 0 0 1px 0;
    border-color: #000000;
    border-style: solid;
}

.tableborder_0001 { /* Streg venstre */
    border-width: 0 0 0 1px;
    border-color: #000000;
    border-style: solid;
}

.tableborder_1100 { /* Streg top + højre */
    border-width: 1px 1px 0 0;
    border-color: #000000;
    border-style: solid;
}

.tableborder_1110 { /* Streg top + højre + bund */
    border-width: 1px 1px 1px 0;
    border-color: #000000;
    border-style: solid;
}

.tableborder_1001 { /* Streg top + venstre */
    border-width: 1px 0 0 1px;
    border-color: #000000;
    border-style: solid;
}

.tableborder_0011 {
    border-width: 0 0 1px 1px;
    border-color: #000000;
    border-style: solid;
}

.tableborder_1011 {
    border-width: 1px 0 1px 1px;
    border-color: #000000;
    border-style: solid;
}

.tableborder_0110 {
    border-width: 0 1px 1px 0;
    border-color: #000000;
    border-style: solid;
}

.tableborder_0111 {
    border-width: 0 1px 1px 1px;
    border-color: #000000;
    border-style: solid;
}

.tableborder_1010 {
    border-width: 1px 0 1px 0;
    border-color: #000000;
    border-style: solid;
}

.tableborder_0101 {
    border-width: 0 1px 0 1px;
    border-color: #000000;
    border-style: solid;
}

.tableborder_1110 {
    border-width: 1px 1px 1px 0;
    border-color: #000000;
    border-style: solid;
}

.tableborder_1111 {
    border-width: 1px;
    border-color: #000000;
    border-style: solid;
}

.kalender_tabletext {
    color: #000000;
    font-weight: normal;
    vertical-align: middle;
}

.kalender_hover:hover {
    background-color: #FFCC66;
}

/* til menuknapperne */
.mouseover {
    background-color: #af5f45;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.mouseout {
    background-color: var(--main-color);
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.mouseout:hover {
    background-color: #af5f45;
}

.level_folder_over {
    background-color: #cc3300;
    font-size: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.level_folder_out {
    background-color: var(--main-color);
    font-size: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.level_doc_over {
    background-color: #965038;
    font-size: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.level_doc_out {
    background-color: #af5f45;
    font-size: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

#disp_container {
    width: 100%;
    position: relative;
    border: 1px solid #990000;
}

#disp_from_kunde {
    padding: 3px;
    margin: 0 10px 10px 0;
    background-color: #cc99cc;
    border: 1px solid #666666;
    width: calc(50% - 18px);
    min-height: 100px;
    float: left;
    cursor: pointer;
    overflow: hidden;
}

#mail_from_kunde {
    padding: 3px;
    margin: 0 10px 10px 0;
    background-color: #B8CFB2;
    border: 1px solid #666666;
    width: calc(50% - 18px);
    height: 100px;
    float: left;
    cursor: pointer;
    overflow: hidden;
}

.table_large_desktop {
    table-layout: fixed;
    min-width: 900px;
    /*max-width:2000px;*/
    width: 100%;
    border-collapse: collapse;
    padding: 2px;
    margin: 0px;
}

.tidsreg_table, reg_editor_button {
    table-layout: fixed;
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    padding: 0px;
    margin: 0px;
}

.tidsreg_tabledata {
    font-size: 10px;
    height: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 1px;
    text-decoration: none;
    color: #000000;
}

.tablemain {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    /*max-width: 2000px;*/
    min-width: 500px;
    padding: 2px;
    margin: 0px;
}

.tableheader {
    background-color: var(--main-color);
    height: 20px;
    color: #ffffff;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px; /* Hvis denne ændres, skal den også ændres i tabledata */
    cursor: pointer;
}

.tableheader:hover {
    background-color: #af5f45;
    cursor: pointer;
}

.tableheader_inactive {
    background-color: var(--main-color);
    color: #ffffff;
    height: 20px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px; /* Hvis denne ændres, skal den også ændres i tabledata */
}

.ti_table_list .tableheader[data-sorter=DESC]:after {
    padding-left: 5px;
    content: url("/gfx/9x16-hvidpil-1.gif");
    vertical-align: middle;
}

.ti_table_list .tableheader[data-sorter=ASC]:after {
    padding-left: 5px;
    content: url("/gfx/9x16-hvidpil-2.gif");
    vertical-align: middle;
}

.min60 {
    min-width: 60px;
}

.tabledata {
    height: 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px; /* Hvis denne ændres, skal den også ændres i tableheader */
    text-decoration: none;
    color: #000000;
}

.tabledata_inactive {
    height: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px; /* Hvis denne ændres, skal den også ændres i tableheader */
    text-decoration: none;
    color: #CCCCCC;
}

.tabledata_con {
    height: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 2px;
    text-decoration: none;
    color: #000000;
}

.tabledata_faktura {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px; /* Hvis denne ændres, skal den også ændres i tableheader */
    text-decoration: none;
    color: #000000;
}

.tabledata_faktura > input {
    border-color:#cccccc;
}


.tabledata_faktura_grey {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px; /* Hvis denne ændres, skal den også ændres i tableheader */
    text-decoration: none;
    color: #999999;
}

.tabledata_link {
    height: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px; /* Hvis denne ændres, skal den også ændres i tableheader */
    text-decoration: none;
    color: #000000;
    background-color: inherit;
    cursor: pointer;
}

.tabledata_link:hover {
    color: #FFFFFF;
    background-color: var(--main-color);
}

.tabledata_grey {
    height: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px; /* Hvis denne ændres, skal den også ændres i tableheader */
    text-decoration: none;
    color: #999999;
}

.tabledata_disp { /* anvendes til visning af ordre i disponeringskalenderen */
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px;
    text-decoration: none;
    color: #000000;
}

.tabledata_order { /* Anvendes til visning af ordre i bestillingssystemet, vis ordre, frekvensordre og lejeordre */
    padding: 3px 0px;
}

.tabledata_slettet {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;

    text-decoration: line-through;
    padding: 2px;
    color: #999999;
}

.tableline {
    font-size: 0px;
    height: 1px;
    padding: 0px;
    margin: 0px;
    border-top: 1px solid #cccccc;
}

.tableline_end {
    font-size: 0px;
    height: 5px;
    padding: 1px;
    margin: 0px;
    border-bottom: 1px solid #000000;
}

.tableline_666666 {
    height: 1px;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #666666;
}

.tableline_dark {
    font-size: 0;
    height: 1px;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #000000;
}

.table_border {
    border-color: #600;
    border-width: 0 0 1px 1px;
    border-style: solid;
}

.td_border_header {
    border-color: #600;
    border-width: 1px 1px 0 0;
    border-style: solid;
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 4px;
}

.td_border {
    border-color: #600;
    border-width: 1px 1px 0 0;
    border-style: solid;
}

.tableline_bottom {
    border-bottom: 1px solid #cccccc;
}

/* Styles til disponeringsoversigt/bestillingssystem */

/* div der indeholder alt om medarbejderen */
.medarbejder_view {
    width: 100%;
    min-width: 800px;
    /*max-width:1000px;*/
    border: 1px solid #cccccc;
    padding: 0px;
    margin: 10px 0 10px 0;
    z-index: 500;
    border-radius: 6px; /* runde hjorner */
    border-color: #cdcdcd;
}

.medarbejder_header {
    height: 27px;
    width: 100%;
    border-bottom: 1px solid #cccccc;
    font-size: 14px;
    font-weight: bold;
    color: #666666;
    text-overflow: ellipsis;
}

/* Tidsregistrering */
.tidsreg_box_forside {
    width: 100%;
    height: 18px;
    line-height: 18px;
    border: 1px solid #666666;
    cursor: pointer;
    padding: 2px;
    margin: 0 0 3px 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tidsreg_done_box_forside {
    width: 100%;
    height: 18px;
    line-height: 18px;
    border: 1px solid #666666;
    padding: 2px;
    margin: 0 0 3px 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tidsreg_view {
    width: 150px;
    padding: 10px;
    z-index: 500;
}

.tidsreg_box {
    width: 140px;
    height: 15px;
    line-height: 15px;
    border: 1px solid #cccccc;
    cursor: pointer;
    padding: 2px;
    margin: 0 0 3px 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tidsreg_andet {
    width: 140px;
    min-height: 15px;
    line-height: 15px;
    border: 1px solid #666666;
    cursor: pointer;
    padding: 2px;
    margin: 0 0 3px 0;
}

.tidsreg_box_dynamic {
    width: 140px;
    min-height: 15px;
    line-height: 15px;
    border: 1px solid #666666;
    cursor: pointer;
    padding: 2px;
    margin: 0 0 3px 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tidsreg_box:hover, .tidsreg_box_dynamic:hover {
    border: 1px solid #cccccc;
    box-shadow: rgba(0, 0, 0, 0.34902) 0px 2px 10px 0px;
}

.tidsreg_edit_box {
    width: 140px;
    line-height: 15px;
    border: 1px solid #666666;
    padding: 2px;
    margin: 0 0 3px 0;
}

.tidsreg_done_box {
    width: 140px;
    height: 15px;
    line-height: 15px;
    border: 1px solid #666666;
    padding: 2px;
    margin: 0 0 3px 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tidsreg_data {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    color: #000000;
}

/** Styles til disponeringsoversigten */
.dynamic_disp_view_content {
    width: 100%;
    z-index: 500;
}

.disp_view {
    width: 100%;
    min-width: 520px;
    padding: 10px 10px 10px 0;
    z-index: 500;
}

.disp_view_content {
    width: 100%;
    table-layout: fixed;
}

.disp_view_table_header {
    table-layout: fixed;
    border-collapse: collapse;
    height: 25px;
    width: 100%;
}

.disp_view_table_header td {
    padding-left: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.disp_box {
    min-width: 510px;
    width: calc(100% - 20px);
    min-height: 15px;
    line-height: 15px;
    border: 1px solid #666666;
    cursor: pointer;
    padding: 2px;
    margin: 0 0 3px 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.disp_box:hover {
    border: 1px solid #333333;
    box-shadow: rgba(0, 0, 0, 0.34902) 0px 2px 10px 0px;
}

.div_button {
    border: 1px solid #dddddd;
    background-color: #efefef;
    color:#000000;
    padding: 4px 8px;
    margin: 0;
    border-radius: 2px; /* runde hjørner */
    cursor: pointer;
    text-align: center;
}

.div_button:hover, input[type=submit] {
    border: 1px solid #cccccc;
    background-color: var(--main-color);
    color: #ffffff;
}

a.div_button {
    color: black;
    text-decoration: none;
}

.div_button_inline {
    border: 1px solid #cccccc;
    background-color: #ffffff;
    padding: 4px 8px;
    margin: 0;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
}

.div_button_inline:hover {
    border: 1px solid #cccccc;
    background-color: var(--main-color);
    color: #ffffff;
}

.div_button_disabled {
    border: 1px solid #dddddd;
    background-color: #efefef;
    padding: 4px 8px;
    margin: 0;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    color: #cccccc;
}

.input-search {
    background-image: url(/gfx/16x16-icon-search.gif);
    background-repeat: no-repeat;
    padding-right: 16px;
    background-position: right 2px center;
}

.div_button_disabled {
    border: 1px solid #dddddd;
    background-color: #efefef !important;
    padding: 4px 8px;
    margin: 0;
    border-radius: 2px; /* runde hjørner */
    cursor: default !important;
    text-align: center;
    color: #999999 !important;
}

.tidsreg_div_button {
    cursor: pointer;
    margin-left: 10px;
    margin-right: 10px;
}

.tablerow_select {
    background-color: #ffffff;
    cursor: pointer;
}

.tablerow_select:hover {
    background-color: #eeeeee;
}

.ti_datepicker, .ti_datepicker > img {
    cursor: pointer;
    max-width: 100%;
}

.ui-datepicker-trigger {
    margin: -3px;
    margin-left: 1px;
    width: 20px !important;
    height: 15px !important;
}

.ti_datepicker_no_gfx + img {
    display: none;
}

.th_numr {
    width: 50px;
}

.alfabet_search {
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 3px 3px 0 0;
    float: left;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
}

.alfabet_search_selected {
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 3px 3px 0 0;
    float: left;
    border: 1px solid #cccccc;
    background-color: var(--main-color);
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
}

.alfabet_search:hover {
    border: 1px solid #ffffff;
    background-color: var(--main-color);
    color: #ffffff;
}

/* Styling TI Modal popup window */
.ti_ModalPage {
    font-size: 12px;
    position: fixed;
    left: 0;
    top: 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.25);
    display: none;
    width: 100%;
    height: 100%;
}

.ti_ModalHeader {
    font-size: 12px;
    border: 1px solid #aaaaaa;
    background: #cccccc url(/gfx/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
    position: relative;
    top: -8px;
    left: -8px;
    padding: 5px;
    width: calc(100% + 4px);
    border-radius: 3px 3px;
    margin: 0 0 10px 0;
}

.tiModalPage {
    font-size: 12px;
    position: fixed;
    left: 0;
    top: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.5);
    display: none;
    width: 100%;
    height: 100%;
    z-index: 500;
}

.tiModal {
    font-size: 12px;
    position: relative;
    top: 110px;
    padding: 10px;
    background-color: #ffffff;
    width: 1000px;
    max-width: 95%;
    height: 75%;
    min-height: 100px;
    display: block;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.35);
    border-radius: 4px 4px;
    margin: 0 auto;
}

.tiModalHeader {
    font-size: 12px;
    border: 1px solid #aaaaaa;
    background: #cccccc url(/gfx/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
    position: relative;
    top: -8px;
    left: -8px;
    padding: 5px;
    width: calc(100% + 4px);
    border-radius: 3px 3px;
    margin: 0 0 10px 0;
}

.tiModalHeaderClose {
    font-size: 12px;
    height: 20px;
    width: 21px;
    background: #cccccc url(/gfx/ui-button.png) 50% 50% repeat-x;
    float: right;
    margin: -2px -3px;
    cursor: pointer;
}

.tiModalHeaderClose:hover {
    background: #cccccc url(/gfx/ui-button-over.png) 50% 50% repeat-x;
}

.tiModalHeaderText {
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    margin: 0 5px;
}

.tiModalText {
    font-size: 12px;
    color: #000;
}

.tiModalButton {
    font-size: 12px;
    border: 1px solid #d3d3d3;
    /* background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;*/
    font-weight: normal;
    color: #555555;
    margin: 15px 0 0 10px;
    padding: 5px;
    cursor: pointer;
}

.ui-widget.ui-widget-content {
    z-index: 500;
}

.input_50_min_150 {
    width: 50%;
    min-width: 150px;
}

.input_disabled {
    background-color: #dfdfdf;
    border: 1px;
    border-style: solid;
    border-color: #aaaaaa;
}

.ui-progressbar {
    position: relative;
}

.progress-label {
    position: absolute;
    left: 50%;
    top: 4px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #fff;
}

.googlemap {
    border: 1px solid rgb(169, 169, 169);
}

/* Responsive  */

#mail_content {
    width: calc(100% - 22px);
    border: 1px solid #999999;
    padding: 10px;
}

.ti_mail {
    max-width: 100%;
    height: auto;
}

.ti_vedh {
    border: 1px solid #999999;
    margin: 2px;
    padding: 2px;
    float: left;
    background-color: #efefef;
    cursor: pointer;
}

.ti_vedh:hover {
    border: 1px solid #cccccc;
    background-color: var(--main-color);
    color: #ffffff;
}

/* baggrundsfarve til hover old..f4eee5 */
.table_disp_editor:hover {
    background-color: #dddddd; /*#c6e3c6;*/
}

/* div der sætter minimums bredde på 1000px, så det passer til HDMI VIEW */

.div_disp, .div_frekvens {
    display: table;
    cursor:pointer;
    float:left;
    width:100%;
    clear:both;
    margin: 0 10px 10px 0;
    border:1px solid #999999;
}

.div_disp_info, .div_frekvens_info {
    display: table-cell;
    padding:3px;
}


.div_container {
    display: table;
    /*min-width: 1000px;  !* min SXGA 1280 x 1024 *!*/
    max-width: 1700px; /* max HDMI 1920 x 1080 */
    width: calc(100% - 20px); /* tag højde for scrollbar */
    padding: 0px;
    margin: 0px;
}

.div_container_header {
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: bold;
    padding: 4px 9px;
    height: 14px;
    width: calc(100% - 18px);
    margin-right: 2px;
}

.info_box_div {
    background-color: #eeeeee;
    width: calc(100% - 10px);
    padding: 0 0 10px 10px;
    display: inline-block;
    float: left;
}

.info_box_table {
    width: calc(33% - 5px);
    min-width: 330px;
    display: table;
    float: left;
    margin: 10px 10px 0 0;
}

.div_fane {
    display: table;
    float: left;
    background-color: #999999;
    font-weight: bold;
    color: #ffffff;
    height: 14px;
    padding: 4px 9px;
    margin-right: 2px;
    cursor: pointer;
}

.div_fane_selected {
    display: table;
    float: left;
    background-color: var(--main-color);
    font-weight: bold;
    color: #ffffff;
    height: 14px;
    padding: 4px 9px;
    margin-right: 2px;
}

.div_fane_content {
    table-layout: fixed;
    display: table;
    border-spacing: 0px;
    border-collapse: collapse;
    background-color: #eeeeee;
    width: 100%;
    padding: 2px;
    margin: 0px;
}

.div_table, .mdDiv_table {
    table-layout: fixed;
    border-spacing: 0px;
    border-collapse: collapse;
    width: 100%;
    padding: 2px;
    margin: 0px;
}

/* Responsive table */
.responsive_table {
    table-layout: fixed;
    border-spacing: 0px;
    border-collapse: collapse;
    width: 100%;
    padding: 0 2px;
    margin: 0px;
}

/*Table header*/
.responsive_table > tbody > tr > th {
    height: 24px;
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: bold;
    text-overflow: ellipsis;
    text-align: left;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 2px; /* Hvis denne ændres, skal den også ændres i table data */
}

.responsive_table > tbody > tr > th > table {
    border-spacing: 0px;
    border-collapse: collapse
}

/*Table data*/
.responsive_table > tbody > tr > td {
    height: 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 2px; /* Hvis denne ændres, skal den også ændres i table header */
    text-decoration: none;
    color: #000000;
    border-bottom: 1px solid #cccccc;
}

.responsive_table > tbody > tr:not(.nohover):hover {
    /*background-color: #f0dc7e;*/
    /*background-color: #e7ddaf;*/
    /*background-color: #eeeeee;*/
    background-color: var(--main-color_50);
}

.responsive_line_end {
    font-size: 0px !important;
    height: 3px !important;
    padding: 0px !important;
    margin: 0px !important;
    border-bottom: 1px solid #333333 !important;
}

.responsive_line_end:hover {
    background-color: #FFFFFF;
}

.responsive_button_div {
    width: 100%;
    text-align: right;
    margin: 10px 0;
}

.responsive_button_div > input {
    margin-left: 10px;
    min-width: 100px;
}

.mdDiv_container {
    clear: both;
    display: table;
    background-color: #eeeeee;
    min-height: 50px;
    /*padding: 0 0 10px 10px;*/
    /*width: calc(100% - 10px);*/
    width: calc(100% - 20px);
    padding: 10px;
}

.mdDiv {  /* Uden fast angivet størelse, sættes inline*/
    float: left;
    margin: 4px 4px;
    padding: 4px 4px;
}

.mdDiv_100, .mdDiv_75, .mdDiv_66, .mdDiv_60, .mdDiv_50, .mdDiv_50_2, .mdDiv_40, .mdDiv_40_2, .mdDiv_35, .mdDiv_30, .mdDiv_33, .mdDiv_33_1300, .mdDiv_25, .mdDiv_25_type2, .mdDiv_20, .mdDiv_20_2 {
    /*outline: 1px dashed #999;	!* outline istedet for border, da outline ikke benytter en ekstra pixel til visning *!*/
    float: left;
    margin: 4px 4px;
    padding: 4px 4px;
}

.mdDiv_100 img, .mdDiv_75 img, .mdDiv_66 img, .mdDiv_60 img, .mdDiv_50 img, .mdDiv_40 img, .mdDiv_35 img, mdDiv_33 img, .mdDiv_25 img, .mdDiv_20 img {
    max-width: 100%;
    height: inherit;
}

.mdDiv_100 {
    width: calc(100% - 16px);
}
.mdDiv_75 {
    width: calc(75% - 16px);
}
.mdDiv_66 {
    width: calc(66.66% - 16px);
}
.mdDiv_60 {
    width: calc(60% - 16px);
}
.mdDiv_50_type2 {
    /*	outline: 1px dashed #999;	/* outline istedet for border, da outline ikke benytter en ekstra pixel til visning */
    float: left;
    width: 50%;
}
.mdDiv_50 {
    width: calc(50% - 16px);
}
.mdDiv_40 {
    width: calc(40% - 16px);
}
.mdDiv_35 {
    width: calc(35% - 16px);
}
.mdDiv_33 {
    width: calc(33.33% - 16px);
}
.mdDiv_33_1300 {
    width: calc(33.33% - 16px);
}
.mdDiv_30 {
    width: calc(30% - 16px);
}
.mdDiv_25 {
    width: calc(25% - 16px);
}
.mdDiv_25_type2 {
    width: calc(50% - 16px);
}
.mdDiv_20 {
    width: calc(20% - 16px);
}

.mdDiv_60_2 {
    width: calc(60% - 16px);
}
.mdDiv_50_2 {
    width: calc(50% - 16px);
}
.mdDiv_40_2 {
    width: calc(40% - 16px);
}
.mdDiv_20_2 {
    width: calc(20% - 16px);
}

@media all and (max-width: 1200px) {

    .mdDiv_60_2 {
        float: left;
        margin: 0;
        padding: 0;
        width: calc(100% - 16px);
        clear: none;
    }

    .mdDiv_50_2 {
        float: left;
        margin: 0;
        padding: 0;
        width: calc(100% - 16px);
        clear: none;
    }

}

@media all and (max-width: 1300px) {

    .mdDiv_33_1300 {
        float: left;
        margin: 4px 4px;
        padding: 4px 4px;
        width: calc(100% - 16px);
        clear: none;
    }

    .tidsreg_beskrivelse {
        margin-left: 95px;
        width: calc(100% - 98px);
        height: 75px;
    }

}

.tidsreg_beskrivelse {
    width: 99%;
    height: 85px;
}

@media all and (max-width: 800px) {

    .mdDiv_40_2 {
        float: left;
        margin: 4px 4px;
        padding: 4px 4px;
        width: calc(100% - 16px);
        clear: none;
    }

}

@media all and (max-width: 400px) {

     .mdDiv_20_2 {
        float: left;
        margin: 4px 4px;
        padding: 4px 4px;
        width: calc(100% - 16px);
        clear: none;
    }

}

#fejl_dialog H1 {
    color: #cc0000;
}

.ads label {
    width: 150px;
    display: inline-block;
}

.ads label, .ads input, .ads select {
    margin: 2px;
}

.ads .alfabet_search {
    line-height: unset;
}

.ti_table {
    table-layout: fixed;
    width: 100%;
    border: 0;
    border-spacing: 0;
}

.ti_table tbody tr:hover {
    background-color: #eeeeee;
}

.ti_table tbody td {
    border-bottom: 1px solid #ccc;
}

.ti_table thead td {
    height: 18px; /* var 22 man skal kun være 18 da der er 2px padding */
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px; /* Hvis denne ændres, skal den også ændres i tabledata */
}

[data-sorter=DESC]:after {
    padding-left: 5px;
    content: url("/gfx/9x16-hvidpil-1.gif");
}

[data-sorter=ASC]:after {
    padding-left: 5px;
    content: url("/gfx/9x16-hvidpil-2.gif");
}

.ti_table tbody td {
    height: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 2px; /* Hvis denne ændres, skal den også ændres i tableheader */
    text-decoration: none;
    color: #000000;
}

.ti_table_row_delete {
    cursor: pointer;
}

/** Udvikleroversigt **/
.udv-content {
    min-height: 50px;
    padding: 5px;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    resize: none;
}

.postnr_class {
    padding-left: 5px;
}

.postnr_select_class {
    background-color: #99cc99;
}

#notification-message-unread {
    float: right;
    font-size: 10px;
    color: white;
    background: white;
    padding-left: 10px;
    text-align: center;
    display: none;
    position: absolute;
    bottom: 5px;
    right: 25px;
    width: 200px;
    height: 200px;
    background-color: red;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        background-color: blue;
    }
}


/*!* Checkbox style  *!*/
/*[type="checkbox"]:before{*/
/*    position: relative;*/
/*    display: block;*/
/*    width: 11px;*/
/*    height: 11px;*/
/*    border: 1px solid #808080;*/
/*    content: "";*/
/*    background: #FFF;*/
/*}*/
/*[type="checkbox"]:after{*/
/*    position: relative;*/
/*    display: block;*/
/*    left: 2px;*/
/*    top: -11px;*/
/*    width: 7px;*/
/*    height: 7px;*/
/*    border-width: 1px;*/
/*    border-style: solid;*/
/*    border-color: #B3B3B3 #dcddde #dcddde #B3B3B3;*/
/*    content: "";*/
/*    background-image: linear-gradient(135deg, #B1B6BE 0%,#FFF 100%);*/
/*    background-repeat: no-repeat;*/
/*    background-position:center;*/
/*}*/
/*[type="checkbox"]:checked:after{*/
/*    background-image:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAQAAABuW59YAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAB2SURBVHjaAGkAlv8A3QDyAP0A/QD+Dam3W+kCAAD8APYAAgTVZaZCGwwA5wr0AvcA+Dh+7UX/x24AqK3Wg/8nt6w4/5q71wAAVP9g/7rTXf9n/+9N+AAAtpJa/zf/S//DhP8H/wAA4gzWj2P4lsf0JP0A/wADAHB0Ngka6UmKAAAAAElFTkSuQmCC'), linear-gradient(135deg, #B1B6BE 0%,#FFF 100%);*/
/*}*/
/*[type="checkbox"]:disabled:after{*/
/*    -webkit-filter: opacity(0.4);*/
/*}*/
/*[type="checkbox"]:not(:disabled):checked:hover:after{*/
/*    background-image:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAQAAABuW59YAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAB2SURBVHjaAGkAlv8A3QDyAP0A/QD+Dam3W+kCAAD8APYAAgTVZaZCGwwA5wr0AvcA+Dh+7UX/x24AqK3Wg/8nt6w4/5q71wAAVP9g/7rTXf9n/+9N+AAAtpJa/zf/S//DhP8H/wAA4gzWj2P4lsf0JP0A/wADAHB0Ngka6UmKAAAAAElFTkSuQmCC'), linear-gradient(135deg, #8BB0C2 0%,#FFF 100%);*/
/*}*/
/*[type="checkbox"]:not(:disabled):hover:after{*/
/*    background-image: linear-gradient(135deg, #8BB0C2 0%,#FFF 100%);*/
/*    border-color: #85A9BB #92C2DA #92C2DA #85A9BB;*/
/*}*/
/*[type="checkbox"]:not(:disabled):hover:before{*/
/*    border-color: #3D7591;*/
/*}*/
/*!** radio button style *!*/
/*input[type="radio"] {*/
/*    position: absolute;*/
/*    opacity: 0;*/
/*    z-index: -1;*/
/*}*/

/*!* Text color for the label *!*/
/*input[type="radio"]+span {*/
/*    cursor: pointer;*/
/*    font: 16px sans-serif;*/
/*    color: black;*/
/*}*/

/*!* Radio button not selected style *!*/
/*input[type="radio"]+span:before {*/
/*    content: '';*/
/*    border: 1px solid #359600;*/
/*    border-radius: 50%;*/
/*    display: inline-block;*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    margin-right: 0.5em;*/
/*    margin-top: 0.5em;*/
/*    vertical-align: -2px;*/
/*}*/

/*!* Selected radio button style *!*/
/*input[type="radio"]:checked+span:before {*/
/*    border-radius: 50%;*/
/*    background-color: white;*/
/*    border: 6px solid #359600;*/
/*}*/

/*!* Adding a dotted border around the active tabbed-into radio button *!*/
/*input[type="radio"]:focus+span:before,*/
/*input[type="radio"]:not(:disabled)+span:hover:before {*/
/*    !* Visible in the full-color space.*/
/*       Want a cool hover effect that gives the appearance of*/
/*       two borders? Stack the box-shadows! *!*/
/*    box-shadow:*/
/*            0 0 0 1px white,*/
/*            0 0 0 2px #359600;*/

/*    !* Visible in Windows high-contrast themes*/
/*       box-shadow will be hidden in these modes and*/
/*       transparency will not be hidden in high-contrast*/
/*       thus box-shadow will not show but the outline will*/
/*       providing accessibility *!*/
/*    outline-color: transparent;*/
/*    outline-width: 2px;*/
/*    outline-style: dotted;*/
/*}*/


/*!* Disabled radio button styles *!*/
/*input[type="radio"]:disabled+span {*/
/*    cursor: default;*/
/*    opacity: 0.5;*/
/*}*/

.reg_editor_button[data-show_editor]:hover, .tidsreg_hover:hover {
    background-color: #FFCC66;
}

.ui-autocomplete {
    max-height: 300px;
    overflow-y: scroll; /* prevent horizontal scrollbar */
    overflow-x: hidden; /* Add padding to account for vertical scrollbar */
    z-index: 3000 !important;
}

.meter {
    margin: 5px auto;
    height: 20px;
    border: 1px solid #aaa;
    border-radius: 8px;
    width: 280px;
}

.meter > span {
    background: lightgreen;
    padding-top: 3px;
    height: calc(100% - 3px);
    display: block;
    border-radius: 8px;
    text-align: center;
    vertical-align: middle;
}

.centertext {
    text-align: center;
    padding-top: 30px;
}

.bolder {
    font-weight: bolder;
}

.faner {

}

.faner > a {
    display: inline-block;
    height: 16px;
    cursor: pointer;
    padding: 3px 8px;
    /*margin-right: 5px;*/
    font-weight: bold;
    color: #ffffff;
    background-color: #999999;
    text-decoration: none;
}

.faner > a.active {
    background-color: var(--main-color);
}

.mainDiv {
    width: 100%;
}

/*@media all and (max-width: 1600px) {*/


/*    !* hvis kolonner er mere end 50% bredde bliver de 100 her *!*/
/*    .mdDiv_100, .mdDiv_75, .mdDiv_66, .mdDiv_60, .mdDiv_50 {*/
/*        float: left;*/
/*        margin:4px 4px;*/
/*        padding:4px 4px;*/
/*        width: calc(100% - 16px);*/
/*        clear:none;*/
/*    }*/

/*}*/

@media all and (max-width: 700px) {

    .mainDiv {
        width: 100%;
    }

    .mdDiv_100, .mdDiv_75, .mdDiv_66, .mdDiv_60, .mdDiv_50, .mdDiv_40, .mdDiv_33, .mdDiv_25, .mdDiv_25_type2, .mdDiv_20, mdDiv {
        float: left;
        margin: 4px 4px;
        padding: 4px 4px;
        width: calc(100% - 16px) !important;
        clear: none;
    }

}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content div {
    color: black;
    padding: 6px 10px 6px 10px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.dropdown-content div:hover {
    color: white;
    background-color: var(--main-color);
}

.tab_active {
    padding: 3px 8px 3px 8px;
    display: inline-block;
    background-color: var(--main-color);
}

.tab_inactive {
    padding: 3px 8px 3px 8px;
    display: inline-block;
    background-color: #999999;
    cursor: pointer;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}


.table_horizontal {
    display: table;
}

.table_horizontal tr td:first-child, .table_horizontal tr th:first-child {
    padding-left: 10px;
}

.table_horizontal tr td:last-child, .table_horizontal tr th:last-child {
    padding-right: 10px;
}

.table_vertical {
    display: none;
}

.date_show {display: block;}

@media all and (max-width: 1000px) {
    .table_horizontal {
        display: none;
    }

    .table_vertical {
        display: table;
    }

    .table_vertical tr td:first-child, .table_vertical tr th:first-child {
        padding-left: 10px;
    }

    .table_vertical tr td:last-child, .table_vertical tr th:last-child {
        padding-right: 10px;
    }
}

.design_table {
    table-layout: fixed;
    height: 26px;
    min-width: 100%;
    border-width: 1px 0 0 1px;
    border-color: #000000;
    border-style: solid;
    margin-bottom: 10px;
}

.design_table tr td:first-child, .design_table tr th:first-child {
    padding-left: 10px;
}

.design_table tr td:last-child, .design_table tr th:last-child {
    padding-right: 10px;
}

.design_table tr th {
    font-weight: bold;
    text-align: center;
    height: 26px;
    border-width: 0 1px 1px 0;
    border-color: #000000;
    border-style: solid;
}

.design_table tr td {
    height: 26px;
    text-align: center;
    border-width: 0 1px 1px 0;
    border-color: #000000;
    border-style: solid;
}

.design_table_hover:hover {
    background-color: var(--main-color_75);
}

.month_pagination_box {
    padding-top: 5px;
    border-width: 0 1px 1px 0;
    border-color: #000000;
    border-style: solid;
    display:table-cell;
    width: 112px;
    cursor: pointer;
    text-align: center;
    background-color: #ffffff;
}

.month_pagination_start:hover {
    background-color: #35ca9e50 !important;
}
.month_pagination_start:hover span {
    display: none;
}
.month_pagination_start:hover:before {
    font-weight: bold;
    content: "FRA";
    /*height: 100%;*/
}

.month_pagination_end:hover {
    background-color: #c7384475 !important;
}
.month_pagination_end:hover span {
    display: none;
}
.month_pagination_end:hover:before {
    font-weight: bold;
    content: "TIL";
    /*height: 100%;*/
}

.pagination_clicked {
    padding-top: 2px;
    padding-bottom: 2px;
    border-width: 0 1px 1px 0;
    border-color: #000000;
    border-style: solid;
    display: table-cell;
    width: 5%;
    cursor: pointer;
    text-align: center;
    background-color: var(--main-color_75);
}

.design_select, .design_select option {
    font-size: 18px;
    font-weight: 500;
    padding: 3px 15px 3px 15px;
    margin-right: 10px;
}

.fa-calendar-alt {
    color: grey;
    cursor: pointer;
}

.fa-calendar-alt:hover {
    color: var(--main-color);
}

.access_button {
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    cursor: pointer;
    color: #666666;
}

.access_button:hover {
    background-color: #ffffff;
    color: var(--main-color);
    /*box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 3px 0px;*/
}

.calendar_horizontal {
    display: block;
    clear: both;
}

.calendar_vertical {
    display: none;
}

@media (max-width: 800px) {
    .calendar_horizontal {
        display: none;
    }

    .calendar_vertical {
        display: block;
    }
}

.text_vertical {
    font-family: Arial, Helvitica, "sans-serif";
//-moz-transform: rotate(-90.0deg);
//-o-transform: rotate(-90.0deg);
    -webkit-transform: scale(1) rotate(-45deg) translateX(49%);
    width: 25px;
    white-space: nowrap;
    font-size: 13px;
}

.tidsreg_beskrivelse {
    width: 99%;
    height: 85px;
}

.mobile_icon {
    width: 20px;
    height: 25px;
    margin-left: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #777777;
}

/*********************************************** Popup */
@media all {

    #popup {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
    }

    .popup_background {
        position: fixed;
        left: 0;
        top: 0;
        background-color: #33333380;
        width: calc(100% - 40px);
        padding: 0 20px;
        height: 100%;
    }

    .popup_container {
        position: relative;
        background-color: #FAFAFA;
        min-width: 333px;
        max-width: 1200px;
        /*min-height: 333px;*/
        max-height: calc(100% - 40px);
        margin: 100px auto;
        overflow-y: auto;
        height: calc(100% - 160px);
    }

    .popup_container_big {
        position: relative;
        background-color: #FAFAFA;
        min-width: 333px;
        max-width: 1500px;
        /*min-height: 333px;*/
        margin: 100px auto;
        overflow-y: auto;
        height: calc(100% - 160px);
    }

    .popup_button_container {
        position: relative;
        height: 30px;
        float: right;
        padding: 20px;
    }

    .popup_header {
        font-size: 24px;
        color: #6F94A9;
        clear: both;
        padding: 15px;
    }

    .popup_content {
        width: 100%;
        height: calc(100% - 80px);
        margin: 0;
        padding: 0;
    }

    .popup_table {
        table-layout: fixed;
        border-spacing: 0px;
        border-collapse: collapse;
        width: 100%;
        padding: 0 2px;
        margin: 0px;
    }

    .popup_table input[type=text] {
        width: calc(100% - 8px);
        height: 21px;
    }

    .popup_table select {
        width: calc(100% - 0px);
        height: 27px;
    }

    .popup_table_2 {
        padding: 20px 20px 0 20px;
        height: calc(100% - 15px);
        overflow: auto;
    }

    .popup_buttons {
        width: calc(100% - 30px);
        text-align: right;
        clear: both;
        padding: 15px;
    }

    .felt_container {
        float: left;
        width: 100%;
        height: 30px;
    }

    .felt_tekst {
        float: left;
        width: 85px;
        text-align: right;
        padding-right: 10px;
        padding-top: 3px;
    }

    .felt_input {
        float: left;
        width: calc(100% - 110px);
        height: 20px;
    }

    .felt_input input[type=text] {
        width: 100%;
        height: 20px;
    }

    .felt_input select {
        width: calc(100% + 8px);
        height: 26px;
    }

    .felt_dato {
        float: left;
        width: 85px;
        height: 20px;
    }

    .felt_gfx {
        float: left;
        width: 30px;
        height: 20px;
        margin: 3px 7px;
    }

    .felt_header {
        margin: 0 0 5px 0;
    }

    .felt_radio {
        float: left;
        margin: 4px
    }

    .felt_label {
        float: left;
        margin: 4px 10px 0 0;
    }

    .fejl_container {
        background: #ff000050;
        height: 50%;
        position: relative;
        width: calc(100% - 80px);
        margin: 0 20px 18px 20px;
        padding: 20px;
    }

    .fejl_header {
        font-size: 1.3em;
        margin: 0 0 5px 0;
        color: #ac2020;
        padding-top: 10px;
    }

    .fejl_tekst {
        font-size: 20px;
        color: #ffffff;
    }

    .rediger {
        cursor: pointer;
    }

    .disabled {
        color: #bbbbbb;
    }
}

/*********************************************** responsiv */

.more_criteria {
    display: table;
}

.more_criteria_button {
    display: none;
    padding: 0;
    border: none;
    background-color: inherit;
    color: white;
    font-weight: bold;
}

.tabs {
    display: inline-block;
    text-align: center;
    width: fit-content;
    min-width: 12px;
    background-color: #999999;
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    padding: 4px 8px 4px 8px;
    margin-right: 2px;
}

.tabs_active {
    display: inline-block;
    text-align: center;
    width: fit-content;
    min-width: 12px;
    background-color: var(--main-color);
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    padding: 4px 8px 4px 8px;
    margin-right: 2px;
}

.tabs:hover {
    background-color: var(--main-color);
}

.accordion_container {
    padding: 10px;
}

.accordion_panel {
    display: none;
}

.accordion_div {
    display: inline-block;
    min-width: calc(25% - 20px);
    float: left;
    text-align: right;
    padding-right: 10px;
}

.accordion_div_2 {
    display: inline-block;
    width: calc(75% - 20px);
    float: left;
    padding-right: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.accordion_icon {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
}

.checkboxes_columns {
    display: inline-block;
    margin: 0px 5px;
    vertical-align: top;
}
.systemvariable::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: lightgrey;
    opacity: 1; /* Firefox */
}

.systemvariable:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: lightgrey;
}

.systemvariable::-ms-input-placeholder { /* Microsoft Edge */
    color: lightgrey;
}



/*********************************************** LOGIN */
@media all {

    #login_outer {
        position: relative;
        width: 100%;
        height: 100%;
        vertical-align: middle;
        text-align: center;
    }

    #login_box {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%,-50%);
        width: 425px;
        height: 160px;
        background-color:var(--main-color);
        /*border: 1px solid #666666; ellers tak :) helst ingen border her!! */
        box-shadow:0 15px 15px -12px rgba(0, 0, 0, 0.35);
        border-radius: 9px;
    }

    .login_expand_box {
        height: 185px !important;
    }

    .login_half_box {
        display: inline-block;
        position: relative;
        width: calc(50% - 40px);
        height: 160px;
        vertical-align: middle;
        text-align: center;
        margin-right: 20px;
    }

    .login_content {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%,-50%);
        width: 180px;
        height: 100px;
        margin-left: 10px;
    }

    #login_logo_text, #login_text, .login_text_deco, #login_forgotten_password, .login_forgotten_button {
        font-weight: bold;
        color: white;
        text-decoration: none;
    }

    #login_logo_text {
        font-size: 13px;
    }

    #login_text {
        width:150px;
        margin-bottom: 10px;
    }

    .login_inline {
        display: inline-block;
        width:100%;
    }

    .login_text_deco {
        display: inline-block;
        width: 35px;
        margin: 2px;
    }

    .login_input_size {
        width:100%;
        height: 100%;
    }

    .login_input_deco {
        display: inline-block;
        width: 120px;
        height: 18px;
        margin: 2px;
    }

    #login_button_box {
        text-align: right;
        padding: 5px 20px 0 0;
    }

    .login_forgotten_text {
        text-align: left;
        color: white;
        text-decoration: none;
    }

    .login_forgotten_button {
        display: inline-block;
        cursor: pointer;
        margin: 2px;
    }

    #login_forgotten_password {
        text-align: left;
        margin-bottom: 10px;
    }

    #login_forgotten_input {
        text-align: left;
        width: 100%;
        margin-top: 5px;
    }

    #login_not_found {
        text-align: left;
        height: 60px;
        color: white;
        text-decoration: none;
    }

    #login_error_text_pc, #login_error_text_mobile {
        width: 100%;
        text-align: center;
        color: white;
        text-decoration: none;
    }

    #login_error_text_mobile {
        display: none;
    }

    .topbar {
        display: none;
        height: 50px;
        width: 100%;
        background-color: #666666;
    }

    #topbar_left {
        display: flex;
        height: 40px;
        justify-content: center;
        align-items: center;
        float: left;
        padding: 5px 5px 5px 10px;
    }

    #topbar_name {
        justify-content: center;
        align-items: center;
        margin-left: 10px;
        font-size: 11px;
        font-weight: bold;
        color: #eeeeee;
        text-decoration: none;
    }

    @media (max-width: 400px) {

        body {
            height: 100%;
            margin: 0;
        }

        .login_page {
            height: calc(100% - 50px);
        }

        #login_box {
            position: relative;
            width: 100%;
            height: 100%;
            border: 0;
            box-shadow: none;
            border-radius: 0;
            background-image: url('/../gfx/TI_V2_trans.png');
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-size: 500px;
            background-position-x: center;
            background-position-y: center;
        }

        .hide_mobile {
            display: none;
        }

        .show_mobile {
            display: block;
        }

        .login_half_box {
            width: 80%;
            height: 100%;
        }

        .login_content {
            width: 300px;
            height: 300px;
        }

        .login_inline {
            display: block;
            font-size: 16px;
        }

        .login_text_deco {
            width: 300px;
            text-align: left;
            font-size: 18px;
            font-weight: normal;
        }

        .login_input_deco {
            width: 300px;
            height: 40px;
            margin: 10px 0;
        }

        .login_input_size {
            font-size: 16px;
        }

        #login_button_box {
            text-align: center;
            padding: 10px 0 0 0;
        }

        #login_button {
            width: 100%;
            height: 40px;
            font-size: 18px;
        }

        .login_forgotten_button {
            margin: 10px 0;
        }

        #login_forgotten_password {
            text-align: center;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .login_forgotten_text {
            font-size: 14px;
        }

        #login_forgotten_input {
            height: 40px;
            margin: 10px 0;
        }

        .login_forgotten_button_big {
            display: block;
            width: 100%;
            height: 40px;
            font-size: 18px;
        }

        .login_expand_box {
            height: 100% !important;
        }

        #login_error_text_pc {
            display: none;
        }

        #login_error_text_mobile {
            display: block;
            text-align: left;
            font-size: 14px;
            margin: 10px 0;
        }

        #login_not_found {
            font-size: 14px;
        }

    }
}

/*********************************************** RESPONSIVE_BOX */
@media all {

    .responsive_box_container {
        background-color: #eeeeee;
        width: calc(100% - 10px);
        padding: 10px 0 10px 10px;
    }

    .responsive_box {
        position: relative;
        display: inline-table;
        width: calc(25% - 20px);
        height: 300px;
        margin: 0 10px 10px 0;
        background-color: #ffffff;
        outline: 1px solid #999999;
        border: none;
        padding: 5px;
    }

    .responsive_box_content {
        width: calc(100% - 40px);
        padding: 10px;
    }

    .responsive_box_img_ct {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 220px;
        text-align: center;
        padding: 15px 0;
    }

    .responsive_box_buttons {
        display: flex;
        justify-content: center;
        /*align-items: center;*/
        width: 100%;
        text-align: center;
    }

    .responsive_box_img {
        max-height: 200px;
        max-width: 100%;
        cursor: pointer;
    }

    .responsive_box_icons {
        position: absolute;
        top: 5px;
        right: 5px;
        text-align: center;
    }

    .faktura_ok {
        background-color: lawngreen;
        color: black;
        padding: 3px;
        margin: 2px;
    }

    .faktura_fejl {
        background-color: orangered;
        color: white;
        padding: 3px;
        margin: 2px;
    }
    .fakturaskabelon_group {
        width: 25%;
        display: inline-block;
        vertical-align: text-top;
    }

}

/*********************************************** UPLOADER */
@media all {

    .uploader_container {
        display:grid;
    }

    .uploader_container--fit {
        grid-template-columns: repeat(auto-fit, minmax(200px, 350px));
    }

    .uploader_container_compact--fit {
        grid-template-columns: repeat(auto-fit, minmax(175px, 200px));
    }

    .uploader_box {
        margin: 4px;
        background-color: #ffffff;
        outline: 1px solid #999999;
        padding: 5px;
    }

    .uploader_box_img_ct {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 220px;
        text-align: center;
    }

    .uploader_popup_image_container {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        height: 300px;
        text-align: center;
    }

    .uploader_popup_img {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 250px;
        max-height: 220px;
        text-align: center;
    }

    .uploader_box_img {
        max-height: 200px;
        max-width: 100%;
        cursor: pointer;
    }

    .uploader_download {
        display: flex;
        justify-content: center;
    }

    .uploader_img_name {
        display: flex;
        width: 100%;
        justify-content: center;
        text-overflow: ellipsis;
        overflow: hidden;
        align-items: center;
        margin: 0 0 10px 0;
    }

    .uploader_box_comment {
        display: flex;
        background-color: #eeeeee;
        width: calc(100% - 5px);
        padding: 2px;
        margin: 5px 0 15px 0;
        white-space: pre-wrap;
    }

    .uploader_comment_textarea {
        width: 100%;
        height: 100px;
        white-space: pre-wrap;
    }

    .uploader_comment {
        width: 100%;
        height: 50px;
    }

    @media (max-width: 400px) {

        .uploader_box_img_ct {
            display: inline-block;
            width: fit-content;
            height: fit-content;
            justify-content: left;
            align-items: normal;
            text-align: left;
            margin: 0;
            padding: 0 0 10px 0;
            float: left;
        }

        .uploader_box_img {
            max-width: 75px;
            max-height: 120px;
            cursor: pointer;
        }

        .uploader_download {
            display: inline-block;
            width: 65%;
            margin-left: 5px;
        }

        .uploader_img_name {
            display: inline-block;
            text-overflow: ellipsis;
            overflow: hidden;
            width: 65%;
            vertical-align: top;
            margin: 0 5px 10px 5px;
            float: left;
        }

        .uploader_box_comment_name {
            display: none;
        }

        .uploader_box_comment {
            display: inline-block;
            width: 70%;
            margin: 0 0 5px 5px;
            float: left;
        }

    }

    .uploader_box_buttons {
        display: flex;
        justify-content: space-around;
        width: 100%;
        text-align: center;
        padding-bottom: 15px;
    }

    .uploader_header {
        display: flex;
        flex-direction: row;
        margin-bottom: 5px;
    }

    .uploader_header_left {
        width: calc(100% / 3);
        text-align: left;
    }

    .uploader_header_center {
        width: calc(100% / 3);
        text-align: center;
    }

    .uploader_header_right {
        width: calc(100% / 3);
        text-align: right;
    }

    #portrait_container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 320px;
        background-color: #ffffff;
        border: 1px solid #999999;
        margin-bottom: 10px;
        text-align: center;
    }

    .uploader_portrait {
        width: auto;
        max-height: 300px;
    }

    .portrait_carousel {
        display: table;
        text-align: center;
        width: 25%;
        float: left;
    }

    .dnd_container {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fefefe;
        margin-bottom: 10px;
    }

    .dnd_area {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: 2px dashed var(--main-color_50);
        height: 100px;
        width: 100%;
        border-radius: 5px;
    }

    .dnd_area.active {
        border: 2px solid var(--main-color);
    }

    .dnd_area .icon {
        margin: 0 5px 0 5px;
        color: var(--main-color);
        vertical-align: middle;
    }

    .dnd_area header {
        /*display: inline-block;*/
        margin: 5px;
        font-weight: bold;
    }

    .dnd_area span {
        /*display: inline-block;*/
        margin: 5px;
        font-weight: 500;
    }

    .dnd_area img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 5px;
    }

    .dnd_desktop {
        display: inline-block;
    }

    .dnd_mobile {
        display: none;
    }

    @media (max-width: 450px) {

        .dnd_desktop {
            display: none;
        }

        .dnd_mobile {
            display: inline-block;
        }

    }

}

/*********************************************** tiDiv */

.tiDiv_padding {
    padding: 4px;
}

.tiDiv_outer {
    display: table;
    width: calc(100% - 15px);
    padding: 5px 15px 10px 0;
    background-color: #eeeeee;
}

.tiDiv_headline {
    font-weight: bold;
    padding: 0 0 10px 140px;
}

.tiDiv_title {
    font-weight: bold;
    padding: 10px 0;
}

.tiDiv_calendar_left {
    display: inline-block;
    width: 75px;
    text-align: right;
    white-space: nowrap;
    padding: 2px 5px 0 0;
}

.tiDiv_calendar_right {
    display: inline-block;
    width: 100px;
    white-space: nowrap;
    padding: 2px 5px 0 0;
}

/*.tiDiv_radio_checkbox {*/
/*    vertical-align: middle;*/
/*    cursor: pointer;*/
/*    margin: 0;*/
/*}*/
/*.tiDiv_radio_checkbox input[type="radio"], input[type="checkbox"] {*/
/*    vertical-align: middle;*/

/*}*/

.tiDiv_line_container {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 4px;
}

.tiDiv_box_container, .tiDiv_text_container {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 5px;
}

.tiDiv_line_left {
    width: 140px;
    text-align: right;
    padding-right: 6px;
}

.tiDiv_box_left {
    width: 140px;
    padding: 5px 6px 0 0;
    text-align: right;
}

.tiDiv_text_left {
    width: 140px;
    padding: 0 6px 0 0;
    text-align: right;
}

.tiDiv_box_right, .tiDiv_box_google, .tiDiv_text_right {
    flex-grow: 1;
}

.tiDiv_box_right textarea {
    padding-top: 4px;
}

.tiDiv_line_right, .tiDiv_checkbox_radio_right {
    display: flex;
    align-items: center;
    flex: 1;
}

.tiDiv_line_right input, .tiDiv_line_right select, .tiDiv_box_right div, .tiDiv_box_right input, .tiDiv_box_right select, .tiDiv_box_right textarea {
    width: 100%;
    min-height: 23px;
}

.tiDiv_line_right input[type="checkbox"] {
    width: unset;
    min-width: unset;
    margin-right: 5px;
}

.tiDiv_line_right input[type="radio"], .tiDiv_line_both input[type="radio"] {
    width: 13px;
    margin-right: 5px;
}

.tiDiv_box_google {
    border: 1px solid #767676;
}

.tiDiv_line_right > input, label, .tiDiv_line_both > input, label/*,  .tiDiv_line_both_no_padding > input, label, label*/ {
    vertical-align: middle;
    margin: 0;
}

.tiDiv_seperator_line {
    display: flex;
    width: calc(100% - 15px);
    border-bottom: 1px solid #999999;
    margin: 10px 0 10px 15px;
    background-color: #eeeeee;
}

.tiDiv_line_both {
    padding: 0 0 5px 140px;
}

select:required:invalid {
    color: gray;
}

option {
    color: black;
}

.tiDiv_line_both_no_padding {
    padding: 0 0 5px 0;
}

.tiDiv_buttons {
    display: inline-block;
    width: 100%;
    margin: 5px 0 25px 0;
    vertical-align: top;
}

.tiDiv_buttons_left {
    display: inline-block;
    width: 50%;
    margin: 5px 0 25px 0;
    vertical-align: top;
}

.tiDiv_buttons_left > input, .tiDiv_buttons_left > a {
    margin-right: 5px;
    float: left;
}

.tiDiv_buttons_right {
    display: inline-block;
    width: 50%;
    margin: 5px 0 25px 0;
    vertical-align: top;
}

.tiDiv_buttons > input, .tiDiv_buttons > a, .tiDiv_buttons_right > input, .tiDiv_buttons_right > a {
    margin: 0 0 5px 5px;
    float: right;
}

.tiDiv_line_both > input, label, .tiDiv_line_right > input, label, .tiDiv_line_both_no_padding > input, label {
    vertical-align: middle;
    margin: 0;
}

/*Definer højden på checkbox, så de ikke bliver 19px som ovenfor*/
.tiDiv_line_right input[type="checkbox"] {
    width: unset;
    display: inline-block;
    height: auto;
    float: left;
    text-align: left;
}

.tiDiv_100, .tiDiv_80, .tiDiv_75, .tiDiv_66, .tiDiv_60, .tiDiv_50, .tiDiv_40, .tiDiv_33, .tiDiv_25, .tiDiv_20, .tiDiv_10 {
    float: left;
}

.tiDiv_100 {
    width: 100%;
}

.tiDiv_80 {
    width: 80%;
}

.tiDiv_75 {
    width: 75%;
}

.tiDiv_66 {
    width: 66%;
}

.tiDiv_60 {
    width: 60%;
}

.tiDiv_50 {
    width: 50%;
}

.tiDiv_40 {
    width: 40%;
}

.tiDiv_33 {
    width: 33%;
}

.tiDiv_25 {
    width: 25%;
}

.tiDiv_20 {
    width: 20%;
}

.tiDiv_10 {
    width: 10%;
}

.tiDiv_margin_left {
    margin-left: 140px;
}

.desktop_space_div, .tablet_landscape_space_div, .tablet_portrait_space_div {
    display: inline-block;
    width: 30px;
    height: 100%;
    float: left;
}

.tiDiv_full_box {

}

.tiDiv_50_early_line_break {
    width: 50%;
    float: left;
}

.expandable_container {
    display: inline-table;
    position: relative;
    vertical-align: top;
    width: 100%;
    padding: 10px 0 5px 15px;
}

.expandable_line_container {
    display: inline-table;
    position: relative;
    vertical-align: top;
    width: 100%;
    padding: 10px 0 5px 0;
}

.expandable_clickable {
    position: absolute;
    cursor: pointer;
    width: -webkit-fill-available;
    height: 105px;
    z-index: 2;
}

.expandable_title {
    position: absolute;
    padding: 0 3px;
    margin: -7px 0 0 10px;
    font-weight: bold;
    background-color: #eeeeee;
}

.expandable_button {
    position: absolute;
    width: 15px;
    height: 15px;
    font-weight: bold;
    color: #ffffff;
    border: 1px solid #c2c2c2;
    border-radius: 4px;
    background-color: var(--main-color);
    margin: 0 3px;
    right: 8px;
    top: 2px;
    text-align: center;
    cursor: pointer;
}

.opened {
    display: none;
}

.expandable_panel {
    width: calc(100% - 20px);
    padding: 20px 10px 0 10px;
    border: 1px solid #c2c2c2;
    border-radius: 10px;
    float: left;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.expandable_line_panel {
    width: 100%;
    float: left;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.expandable_line_border {
    display: flex;
    width: calc(100% - 15px);
    height: 1px;
    border-bottom: 1px solid #c2c2c2;
    margin: 0 0 0 15px;
}

.frame_panel {
    width: calc(100% - 20px);
    padding: 20px 10px 10px 10px;
    border: 1px solid #c2c2c2;
    border-radius: 10px;
    float: left;
    position: relative;
    --icon-offset: -12px;
    --title-left: 14px;
}
.frame_button {
    position: absolute;
    width: 24px;                  /* lidt større klikflade end 15px */
    height: 24px;
    right: 10px;
    top: var(--icon-offset);      /* negativ top sætter den ovenpå rammen */
    display: grid;
    place-items: center;

    font-weight: bold;
    text-align: center;
    cursor: pointer;

    /*border: 1px solid #c2c2c2;*/
    /*border-radius: 6px;*/
    /*background: #fff;             !* så den ser “svævende” ud over kanten *!*/
    background-color: #eeeeee;
    color: #0a66c2;
    /*box-shadow: 0 2px 6px rgba(0,0,0,.1);*/
    z-index: 2;                   /* over alt andet */
}

/* Icon grafik */
.frame_button svg,
.frame_button img {
    width: 14px;
    height: 14px;
    pointer-events: none;         /* klik rammer knappen, ikke SVG’en */
}

.frame_title {
    position: absolute;
    top: -0.7em;                  /* løft den lidt op, så den overlapper kanten */
    left: var(--title-left);
    padding: 0 6px;
    color: #333;
    font-weight: 600;
    line-height: 1.1;
    border-radius: 6px;           /* lille afrunding giver et pænt legend-look */
    z-index: 1;                   /* over rammen */
    white-space: nowrap;          /* undgå linjeskift i overskriften, kan fjernes */
    background-color: #eeeeee;
}

.vertical_align {
    display: flex;
    vertical-align: center;
    align-items: center;
}

/* DESKTOP */
@media (min-width: 1201px) {

    /* tiDiv_line_both_centered bliver ikke brugt*/
    /*.tiDiv_line_both_centered {*/
    /*    padding: 0 0 0 140px;*/
    /*}*/

}

/* TABLET LANDSCAPE */
@media (max-width: 1200px) {

    .tiDiv_80, .tiDiv_75, .tiDiv_66, .tiDiv_60, .tiDiv_50, .tiDiv_40, .tiDiv_33, .tiDiv_25, .tiDiv_20, .tiDiv_10 {
        width: 50%;
    }

    .hide_tablet {
        display: none;
    }

    .desktop_space_div {
        display: none;
    }

    .tiDiv_50_early_line_break {
        width: 100%;
    }

}

/* TABLET PORTRAIT */
@media (max-width: 800px) {

    .tiDiv_calendar_left {
        text-align: left;
        width: 100%;
        margin-bottom: 5px;
    }

    .tiDiv_calendar_right {
        width: 100%;
        margin-bottom: 5px;
    }

    .tiDiv_80, .tiDiv_75, .tiDiv_66, .tiDiv_60, .tiDiv_50, .tiDiv_40, .tiDiv_33, .tiDiv_25, .tiDiv_20, .tiDiv_10 {
        width: 100%;
    }

    .desktop_space_div {
        display: none;
    }

    .tablet_landscape_space_div {
        display: none;
    }

}

/* MOBILE */
@media (max-width: 500px) {

    .tiDiv_25, .tiDiv_20, .tiDiv_10 {
        width: 100%;
    }

    .tiDiv_headline {
        padding: 0 0 10px 0;
    }

    .tiDiv_line_container, .tiDiv_box_container {
        display: block;
        margin: 0 0 5px 0;
    }

    .tiDiv_line_left, .tiDiv_box_left {
        text-align: left;
        width: 100%;
        margin-bottom: 5px;
    }

    .tiDiv_line_right, .tiDiv_box_right {
        width: 100%;
        margin-bottom: 5px;
    }

    .tiDiv_line_both {
        padding: 0 0 5px 100px;
    }

    .tiDiv_buttons_right {
        min-height: 70px;
    }

    .tiDiv_margin_left {
        margin-left: 0;
    }

    .desktop_space_div {
        display: none;
    }

    .tablet_landscape_space_div {
        display: none;
    }

    .tablet_portrait_space_div {
        display: none;
    }

}

.hide_section {
    display: table;
}

.hide_section_line {
    width: calc(100% - 10px);
    position: relative;
    padding: 5px 10px;
    margin: 15px 0;
    cursor: pointer;
}

.hide_section_line hr {
    width: 100%;
    border: 0;
    background-color: #c2c2c2;
}

.hide_section_title {
    position: absolute;
    padding: 0 3px;
    margin: -13px 0 0 13px;
    font-weight: bold;
    background-color: #eeeeee;
}

.hide_section_button {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 3px;
    right: 10px;
    font-weight: bold;
    color: #ffffff;
    border: 1px solid #c2c2c2;
    border-radius: 4px;
    background-color: var(--main-color);
    margin: 0 3px;
    text-align: center;
    cursor: pointer;
}

.tiDiv_box {
    width: calc(100% - 36px);
    position: relative;
    display: inline-table;
    vertical-align: top;
    margin: 20px 0 10px 20px;
    /*padding-top: 15px;*/
}

.tiDiv_box_title {
    position: absolute;
    padding: 0 3px;
    margin: -17px 0 0 3px;
    font-weight: bold;
}

.fancy_box {
    width: calc(100% - 36px);
    min-height: 85px;
    position: relative;
    display: inline-table;
    vertical-align: top;
    margin: 10px 0 5px 15px;
    border: 1px solid #c2c2c2;
    border-radius: 10px;
    padding: 10px;
}

.fancy_box_title {
    position: absolute;
    padding: 0 3px;
    margin: -18px 0 0 2px;
    font-weight: bold;
    background-color: #eeeeee;
}

.fancy_box_col {
    display: inline-block;
    float: left;
}

.table_row_border {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}

.table_row_border tr {
    height: 24px;
    border-bottom: 1px solid #c2c2c2;
}

.table_row_border select {
    width: 100%;
}

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

.font_awesome > i {
    align-content: center;
    color: grey;
    font-size: 14px;
    cursor: pointer;
}

.font_awesome > i:hover {
    color: var(--main-color);
}

