@CHARSET "UTF-8";

:root {
    --default-font: DIN, arial, sans-serif;
    --default-padding: 10px;
    --font-bright: white;
    --color-dark-bg: #313131;
    --color-hover-bg: aliceblue;
    --color-header-bg: #f5f5f5;
    --color-border: #e0e0e0;
    --color-shadow: #cfcfcf;
}

@font-face {
    font-family:'DIN';
    src:url("../DINPro-Regular.woff") format("woff");
    font-weight:400;
    font-style:normal
}
@font-face {
    font-family:'DIN';
    src:url("../DINPro-Bold.woff") format("woff");
    font-weight:bold;
    font-style:normal
}
@font-face {
    font-family:'DIN';
    src:url("../DIN-Light.woff") format("woff");
    font-weight:100;
    font-style:normal
}

body, div, td, table, h1, h2, h3,
li, ul, p, a, input, i, span, button, textarea, select {
	font-family: var(--default-font);
    font-size: 16px;
    text-decoration: none;
}

* {
    color: #313131;
}

body, div, td, table, h1, h2, h3, p, a {
	margin: 0;
	padding: 0;
}

body {
    zzbackground-color: #f5f5f5;
}

header {
    background-color: var(--color-dark-bg);
}

header .header_inner {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 20px 0 20px;
}

header section {
    zzoutline: 1px solid deepskyblue;
}

.__head__logo {
    margin-right: var(--default-padding);
    padding-right: 20px;
}

.__head__logo img {

}

.__head__appname {

    zzfont-family: var(--default-font);
    color: var(--font-bright);
    margin-right: 20px;
}

.__head__appname a {
    color: white;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
    text-transform: uppercase;
}

.__head__navi {
    width: 100%;
}

.__head__navi ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.__head__navi ul li a {
    font-size: 20px;
    color: white;
    padding: 10px 10px 10px 10px;
}

.__head__navi ul li a:hover {
    background-color: #3c6799;
}

.__head__action {
    color: var(--font-bright);
    margin-left: var(--default-padding);
    width: 130px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.__head__userarea {
    color: var(--font-bright);
    margin-left: var(--default-padding);
    width: 150px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.__head__userarea a,
.__head__userarea span {
    color: white;
}

.history-icon {
    width: 15px;
}

.dropbtn {
    background-color: #313131;
    color: #ccc;
    padding: 10px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.dropbtn::after {
    content: "\25BC";
    display: inline-block;
    font-size: 10px;
    padding-left: 2px;
    position: relative;
    top: -2px;
}


/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}


/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #3c6799;
}

.__head__action a {
    color: white;
    zzoutline: 1px solid deeppink;
    flex-grow: 0;
}

.__head__action .logoff img {
    width: 40px;
}

.__head__action .user_info {
    margin-right: 20px;
}






div {
    position: relative;
    box-sizing: border-box;
}

h1 {
    font-size: 35px;
    font-weight: normal;
    padding-top: 20px;
    padding-bottom: 20px;
    /*background-color: #f5f5f5;*/
}

.small {
    font-size: 10px;
}

@font-face {
    font-family: 'LinotypeKaliberRegular';
    src: url('#URI#static/linotype-kaliber-regular.woff2') format('woff2'),
    url('#URI#static/linotype-kaliber-regular.woff') format('woff'),
    url('#URI#static/linotype-kaliber-regular.ttf')  format('truetype');
}

.padding {
    padding:20px;
}


.clear {
    clear: both;
}


.bullet_list li {
    margin-left: 20px;
    list-style-type: disc;
}

#layout {
    margin-left: auto;
    margin-right: auto;
    min-width: 1200px;
    max-width: 1600px;
}

.red {
    color: red;
}

.italic {
    font-style: italic;
    font-size: 0.75em;
}

.small {
    font-size: small;
}



#content {
    color: #333;
    background-color: white;
    zzborder-bottom: 1px solid #ccc;
}

.fw {
    width: 100%;
}

section.step {
    width: 100%;
    min-width: 800px;
    max-width: 1000px;
    text-align: center;
}


#content .inner_content {
    padding: 80px;
    padding-top: 20px;
    max-width: 900px;
}


.form td {
    padding:20px 20px 20px 0px;
    text-align: left;
}

.form input {
    padding: 10px;
}

.form select {
    padding: 10px;
}

#navigation {
    display: none;
}


.button {
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #999;;
    background-color: #f5f5f5;
    padding: 10px;
    cursor: pointer;
}

