/* general */

@font-face {
	src: url('/style/webfonts/Veneer/Veneer.ttf') format('truetype');
	font-family: 'Veneer';
	font-weight: normal;
	font-style: normal;
}

@font-face {
	src: url('/style/webfonts/HelveticaNeue/HelveticaNeue.ttf');
	font-family: 'HelveticaNeue';
	font-weight: normal;
	font-style: normal;
}

@font-face {
	src: url('/style/webfonts/Hack/Hack-Regular.ttf');
	font-family: 'Hack';
	font-weight: normal;
	font-style: normal;
}

html {
	height: 100%;
	overflow-y: scroll;
}

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

form {
	margin: 0;
}

img {
	border: 0;
}

#view {
	width: 1300px;
	min-height: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

#body {
	margin-top: 20px;
	width: 100%;
	min-height: 100%;
	height: auto;
}

/* burger */

.button_container {
  position: relative;
  float: left;
  top: 5%;
  left: 0%;
  height: 17px;
  width: 25px;
  cursor: pointer;
  z-index: 100; 
  transition: opacity .25s ease;
  display: none;
}
.button_container:hover {
  opacity: 0.7;
}

.button_container.active .top {
  transform: translateY(8px) translateX(0) rotate(45deg);
  background: rgba(0,0,0,0.3); 
}
.button_container.active .middle {
  opacity: 0;
  background: rgba(0,0,0,0.3);
}

.button_container.active .bottom {
  transform: translateY(-8px) translateX(0) rotate(-45deg);
  background: rgba(0,0,0,0.3);
}

.button_container span {
  background: rgba(0,0,0,.3); 
  border: none;
  height: 5px; 
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 8px;
}

.button_container span:nth-of-type(3) {
  top: 16px;
}

/* header */

#head {
    height: 95px;
    display: grid;
    grid-template-columns: 20% 80%;
    grid-template-rows: 50% 50%;
    color: #555;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

#head .logo {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: end;
    margin: 0px 0px 20px 25px;
}

#head .top {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: auto min-content min-content min-content;
    place-items: center end;
}

#head .bottom {
    grid-column: 2;
    grid-row: 2;
    display: grid;
    grid-template-columns: auto max-content max-content max-content;
    grid-template-rows: 50px;
	font-size: 1.4rem;
}

#head .logo img.af-logo {
	width: 175px;
}

#head .multi-account {
    grid-column: 2;
    grid-row: 1;
	margin-right: 20px;
}

#multi-account-select ul > li {
    line-height: 1.8rem;
}

#multi-account-select a {
    color: #000;
    padding-left: 4px;
}

#head .project {
    grid-column: 3;
    grid-row: 1;
	margin-right: 20px;
}

#dcpuser-project-select ul > li {
    line-height: 1.8rem;
}

#dcpuser-project-select a {
    color: #000;
    padding-left: 4px;
}

#head .language {
    grid-column: 4;
    grid-row: 1;
	margin-right: 20px;
}

#language-select ul > li {
    line-height: 1.8rem;
}

#language-select a {
    color: #000;
    padding-left: 4px;
}

#head .links {
    grid-column: 1;
    grid-row: 1;
    place-self: end start;
    margin: 0px 0px 20px 0px;
}

#head .link {
    display: inline-block;
    margin-left: 20px;
    margin-right: 20px;
}

#head .link a {
    color: rgba(0,0,0,.5);
}

#head div.contact {
	place-self: end end;
	margin: 0px 0.82em 20px 0.82em;
	grid-row: 1;
}

#head div.contact:last-child {
	margin-right: 20px;
}

#head div.contact i.icon {
	fill: #193a63;
	font-size: 140%;
	position: relative;
	bottom: -0.1em;
}

.menu-dd-container {
	position: relative;
}
.menu-dd-head {
	cursor: pointer;
}
.menu-dd-open .menu-dd-head a {
	color: #aabbcc;
}
.menu-dd-open .menu-dd-head a:hover {
	color: #7799bb;
}
.menu-dd-list {
	display: none;
	position: absolute;
	z-index: 2000;
	right: -7px;
	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: 7px;
	min-width: calc(100% + 12px);
	border: 1px solid #eee;
	box-shadow: 0px 1px 5px #ddd;
	background: #f8f8f8;
	font-size: 90%;
}
.menu-dd-list li {
	padding: 6px;
	white-space: nowrap;
}
.menu-dd-list li:hover {
	background-color: #dadada;
	cursor: pointer;
}
.menu-dd-open .menu-dd-list {
	display: block;
}