.button:hover {
    background-color: #e9e9e9;
}


.button3 {
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #999;;
    background-color: #f5f5f5;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
}

.button3:hover {
    background-color: #e9e9e9;
}



section.step {
    display:none;
    width: 100%;
}
section.step1{
    display: block;
}

.portal_description {
    display: inline-block;

}

.head_text {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.portal_overview {
    width: 100%;
    display: flex;
    flex-direction: row;
    zzoutline: 1px solid deeppink;
    flex-wrap: wrap;
    padding-top: 25px;
    margin-bottom: 20px;
}

.pl-blue {
    --fg: #337DC1;
    --bg: #337DC133;
}

.pl-green {
    --fg: #339933;
    --bg: #33993333;
}

.pl-turquoise {
    --fg: #2e7090;
    --bg: #2e709033;
}

.pl-yellow {
    --fg: #F09D20;
    --bg: #F09D2033;
}

.pl-orange {
    --fg: #EC7248;
    --bg: #EC724833;
}

.pl-purple {
    --fg: #764FBF;
    --bg: #764FBF33;
}

.pl-grey {
    --fg: #6A6C6A;
    --bg: #6A6C6A33;
}


.portalink {
    display: flex;
    flex-direction: column;
    zzborder: 1px solid var(--color-border);
    min-width: 175px;
    min-height: 300px;
    flex-basis: 0;
    margin-right: 12px;
    margin-bottom: 12px;
    zzbox-shadow: 2px 2px 2px var(--color-shadow);
    padding: 10px;
    border-radius: 3px;
    box-sizing: border-box;
    background-color: var(--bg);
    justify-content: space-between;

}

.portalink:hover {
    zzbox-shadow: 2px 2px 4px var(--color-dark-bg);
    box-shadow: 3px 3px 2px 1px rgba(0, 0, 0, 0.15);
}

.portalink:active {
    zzbox-shadow: none;
}

.portalink section {
    zzoutline: 1px solid #009900;
    padding: 10px;

}

.portalink section.app_title {
    padding: 10px;
    font-weight: normal;
    font-size: 20px;
    min-height: 50px;
    zzborder-bottom: 1px solid var(--color-border);
    color: var(--fg);
    display: flex;
    align-items: center;
}

.portalink section.app_img {

    width: 135px;
    zzheight: 256px;
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: flex-start;
    padding: 10px;
}

.portalink section.app_img img {
    width: 35px;
}

.portalink section.app_img span {
    zzpadding:10px;
    border-radius: 400px;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background-color: var(--fg);
}



.portalink section.app_desc {
    padding: 10px;
    font-size: 16px;
    zzborder-bottom-right-radius: 14px;
    zzborder-bottom-left-radius: 14px;
    min-height: 70px;
}

.portalink section.app_more {
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.portalink section.app_more button {
    background-color: transparent;
    color: var(--fg);
    font-size: small;
    border: 0;
    margin:0;
    margin-top: 10px;
    padding: 0;

}

.portalink section.app_more button:hover {
    font-weight: bold;
    cursor: pointer;
}

.table {
    display: flex;
    flex-direction: column;
    box-shadow: 2px 2px 2px var(--color-shadow);
    border: 1px solid var(--color-border);
}

.table .table-header {
    background-color: var(--color-header-bg);
    border-bottom: 1px solid var(--color-border);
}
.table .table-header span {
    font-weight: bold;

}

.table .table-cell {
    border-bottom: 1px solid var(--color-header-bg);
}

.table .table-row {
    display: flex;
    flex-direction: row;

}

.table .table-cell:hover {
    background-color: var(--color-hover-bg);
}

.table .table-row span {
    padding: 10px;
}

.table .table-row span:nth-child(1) {
    width: 6em;
}

.table .table-row span:nth-child(2) {
    width: 100%;
}

.pager {
    display: flex;
    flex-direction: row;
    padding: 20px;
}

.pager .page {
    margin-right: 5px;
    padding: 10px;
    border: 1px solid var(--color-border);
    min-width: 1.75vh;
    text-align: center;
}

.pager .page.active {
    background-color: var(--color-dark-bg);
    color: white;
}

.pager .page:hover {
    background-color: var(--color-hover-bg);
}

.pager .page.active:hover {
    background-color: var(--color-dark-bg);
}

/* instant search */

.searchfield {
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    margin-right: 10px;
    margin-left: 10px;
    /*border: 1px solid var(--color-border);*/
}

.searchfield input[type=text] {
    border: 0;
    background-color: rgba(0,0,0,0);
    padding: 2px;
    padding-left: 4px;
    color: white;
    font-size: 0.9em;
}

.searchfield button {
    border: 0;
    background-color: rgba(0,0,0,0);
}


.search-icon {
    width: 9px;
}

#searchresult {
    margin-top: 8px;
    position: absolute;
    background-color: #f9f9f9;
    z-index: 150;
    right: auto
}

#searchresult a {
    display: block;
    padding: 5px;
}