#head .livechat {
    grid-column: 2;
}

#head .chat-icon {
    position: relative;
    display: inline-block;
}

#head .chat-icon-status {
    position: absolute;
    bottom: -0.1em;
    right: -10%;
    width: 50%;
    aspect-ratio: 1;
    background: #fff;
    padding: 2px;
    border-radius: 50%;
    box-shadow: 0 .125rem .1875rem 0 rgba(0,0,0,.19);
}
#head .chat-icon-status-online {
    fill: #0e7018;
    display:inline;
}
#head .chat-icon-status-offline {
    fill: #b61e3f;
    display:none;
}
#head .chat-icon-status-busy {
    fill: #fc8100;
    display:none;
}

#head .hotline {
    grid-column: 3;
}

#head .svg-icon {
    vertical-align: middle;
}


/* footer */

#footer {
	clear: both;
}


/* menu */

#menu {
	float: left;
	width: 190px;
}

div.dcp_menu {
	width: 190px;
	padding-bottom: 5px;
	margin-left: 20px;
	margin-bottom: 15px;
}

div.dcp_smenu {
	width: 190px;
	padding: 3px 0;
	margin-left: 20px;
	margin-bottom: 15px;
	overflow: hidden;
}

div.dcp_menuhead {
	padding: 2px 5px 3px 5px;
	margin-bottom: 5px;
	line-height: 1.6;
}

div.dcp_menuhead span {
	padding-left: 3px;
}

table.dcp_menu {
	width: 100%;
	border-spacing: 0;
	background-color: #f8f2df;
}

tr.menu_type td {
	padding: 6px 0px 4px 8px;
}

tr.menu_type_selected td {
	padding: 6px 5px 4px 8px;
}

tr.menu_feature td {
	padding: 5px 0 5px 8px;
}

tr.menu_feature td.selection {
	padding-left: 0 !important;
}

tr.menu_feature_first td {
}

tr.menu_feature_last td {
}

tr.menu_is_subfeature td {
	padding-left: 15px;
}

/* tmp promo */
.dcp_menu.promo {
	padding: 0;
	position: relative;
	background-color: #fbfbfb;
	border: 1px solid #a0a0a0;
	box-shadow: 0 3px 10px -1px rgba(0, 0, 0, 0.15);
	opacity: 0.95;
}
.dcp_menu.promo:hover:not(:has(.promo-close:hover)) {
	border-color: #606060;
	background-color: white;
	box-shadow: 0 3px 10px -1px rgba(0, 0, 0, 0.3);
	opacity: 1;
}
.dcp_menu.promo img {
	width: 100%;
}
.dcp_menu.promo:has( > div.promo-close) {
	margin-top: 28px;
}
.dcp_menu.promo > div.promo-close {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -1.5em;
	font-size: 13px;
	cursor: pointer;
	color: dimgrey;
	text-wrap: nowrap;
}
.dcp_menu.promo > div.promo-close:hover {
	color: black;
}
.dcp_menu.promo > div.promo-close:hover:before {
	/* because underline doesn't underline the icon and a normal border-bottom is too low */
	content: '';
	position: absolute;
	bottom: 1px;
	width: 100%;
	left: 0;
	border-bottom: 1px solid black;
}

/* content box */

#content {
	margin-left: 240px;
	padding-bottom: 10px;
	width: 1040px;
}

div.dcp_box {
	margin-bottom: 10px;
	overflow: auto;
}

div.dcp_box_invisible {
	margin-bottom: 10px;
	padding: 0;
	overflow: hidden;
}

div.dcp_boxhead {
	position: relative;
	width: 100%;
	line-height: 1.6;
	padding: 2px 0px 3px 0;
}

div.dcp_boxfoot {
	text-align: center;
	padding: 8px 0px 8px 0;
	margin-bottom: 1px;
	line-height: 1.4;
}


/* messages */

#ajax_ok, #ajax_ok_static, .dcp_ok {
	display: none;	/* hidden by default, gets slided up/down by transitional effect */
	margin-bottom: 10px;
	line-height: 1.5;
}

#ajax_ok div, #ajax_ok_static div, .dcp_ok div {
	padding: 10px;
}

#ajax_warning, .dcp_warning {
	display: none;	/* hidden by default, gets slided up/down by transitional effect */
	margin-bottom: 10px;
	line-height: 1.5;
}

#ajax_warning div, .dcp_warning div {
	padding: 10px;
}

#ajax_error, .dcp_error {
	display: none;	/* hidden by default, gets slided up/down by transitional effect */
	margin-bottom: 10px;
	line-height: 1.5;
}

#ajax_error div, .dcp_error div {
	padding: 10px 15px 10px 10px;
}

#ajax_error .close_button {
	float: right;
	padding: 1px 5px;
	color: #555;
	cursor: pointer;
	font-size: 1.4rem;
}

.dcp_error_inline {
	background-color: #ffbbbb;
}


/* list */

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

table.list tr {
	height: 2rem;
}

table.list tr td:first-child {
	padding: 2px 8px 2px 8px;
	font-size: 1rem;
}

table.list tr.details > td:first-child::before {
	position: relative;
	top: 1px;
	display: inline-block;
	margin-right: 5px;
	font-family: bootstrap-icons;
	font-size: 0.8rem;
	content: "\f285";
}

table.list tr.details[data-details-shown="1"] > td:first-child::before {
	content: "\f282";
}

table.list img.folder {
	width: 20px;
	height: 20px;
	opacity: 0.6;
}

table.list img.file {
	width: 20px;
	height: 20px;
}

table.list thead th {
	overflow: hidden;
	text-overflow: ellipsis;
}
table.list thead th:hover {
	position: relative;
	overflow: visible;
}
table.list thead th:hover div {
	background-color: inherit;
}

thead td,th {
	padding: 2px 8px 2px 8px;
	text-align: left;
}

tbody td {
	padding: 2px 8px 2px 8px;
	overflow: hidden;
	word-wrap: break-word;
}

.compact_lines {
	line-height: 1.4 !important;
}

div.dcp_boxhead > div.title {
	margin-left: 10px;
	float: left;
}

div.dcp_boxhead > div.title_extra {
	margin-left: 20px;
	float: left;
}

div.dcp_boxhead select {
	font-size: 1rem;
}

.listfoot td {
	border-top: 1px solid #555555;
	font-size: 1rem;
	padding: 8px !important;
	text-align: center;
}

.descr_box {
	padding: 6px 8px 6px 8px;
	font-size: 1rem;
	border-bottom: thin solid #555555;
	text-align: justify;
	line-height: 1.5;
}

.emptyline {
	text-align: center;
	font-style: italic;
}

.dcp_list_bottom {
	border-top: 1px solid #555555;
	color: black;
	font-size: 1rem;
	text-align: right;
	padding: 4px 0 4px 0;
}

.pagelinks {
	margin-right: 12px;
}

.invers {
	background-color: #003366;
	color: #f8f2df;
}

.usage_title {
	font-family: monospace;
	font-size: 1rem;
}

div.scroll_box a {
	color: #003399;
}


/* single */

table.single {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

table.single > thead > tr {
	height: 2rem;
}

table.single > tbody > tr:first-child > td {
	padding-top: 5px;
}

table.single > tbody > tr:last-child > td {
	padding-bottom: 5px;
}

table.single > tbody > tr > td {
	padding: 2px 8px 2px 8px;
	line-height: 2;
}

table.single > tbody > tr > td:first-child {
	width: 160px;
	vertical-align: top;
}


/* table elements */ 

td.slim_l {
	width: 120px !important;
}

td.slim {
	width: 100px !important;
}

td.slim_s {
	width: 75px !important;
}

td.slim_xs {
	width: 50px !important;
}

td.wide {
	width: 200px !important;
}

td.wide_l {
	width: 300px !important;
}

td.wide_xl {
	width: 400px !important;
}

th.number {
	text-align: right;
}

td.number_head {
	text-align: right;
}

td.number {
	text-align: right;
}

td.alignright {
	text-align: right;
}

p.content {
	margin-top: 2px;
}

table.small {
	width: auto;
}

table.small td {
	line-height: 1.2;
}

h4 {
	margin-bottom: 6px;
}


/* form elements */

input, textarea {
	box-sizing: border-box;
}

button.top, select.top {
}

button.menu {
}

button.breadcrumbs {
	padding: 1px 4px 2px 4px;
}

.box_xs {
	width: 40px;
}

.box_s {
	width: 75px;
}

.box_m {
	width: 125px;
}

.box_l {
	width: 200px;
}

.box_xl {
	width: 275px;
}

.box_xxl {
	width: 350px;
}

.box_3xl {
	width: 500px;
}


div.back_button {
	position: absolute;
	padding-left: 10px;
}

input[type="date"] {
	font-family: monospace;
}

.number_xs {
	width: 50px;
}


/* popup layer */

#whitemask {
	position: fixed;
	opacity: 0.7;
	min-height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: #ffffff;
	z-index: 10;
}