#searchresult a:hover {
    background-color: #3572b0;
}

.the_help_span {
    position: absolute;
    display: block;
    right:0;
    bottom: 0;
    background-color: var(--fg);
    color: var(--bg);
    padding: 5px;
    width: 2em;
}

section.subnavi {
    padding: 20px 0;
}

.subnavi a {
    font-size: large;
    padding: 10px;
    color: #3572b0;
}

section.filter {
    /*padding: 20px 0;*/
    display: flex;
    flex-direction: row;
    align-items: center;
}

section.filter .col {
    padding: 20px;
    white-space: nowrap;
}

#progress {
    display: none;
    align-items: center;
}

#addmgmtuser {
    white-space: nowrap;
}


.fw {
    width: 100%;
}


.list_table {
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.list_table th {
    background-color: #f5f5f5;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

.list_table th, .list_table td {
    padding: 5px;
}

.list_table tr:nth-child(odd)  {
    background-color: #f9f9f9;
}

.list_table tr:nth-child(even)  {
    background-color: #fff;
}

.list_table tr {
    cursor: pointer;
    background-color: azure;
}

table.list_table tr:hover{
    background-color: #f0f0f9;
}

.ajax-window {
    position: fixed;
    top:0;
    left:0;
    background-color: rgba(0,0,0,0.2);
    width: 100vw;
    height: 100vh;
    display: none;

}

.ajax-window .win {
    position: absolute;
    right:0;
    width: 900px;
    border-left: 1px solid #fff;
    background-color: #fff;

}

.win {
    display: flex;
    flex-direction: column;
    zzbox-shadow: 1px 1px 3px black;
}

.win .row {

}

.win .title {
    background-color: #f5f5f5;
    display: flex;
    flex-direction: row;
}

.win .title .col {
    padding: 20px;
    font-weight: bold;
}

.win .title .col.c2 {
    text-align: right;
}

.win .title .col.c2 a:hover {
    font-weight: bold;
    font-size: large;
}

.win .footer .col.c2 {
    text-align: right;
}

.win .footer {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
}

.win .row.content {
    padding: 20px;
}

.win .row.content table {
    border-collapse: collapse;
    width: 100%;

}

.win .row.content table td {
    border-bottom: 1px solid #f5f5f5;
}

.win .row.content td {
    padding:5px;
}


.win .row .col {
    width: 100%;
}

.win .footer .col {
    padding: 20px;
}

.section__hline {
    width: 100%;
    padding: 20px;
}

.section__hline span {
    border-bottom: 1px solid #ccc;
    display: block;
    box-sizing: border-box;
}


.button2 {
    border: 1px solid #ccc;
    background-color: #f5f5f5;
    padding: 10px;
    cursor: pointer;
}

.button2:hover {
    background-color: #e9e9e9;
}

button.dangerous {
    background-color: #f5e0e0;
}

button.dangerous:hover {
    background-color: #f5c0c0;
}


button.save {
    background-color: #e0f5e0;
}

button.save:hover {
    background-color: #c0f5c0;
}

section.statusbox {
    zzborder-radius: 5px;
    margin: 20px;
    padding: 10px;
    display: none;
    justify-content: space-between;
    border: 2px solid #ccc;
}

section.statusbox img {
    width: 1.2em;
    background-size: 1em 1em;
    background-repeat: no-repeat;
    background-position: center center;
}

section.statusbox span {
    width: 100%;
}


section.statusbox.error {
    background-color: #ffdddd;
    border: 1px solid #ff0000;
}
section.statusbox.success {
    background-color: #e0f5e0;
    border: 1px solid #009900;
}
section.statusbox.working {
    background-color: #ffffee;
    border: 1px solid #999900;
}


section.statusbox.success img {
    visibility: visible;
    background-image:url("static/gfx/check2.png");
}
section.statusbox.working img{
    visibility: visible;
    background-image:url("static/gfx/progress_2.gif");
}
section.statusbox.error img{
    visibility: visible;
    background-image:url("static/gfx/red-x1.png");
}

.huebsches-blau{
    color: #3572b0;
}

.win__tabs {
    display: flex;
    width: 100%;
    flex-direction: row;
    padding: 20px;
    flex-shrink: 0;
}

.win__tabs a {
    display: flex;
    width: 100%;
    flex-direction: row;
    zzbackground-color: #f5f5f5;
    padding: 10px;
    zzborder: 1px solid white;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

.win__tabs a.active {
    border: 1px solid #ccc;
    border-bottom: 1px solid white;
    background-color: white;
    font-weight: bold;
    outline: 0;
}

.win__tabs span {
    width: 100%;
    border-bottom: 1px solid #ccc;
    background-color: white;
}


div,section {
    box-sizing: border-box;
}

#tab_perms_content {
    display: block;
    zzheight: 50%;
    overflow: scroll;
    border: 1px solid #ccc;
    margin-right: 20px;
    margin-left: 20px;
    padding-left: 0;
    padding-top: 10px;
}

#tab_preferences_content,
#tab_general_content,
#tab_perms_content,
#tab_actions_content{
    flex-shrink: 1;
}


#tab_perms_content ul {
    padding-left:20px;
}