#overlay {
	position: absolute !important;
	top: 150px;
	width: 500px;
	z-index: 20;
	margin: 0 auto 0 auto;
	left: 0;
	right: 0;
}

#dirselect {
	position: fixed;
	width: 500px;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
}

#dirselect .scroll_box {
	height: 360px;
	overflow-y: auto;
}

#fileselect {
	position: fixed;
	width: 500px;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
}

#fileselect .scroll_box {
	height: 300px;
	overflow-y: auto;
}

#dbselect {
	position: fixed;
	width: 500px;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
}

#dbselect .scroll_box {
	height: 300px;
	overflow-y: auto;
}

#emailselect {
	position: fixed;
	width: 500px;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
}

#emailselect .scroll_box {
	height: 300px;
	overflow-y: auto;
}

#overlay_select {
	position: fixed;
	width: 500px;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
}

#overlay_select .scroll_box {
	height: 300px;
	overflow-y: auto;
}

#filterselect {
	position: fixed;
	width: 500px;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20;
}

.scroll_separator {
	margin: 0 auto 0 auto;
	color: #e6ddbd;
}

#totp_key_page, #totp_recovery_keys_page {
	position: fixed;
	width: 400px;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	align-items: center;
	z-index: 20;
}

#totp_key_page .dcp_boxhead span, #totp_recovery_keys_page .dcp_boxhead span {
	margin-left: 10px;
}

#totp_key_page .dcp_boxbody > div, #totp_recovery_keys_page .dcp_boxbody > div {
	margin: 10px;
}

#qr_code {
	height: 150px;
}

#totp_container {
	font-size: 1.5rem;
}

#to_be_printed {
	font-size: 1.5rem;
}

#to_be_printed ul { 
	display: inline-block; 
}

#totp_container .totp_keys {
	display: flex;
	justify-content: center;
}

#totp_container .totp_recovery_codes_first_column, #totp_container .totp_recovery_codes_second_column {
	list-style-type: none;
	font-family: monospace;
	font-size: 1.2rem;
	padding: 10px 20px;
}

#totp_container .totp_recovery_codes_first_column li, #totp_container .totp_recovery_codes_second_column li {
	padding: 0px 0px 5px 0px;
}

#totp_container .empty_list {
	font-size: 1.5rem;
	align-self: center;
}

#totp_key_base32 {
	font-family: monospace; 
	font-size: 1.1em;
}

#recovery_keys_first_column, #keys_first_column {
	justify-content:left; 
	width:290px;
}

#recovery_keys_second_column {
	margin-right: 30vw;
}

.totp_recovery_codes_first_column .key-active, .totp_recovery_codes_second_column .key-active {
	user-select: all;
}

.key-inactive {
	user-select: all;
	text-decoration:line-through;
}

@media print {
	#totp_container .totp_keys {
		justify-content: left;
	}
	#totp_container .totp_recovery_codes_first_column, #totp_container .totp_recovery_codes_second_column {
		font-size: 10rem;
		padding: 10px 30px;
	}
}

td #clarification {
	text-align:center;
}

.dialog-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}
.dialog-box {
	max-width: 700px;
	margin-top: -10vh;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	border-radius: 3px;
}
.dialog-box .dialog-header {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e5e5e5;
	border-radius: 3px 3px 0 0;
	background-color: #f6f7f9;
	padding: 10px 15px;
	font-weight: bold;
}
.dialog-box .dialog-msg {
	padding: 15px;
	font-size: 1.2rem;
	color: #333;
	max-height: 400px;
	overflow-y: auto;
}
.dialog-box .dialog-footer {
	display: flex;
	justify-content: end;
	border-top: 1px solid #e5e5e5;
	padding: 10px;
}


/* start page */

tr.info_subhead {
	background-color: #ede5ca;
}

tr.info_subhead > td {
	font-weight: normal !important;
	padding: 5px 10px 5px 10px !important;
	line-height: 1em !important;
}

tr.info_item > td {
	width: 50% !important;
	padding: 5px 15px 5px 15px !important;
	line-height: 1.2em !important;
}

tr.info_list td {
	padding: 0 !important;
}

tr.info_list_item:hover {
	background-color: #bbccea;
	cursor: pointer;
}

tr.info_list_item td {
	padding: 5px 15px 5px 15px !important;
	line-height: 1.2em !important;
	font-size: 1em;
}

tr.info_list_item_urgent td {
	font-weight: bold !important;
}

tr.info_list_item_nohover td {
	padding: 5px 15px 5px 15px !important;
	line-height: 1.2em !important; 
	font-size: 1em;
}

tr.info_item.flex > td {
	padding: 0 !important;
}

tr.info_item.flex > td > div {
	display: flex;
}

tr.info_item.flex > td > div > div {
	flex: 1 1 0;
}

tr.info_item.flex > td > div > div > div {
	padding: 5px 15px;
}

tr.info_item span.ident {
	margin-right: 5px;
}

#usage_web {
	display: none;
}

#usage_web span.ident {
	margin-left: 10px;
}


/* misc */

#busy_cursor_overlay {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 100;
	cursor: wait;
}

#busy_cursor_snippet * {
	cursor: wait;
}

.separator td {
	width: 100%;
	padding: 3px 0 6px 0 !important;
}

.separator2_top td {
	border-bottom: 1px solid #555555;
	padding: 5px !important;
}

.separator2_bottom td {
	border-top: 1px solid #555555;
	padding: 5px !important;
}

.separator3_top td {
	padding: 5px !important;
}

.separator3_bottom td {
	padding: 5px !important;
}

.separator4_top td {
	border-bottom: 1px solid #555555;
	padding: 0px !important;
}

.separator4_bottom td {
	border-top: 1px solid #555555;
	padding: 0px !important;
}

.separator5 td {
	padding: 5px;
}

.single_separator {
	width: 100%;
	margin: 0 auto 0 auto;
	border: 0;
	border-top: 1px solid #555;
}

.nowrap {
	white-space: nowrap;
}

.box_1em {
	width: 1em;
	height: 1em;
	position: relative;
	bottom: -2px;
}

img.help {
	cursor: help;
	vertical-align: middle;
	overflow: hidden;
}

img.action {
	cursor: pointer;
	width: 20px;
	height: 20px;
}

.invisible {
	visibility: collapse;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.hidden {
	display: none;
}

.link:hover {
	cursor: pointer;
}

.link_tablehead {
	color: #bbccff;
}

div.error_box {
	text-align: center;
	font-size: 1rem;
	color: #555555;
	padding: 5px 10px 5px 10px;
}

.pw_strength_meter {
	position:relative;
	top: 3px;
	left:10px;
	height:18px;
	width:160px;
	border-color:#999;
	background:#f5f5f5;
}

.pw_progress {
	border-top-left-radius:3px;
	border-bottom-left-radius:3px;
}

.pw_complete {
	border-top-right-radius:3px;
	border-bottom-right-radius:3px;
}

.pw_strength_meter_label {
	position:absolute;
	top:50%;
	left:50%;
	transform:translateX(-50%) translateY(-50%);
	font-size:0.8em;
	color:#555555;
}

.pw_reveal_input {
	padding-right: calc(8px + 8px + 1em);
}

.pw_reveal_container {
	position: relative;
	float: left;
}

.pw_reveal_container i {
	position: absolute;
	right: calc(8px + 1px);
	cursor: pointer;
	z-index: 1;
}

.pw_reveal_container i:hover {
	color: black;
}

.ul-minimal {
	margin:0;
	padding:0;
	list-style-type: none;
}

blockquote {
	padding: 5px 10px;
	margin: 0 0 20px;
	margin-bottom: 20px;
	border-left: 3px solid #eee;
}

code {
	padding: 2px 4px;
	color: #c7254e;
	background-color: #f9f2f4;
	border-radius: 4px;
}

#upload-file-info progress {
	margin-left: 20px;
	height: 15px;
	vertical-align: text-bottom;
}