#tab_perms_content ul .node >span {
    font-weight: bold;
}
#tab_perms_content ul ul .node >span {
    font-weight: normal;

}



#tab_perms_content .node span {
    cursor: pointer;
}

#tab_perms_content .node > span::before {
    content:'\2BC8';
    /* 2B9E */
    font-size: small;
    color: #ccc;
    padding: 5px;
}

#tab_perms_content .node > span.active::before {
    content:'\2BC6';
    /* 2B9F */
    font-size: small;
}

#tab_perms_content .leaf {
    padding-left: 15px;
}

#tab_perms_content .node ul {
    display: none;
}

#tab_perms_content .node ul {
    display: none;
}

.win-vert-cols {
    display: flex;
    display: flex;
    flex-direction: column;
}

.win-vert-cols > section{
    flex-shrink: 0;
}


.win-vert-cols .tab_content.full-height {
    height:100%;
}

#tab_actions_content {
    text-align: center;
}

.win .button2 {
    min-width: 200px;
}


.user-searchresult .mini-icon {
    background-color: var(--fg);
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-content: center;
    border-radius: 12px;
}

.user-searchresult .mini-icon img {
    width: 20px;
}

.user-searchresult td {
    zzborder-left: 1px solid #ccc;
    zzborder-right: 1px solid #ccc;

}

.user-searchresult td.no_pad_rl,
.user-searchresult th.no_pad_rl {
    padding-left: 1px;
    padding-right: 1px;
    width:24px;
}

.user-searchresult td.no_pad_rl {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

/* -------------------------------------- */
/* edit_domain.html */
/* -------------------------------------- */

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 28px;
}

.slider.round:before {
  border-radius: 50%;
}

/* -------------------------------------- */
/* Button Colors */
/* -------------------------------------- */

.btn_delete {
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    background-color: #f5f5f5;
}

.btn_cancel {
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    background-color: #f5f5f5;
}

.btn_save {
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    background-color: #f5f5f5;
}

.btn_delete:hover {
    background-color: #f29696;
}

.btn_cancel:hover {
    background-color: #f2d596;
}

.btn_save:hover {
    background-color: #bff296;
}

.win .btn_cancel {
    min-width: 200px;
}
.win .btn_delete {
    min-width: 200px;
}
.win .btn_save {
    min-width: 200px;
}

.flex_row {
    display: flex;
    flex-direction: row;
}

.textboxes{
    display: grid;
    grid-template-columns: 150px 250px;
    margin-bottom: 10px;
}

#horizonConfigArea{
    margin-top: 20px;
    width: 400px;
    height: 130px;
}

#btndownloadConfig{
    margin-top: 10px;
}

#horizonConfig{
    display: none;
}

.center_block{
    width: 35vw;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--sub-header);
  min-width: 240px;
  z-index: 150;
  right: 0;
  padding: 11px;
  box-shadow: 0 4px 20px rgba(22, 29, 37, 0.5);
}

header .dropdown-content span {
  font-weight: normal;
  font-size: 12px;
  display: block;
  padding: 11px;
  text-align: left;
  width: 100%;
  color: #aaaaaa;
}

header .dropdown-content a {
  font-weight: bold;
  font-size: 12px;
  display: block;
  color: var(--c2);
  padding: 11px;
  text-decoration: none;
  text-align: left;
  width: 100%;
}