#upload-file-info .warning {
	margin-left: 20px;
	color: #a00;
}

#upload-file-info .warning {
	margin-left: 20px;
	color: #a00;
}

.load {
	display: inline-block;
	width: 12px;
	height: 12px;
	background-color: lightgray;
	border: 1px solid gray;
}
.load.idle {
	background-color: #5e5;
}
.load.medium {
	background-color: yellow;
}
.load.high {
	background-color: orange;
}
.load.very-high {
	background-color: #e55;
}

ul.multi-account-details {
	list-style-type: disc;
	margin: 3px;
	padding-left: 20px;
}

ul.multi-account-details ul {
	list-style-type: circle;
	margin: 3px;
	padding-left: 20px;
}

.has-link-deco {
	text-decoration: underline dotted;
}

.has-link-icon::after {
	font-family: 'Glyphicons Halflings';
	font-size: 0.6em;
	content: "\e164";
	vertical-align: super;
}


/* codemirror */

.file_editor .CodeMirror {
	width: 1020px;
	height: 500px;
}

#enveditor .CodeMirror {
	border: 1px solid #eee;
	width: 1037px;
	height: 100px;
}

#envaction {
	cursor: pointer;
}


/* tablesorter */

.tablesorter-default .header,
.tablesorter-default .tablesorter-header {
	/*background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);*/
	background-position: center right;
	background-repeat: no-repeat;
	cursor: pointer;
	white-space: nowrap;
}

.tablesorter-default thead .headerSortUp:after,
.tablesorter-default thead .tablesorter-headerSortUp:after,
.tablesorter-default thead .tablesorter-headerAsc:after {
	/*background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);*/
	content: url("/images/arrow_up.gif");
	vertical-align: text-top;
}

.tablesorter-default thead .headerSortDown:after,
.tablesorter-default thead .tablesorter-headerSortDown:after,
.tablesorter-default thead .tablesorter-headerDesc:after {
	/*background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);*/
	content: url("/images/arrow_down.gif");
	vertical-align: text-top;
}

.tablesorter-default thead .sorter-false {
	/*background-image: none;*/
	cursor: default;
}

.tablesorter-default .tablesorter-header-inner {
	display: inline;
}

.tablesorter-pager {
	padding: 5px;
	text-align: center;
	border-top: 1px solid #555555;
}

/* pager navigation arrows */
.tablesorter-pager img {
	vertical-align: middle;
	margin-right: 2px;
	cursor: pointer;
}
.tablesorter-pager .disabled img {
	cursor: default;
}

/* pager output text */
.tablesorter-pager .pagedisplay {
	padding: 0 5px 0 5px;
	white-space: nowrap;
}

/* the pager itself gets a disabled class when the number of rows is less than the size */
.tablesorter-pager.disabled {
	display: none;
}

/* hide or fade out pager arrows when the first or last row is visible */
.tablesorter-pager .disabled {
	/* visibility: hidden */
	opacity: 0.5;
	filter: alpha(opacity=50);
	cursor: default;
}

.tablesorter-pager select.gotoPage {
	margin-right: 10px;
}

.tablesorter-pager select.pagesize {
	margin-left: 10px;
}

.tablesorter-filter-row .disabled {
	opacity: 0.5;
	filter: alpha(opacity=50);
	cursor: not-allowed;
}

.tablesorter-filter-row > td {
	padding-left: 6px;
}
.tablesorter-filter-row > td:first-child {
	padding-left: 6px !important;
}

input.tablesorter-filter {
	width: 100%;
	border: 1px solid #bbbbbb;
	border-radius: 2px;
	padding: 1px 3px 0px 3px
}

.tablesorter .filtered {
	display: none;
}

button[name=pager] {
	/*font-size: 1.1em;*/
}


/* notify.js */

.notifyjs-corner {
	left: 50% !important;
	transform: translate(-50%, 0);
}

.notifyjs-bootstrap-base {
	padding: 8px 15px !important;
	border-radius: 5px !important;
}

.notifyjs-bootstrap-info {
	background-image: none !important;
	border: 1px solid #b9cdd7;
	text-align: center;
	opacity: 0.95;
}

.notifyjs-bootstrap-success {
	background-image: none !important;
	border: 1px solid #bfd0b8;
	text-align: center;
	opacity: 0.95;
}

.notifyjs-bootstrap-error {
	background-image: none !important;
	border: 1px solid #d2bebe;
	text-align: center;
	opacity: 0.95;
}


/* jquery.ddslick.js */

.dd-options .dd-option {
	white-space: nowrap;
	padding-right: 10px;
}

.dd-options .dd-option.dd-option-selected {
	background-color: #eee;
}

.dd-options .dd-option > .dd-desc {
	color: #666;
	padding-left: 10px;
	display: inline;
}

.dd-option .dd-option-image, .dd-selected .dd-selected-image {
	max-width: 16px;
}

.dd-selected label {
	font-weight: normal;
	cursor: pointer; /* overwrite ua defaults */
}


/* tooltip */

#help_tooltip {
	display: none;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 10px 0px;
	position: absolute;
	max-width: 500px;
	padding: 10px;
	z-index: 100;
}

#help_tooltip > div.title {
	margin-bottom: 8px;
}

#close_tooltip {
	float: right;
	display: inline-block;
	margin-top: -3px;
	cursor: pointer;
}


/* overlay */

#ajax_overlay_message {
	margin-top: 8px;
	display: none;
}

:root{
	--smenuh: 500px;
}

.searchbutton {
	margin-right: 7px;
}

.bar-graph {
	flex: 1;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	height: 30px;
	color: white;
	margin-left: 3vw;
	margin-right: 3vw;
	border-radius: 5px;
	overflow: hidden;
	opacity: 0.7;
}

.start-graph {
	margin: 5px 15px;
	padding: 0px 0px !important;
	height: 20px;
}

.graph-legend {
	margin: 10px 3vw;
	padding: 0;
	font-size: 0.9em;
}
.graph-legend li {
	display: inline-block;
	padding: 0.25em 1em;
	line-height: 1em;
}
.graph-legend li:before {
	content: "";
	margin-right: 0.5em;
	display: inline-block;
	width: 8px;
	height: 8px;
}

.menu_is_beta, .title_is_beta {
	white-space: nowrap;
	line-height: 1;
	padding: 3px;
}
.menu_is_beta {
	margin-right: 10px;
	float: right;
}
.title_is_beta {
	margin-top: 5px;
	margin-left: 5px;
	float: left;
}

.menu_is_new, .title_is_new {
	white-space: nowrap;
	line-height: 1;
	padding: 3px;
}
.menu_is_new {
	margin-right: 10px;
	float: right;
}
.title_is_new {
	margin-top: 5px;
	margin-left: 5px;
	float: left;
}

#toggle_key_button td, #no_keys td, #totp_select_box td, #totp_container_no_keys td, #totp_container td, #toggle_recovery_key td, #recovery_keys_buttons td, #clarification {
	padding: 0em 1.2em 0em 2em !important;
}

#totp_container ul, #totp_container li {
	padding: 0 0 0 0 !important;
}
#no_keys div, #totp_container_no_keys div, #qr_code_cell div {
	padding: 1em 0 0 0;
}
#recovery_key_subhead, #key_subhead {
	cursor: pointer;
}
#key_changes, #recovery_key_changes, #totp_changes {
	float: right;
}

.totp_recovery_codes_first_column, .totp_recovery_codes_second_column {
	margin-bottom: 0;
}
.totp_recovery_codes_first_column_print {
	print-color-adjust: exact;
	-webkit-print-color-adjust: exact;
	list-style-type: none; 
	font-family: monospace; 
	font-size: 1.5rem; 
	padding: 10px 20px; 
	float: left; 
	width: 290px;
}
.totp_recovery_codes_second_column_print {
	print-color-adjust: exact;
	-webkit-print-color-adjust: exact;
	list-style-type: none; 
	font-family: monospace; 
	font-size: 1.5rem; 
	padding: 10px 20px;
}
label[for=totp_checkbox], #totp_checkbox {
	vertical-align: middle;
}
@media screen {
.totp_recovery_codes_first_column_print {
	print-color-adjust: exact;
	-webkit-print-color-adjust: exact;
	list-style-type: none; 
	font-family: monospace; 
	font-size: 1.5rem; 
	padding: 10px 20px; 
	float: left; 
	width: 290px;
}
.totp_recovery_codes_second_column_print {
	print-color-adjust: exact;
	-webkit-print-color-adjust: exact;
	list-style-type: none; 
	font-family: monospace; 
	font-size: 1.5rem; 
	padding: 10px 20px;
}
}
@media print {
.totp_recovery_codes_first_column_print {
	print-color-adjust: exact;
	-webkit-print-color-adjust: exact;
	list-style-type: none; 
	font-family: monospace; 
	font-size: 1.5rem; 
	padding: 10px 20px; 
	float: left; 
	width: 290px;
}
.totp_recovery_codes_second_column_print {
	print-color-adjust: exact;
	-webkit-print-color-adjust: exact;
	list-style-type: none; 
	font-family: monospace; 
	font-size: 1.5rem; 
	padding: 10px 20px;
}
}
#keys_middle_column {
	width: 30px;
}
#totp_key_update, #select_recovery_keys {
	display: none;
}
#to_be_printed .print_keys_format {
	display:block;
}
#qr_code_cell, #toggle_key_button td {
	padding: 0.5em 1.2em 1em 2em !important;
}
#keys_first_column {
	padding: 0 1.2em 0 2em !important;
}

/* media queries for responsive ui */
@media screen and (max-width: 1300px) {
    #view {
        width: 1000px;
    }
    #content {
        width: 760px;
    }
    #head .link {
        margin-left: 40px;
        margin-right: 0px;
    }
    #head div.contact .tagline {
        display: none;
    }
}

@media screen and (max-width: 1000px){
	#overlay-menu{
		display: none;
	}
    #overlay-menu.open {
        display: block;
        position: absolute;
 		background: white;
		margin-left: 2vw;
 		width: 96%;
		top: 120px;
  		transition: opacity 0.35s, visibility 0.35s, height 0.35s;
    }
    #overlay-smenu{
        display: none;
    }
    #overlay-smenu.open {
        display: block;
        position: absolute;
        background: white;
        width: 96vw;
		margin-left: 2vw;
		top: var(--smenuh);
        transition: opacity 0.35s, visibility 0.35s, height 0.35s;
		padding: 0 0;
    }
	.dcp_menu.promo {
		display: none;
	}
    .dcp_menuhead{
		display:none;
	}
	.button_container {
		display: inline;
	}
	#content{
		margin-left: 0px;
	}
	.dcp_box {
		width: 96vw;
		margin-left: 2vw;
	}
	#head{
		height: auto;
		width: 100vw;
	}
	#head .logo img {
		width: 87px;
		height: 20px;
	}
	body{
		overflow-x: hidden;
	}
	#head .bottom {
		font-size: 1rem;
	}
	.dd-select{
		margin-top: 6px;
	}
	#head .link a{
		font-size: 1rem;
	}
	#head .links {
		margin: 0px 0px 35px 0px;
	}
	div.link { 
		margin-left: 5px;
	}
}

@media screen and (max-width: 500px){
    #head .links {
        margin: 40px 70px 27px 40px;
    }
}

@media screen {
	.print-only {
		display: none !important;
	}
}

@media print {
	.screen-only {
		display: none !important;
	}
}



.iframe {
	background-color: transparent !important;
}

.ticket-header {
	border-bottom: 1px solid #bbb;
}

.ticket-header-meta {
	display: flex;
}

.ticket-header-from {
	flex: 0 1 auto;
	margin-right: 40px;
}
.ticket-header-from span {
	font-weight: bold;
}

.ticket-header-to {
	flex: 1 1 auto;
}
.ticket-header-to span {
	font-weight: bold;
}

.ticket-header-date {
	flex: 0 1 auto;
}

.ticket-subject {
	line-height: 2;
}
.ticket-subject span {
	font-weight: bold;
}

.ticket-attachments {
	margin-top: 5px;
	text-align: right;
}

.ticket-content {
	padding: 10px 10px 0 10px;
	white-space: pre-wrap;
}

/* whatsapp support page */
#wa-qr-code-right {
	float: right;
	width: 20em;
	margin-top: 1em;
}

#wa-qr-code-in-flow {
	max-width: 20em;
	width: 100%;
	margin-top: 1em;
	display: none;
}

@media screen and (max-width: 1000px) {
	#wa-qr-code-right {
		display: none;
	}
	#wa-qr-code-in-flow {
		display: block;
	}
}
