@charset "UTF-8";
/***** Base *****/
* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #181818;
  font-family: "Lato", Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

@media (max-width: 635px) {
  body {
    hyphens: auto;
  }
}

.article-content, .post-info, .comment-body {
  font-family: "Fira Sans", Lato, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 15.9px;
}

.post-content, .comment-body {
  font-size: 15.5px;
}  

.button-large.button-secondary.mark-as-solved {
/* "Anfrage ist gelöst"-Button ausblenden, damit Anfragende
den Ticketstatus nicht selbst auf "Gelöst" ändern können.
Eingefügt von Roland Siegert, 14.06.2017 auf Wunsch von
Tobias Kaiser und InsideSales */
  display: none;
}  

@media (min-width: 1024px) {
  body > main {
    min-height: 65vh;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 400;
  margin-top: 0;
}

h1 {
  font-size: 35px;
  line-height: 1.17em;
  margin-bottom: 0.88em;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
}

a {
  color: #1c4e6b;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: underline;
}

code, pre {
  font-family: "SFMono-Regular", Menlo, Consolas, "Liberation Mono", "Ubuntu Mono", "Andale Mono", Monaco, "Courier New", monospace!important;
}

input,
textarea {
  color: #000;
  font-size: 14px;
}

input {
  font-weight: 400;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border .12s ease-in-out;
}

input:focus {
  border: 1px solid #d43f23;
}

input[disabled] {
  background-color: #ddd;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("/hc/theming_assets/01HZPFTDK5089GCWMP56SZAT58") no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid #d43f23;
}

select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #ddd;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}

textarea:focus {
  border: 1px solid #d43f23;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

@media (min-width: 1160px) {
  .container {
    padding: 0;
    width: 90%;
  }
}

.container-divider {
  /* border-top: 1px solid #eaeaea; */
  margin-bottom: 12px;
  margin-top: -11px;
}

.zd-hc-3PQnfZ9PzT-mSU6sNsRWjg.zd-hc-2v6BbPkUhuaaWHNTkpP1SY {
  border-bottom: 1px solid #fff!important;
}

.community-icon {
	display: none !important;
}

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

.error-page {
  max-width: 1160px;
  margin: 0 auto;
  margin-top: 88px;
  padding: 0 5%;
}

@media (min-width: 1160px) {
  .error-page {
    padding: 0;
    width: 90%;
  }
  .community-icon {
  	display: inline !important;
  }
}

@media (min-width: 768px) {
  .dcNewsLink {
  	display: inline !important;
  }
}

.dropdown-toggle::after {
  color: inherit;
}

/***** Buttons *****/
.button, [role="button"] {
  border: 1px solid #555;
  border-radius: 4px;
  color: #222;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

@media (min-width: 530px) {
  .button, [role="button"] {
    width: auto;
  }
}

.button::after, [role="button"]::after {
  color: #777;
}

.button:hover, .button:active, .button:focus, .button[aria-selected="true"], [role="button"]:hover, [role="button"]:active, [role="button"]:focus, [role="button"][aria-selected="true"] {
  background-color: #333;
  text-decoration: none;
}

.button[aria-selected="true"]:hover, .button[aria-selected="true"]:focus, .button[aria-selected="true"]:active, [role="button"][aria-selected="true"]:hover, [role="button"][aria-selected="true"]:focus, [role="button"][aria-selected="true"]:active {
  background-color: #5c5c5c;
  border-color: #5c5c5c;
}

.button[data-disabled], [role="button"][data-disabled] {
  cursor: default;
}

.button-large, input[type="submit"] {
  background-color: #2c2c2c;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.72;
  min-width: 190px;
  padding: 0 1.9286em;
  width: 100%;
}

@media (min-width: 768px) {
  .button-large, input[type="submit"] {
    width: auto;
  }
}

.button-large:hover, .button-large:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background-color: #000;
}

.button-large:active, input[type="submit"]:active {
  background-color: #2c2c2c;
}

.button-large[disabled], input[type="submit"][disabled] {
  background-color: #ddd;
}

.button-secondary {
  color: #555;
  border: 1px solid #ddd;
  background-color: transparent;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: #222222;
  border: 1px solid #ddd;
  background-color: #f7f7f7;
}

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
}

@media (min-width: 768px) {
  .table {
    table-layout: auto;
  }
}

.table th,
.table th a {
  color: #555;
  font-size: 13px;
  font-weight: 300;
  text-align: left;
}

[dir="rtl"] .table th, [dir="rtl"]
.table th a {
  text-align: right;
}

.table tr {
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .table tr {
    display: table-row;
  }
}

.table td {
  display: block;
}

@media (min-width: 768px) {
  .table td {
    display: table-cell;
  }
}

@media (min-width: 1024px) {
  .table td, .table th {
    padding: 20px 30px;
  }
}

@media (min-width: 768px) {
  .table td, .table th {
    padding: 10px 20px;
    height: 60px;
  }
}

/***** Forms *****/
.form {
  max-width: 650px;
}

.form-field ~ .form-field {
  margin-top: 25px;
}

.form-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}

.form-field input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

.form-field input:focus {
  border: 1px solid #d43f23;
}

.form-field input[type="text"] {
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-field input[type="text"]:focus {
  border: 1px solid #d43f23;
}

.form-field input[type="checkbox"] {
  width: auto;
}

.form-field .nesty-input {
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
}

.form-field .nesty-input:focus {
  border: 1px solid #d43f23;
  text-decoration: none;
}

.form-field textarea {
  vertical-align: middle;
}

.form-field input[type="checkbox"] + label {
  margin: 0 0 0 10px;
}

.form-field.required > label::after {
  content: "*";
  color: #f00;
  margin-left: 2px;
}

.form-field p {
  color: #555;
  font-size: 12px;
  margin: 5px 0;
}

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent url("/hc/theming_assets/01HZPFTDV89D8NGKW0AF3Z75MP") 99% 50% no-repeat;
  background-size: 16px 16px;
}

.form footer {
  margin-top: 40px;
  padding-top: 30px;
}

.form footer a {
  color: #555;
  cursor: pointer;
  margin-right: 15px;
}

.form .suggestion-list {
  font-size: 13px;
  margin-top: 30px;
}

.form .suggestion-list label {
  border-bottom: 1px solid #ddd;
  display: block;
  padding-bottom: 5px;
}

.form .suggestion-list li {
  padding: 10px 0;
}

.form .suggestion-list li a:visited {
  color: #07131a;
}

/***** Header *****/
.header {
  max-width: 1160px;
  padding: 0 5%;
  position: relative;
  align-items: center;
  display: flex;
  height: 80px; 
  justify-content: space-between;
}

.logo img {
  max-height: 31px;
}

.dracoon_helpsupport_caption {
  position: absolute;
  top: 35px;  /* Original: 31 */
  left: 173px;
  font-family: "Public Sans", "Lato", Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 18px;
  color: #3c3c3c;
  font-weight: 700;
  letter-spacing: -.009em;
  display: none;
}

.nav-wrapper a.submit-a-request:hover {
  text-decoration: underline!important;
}

@media (min-width: 450px) {
	.dracoon_helpsupport_caption {
  	display: inline-block;
  }
}

@media (min-width: 570px) {
	.dracoon_helpsupport_caption {
  	left: 200px;
  }
}

@media (min-width: 1160px) {
  .header {
    padding: 0;
    margin: 0 auto;
    padding-bottom: 1px;
    width: 90%;
    height: 117px; 
  }
  div.header_meta {
    min-height: 40px;
  }
  .logo img {
    max-height: 52px;
  }
  .header .nav-wrapper {
    margin-top: 43px!important;
  }
  .dracoon_helpsupport_caption {
    top: 56.5px;
    left: 253px;
    font-size: 25px;
  }  
}


.user-nav {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .user-nav {
    position: relative;
  }
}


.user-nav[aria-expanded="true"] {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 1;
}

.user-nav[aria-expanded="true"] a {
  display: block;
  margin: 20px;
}

.nav-wrapper a {
  color: #333;
  border: 0;
  display: none;
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  font-size: 14.7px;
  letter-spacing: -.01em;
  font-weight: 500;
  padding: 0 20px 0 0;
  width: auto;
}

@media (min-width: 768px) {
  .nav-wrapper a {
    display: inline-block;
  }
}

[dir="rtl"] .nav-wrapper a {
  padding: 0 0 0 20px;
}

.nav-wrapper a:hover, .nav-wrapper a:focus, .nav-wrapper a:active {
  background-color: transparent;
  text-decoration: underline;
}

.nav-wrapper a.login {
  display: inline-block;
}

.nav-wrapper a.login:hover {
  color: #333;
}

.nav-wrapper .icon-menu {
  display: inline-block;
  margin-right: 10px;
  color: #1c4e6b;
}

@media (min-width: 768px) {
  .nav-wrapper .icon-menu {
    display: none;
  }
}

[dir="rtl"] .nav-wrapper .icon-menu {
  margin-left: 10px;
  margin-right: 0;
}

/***** User info in header *****/
.user-info {
  display: inline-block;
}

.user-info .dropdown-toggle::after {
  display: none;
}

@media (min-width: 768px) {
  .user-info .dropdown-toggle::after {
    display: inline-block;
  }
}

.user-info > [role="button"] {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  font-size: 13.7px;
  letter-spacing: -.01em;
  color: #333;
  border: 0;
  font-weight: 500;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > [role="button"]:hover {
  background-color: transparent;
}

.user-info > [role="button"]::after {
  padding-right: 15px;
}

[dir="rtl"] .user-info > [role="button"]::after {
  padding-left: 15px;
  padding-right: 0;
}

.dropdown-menu [role=menuitem] {
  color: #333;
}

#user #user-name {
  display: none;
  font-size: 14px;
}

@media (min-width: 768px) {
  #user #user-name {
    display: inline-block;
    margin-top: -2px;
  }
}

#user #user-name:hover {
  text-decoration: underline;
}

/***** User avatar *****/
.user-avatar {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

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

.avatar.article-avatar {
  margin-left: 3px;
}

.avatar img {
  height: 48px;
  width: 48px;
}

.article-header .avatar img {
  height: 30px;
  width: 30px;
} 

.avatar .icon-agent::before {
  background-color: #333;
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  color: #ffffff;
  content: "\1F464";
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 14px;
}

/***** Footer *****/
.footer {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  letter-spacing: -.01em;
  margin-top: 60px;
  padding: 30px 0;
  padding-bottom: 29px;
  box-shadow: inset 0 20px 20px -20px rgba(0,0,0,.1);
}

.footer a {
  color: #555;
}

.footer .button {
  background: #999;
  border: 1px solid #999;
}

.footer .button::after {
	color: #fff;
}


.footer .button:hover {
  background: #222;
  border: 1px solid #222;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media (min-width: 1160px) {
  .footer-inner {
    padding: 0;
    width: 90%;
  }
}

.footer-language-selector {
  color: #555;
  display: inline-block;
  font-weight: 400;
}

/***** Breadcrumbs *****/
.breadcrumbs {
  margin: 0 0 15px -11px;
  padding: 0;
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin: 0;
  }
}

.breadcrumbs li {
  color: #2f2f2f;
  display: inline;
  font-weight: 600;
  font-size: 15px;
  font-size: 1.51em;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs.search-result-breadcrumbs li {
  font-size: 14.5px;
}

.breadcrumbs.search-result-breadcrumbs li a {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  letter-spacing: -.018em;
  color: #3b444b;
  font-weight: 500;
}

.breadcrumbs:not(.search-result-breadcrumbs) li:first-of-type {
  display: none; /* Erstes Element (DRACOON) nicht anzeigen */
}

.breadcrumbs:not(.search-result-breadcrumbs) li:nth-of-type(2) a {
 font-family: 'Public Sans', Lato, Helvetica, Arial;
 letter-spacing: -.019em;
 word-spacing: .4px;
 color: #373737;
 font-weight: 700; /* Erste Ebene (Kategorie) fett anzeigen */ 
}

.breadcrumbs:not(.search-result-breadcrumbs) li:nth-of-type(3) {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  font-size: 1.21em;
  letter-spacing: -.017em;
  display: block; /* Zweite Ebene (Abschnitt) unterhalb der Kategorie anzeigen, außerdem kleiner darstellen */
  margin-top: 3px;
}

.section-container .breadcrumbs:not(.search-result-breadcrumbs) li:nth-of-type(3) {
  display: none;  /* Auf Abschnitts-Übersichtsseiten die zweite Ebene (Abschnitt) nicht unterhalb der Kategorie anzeigen, denn der Abschnitt hat einen eigenen großen Titel unten */
}

.breadcrumbs:not(.search-result-breadcrumbs) li + li::before { /* wird aktuell nicht mehr benutzt, daher leeren Inhalt anzeigen; darf nicht gelöscht werden, da sonst Overflow-Probleme */
  font-family: "Font Awesome 5 Pro"; 
  content: " ";
  margin-right: 3px;
  margin-left: -3px;
  font-size: 0px;
  font-weight: 600;
  color: #d1d1d1;
}

.search-result-breadcrumbs li + li::before {
  font-family: "Font Awesome 5 Pro";
  content: "\f054";
  margin-right: 7px;
  margin-left: 4px;
  font-size: 11.5px;
  color: #b6b6b6;
}

.breadcrumbs:not(.search-result-breadcrumbs) li a {
  color: #373737;
  font-weight: 600;
}

.breadcrumbs:not(.search-result-breadcrumbs) li a:visited {
  color: #373737;
}

/***** Search field *****/

.search {
  position: relative;
}

.search input[type="search"] {
  border: 1px solid #ddd;
  border-radius: 28px;
  box-sizing: border-box;
  color: #999;
  height: 40px;
  padding-left: 40px;
  padding-right: 20px;
  -webkit-appearance: none;
  width: 100%;
}

[dir="rtl"] .search input[type="search"] {
  padding-right: 40px;
  padding-left: 20px;
}

.search input[type="search"]:focus {
  border: 1px solid #222;
  color: #111;
}

.search::before {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #b1a3a1;
  content: "\1F50D";
  font-size: 19px;
  position: absolute;
  left: 15px;
}

.hero .search::before {
  font-size: 21px;
  font-weight: 700;
  color: #808080;
}

[dir="rtl"] .search::before {
  right: 15px;
  left: auto;
}

.search-full input[type="search"] {
  border: 1px solid #676767;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,.14), 0 2px 9px 0px rgba(0,0,0,0.1) /* 0px 1px 1px 1px rgba(0, 0, 0, 0.07), 0px 20px 30px 20px rgba(0, 0, 0, 0.05);  0px 9px 14px 0px rgba(0, 0, 0, 0.09) */;
}

/***** Hero component *****/
.hero {
  /* background-image: url(/hc/theming_assets/01HZPFTEKVTV2R8T6DTAR37PAQ); 
  background-position: center;
  background-size: 350px;
  background-repeat: no-repeat; */
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
  margin-bottom: 28px !important;
  /* box-shadow: 0 2px 3px -2px rgba(0, 0, 0, .18); */
}

.hero-inner {
  position: relative;
  top: 50%;
  transform: translateY(-52%);
  max-width: 610px;
  margin: 0 auto;
}

.hero-bottom-gradient {
  height: 0;
}

@media (max-width: 441px) {
  .hero-bottom-gradient {
    margin-bottom: 20px;
  }  
}

@media (min-width: 530px) {
  .hero {
    background-color: #f9f9f9;
  }
  .hero-bottom-gradient {
    box-shadow: 0 0 69px 80px #fff;
  }  
}


.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
}

@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
    margin: 0;
  }
}

.page-header .section-subscribe {
  flex-shrink: 0;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .page-header .section-subscribe {
    margin-bottom: 0;
  }
}

.page-header h1 {
  flex-grow: 1;
  margin-bottom: 10px;
}

.page-header-description {
  font-style: normal;
  font-weight: 300;
  margin: 0 0 37px 0;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .page-header-description {
    flex-basis: 100%;
  }
}

.page-header .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 50px;
  padding-bottom: 5px;
}

@media (min-width: 768px) {
  .sub-nav {
    align-items: baseline;
    flex-direction: row;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .sub-nav input[type="search"] {
    min-width: 300px;
  }
}

.sub-nav input[type="search"]::after {
  font-size: 15px;
}

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.blocks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px;
    margin-bottom: 9px;
  }
}

.blocks-item {
  /* border: 1px solid #d9d9d9!important; */
  border-radius: 3px!important;
  box-sizing: border-box;
  color: #d43f23;
  display: flex;
  flex: 1 0 340px;
  flex-direction: column;
  justify-content: normal;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
  
  /*custom*/
  /* background-color: #eee; */

  border-radius:5px;
  transition:none;
  transition:all 0.2s ease-in-out 0s;
  border:none;
  color:#fff;
}

@media (min-width: 768px) {
  .blocks-item {
    margin: 0 15px 30px;
  }
}

.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  /*background-color: #d43f23;*/
  /* background-color: #e6e6e6; */ 
  opacity:1;
  cursor:pointer;
}

.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  text-decoration: none;
}

.blocks-item em {
  transition:all 0.16s ease-in-out 0s;
}

.blocks-item:hover em {
  color: #b07d73 !important;
}

.blocks-item.topics-item:hover {
   background-color: #eee; 
}

.blocks-item-internal {
  opacity: .5;
}

.blocks-item-internal .icon-lock::before {
  content: "\1F512";
  font-size: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: #222222;
}

.blocks-item-link {
  /*color: #d43f23;*/
  padding: 20px 30px;
  color: #222;
}

.blocks-item-link:hover, .blocks-item-link:focus, .blocks-item-link:active {
  text-decoration: none;
}

.blocks-item-title {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 700;
}

.blocks-item-description {
  font-family: "Public Sans", Lato, Helvetica, Arial;
  font-weight: 600;
  color: #454545;
  margin: 0;
}

.blocks-item-description:not(:empty) {
  margin-top: 10px;
}

/***** Homepage *****/
.section {
  margin-bottom: 51px;
}

@media (min-width: 768px) {
  .section {
    margin-bottom: 70px;
  }
}

 @media (min-width: 1500px) {
  .section {
    padding-left: 220px;
    padding-right: 220px;
  }
}

.section-empty {
  margin-left: 24px;
}
 
.section h2 {
  margin-bottom: 10px;
  text-align: center;
}

/***** Promoted articles *****/
.promoted-articles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .promoted-articles {
    flex-direction: row;
  }
}

.promoted-articles-item {
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .promoted-articles-item {
    align-self: flex-end;
    flex: 0 0 auto;
    padding-right: 30px;
    width: 33%;
    /* Three columns on desktop */
  }
  [dir="rtl"] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}

.promoted-articles-item:nth-child(3n) {
  padding-right: 0;
}

.promoted-articles-item a {
  border-bottom: 1px dotted #e1e1e1;
  color: #1c4e6b;
  display: block;
  padding: 15px 0;
}

.promoted-articles-item:last-child a {
    border-bottom: 1px dotted #e1e1e1;
}

@media (min-width: 1024px) {
  .promoted-articles-item:last-child a {
    border-bottom: 1px dotted #e1e1e1;
  }
}

/***** Community section in homepage *****/
.community {
  text-align: center;
  margin-bottom: 10px;
}

.community-image {
  min-height: 400px;
  background-image: url(/hc/theming_assets/01HZPFTEVVZE3FC8N3Z6GEFC06);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
  min-height: 200px;
}

.community,
.activity {
  border-top: 0px solid #e5e5e5;
  padding: 25px 0;
}

/***** Recent activity *****/

.section.section.activity {
	margin-bottom: 16px!important;
}

.recent-activity-header {
  margin-bottom: 10px;
  text-align: center;
}

.recent-activity-list {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  letter-spacing: -.005em;
  font-weight: 500;
  padding: 0;
}

.recent-activity-item {
  border-bottom: 1px solid #e1e1e1;
  padding: 10px 0;
}

.recent-activity-item-parent {
  font-size: 16px;
  margin-bottom: 5px!important;
}

.recent-activity-item-parent, .recent-activity-item-link {
  margin: 6px 0;
  color: #1c4e6b;
  display: inline-block;
  width: 100%;
}

@media (min-width: 768px) {
  .recent-activity-item-parent, .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
}

.recent-activity-item-link {
  font-size: 14px;
  font-weight: 400;
}

.recent-activity-item-meta {
  margin: 15px 0 0 0;
  float: none;
}

.recent-activity-controls a {
  font-weight: 800;
}

@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }
  [dir="rtl"] .recent-activity-item-meta {
    float: left;
  }
}

.recent-activity-item-time, .recent-activity-item-comment {
  color: #7b7b7b;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
}

.recent-activity-item-comment {
  padding-left: 5px;
}

[dir="rtl"] .recent-activity-item-comment {
  padding: 0 5px 0 0;
}

.recent-activity-item-comment::before {
  display: inline-block;
}

.recent-activity-item-comment span::before {
  color: #d43f23;
  content: "\1F4AC";
  display: inline-block;
  font-size: 15px;
  padding-right: 3px;
  vertical-align: middle;
}

[dir="rtl"] .recent-activity-item-comment span::before {
  padding-left: 3px;
}

.recent-activity-controls {
  padding-top: 15px;
}

/***** Category pages *****/
.category-container {
  display: flex;
  justify-content: center;
  padding-top: 57px;
}

.category-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .category-content {
    flex: 0 0 80%;
  }
}

.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .section-tree {
    flex-direction: row;
  }
}

.section-tree .section {
  flex: initial;
}

@media (min-width: 768px) {
  .section-tree .section:not(.widesection) {
    flex: 0 0 48.1%;
    /* border-left: 1px solid #e7e7e7; */
    /* border-right: .5px solid #e7e7e7; */
    /* Two columns for tablet and desktop. Leaving about 2% separation between columns */
  }
  
  .section-tree .widesection {
    flex: 0 0 95%;
  }
  
}

.section-tree .icon-lock::before {
  vertical-align: baseline;
}

.section-tree-title {
  margin-bottom: 13px;
  padding: 5px 14px;
  padding-bottom: 3.5px;
  background: #ecebeb;
  border-bottom: 1px solid #e5e5e5;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.section-tree-title em {
  color: #757575;
}

.widesection {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  letter-spacing: -.013em;
  line-height: 1.54em;
  color: #000;
  background: transparent!important;
  box-shadow: none!important;
  border: 1px solid transparent!important;
  border-radius: 4px!important;
  margin-top: -11px;
  margin-bottom: -28px!important;
  padding-bottom: 35px!important;
}

.widesection a {
  font-weight: 600;
}

.widesection .section-tree-title {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.018em;
  line-height: 1.23em;
  color: #303030;
  border-bottom: none;
  padding: 0;
  background: transparent;
}

.section-tree-title a {
  color: #222222;
}

.section-tree .see-all-articles {
  display: block;
  font-family: 'Public Sans', Lato, Arial, Helvetica, Arial;
  letter-spacing: -.015em;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 0;
  padding-bottom: 3px;
  margin-left: 25px;
}

.article-list-item {
  border-bottom: 0px dotted #eee;
  font-size: 17px;
  padding: 9px 0;
  margin-left: 1px;
}

.article-list-item a {
  font-family: 'Public Sans', Lato, Arial, Helvetica, Arial;
  letter-spacing: -.015em;
  font-weight: 500;
}

.icon-star::before {
  color: #d43f23;
  font-size: 20px;
  display: inline-block;
  margin-right: 5px;
  margin-top: -4px;
}

/***** Section pages *****/
.section-container {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}

.section-container h1 {
  color: #2c2c2c !important;
  font-size: 41px !important;
}

.section-content .page-header {
  margin-left: 12px;
}

.section-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 80%;
  }
}

.section-subscribe .dropdown-toggle::after {
  display: none;
}

/***** Article *****/
.article {
  /*
  * The article grid is defined this way to optimize readability:
  * Sidebar | Content | Free space
  * 17%     | 66%     | 17%
  */
  flex: 1 0 auto;
}

@media (min-width: 1024px) {
  .article {
    flex: 1 0 66%;
    max-width: 95%;
    min-width: 640px;
    padding: 0 30px;
    margin-top: -26px;
  }
}

.article-container {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}

@media (min-width: 1024px) {
  .article-container {
    flex-direction: row;
  }
}

.article-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
    margin-top: 0;
  }
}

.article-author {
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%;
    word-spacing: .9px;
    font-size: 36.2px;
    margin-top: 25px;
    color: #222;
  }
  
}

.releasetitle .article-title {
  color: #232323;
}

.article-title .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -4px;
  vertical-align: baseline;
}

.article [role="button"] {
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari (https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored)*/
  width: 100%;
}

@media (min-width: 530px) {
  .article [role="button"] {
    width: auto;
  }
}
  
.article-info {
  max-width: 100%;
  margin-top: -1px;
}

.article-meta {
  display: inline-block;
  margin-left: 0;
  font-style: italic;
  vertical-align: middle;
  margin-top: -22px;
}

.article-body img {
  height: auto;
  max-width: 100%;
}

.article-body ul, .article-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px; 
}

.article-body ul {
  margin-top: 1px;
  margin-bottom: 1px;
}

.article-body ul > ul, .article-body ol > ol, .article-body ol > ul, .article-body ul > ol {
  margin: 0;
}

.article-body ul {
  list-style-type: disc;
}

.article-body li img {
  margin-top: 14px;
  margin-bottom: 10px;
}

.dcSolutionBox img, .dcCauseBox img, .dcProblemBox img {
  margin-top: 14px;
}

.article-body img.inlineimage {
  display: inline-block !important;
  margin: 0 2px; 
  vertical-align: text-bottom;
}

img.centerimage {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.article-body a, .post-body a, .comment-body a {
  color: #d43f23;
  font-weight: 500;
}

.bluelink {
  color: inherit;
  font-weight: inherit;
}

.article-body code {
  background: #f1f1f1;
  color: #111;
  border-radius: 3px;
  font-size: 98%;
  letter-spacing: -.2px;
  padding: 0 5px;
  margin: 0 2px;
}

.article-body code.keysymbol {
  display: inline-block;
  vertical-align: top;
  font-size: .9em;
  border: 1px solid #767676;
  box-shadow: 1px 1px 1px rgba(0,0,0,.1);
  text-indent: 0;
  margin-left: 1px;
}

.article-body pre {
  background: #F5F4F4;
  /* border: 1px solid #e8e3e2; */
  border: 1px solid #eee;
	border-radius: 4px;
  text-indent: 0;
  overflow: auto;
  overflow-y: hidden;
  white-space: pre;
  margin: .5em 0;
  margin-top: 14px!important;
}

.article-body pre code {
  background: none!important;
  border-radius: 0;
  border: 0!important;
  font-size: 100%;
  letter-spacing: 0;
  padding-left: 0;
}
.article-body pre span.codeheader {
  display: block;
  font-family: "Fira Sans", Lato, Arial;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background-color: #a3a1a2;
  margin: -18px;
  margin-bottom: 12px;
  padding: 3px 6px;
  padding-top: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

pre[class*="language"]:before, pre[class*="language"]:after {
  box-shadow: none!important;
}

code[class*="language"] {
  overflow-y: hidden!important;
  box-shadow: none!important;
}

code.language-shell span.token.comment,code.language-properties span.token.comment {
  color: #444!important;
}

code.language-json {
  color: #555!important;
}

code.language-json span.token.property {
  color: #00466e!important
}

.token.attr-value {
  color: #a61818!important;
}

code.language-shell span.token.comment, .token.attr-name {
  color: #00466e!important;
}

code.language-shell span.token.number, code.language-shell span.token.keyword {
  color:inherit!important;
}

.token.operator, .token.entity, .token.url, .token.variable {
  color: #7f5f40!important;
  background: transparent!important;
}

.token.selector, .token.string, .token.char, .token.function, .token.builtin, .token.inserted {
  color: #206808!important;
}

code.language-sql span.token.keyword {
  color: #00466e!important;
}


code .comment {
  border-bottom: none!important;
}

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: #555;
  font-style: italic;
  padding: 0 15px;
}

.article-content {
  line-height: 1.5;
  margin: 40px 0;
  word-wrap: break-word;
}

.article-content .wysiwyg-font-size-medium {
  
  
	font-size: 14.5px;
}

.article-content h2 {
  font-size: 23px;
  line-height: 1.22em;
	margin-bottom: 10px;
}

.article-content h2 + h3 {
  margin-top: 19px;
}

.article-content p {
	margin: 12px 0px;
}

.article-content h2 + p {
  margin-top: 0;
}

.article-content h2 + p.dcInfoBox, .article-content h2 + p.dcCautionBox, .article-content h2 + p.dcWarningBox, .article-content h3 + p.dcInfoBox, .article-content h3 + p.dcCautionBox, .article-content h3 + p.dcWarningBox  {
  margin-top: 14px;
}

.article-content h3 + ul {
  margin-top: 12px;
}

.article-content p + h2 {
  padding-top: 10px;
  padding-bottom: 5px;
}

.article-content ul + h2 {
  margin-top: 12px;
  padding-top: 10px;
  padding-bottom: 5px;
}

.article-content ol {
	list-style-type: none;
}

.article-content ol.bigsteps, .article-content ol.hugesteps {
  padding-left: 39px;
  margin-left: 12px;
  margin-top: 29px;
  border-left: 2px dotted #d4d4d4;
}

.article-content p + ol.bigsteps {
  margin-top: 21px;
}

.article-content ol.hugesteps {
  margin-left: 9px;
}

.article-content .drExpander ol.bigsteps {
  margin-left: 19px;
  margin-top: 21px;
}

.article-content ol > li {
  text-indent: -36px;
  margin-left: -3px;
  margin-bottom: 7px;
  counter-increment: list;
}

.article-content ol.bigsteps > li, .article-content ol.hugesteps > li {
  position: relative;
  text-indent: 0;
  margin-bottom: 22px;
}

.article-content ol.bigsteps.hugegaps > li, .article-content ol.hugesteps.hugegaps > li {
  margin-bottom: 47px;
}


.article-content ol.bigsteps > li img, .article-content ol.hugesteps > li img {
  display: block; /* wegen collapsing margins */
}

.article-content ol > li em {
  text-indent: 0;
}

.article-content ol > li:before {
  background-color: #fbfbfb;
  width: 20px;
  text-indent: 0;
  padding-left: 0px;
  height: 20px;
  text-align: center;
  vertical-align: baseline;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #737373;  /* #d05818*/
  display: inline-block;
  font-weight: 500;
  content: counter(list);
  margin-right: 14px;
  font-size: 14px;
  border: 1px solid #707070;  /*#ed5344*/
}

.article-content ol.bigsteps > li:before {
  position: absolute;
  background-color: #fafafa;
  width: 25px;
  height: 25px;
  padding: 0;
  color: #6f6f6f;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  border: 2px solid #bababa;
  top: -2px;
  left: -52px;
}  

.article-content ol.hugesteps > li:before {
  position: absolute;
  background-color: #f9f9f9;
  width: 25px;
  height: 25px;
  padding: 1px;
  color: #6f6f6f;
  font-size: 19px;
  font-weight: 400;
  line-height: 25px;
  border: 2px solid #b2b2b2;
  top: -3px;
  left: -53px;
} 

.article-content ul > li {
	text-indent: -10px;
  margin-left: -2px;
  list-style: none; 
}

.article-content ul > li p, .article-content ul > li .far, .article-content ul > li .fas, .article-content ul > li .fal, .article-content ul > li .fad {
  text-indent: 0;
}

.fa-spin-slow {
  animation: fa-spin 9s linear infinite;
}

.article-content ul > li:before {
  display: inline-block;
  color: rgb(127, 127, 127);  
  content: "\2022";
  font-size: 1.15em;
  line-height: 1em;
  margin-right: 9px;
  position: relative;
  top: 1.5px;
}

 .article-content ul.bugfixlist > li:before {
  font-family: "Font Awesome 5 Pro";
  color: #a9a3a2;  
  content: "\f058";
  font-size: .9em;
  font-weight: 700;
  margin-right: 6px;
  left:-3px;
}

.article-content ul.bugfixlist code {
  font-size: .8em;
  font-family: inherit;
  white-space: nowrap;
  vertical-align: text-top;
  padding: 1px 5px;
  border-radius: 6px;
}

.article-content ul.bugfixlist > li {
  margin-bottom: 6px;
}

.article-content ul.squarelist > li:before {
  content: "\25AA"; 
  color: #555;
}

.article-body > p:last-child {
  margin-bottom: 0;
}

.article-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

#article-comments {
  /* Kommentare zu Anleitungsartikeln ausblenden
  Eingefügt von Roland Siegert, da Benutzer Anleitungsartikel
  nicht kommentieren können sollen */
	display: none; 
}

.article-comment-count {
  color: #555;
  font-weight: 300;
}

.article-comment-count:hover {
  text-decoration: none;
}

.article-comment-count .icon-comments {
  color: #d43f23;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.article-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-top: 4px;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    flex: 0 0 17%;
    height: auto;
  }
}

.article-relatives {
  border-top: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .article-relatives {
    /* flex-direction: row; */
  }
}

.article-relatives > * {
  flex: 1 0 auto;
  margin-right: 0;
}

.article-relatives > *:last-child {
  margin: 0;
}

@media (min-width: 768px) {
  .article-relatives > * {
    margin-right: 20px;
  }
}

.article-votes {
  /* border-top: 1px solid #ececec; */
  padding: 30px 0;
  text-align: center;
}

.article-vote {
  background: transparent;
  border: 1px solid #777;
  color: #000;
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}

.article-vote::before {
  font-size: 8px;
  margin-right: 10px;
}

[dir="rtl"] .article-vote::before {
  margin-right: 0;
  margin-left: 10px;
}

.article-vote::after {
  content: attr(title);
  /* Yes/No label*/
}

.article-vote:focus, .article-vote:active {
  background-color: transparent;
  color: #333;
}

.article-vote:hover {
  border-color: #222;
}

.article-vote:hover::before, .article-vote:hover::after, .article-vote[aria-selected="true"]::before, .article-vote[aria-selected="true"]::after {
  color: #ffffff;
}

.article-vote-up::before {
  content: "\2713";
}

.article-vote-down::before {
  content: "\2715";
}

.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}

.article-return-to-top {
  border-top: 1px solid #ddd;
}

@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}

.article-return-to-top a {
  color: #222222;
  display: block;
  padding: 20px 0;
}

.article-return-to-top a:hover, .article-return-to-top a:focus {
  text-decoration: none;
}

.article-return-to-top .icon-arrow-up::before {
  font-size: 16px;
  margin-left: 5px;
}

[dir="rtl"] .article-return-to-top .icon-arrow-up::before {
  margin-right: 10px;
}

.article-unsubscribe {
  background-color: #d43f23;
  color: #ffffff;
  text-decoration: none;
}

.article-unsubscribe:hover {
  background-color: #7c2515;
  border-color: #7c2515;
}

.sidenav-title {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  font-size: 15.5px;
  letter-spacing: -.017em;
  position: relative;
}

.sidenav-item {
  border-radius: 4px;
  color: black;
  display: block;
  font-size: 14.5px;
  font-weight: 400;
  margin-bottom: 8px;
  padding: 10px;
}

.sidenav-item.current-article, .sidenav-item:hover {
  background-color: #222;
  color: #ffffff;
  text-decoration: none;
}

.sidenav-item.current-article {
  border-radius: 0;  
}

.recent-articles h3,
.related-articles h3 {
  font-size: 15px;
  margin: 20px 0;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 10px;
}

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */

.attachments .attachment-item {
  padding-top: 11px;
  padding-bottom: 10px;
  padding-left: 41px;
  padding-right: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 9px;
  max-width: 850px;
  position: relative;
  margin-bottom: 10px;
}

.attachments .attachment-item:last-child {
  margin-bottom: 0;
}

.attachments .attachment-item::before {
  color: #222222;
  content: "\1F4CE";
  font-size: 15px;
  left: 20px;
  position: absolute;
  top: 15px;
}

[dir="rtl"] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .attachments .attachment-item::before {
  left: auto;
  right: 0;
}

.upload-dropzone span {
  color: #555;
}

/***** Social share links *****/
.share {
  padding: 0;
  white-space: nowrap;
}

.share li, .share a {
  display: inline-block;
}

.share a {
  border-radius: 50%;
  height: 25px;
  line-height: 25px;
  overflow: hidden;
  width: 25px;
}

.share a::before {
  color: #555;
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%;
}

.share a:hover {
  text-decoration: none;
}

.share a:hover::before {
  color: #d43f23;
}

.share-twitter::before {
  content: "\e901";
}

.share-facebook::before {
  content: "\e903";
}

.share-linkedin::before {
  content: "\e900";
}

a.share-googleplus {
  display: none;
}

.share-googleplus::before {
  content: "\e902";
}

/***** Comments *****/
/* Styles comments inside articles, posts and requests */
.comment {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.comment-heading {
  margin-bottom: 5px;
  margin-top: 0;
}

.comment-overview {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.comment-overview p {
  margin-top: 0;
}

.comment-callout {
  color: #555;
  display: inline-block;
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 0;
}

.comment-callout a {
  color: #d43f23;
}

.comment-sorter {
  display: inline-block;
  float: right;
}

.comment-sorter a {
  color: #555;
  font-weight: 300;
  font-size: 13px;
  text-decoration: none;
}

[dir="rtl"] .comment-sorter {
  float: left;
}

.comment-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.comment-wrapper.comment-official {
  border: 1px solid #aaa;
  padding: 40px 20px 20px;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .comment-wrapper.comment-official {
    padding-top: 20px;
  }
}

.comment-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .comment-info {
  padding-right: 0;
  padding-left: 20px;
}

.comment-author {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .comment-author {
    justify-content: space-between;
  }
}

.comment-avatar {
  margin-right: 10px;
}

[dir="rtl"] .comment-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.comment-meta {
  flex: 1 0 auto;
}

.comment-labels {
  flex-basis: 100%;
}

@media (min-width: 768px) {
  .comment-labels {
    flex-basis: auto;
  }
}

.comment .status-label:not(.status-label-official) {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .comment .status-label:not(.status-label-official) {
    margin-top: 0;
  }
}

.comment-form {
  display: flex;
  padding-top: 30px;
  word-wrap: break-word;
}

.comment-container {
  width: 100%;
}

.comment-form-controls {
  display: none;
  margin-top: 10px;
  text-align: left;
}

@media (min-width: 768px) {
  [dir="ltr"] .comment-form-controls {
    text-align: right;
  }
}

.comment-form-controls input[type="submit"] {
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .comment-form-controls input[type="submit"] {
    margin-left: 15px;
  }
  [dir="rtl"] .comment-form-controls input[type="submit"] {
    margin-left: 0;
    margin-right: 15px;
  }
}

.comment-form-controls input[type="checkbox"] {
  margin-right: 5px;
}

.comment-form-controls input[type="checkbox"] [dir="rtl"] {
  margin-left: 5px;
}

.comment-ccs {
  display: none;
}

.comment-ccs + textarea {
  margin-top: 10px;
}

.comment-attachments {
  margin-top: 10px;
}

.comment-attachments a {
  color: #d43f23;
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  line-height: 1.6;
}

.comment-body img {
  height: auto;
  max-width: 100%;
}

.comment-body ul, .comment-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

.comment-body ul > ul, .comment-body ol > ol, .comment-body ol > ul, .comment-body ul > ol {
  margin: 0;
}

.comment-body ul {
  list-style-type: disc;
}

.comment-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.comment-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: #555;
  font-style: italic;
  padding: 0 15px;
}

.comment-mark-as-solved {
  display: inline-block;
}

/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
  display: inline-block;
  text-align: center;
  width: 35px;
}

.vote a {
  outline: none;
}

.vote a:active, .vote a:hover, .vote a:focus {
  text-decoration: none;
}

.vote-sum {
  color: #555;
  display: block;
  margin: 3px 0;
}

[dir="rtl"] .vote-sum {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.vote-up:hover::before,
.vote-down:hover::before {
  color: #d43f23;
}

.vote-up::before, .vote-down::before {
  color: #555;
  font-size: 24px;
}

.vote-up::before {
  content: "\2B06";
}

.vote-down::before {
  content: "\2B07";
}

.vote-voted::before {
  color: #d43f23;
}

.vote-voted:hover::before {
  color: #7c2515;
}

/***** Actions *****/
/* Styles admin and en user actions(edit, delete, change status) in comments and posts */
.actions {
  text-align: center;
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari*/
}

.actions .dropdown-toggle {
  font-size: 0;
  margin: 15px 0;
}

.actions .dropdown-toggle:hover::before, .actions .dropdown-toggle:focus::before, .actions .dropdown-toggle:active::before {
  background-color: #f7f7f7;
}

.actions .dropdown-toggle::before {
  background-color: transparent;
  border-radius: 50%;
  color: #555;
  content: "\2699";
  display: block;
  font-size: 13px;
  margin: auto;
  padding: 5px;
}

/***** Community *****/
.community-hero {
  /*background-image: url(/hc/theming_assets/01HZPFTER5KJSGBWT8HAWRVQX4);*/
  margin-bottom: 40px;
}

.community-footer {
  padding-top: 50px;
  text-align: center;
}

.community-featured-posts, .community-activity {
  padding-top: 40px;
  width: 100%;
}

.community-header {
  margin-bottom: 36px;
}

.page-header.community-header {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 45px;
}

.page-header.community-board-header h1 {
  font-size: 38px;
}

.community-header h4 {
  margin-bottom: 0;
}

.post-to-community {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .post-to-community {
    margin: 0;
  }
}

/* Community topics grid */
.topics {
  max-width: none;
  width: 100%;
}

.topics-item .meta-group {
  justify-content: center;
  margin-top: 20px;
}

/* Community topic page */
.topic-header {
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}

@media (min-width: 768px) {
  .topic-header {
    padding-bottom: 10px;
  }
}

.topic-header .dropdown {
  display: block;
  border-top: 1px solid #ddd;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .topic-header .dropdown {
    border-top: 0;
    display: inline-block;
    margin-right: 20px;
    padding: 0;
  }
}

.no-posts-with-filter {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Topic, post and user follow button */
.community-follow {
  margin-bottom: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow {
    margin-bottom: 0;
    width: auto;
  }
}

.community-follow .dropdown {
  width: 100%;
  margin-top: 13px;
}

.community-follow [role="button"] {
  line-height: 30px;
  padding: 0 10px 0 15px;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow [role="button"] {
    width: auto;
  }
}

.community-follow [role="button"]:hover {
  background-color: $2c2c2c;
}

.community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
  border-color: #ffffff;
  color: #ffffff;
}

.community-follow [role="button"][aria-selected="true"] {
  background-color: #2c2c2c;
  color: #ffffff;
}

.community-follow [role="button"][aria-selected="true"]::after {
  border-left: 1px solid #ffffff;
  color: #ffffff;
}

.community-follow [role="button"][aria-selected="true"]:hover {
  background-color: #000;
  border-color: #000;
}

.community-follow [role="button"]::after {
  border-left: 1px solid #555;
  content: attr(data-follower-count);
  color: #222;
  display: inline-block;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}

@media (min-width: 768px) {
  .community-follow [role="button"]::after {
    position: static;
  }
}

[dir="rtl"] .community-follow [role="button"]::after {
  border-left: 0;
  border-right: 1px solid #d43f23;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

/***** Striped list *****/
/* Used in community posts list and requests list */
.striped-list {
  padding: 0;
}

.striped-list-item {
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .striped-list-item {
    align-items: center;
    flex-direction: row;
  }
}

.striped-list-info {
  flex: 2;
}

.striped-list-title {
  color: #1c4e6b;
  margin-bottom: 10px;
  margin-right: 5px;
}

.striped-list-title:hover, .striped-list-title:focus, .striped-list-title:active {
  text-decoration: underline;
}

.striped-list-title:visited {
  color: #07131a;
}

.striped-list .meta-group {
  margin: 5px 0;
}

.striped-list-count {
  color: #888;
  font-weight: 400;
  font-size: 13px;
  justify-content: flex-start;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .striped-list-count {
    display: flex;
    flex: 1;
    justify-content: space-around;
  }
}

.striped-list-count-item::after {
  content: "·";
  display: inline-block;
  padding: 0 5px;
}

@media (min-width: 768px) {
  .striped-list-count-item::after {
    display: none;
  }
}

.striped-list-count-item:last-child::after {
  display: none;
}

.striped-list-number {
  font-weight: 300;
  text-align: center;
}

@media (min-width: 768px) {
  .striped-list-number {
    color: #222222;
    display: block;
    font-weight: 400;
  }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: #b4b4b4;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  margin-right: 2px;
  padding: 3px 10px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
}

.status-label:hover, .status-label:active, .status-label:focus {
  text-decoration: none;
}

.status-label-pinned, .status-label-featured, .status-label-official {
  background-color: #333;
}

.status-label-official {
  border-radius: 0;
  margin-right: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .status-label-official {
    border-radius: 0 0 4px 4px;
    right: 30px;
    width: auto;
  }
}

[dir="rtl"] .status-label-official {
  left: 30px;
  right: auto;
}

.status-label-pending, .status-label-not-planned {
  background-color: #eee;
  color: #555;
}

.status-label-pending {
  text-align: center;
}

.status-label-open {
  background-color: #e03b30;
}

.status-label-closed {
  background-color: #ddd;
}

.status-label-solved {
  background-color: #999;
}

.status-label-new {
  background-color: #ffd12a;
}

.status-label-hold {
  background-color: #000;
}

.status-label-open, .status-label-closed, .status-label-solved, .status-label-new, .status-label-hold {
  text-transform: lowercase;
}

/***** Post *****/
/*
* The post grid is defined this way:
* Content | Sidebar
* 70%     | 30%
*/
.post {
  flex: 1;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .post {
    flex: 1 0 70%;
    max-width: 70%;
  }
}

.post-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .post-container {
    flex-direction: row;
  }
}

.post-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .post-header {
    align-items: baseline;
    flex-direction: row;
  }
}

.post-header .status-label {
  margin-top: 6px;
  margin-left: 1px;
}

.post-title {
  margin-top: 11px;
  margin-bottom: 21px;
  width: 100%;
}

@media (min-width: 768px) {
  .post-title {
    margin-bottom: 25px;
    padding-right: 10px;
  }
}

.post-title h1 {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  color: #333;
  letter-spacing: -.018em;
  font-weight: 700;
  display: inline;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .post-title h1 {
    margin-right: 5px;
  }
}

.post-author {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: -6px;
}

.post-avatar {
  margin-bottom: 30px;
}

.post-content {
  line-height: 1.6;
  word-break: break-word;
}

.post-info-container {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.post-info {
  flex: 1;
}

@media (min-width: 1024px) {
  .post-info {
    padding-right: 20px;
  }
}

[dir="rtl"] .post-info {
  padding-left: 45px;
  padding-right: 0;
}

.post-meta {
  display: inline-block;
  flex: 1;
  margin-left: 10px;
  vertical-align: middle;
}

[dir="rtl"] .post-meta {
  margin-left: 0;
  margin-right: 10px;
}

.post-body img {
  height: auto;
  max-width: 100%;
}

.post-body ul, .post-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

.post-body ul > ul, .post-body ol > ol, .post-body ol > ul, .post-body ul > ol {
  margin: 0;
}

.post-body ul {
  list-style-type: disc;
}

.post-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.post-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.post-body blockquote {
  border-left: 1px solid #ddd;
  color: #555;
  font-style: italic;
  padding: 0 15px;
}

.post-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.post-comment-count {
  color: #555;
  font-weight: 300;
}

.post-comment-count:hover {
  text-decoration: none;
}

.post-comment-count .icon-comments {
  color: #555;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.post-sidebar {
  border-top: 1px solid #ddd;
  flex: 1;
  padding: 30px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .post-sidebar {
    border: 0;
    flex: 1 0 30%;
    padding: 0 0 0 50px;
    text-align: initial;
  }
  [dir="rtl"] .post-sidebar {
    padding: 0 50px 0 0;
  }
}

.post-sidebar h5 {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .post-sidebar h5 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
}

.post-comments {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .post-comments {
    margin-bottom: 0;
  }
}

/* Navigation element that collapses on mobile */
.collapsible-nav {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex-direction: column;
  max-height: 45px;
  overflow: hidden;
  font-size: 14px;
}

@media (min-width: 768px) {
  .collapsible-nav {
    border: 0;
    height: auto;
    flex-direction: row;
    max-height: none;
  }
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}

.collapsible-nav-list li {
  color: #222222;
  line-height: 45px;
  order: 1;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }
  [dir="rtl"] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }
  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 15px 0;
  }
}

.collapsible-nav-list li a {
  color: #222222;
  display: block;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 4px solid #ddd;
  }
  .collapsible-nav-list li:hover a {
    padding: 15px 0 11px 0;
    text-decoration: none;
  }
}

.collapsible-nav-list li[aria-selected="true"] {
  order: 0;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    border-bottom: 4px solid #333;
    order: 1;
    padding: 15px 0 11px 0;
  }
}

.collapsible-nav-list li[aria-selected="true"] a {
  color: #222222;
}

.collapsible-nav-list li[aria-selected="true"]::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 0;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"]::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-list li[aria-selected="true"]::after {
  left: 0;
  right: auto;
}

.collapsible-nav[aria-expanded="true"] {
  max-height: none;
}

.collapsible-nav[aria-expanded="true"] li[aria-selected="true"]::after {
  content: "\2715";
}

/* Sidebar navigation that collapses on mobile */
.collapsible-sidebar {
  flex: 1;
  max-height: 45px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
    padding: 0;
    border-right: 1px solid #f8f8f8;
  }
}

.collapsible-sidebar[aria-expanded="true"] {
  max-height: none;
}

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
  content: "\2715";
}

@media (min-width: 1024px) {
  .collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
    display: none;
  }
}

.collapsible-sidebar-title {
  margin-top: 3px;
  margin-bottom: 12px;
  color: #383838;
}

.collapsible-sidebar-title::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 10px;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-title::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-sidebar-title::after {
  left: 10px;
  right: auto;
}

/***** My activities *****/
.my-activities-nav {
  background-color: #f2f2f2;
  border: 0;
  margin-bottom: 20px;
}

.my-activities-sub-nav {
  background-color: transparent;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .my-activities-sub-nav li:hover {
    border-bottom: 4px solid #ddd;
  }
}

.my-activities-sub-nav li[aria-selected="true"] {
  border-color: #333;
}

.my-activities-table .striped-list-title {
  /* My activities tables */
  display: block;
  margin-bottom: 10px;
  max-width: 350px;
  white-space: normal;
}

@media (min-width: 1024px) {
  .my-activities-table .striped-list-title {
    margin-bottom: 0;
    max-width: 500px;
    min-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.my-activities-table thead {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table thead {
    display: table-header-group;
  }
}

.my-activities-table th:first-child,
.my-activities-table td:first-child {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .my-activities-table th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}

.my-activities-table th:last-child,
.my-activities-table td:last-child {
  padding-right: 0;
}

.my-activities-table td:not(:first-child) {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table td:not(:first-child) {
    display: table-cell;
  }
}

/* Requests table */
.requests-search {
  width: 100%;
}

.requests-table-toolbar {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .requests-table-toolbar {
    flex-direction: row;
  }
}

.requests-table-toolbar .search {
  flex: 1;
  width: 100%;
}

.requests-table-toolbar .request-table-filter {
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-table-filter {
    width: auto;
  }
}

.requests-table-toolbar .request-filter {
  display: block;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter {
    margin: 0 0 0 30px;
  }
  [dir="rtl"] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
}

.requests-table-toolbar .request-filter-label {
  font-size: 13px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter-label {
    margin-top: 0;
  }
}

.requests-table-toolbar select {
  max-height: 40px;
  margin-bottom: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar select {
    margin-bottom: 0;
    max-width: 300px;
    width: auto;
  }
}

.requests-table-toolbar .organization-subscribe,
.requests-table-toolbar .organization-unsubscribe {
  line-height: 40px;
  max-height: 40px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .organization-subscribe,
  .requests-table-toolbar .organization-unsubscribe {
    margin-left: 10px;
  }
  [dir="rtl"] .requests-table-toolbar .organization-subscribe, [dir="rtl"]
  .requests-table-toolbar .organization-unsubscribe {
    margin: 0 10px 0 0;
  }
}

.requests-table-toolbar .organization-unsubscribe {
  background-color: #d43f23;
  color: #ffffff;
}

.requests-table-toolbar + .requests-search-info {
  margin-top: 15px;
}

.requests-table-toolbar + .requests-search-info.meta-data::after {
  content: "";
  margin: 0;
}

.requests-table-toolbar + .requests-search-info + .requests {
  margin-top: 20px;
}

.requests-table-toolbar + .requests {
  margin-top: 40px;
}

.requests .requests-table-meta {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-meta {
    display: none;
  }
}

.requests .requests-table thead {
  display: none;
}

@media (min-width: 768px) {
  .requests .requests-table thead {
    display: table-header-group;
  }
}

.requests .requests-table-info {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-info {
    display: table-cell;
    vertical-align: middle;
    width: auto;
  }
}

.requests .requests-table .requests-link {
  position: relative;
}

.requests .requests-table .requests-sort-symbol {
  position: absolute;
  left: calc(100% + 3px);
  bottom: 0;
  font-size: 10px;
}

/* Following table */
.subscriptions-unsubscribe a {
  background: #d43f23;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .subscriptions-unsubscribe a {
    width: auto;
  }
}

.subscriptions-unsubscribe a:hover {
  background-color: #7c2515;
  text-decoration: none;
}

.subscriptions-table td:last-child {
  display: block;
}

@media (min-width: 768px) {
  .subscriptions-table td:last-child {
    display: table-cell;
  }
}

.subscriptions-table td:first-child {
  display: flex;
  align-items: center;
}

.subscriptions-table .user-avatar {
  margin-right: 10px;
}

.subscriptions .striped-list-title {
  display: inline-block;
  vertical-align: middle;
}

/* Contributions table */
.contributions-table td:last-child {
  color: #555;
  font-size: 13px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .contributions-table td:last-child {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}

.no-activities {
  color: #555;
}

/***** Request *****/
.request-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .request-container {
    align-items: flex-start;
    flex-direction: row;
  }
}

.request-container .comment-container {
  min-width: 0;
}

.request-breadcrumbs {
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .request-breadcrumbs {
    margin-bottom: 60px;
  }
}

.request-main {
  flex: 1 0 auto;
  order: 1;
}

.request-main .comment-fields, .request-main .request-submit-comment {
  display: none;
}

.request-main .comment-fields.shown {
  display: block;
}

.request-main .request-submit-comment.shown {
  display: inline;
}

@media (min-width: 1024px) {
  .request-main {
    flex: 0 0 66%;
    order: 0;
    min-width: 0;
  }
}

.request-main .comment-form-controls {
  display: block;
}

.request-main .comment-ccs {
  display: block;
}

.request-main .comment-show-container {
  border-radius: 2px;
  border: 1px solid #ddd;
  cursor: pointer;
  display: flex;
  padding: 8px 15px;
  width: 100%;
}

.request-main .comment-show-container.hidden {
  display: none;
}

.request-main .comment-show-container-content {
  align-self: center;
  color: #555;
  margin-left: 10px;
}

.request-main .form-field.comment-ccs > ul {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .form-field.comment-ccs > ul[data-hc-focus="true"] {
  border: 1px solid #d43f23;
}

.request-main .form-field.comment-ccs > input[type="text"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.request-main .comment-ccs + textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
}

.request-main .comment-ccs + textarea:focus {
  border-top: 1px solid #d43f23;
}

.request-main input#mark_as_solved {
  display: none;
}

.request-title {
  width: 100%;
}

@media (min-width: 1024px) {
  .request-title {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
    max-width: 66%;
    padding-bottom: 20px;
  }
}

.request-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  order: 0;
}

@media (min-width: 1024px) {
  .request-sidebar {
    background-color: #f7f7f7;
    border: 0;
    font-size: 13px;
    flex: 0 0 auto;
    padding: 0 20px;
    width: 30%;
  }
}

.request-sidebar h5 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

@media (min-width: 1024px) {
  .request-sidebar h5 {
    display: none;
  }
}

.request-details {
  border-bottom: 1px solid #ddd;
  font-size: 0;
  margin: 0;
  padding-bottom: 20px;
}

.request-details:last-child {
  border: 0;
}

.request-details dt, .request-details dd {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  margin: 20px 0 0 0;
}

.request-details dd {
  padding: 0 10px;
  width: 60%;
}

.request-details dd::after {
  content: "\A";
  white-space: pre;
}

.request-details dt {
  color: #555;
  font-weight: 300;
  width: 40%;
}

.request-details .request-collaborators {
  display: inline-block;
}

.request-attachments dt, .request-attachments dd {
  width: 100%;
}

.request-attachments dd {
  margin: 10px 0 0 0;
}

.request-form textarea {
  min-height: 120px;
}

.request-follow-up {
  padding-top: 20px;
}

.request-follow-up a {
  color: #d43f23;
}

/***** Pagination *****/
.pagination {
  margin: 20px 0;
  text-align: center;
}

.pagination * {
  display: inline-block;
}

.pagination li {
  border-radius: 50%;
  height: 40px;
  float: left;
  margin-left: 5px;
  width: 40px;
}

@media (min-width: 768px) {
  .pagination li {
    height: 30px;
    width: 30px;
  }
}

[dir="rtl"] .pagination li {
  float: right;
}

.pagination li:hover:not(.pagination-current) {
  background-color: #f3f3f3;
}

.pagination li:hover:not(.pagination-current) span, .pagination li:hover:not(.pagination-current) a {
  color: #222222;
  text-decoration: none;
}

.pagination a, .pagination span {
  font-size: 15px;
  color: #555;
  padding: 10px 12px;
}

@media (min-width: 768px) {
  .pagination a, .pagination span {
    font-size: 13px;
    padding: 5px 12px;
  }
}

.pagination-current {
  background-color: #2c2c2c;
}

.pagination-current a, .pagination-current span {
  color: #ffffff;
}

.pagination-first {
  border-radius: 3px 0 0 3px;
}

[dir="rtl"] .pagination-first {
  border-radius: 0 3px 3px 0;
}

.pagination-last {
  border-radius: 0 3px 3px 0;
}

[dir="rtl"] .pagination-last {
  border-radius: 3px 0 0 3px;
}

/***** Metadata *****/
.meta-group {
  display: block;
}

.meta-group * {
  display: inline;
}

.meta-data {
  color: #7b7b7b;
  font-size: 13px;
  font-weight: 400;
}

.meta-data:not(:last-child)::after {
  content: "\00B7";
  margin: 0 5px;
}

/***** Icons *****/
[class^="icon-"]::before,
[class*=" icon-"]::before,
.icon,
.search::before,
.recent-activity-item-comment span::before,
.article-vote::before,
.attachments .attachment-item::before,
.share a::before,
.vote-up::before,
.vote-down::before,
.actions .dropdown-toggle::before,
.collapsible-nav-list li[aria-selected="true"]::after,
.collapsible-sidebar-title::after,
.search-result-votes::before,
.search-result-meta-count::before {
  font-family: "copenhagen-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  line-height: 1em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

.icon-lock::before {
  content: "\1F512";
}

.icon-star::before {
  content: "\2605";
}

.icon-linkedin::before {
  content: "\e900";
}

.icon-twitter::before {
  content: "\e901";
}

.icon-googleplus-::before {
  content: "\e902";
}

.icon-facebook::before {
  content: "\e903";
}

.icon-agent::before {
  content: "\1F464";
}

.icon-close::before {
  content: "\2715";
}

.icon-arrow-up::before {
  content: "\2B06";
}

.icon-arrow-down::before {
  content: "\2B07";
}

.icon-attachments::before {
  content: "\1F4CE";
}

.icon-comments::before {
  content: "\1F4AC";
}

.icon-search::before {
  content: "\1F50D";
}

.icon-vote::before {
  content: "\1F44D";
}

.icon-handle::before {
  content: "\25BE";
}

.icon-check::before {
  content: "\2713";
}

.icon-gear::before {
  content: "\2699";
}

.icon-menu::before {
  content: "\2630";
}

.icon-article::before {
  content: "\1F4C4";
}

.icon-post::before {
  content: "\1F4D4";
}

.icon-notification-alert::before {
  content: "\26A0";
}

.icon-notification-error::before {
  content: "\00D7";
}

.icon-notification-info::before {
  content: "\2139";
}

.icon-notification-success::before {
  content: "\2714";
}

/* User Profiles */
.profile-header {
  padding: 30px 0;
  background-color: #f7f7f7;
}

.profile-header .container {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .container {
    flex-wrap: nowrap;
  }
}

.profile-header .profile-info {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}

.profile-avatar {
  position: relative;
  line-height: 0;
  align-self: center;
  margin-right: 10px;
}

[dir="rtl"] .profile-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-avatar .user-avatar {
  width: 65px;
  height: 65px;
}

.profile-avatar .icon-agent::before {
  bottom: 0;
  right: 0;
}

.profile-header .basic-info {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.profile-header .basic-info .name {
  margin: 0;
}

.profile-header .options {
  display: flex;
  flex-basis: 100%;
  margin-top: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 10px;
  }
  [dir="rtl"] .profile-header .options {
    margin-left: 0;
    margin-right: 10px;
  }
  .profile-header .options > :not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }
  [dir="rtl"] .profile-header .options > :not(:last-child) {
    margin-left: 10px;
    margin-right: 0;
  }
}

.profile-header .options [data-action="edit-profile"] {
  background-color: #222;
  border: 0;
  color: #ffffff;
  line-height: normal;
  padding: 8px 20px;
}

.profile-header .description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  margin: 15px 0;
  flex-basis: 100%;
}

.profile-stats {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}

.profile-stats .stat {
  display: flex;
  margin-bottom: 10px;
}

.profile-stats .stat-label {
  color: #555;
  font-weight: 300;
  flex: 0 0 100px;
  margin-right: 10px;
}

[dir="rtl"] .profile-stats .stat-label {
  margin-left: 10px;
  margin-right: 0;
}

.profile-stats-activity {
  border-top: solid 1px #ddd;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .profile-stats-activity {
    border-top: 0;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat {
    flex-direction: column;
  }
}

.profile-stats-activity .stat:first-child {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:not(:last-child) {
    margin-right: 40px;
  }
  [dir="rtl"] .profile-stats-activity .stat:not(:last-child) {
    margin-left: 40px;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat-label {
    flex: 0 1 auto;
  }
}

.profile-stats-counters {
  border-bottom: solid 1px #ddd;
}

@media (min-width: 768px) {
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters {
    flex: 0 0 270px;
    margin-left: 60px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat-label {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat-label {
    flex: 0 0 100px;
  }
}

.profile-private-badge {
  flex-basis: 100%;
  border: solid 1px #d43f23;
  border-radius: 4px;
  color: #d43f23;
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}

.profile-private-badge::after {
  content: "\1f512";
  margin-left: 5px;
  font-family: "copenhagen-icons";
  vertical-align: middle;
  line-height: 15px;
}

@media (min-width: 768px) {
  .profile-private-badge {
    flex-basis: auto;
  }
}

.profile-nav {
  background-color: #f2f2f2;
  border: 0;
  margin-bottom: 37px;
}

.profile-section {
  width: 100%;
}

@media (min-width: 1024px) {
  .profile-section {
    width: calc(100% - 330px);
  }
}

.profile-section-header {
  display: flex;
  flex-wrap: wrap;
}

.profile-section-title {
  flex-basis: 100%;
  margin-bottom: 0;
}

.profile-section-description {
  flex-basis: 100%;
  padding: 10px 0;
  color: #555;
  font-weight: 300;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .profile-section-description {
    flex: 1 0 50%;
    padding-bottom: 0;
  }
}

.profile-section-sorter {
  flex-basis: 100%;
  border-top: solid 1px #eee;
  font-size: 13px;
}

.profile-section-sorter .dropdown-toggle {
  padding: 10px 0;
  width: 100%;
}

.profile-section-sorter .dropdown-toggle::after {
  position: absolute;
  right: 0;
}

[dir="rtl"] .profile-section-sorter .dropdown-toggle::after {
  left: 0;
  right: initial;
}

@media (min-width: 768px) {
  .profile-section-sorter .dropdown-toggle::after {
    position: relative;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 20px;
  }
  [dir="rtl"] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
}

.profile-contribution {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  padding: 20px 0;
  position: relative;
}

.profile-contribution-header {
  margin-bottom: 5px;
}

.profile-contribution-title {
  margin: 0 0 5px 0;
  display: inline;
  line-height: 21px;
  font-size: 15px;
  vertical-align: middle;
}

.profile-contribution-body {
  margin: 10px 0;
}

.profile-contribution-list > .profile-contribution {
  border-top: 1px solid #eee;
}

@media (min-width: 768px) {
  .profile-contribution-list > .profile-contribution {
    padding-left: 30px;
  }
  [dir="rtl"] .profile-contribution-list > .profile-contribution {
    padding-right: 30px;
    padding-left: 0;
  }
}

.profile-contribution-list > .profile-contribution:last-child {
  border-bottom: 1px solid #eee;
}

.profile-contribution-list > .profile-contribution::before {
  left: 0;
  position: absolute;
  font-size: 16px;
  color: #ccc;
  font-family: "copenhagen-icons";
  line-height: 25px;
}

[dir="rtl"] .profile-contribution-list > .profile-contribution::before {
  right: 0;
}

.profile-contribution-list .profile-contribution-header {
  margin-left: 30px;
}

[dir="rtl"] .profile-contribution-list .profile-contribution-header {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-contribution-list .profile-contribution-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-contribution-list .profile-contribution-header {
    padding-right: 0;
  }
}

.profile-comments .profile-contribution-breadcrumbs {
  margin-left: 30px;
}

[dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-comments .profile-contribution-breadcrumbs {
    margin-left: 0;
  }
  [dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 0;
  }
}

.profile-section .no-activity,
.profile-section .private-activity {
  display: block;
  margin-top: 40px;
  color: #999;
}

.profile-section .private-activity::before {
  content: "\1f512";
  font-family: "copenhagen-icons";
  font-style: normal;
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle;
  margin-right: 10px;
}

[dir="rtl"] .profile-section .private-activity::before {
  margin-right: 0;
  margin-left: 10px;
}

.profile-activity-list {
  margin-top: 25px;
}

.profile-activity {
  position: relative;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .profile-activity {
    padding-left: 20px;
  }
  [dir="rtl"] .profile-activity {
    padding-right: 20px;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-activity:not(:last-child) {
    border-left: 1px solid #ddd;
  }
  [dir="rtl"] .profile-activity:not(:last-child) {
    border-left: 0;
    border-right: 1px solid #ddd;
  }
}

.profile-activity-header {
  display: flex;
  align-items: center;
  margin-left: 35px;
}

[dir="rtl"] .profile-activity-header {
  margin-left: 0;
  margin-right: 35px;
}

@media (min-width: 768px) {
  .profile-activity-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-activity-header {
    margin-right: 0;
  }
}

.profile-activity-header .user-avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  min-width: 40px;
  align-self: flex-start;
}

[dir="rtl"] .profile-activity-header .user-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-activity-description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.profile-activity-description span:first-child {
  font-weight: 600;
  display: inline;
}

.profile-activity-contribution {
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background-color: #f7f7f7;
}

@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 50px;
  }
  [dir="rtl"] .profile-activity-contribution {
    margin-left: 0;
    margin-right: 50px;
  }
}

.profile-activity::before {
  position: absolute;
  left: 0;
  width: 28px;
  border-radius: 50%;
  content: "";
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: #ffffff;
  background-position: 50% 50%;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #ccc;
  font-family: "copenhagen-icons";
}

[dir="rtl"] .profile-activity::before {
  right: 0;
}

@media (min-width: 768px) {
  .profile-activity::before {
    left: -14px;
  }
  [dir="rtl"] .profile-activity::before {
    right: -14px;
  }
}

.profile-articles > .profile-contribution::before,
.profile-activity-list > li[class$="-article"]::before {
  content: "\1f4c4";
}

.profile-posts > .profile-contribution::before,
.profile-activity-list > li[class$="-post"]::before {
  content: "\1f4d4";
}

.profile-comments > .profile-contribution::before,
.profile-activity-list > li[class$="-comment"]::before {
  content: "\1f4ac";
  line-height: 35px;
}

/***** Search results *****/
.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 27px;
}

@media (min-width: 1024px) {
  .search-results {
    flex-direction: row;
  }
}

.search-results-column {
  flex: 1;
}

@media (min-width: 1024px) {
  .search-results-column {
    flex: 0 0 45%;
  }
}

.search-results-list {
  margin-bottom: 25px;
}

.search-results-list > li {
  /* border-bottom: 1px solid #ddd; */
  padding: 20px 0;
}

.search-results-list > li:first-child {
  border-top: 1px solid #ddd;
}

.search-result-link {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  letter-spacing: -.018em;
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 500;
}

.search-result-description {
  margin-top: 10px;
  font-family: 'Fira Sans', Lato, Helvetica, Arial;
  font-size: 14.5px;
  font-style: italic;
}

.search-result .meta-data {
  display: none;  /* Alter von Artikeln in Suchergebnissen nicht mehr anzeigen, da Zendesk das Erstellungsdatum und nicht das Änderungsdatum von Artikel anzeigt, wodurch der Eindruck veralteter Artikel entstehen kann */
}

.search-results-subheading {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  letter-spacing: -.018em;
  font-size: 19px;
  font-weight: 700;
}

.search-result-votes, .search-result-meta-count {
  color: #555;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  padding: 4px 5px;
  position: relative;
}

.search-result-votes {
 display: none; 
}

.search-result-votes::before, .search-result-meta-count::before {
  color: #d43f23;
}

[dir="ltr"] .search-result-votes, [dir="ltr"] .search-result-meta-count {
  margin-left: 5px;
}

[dir="ltr"] .search-result-votes::before, [dir="ltr"] .search-result-meta-count::before {
  margin-right: 3px;
}

[dir="rtl"] .search-result-votes, [dir="rtl"] .search-result-meta-count {
  margin-right: 5px;
}

[dir="rtl"] .search-result-votes::before, [dir="rtl"] .search-result-meta-count::before {
  margin-left: 3px;
}

.search-result-votes::before {
  content: "\1F44D";
}

.search-result-meta-count::before {
  content: "\1F4AC";
}

.search-result .meta-group {
  align-items: center;
  margin-top: 1px;
}

.search-result-breadcrumbs {
  margin: 0;
}

.search-result-breadcrumbs li:last-child::after {
  content: "·";
  display: inline-block;
  margin: 0 5px;
  display: none;
}


/*** CUSTOM STYLES for DRACOON ***/

/* colors
grey: #939fa6
lightgrey: #f5f5f5
darkblue: #3a5b9c
blue: #cfe2ee
lightblue: #88bce7
orange: #ec6707
*/

.hero {
    height: 268px;
}

.logo img {
  margin-top:5px;
  z-index: 121 !important;
  position:relative;
}
body > main {
  /*background-color: #f5f5f5;*/
}
.topics-item .meta-group .meta-data {
	color: #555;
}

footer.footer {
	background-color: #aaa9a9;
}
footer.footer .footer-inner a {
	color: #fff;
  font-size: 15px;
}

footer .dropdown-menu [role="menuitem"] {
   color: #222!important;
}

footer .button:hover:after {
	color: #fff!important;
}

.dropdown-menu [role="menuitem"]:hover {
   background-color: #222!important;
   color: #fff!important;
}

.section h2 {
    font-family: 'Public Sans', Lato, Helvetica, Arial; 
    font-size: 33px;
    font-weight: 700;
    line-height: 43px;
  	letter-spacing: -.018em;
    color: #2d2d2d;
    margin:25px auto;
}

.header_meta {
    border: none;
    margin-bottom: 0;
    min-height: 12px;
    z-index: 120 !important;
		background-color: #fff;
    position: absolute;
    width:100%;
}

.header .nav-wrapper {
    margin-top: 17px;
}

section.hero .hero-header {
	color: #3f3f3f;
  /* text-shadow: 0px 1px 2px rgba(0,0,0,.04); */
  margin: 0 0 5.5% 0;
  font-size: 34.5px;
  line-height: 1.3em;
  letter-spacing: .1px;
  font-weight: 600;
  /* background-image: -webkit-linear-gradient(left,#5c0f00,#9a1b03);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

section.hero.community-hero .hero-header {
  color: #333;
}

section.hero .hero-header span {
  margin: 0 0 2% 0;
  font-size: 30px;
  line-height: 1.7em;
  display:block;
}

section.hero .hero-inner  {
	top: 50%;
}

.simplepre {
  background: none!important;
  border: none!important;
  margin: 0!important;
  padding: 0!important;
}


/* DRACOON STYLES */

body > main {
  flex: 1 0 auto; /* Bewirkt, dass der Footer immer unten am Browserfenster klebt, auch wenn der Seiteninhalt kürzer ist. Voraussetzung: body muss Flexbox haben. */
}

.article-subscribe, .article-unsubscribe {
  display: none; /* Bewirkt, dass Abonnieren-Buttons für Artikel ausgeblendet werden (Buttons sind nicht sinnvoll, da beim Artikel-Abonnieren nur über Änderungen an Artikel-Kommentaren benachrichtigt wird) */
}

.page-header h1 {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  font-size: 42px;
  margin-bottom: 18px;
  color: #2f2f2f;
  font-weight: 700;
  letter-spacing: -.017em;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 45px;
    margin-top: 1px;
  	margin-bottom: 10px;
  }
}

.page-header-description  {
	color: #565656;
  font-weight: 400;
  font-style: italic;
  margin-left: 2px;
  margin-bottom: 3px;
}

.section-container {
  justify-content: center;
}

.section-tree {
  margin-top: 57px!important;
}

.section-tree .section {
  
  background-color: #fefefe;
  padding: 0;
  padding-bottom: 18px;
  margin-bottom: 38px;
  border-radius: 6px;
  box-shadow: 0 0 2px rgba(0,0,0,.06), 0 1px 3px -1px rgba(0, 0, 0, .03), 0 13px 34px rgba(0,0,0,0.02);
}

.section-content .page-header-description {
  margin-top: 10px;
  margin-bottom: 0px;
}

.section-content ul {
  margin-top: 28px;
}

.section-tree-title a {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  font-size: 18px;
  letter-spacing: -.015em;
  color: #313131; /* #3d5562, #485861, #d43f23, #454545 */;
  font-weight: 700;
}

.article-list-item {
  font-size: 16px;
  padding: 6.5px 25px;
}

.section-container .article-list-item {
  padding-left: 17px;
}

.article-list-item:last-of-type {
  padding-bottom: 4px;
}

.article-list-item.article-promoted {
  font-size: 17px;
  font-weight: 600;
}

/* Tabelle mit abwechselnden Zeilen */

.article-content .article-body table.dcAlternatingTable {
  width: 100%;
  text-indent: 0;
  background: #FCFCFC;
  border: none;
  margin-top: 10px;
  margin-bottom: 14px;
}

.article-content .article-body .dcAlternatingTable thead th {
  height: 43px;
  text-align: left;
  background: #e7e7e7 !important;
}

.article-content .article-body .dcAlternatingTable tr:nth-child(odd) {
  background: #f4f4f4 !important;
}

.article-content .article-body .dcAlternatingTable td {
  vertical-align: top;
  padding: 15px 13px;
  border: none !important;
}

.article-content .article-body .dcAlternatingTable.dcWithBorders td {
  border: 1px solid #e7e7e7 !important;
}

.article-content .article-body .dcAlternatingTable.dcWithHorizontalBorders td {
  border: none !important;
  border-bottom: 1px solid #ececec !important;
}

.article-content .article-body .dcAlternatingTable.dcWithHorizontalBorders tr:first-of-type td {
  border-top: 1px solid #e2e2e2 !important;
}

.article-content .article-body .dcAlternatingTable.dcWithHorizontalBorders tr:last-of-type td {
  border-bottom: none !important;
}

.article-content .article-body .dcAlternatingTable td:first-of-type {
  padding-left: 13px;
}



#dcNews {
  background: #f2f2f2;
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin-bottom: -60px;
}

#dcNews .article-container {
  padding-top: 10px;
  padding-left: 18px;
  padding-right: 18px;
}

#dcNews .article-header {
  flex-direction: row;
  margin-top: 0;
  margin-bottom: 0;
}

#dcNews .article-info {
  margin-top: 120px;
}

#dcNews .article-sidebar {
  display: none;
}

#dcNews .article-sidebar, #dcReleasePage .article-sidebar {
  border: 0!important;
  margin-bottom: 0;
}

#dcNews .article-title {
  position: relative;
  font-size: 47px;
  line-height: 1.18em;
  letter-spacing: 3.5px;
  font-weight: 700;
  color: #d43f23;
  background-image: -webkit-linear-gradient(left,#903220,#d43f23);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-top: 25px;
  margin-bottom: 25px;
  margin-right: 17px;
  padding-left: 18px;
  padding-right: 17px;
  width: 100%;
  max-width: 818px;
}

#dcNews .articlesubtitle {
  font-size: 22px;
  line-height: 2.4em;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.2px;
  margin-left: -11px;
  margin-bottom: 37px;
}

#dcNews .article-subscribe, #dcNews .article-unsubscribe {
  position: absolute;
  bottom: 62px;
  right: 15px;
  width: auto!important;
  color: #000;
  font-weight: 400;
  font-size: 12.5px;
  font-style: normal;
  border-color: #555;
  padding: 0 14px;
  margin-left: -10px;
}

#dcNews .article-subscribe:hover, #dcNews .article-unsubscribe:hover {
	background-color: #222;
  border-color: #222;
  color: #fff;
}

#dcNews .article-unsubscribe:hover {
	background-color: #999;
  border-color: #999;
}
  
#dcNews .article-unsubscribe {
  background: #111;
  border-color: #111;
  color: #fff;
}

#dcNewsList, #dcNewsHeader {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
}

#dcNewsHeader {
  padding-left: 0;
}

#dcNewsList .dcNewsItem {
  box-shadow: 0 5px 15px rgb(0 0 0 / 4%), 0 1px 2px rgb(0 0 0 / 8%);
  padding: 25px 30px;
  border-radius: 10px;
  background: #fff;
  padding-left: 26px;
  margin-bottom: 50px;
}

.article-body .dcNewsItem hr {
  border-top: 1.5px solid #e2e2e2;
  margin-top: 30px;
  margin-bottom: 23px;
  margin-left: -26px;
  margin-right: -30px;
}

#dcNewsList h3 {
  color: #4c4c4c;
  margin-bottom: 13px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

#dcNewsList h2 {
  font-size: 32.2px;
  line-height: 1.2em;
  color: #2d2d2d;
  margin-bottom: 27px;
}

#dcReleasePage h1 {
  font-size: 30px;
}

#dcReleasePage header {
  width: 108.5%;
}

#dcReleasePage p + h3 {
    margin-top: 25px;
}

.releasecontent h2 {
  font-size: 21px;
}

@media (min-width: 510px) {
  #dcNews .article-title {
    /* box-shadow: 0 1px 2px #bbb; */
    margin-left: -17px;
    
  }
  
  #dcNews .articlesubtitle {
    margin-left: 6px;
  }
  
  #dcReleasePage header {
    border: 5px solid #e5e5e5;
    width: 105.5%;
  }
    
  #dcNews .article-subscribe, #dcNews .article-unsubscribe {
  	bottom: 30px;
  }
}

@media (min-width: 765px) {
  #dcNews .article-container {
    padding-top: 10px;
	}
  
  #dcNewsList .dcNewsItem {
    margin-bottom: 69px;
  }
  
  #dcNews .article-subscribe {
    left: 600px;
  	right: initial;
  }
  
  #dcNews .article-unsubscribe {
    left: 541px;
  	right: initial;
  }
}

@media (min-width: 1024px) {
  #dcNews .article-container {
	  padding-top: 44px;
	}
}

@media (min-width: 1160px) {
  #dcNews .article-container {
	  padding-top: 27px;
	}
}

.icon-star {
  display: none;
}

.icon-lock {
   padding-left: 11px;
}

.article-title {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  letter-spacing: -.018em;
  font-weight: 700;
}

.article-content {
  margin-top: 26px;
}

.article-content strong, .article-content b {
  color: #2c2c2c;
  font-weight: 500;
}

.article-content a strong {
  color: #d43f23;
}

.article-content a.dcDRACOONButton strong {
  color: white;
  font-weight: 600;
}

.article-content h1, .article-content h2 {
  color: #292929;
}

.article-content h1 {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  font-size: 27.5px;
  line-height: 1.2em;
  margin-bottom: 17px;
  letter-spacing: -.018em;
  word-spacing: .8px;
  font-weight: 700;
}

.article-content h2 {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  letter-spacing: -.018em;
  font-weight: 700;
}

.article-content h3 {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  font-size: 19px;
  letter-spacing: -.018em;
  line-height: 1.23em;
  font-weight: 700;
  color: #383838;
  margin-bottom: -2px;
}

.article-content p + h1 {
  margin-top: 30px;
}

.article-content pre + h1 {
  margin-top: 36px;
}

.article-content pre + h2 {
  margin-top: 30px;
}

.article-content p.dcRestrictionsBox + h1 {
  margin-top: 52px;
}

.article-content div.dcRestrictionsBox + h1 {
  margin-top: 30px;
}

.article-content div.dcRestrictionsBox + .dcNotesBox {
  margin-top: 80px;
}

.article-content .steplist h3 {
  margin-bottom: 12px;
}

.article-content .steplist h4 {
  font-weight: 600;
  margin-bottom: -1px;
}

.article-content .steplist table {
  width: 100%;
  text-indent: 0;
  background: #FBFCFC;
  margin-top: 10px;
  margin-bottom: 14px;
}

.article-content .steplist table.confluenceTable {
  margin-bottom:44px;
}

.article-content .steplist th {
  height: 35px;
  position: sticky;
  background: #e7e7e7 !important;
}

.article-content .steplist th:first-of-type {
  padding-left: 12px;
}

.article-content .steplist td {
  vertical-align: top;
  border-right: none !important;
  border-bottom: none !important;
}

.article-content .steplist .separatorlines td {
  border-bottom: 1px solid #e4e4e4 !important;
}

.article-content .steplist td:first-of-type {
  padding-left: 12px;
}

.article-content .steplist table tr:last-of-type td {
  padding-bottom: 14px;
  border-bottom: none !important;
}

.article-content .steplist tr:nth-child(odd) {
  background: #f4f4f4 !important;
  border: 1px solid transparent;
}
.article-content h3 span.h3numbered {
  display: inline-block;
  font-family: Lato, Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 14px;
  line-height: 21px;
  width: 23px;
  height: 23px;
  text-align: center;
  vertical-align: text-bottom;
  border: 1px solid #b4351d;
  background: #b4351d;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}

.article-content h2 span.h2numbered {
  display: inline-block;
  font-family: Lato, Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 17px;
  line-height: 24px;
  width: 26px;
  height: 26px;
  text-align: center;
  vertical-align: text-bottom;
  border: 1px solid #b4351d;
  background: #b4351d;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
}

.article-content p + h3, .article-content ul + h3 {
  margin-top: 15px;
}

.article-body table {
   margin-bottom: 27px;
}

.article-body thead th {
    background: #f4f4f3;
    text-align: left;
    /* border-bottom: 1px solid #dddddd; */
    height: 50px;
    padding: 3px 10px;
}

.article-body td {
    padding: 10px;
    border-bottom: 1px solid #e1e1e1;
}

.article-body hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px dotted #5e5e5e;
    color: #fff;
}

pre {
  padding: 1.05em 1.08em !important;
  background: #faf9fa !important;
  border: none!;
}


/* Links in Community-Posts deutlicher machen */
.comment-body a, .comment-body a:visited {
  color: #d43f23;
}

/* In Ticketformularen drei Trennstriche mit Abstand einfügen */
.request_ticket_form_id, #request_description_hint, #request_custom_fields_45383385_hint {
  padding-bottom: 37px;
  margin-bottom: 37px;
  border-bottom: 2px solid #bbb;
}

/* Link zum Ticketformular unter Artikeln, der für nicht-angemeldete Benutzer angezeigt wird, entfernen */
div.article-more-questions {
  display: none!important;
}

/* Schatten unterhalb der Kopfleiste für Zendesk-Agenten ausdünnen, Trennlinie unsichtbar machen */
.zd-hc-3PQnfZ9PzT-mSU6sNsRWjg.zd-hc-2v6BbPkUhuaaWHNTkpP1SY {
  border-bottom: 1px solid #fff;
  box-shadow: 0 0 2px 0 rgb(0 0 0 / 20%) !important;
}

.noCaps .blocks-item-title {
  text-transform: none;
  font-size: 16.8px;
  font-weight: 700;
  color: #222;
  padding: 0;
  margin-top: 1px;
}

.noCaps .blocks-item-link {
  padding: 20px!important;
}

.blocks-item.noCaps {
  max-width: 200px;
}

@media (max-width: 570px) {
  .hero {
    height: 231px;
  }
  
  section.hero .hero-header {
    font-size: 31px;
    margin-bottom: 6%;
  }
  
  .blocks-item.noCaps {
    max-width: 90%;
    margin-bottom: 21px;
  }
  
  .blocks-item {
    margin-bottom: 2px;
  }
  
  .noCaps.blocks-item img {
  transform: scale(1.04) translateY(-3px);
}
  
  .noCaps .blocks-item-link {
    padding: 15px!important;
  }
}

.noCaps.blocks-item:hover img {
  transform: scale(1.05) translateY(-4px);
}

.noCaps.blocks-item img {
  transition: transform 130ms ease-in-out 0s;
}

.noCaps .blocks-item-description {
  display: none;
}

.currentversion-tag {
	display: inline-block;
  height: 20px;
  line-height: 14px;
  vertical-align: top;
  background: #333;
  color: white;
  font-size: 11px;
  font-weight: 400;
  padding: 3px 6px;
  border-radius: 3px;
  margin-left: 15px;
  margin-top: 1.5px
}

.communityTeamMember:after {
  content: "DRACOON Team";
  background-color: #333;
  border-radius: 3px;
  color: white;
  margin-left: 7px;
  padding: 2px 6px;
  font-size: 11px;
  vertical-align: text-bottom;
}

.communityChampion:after, .communityChampionAuthor:after {
  font-family: "Font Awesome 5 Pro", "Fira Sans", Lato;
  content: "\f559" " Champion";
  background: linear-gradient(45deg, #dd4428, #cd381c);
  border-radius: 7px;
  border: 2px solid #ffdbce;
  color: white;
  margin-left: 8px;
  padding: 3px 7px;
  padding-bottom: 3.5px;
  font-size: 11px;
  vertical-align: text-bottom;
}

.communityChampionAuthor:after {
  vertical-align: middle;
}

.articleheadernote {
  font-family: Lato, Arial, 'Helvetica Neue', Helvetica, sans-serif;
	display: inline-block;
  height: 23px;
  line-height: 11px;
  vertical-align: top;
  color: #333;
  border: 1px solid #979797;
  font-size: 12px;
  font-weight: 400;
  padding: 5px 9px;
  border-radius: 5px;
  margin-top: -7px!important;
}

.releasedatenote {
  font-family: Lato, Arial, 'Helvetica Neue', Helvetica, sans-serif;
  position: relative;
  color: #3f3f3f;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 13px;
  border: 1px solid #999;
  border-left: 33px solid #a19f9f;
  border-top-right-radius: 6px;
}

.releasedatenote:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f467";
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    position: absolute;
    left: -25px;
		top: 4px;
}


.question-title {
  font-size: 29px;
}

.question-title::before {
    font-family: "Font Awesome 5 Pro";
    content: "\f059";
    font-weight: 300;
    color: #d43f23;
    font-size: 1.02em;
    margin-right: 3px;
}

.answer-article-info {
    border: 1px solid #ccc;
    background: #fefefe;
    padding: 1px 25px;
    border-radius: 10px;
    margin-top: -12px;
}

.softshadow {
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, .1);
}

.buttonshadowspread {
  box-shadow: 0 2px 6px -3px rgba(0,0,0,.6);
}

.teasershadowspread {
  transition: .12s box-shadow ease-in;  
}

.teasershadowspread:hover {
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0), 0 0 3px #af3119, 1px 1px 15px -2px #e1764e!important;
  transition: .12s box-shadow ease-in;
}

.imgborder {
  padding: 9px;
  border-radius: 3px;
  border: 1px solid #bdbdbd;
  box-shadow: 0 0 1px 0 rgba(0,0,0,.42), 1px 2px 3px -2px rgba(0,0,0,.22);   /*0 0 2px 0 rgba(0,0,0,0.24), 1px 2px 4px -2px rgba(0,0,0,0.22);*/  /*0px 1px 2px rgba(0,0,0,.02);*/
}

@media (min-width: 1024px) {
  .imgborder {
    box-sizing: content-box;
  }
}

.tabletframe {
  margin-top: 5px;
  margin-bottom: 2px;
  background:#111;
  padding:22px;
  border:3px solid #f3f3f3;
  border-radius:22px;
  box-shadow:1px 1px 4px 1px rgba(0,0,0,.5);
}

.imgshadow {
  /*Stärkerer Schatten: box-shadow: 0 0 4px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.1); */
  box-shadow: rgba(0,0,0,.117647) 0 1px 3px, rgba(0,0,0,.0980392) 0 1px 2px;
}

.imgcaption {
  display: block;
  text-indent: 0;
  font-size: 13px;
}

.imgnopadding {
  padding: 0;
}

/* Ab einer Breite von 1500px den Artikelbereich breiter machen */
@media (min-width: 1500px) {
  .header .nav-wrapper {
    margin-right: 2%;  
  }
  
  .container:not(.section-container) {
    max-width: 1450px;
  }
  
  .category-content {
    flex: 0 0 77%;
  }
  
  .article {
    min-width: 940px;
    max-width: 67%;
    margin-left: 21px;
  }
  
  .article-title {
    margin-bottom: 0.77em;
  }
  
  .tabletframe {
    max-width: 705px!important;
  }
  
  #dcNewsHeader {
    min-width: 0;
  }
}

  .collapsible-sidebar-title {
    margin-left: 5px;
  }
  
.sidenav-item {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  font-size: 13.7px;
  letter-spacing: -.01em;
  color: #424242;
  font-weight: 400;
  padding: 8px 11px;
  padding-right: 9px;
  border-radius: 3px;
  margin-bottom: 5px;
}

.sidenav-item.current-article {
  background: #f3f3f3;
  color: #545454;
}

.search-result-description em {  
  background-color: #fff2b0;
  padding: 0px 3px 2px;
  border-radius: 3px;
  font-style: inherit;
}

.videoembed {
  /* border: 1px solid #cecece; */
  display: block;
  box-shadow: 0 0 2px 0 rgba(0,0,0,0.24);
  max-width: 100% !important;
}

iframe {
  max-width: 100% !important;
}

.dcLinkArrow:after, .section-tree .see-all-articles:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f061";
    font-style: normal;
    font-weight: 600;
    /* color: #a1a1a1; */
    font-size: .85em;
    vertical-align: middle;
    margin-left: 0.55em;
    margin-right: 1em;
    text-decoration: underline;
    text-indent: 0;
    display: inline-block;  /* Wichtig, da sonst bei Hover der Pfeil vor dem Link ebenso unterstrichen wird */
    margin-right: -35px; /* Wichtig, da sonst der after-Teil ggf. alleine in die nächste Zeile umbrechen würde */
    margin-bottom: 1px;
}

.article-list-item:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f061";
    font-size: .65em;
    vertical-align: middle;
    color: #9cb2be;
    text-decoration: none;
    text-indent: 0;
    font-weight: 600;
    display: inline-block;  /* Wichtig, da sonst bei Hover der Pfeil vor dem Link ebenso unterstrichen wird */
    margin-left: 4px; /* Wichtig, da sonst der after-Teil ggf. alleine in die nächste Zeile umbrechen würde */
    margin-right: -35px; /* Wichtig, da sonst der after-Teil ggf. alleine in die nächste Zeile umbrechen würde */
    margin-bottom: 1px;
}

.dcLinkPill, .dcLinkPillSolid {
    display: inline-block;
    font-weight: 400!important;
    font-size: 15.5px;
    margin-top: 7px;
    text-indent: 0;
    text-decoration:none;
    padding: 2px 18px;
    border: 1px solid #1c4e6b;
    border-radius: 9999px;
    color: #1c4e6b!important;
}

.dcLinkPillSolid {
    border-color: #cfcfcf;
    background-color: #eee;
}

.dcLinkPill:hover {
    background-color: #eee;
}

.dcLinkArrow:after, .dcLinkArrow:hover:after, .dcLinkPill:hover, .section-tree .see-all-articles:after, .section-tree .see-all-articles:hover:after, .dcLinkPill:hover {
    text-decoration: none;  /* Aufgrund eines Bugs im IE (inkl. IE11) wird text-decoration oben erst auf underline gesetzt und hier wieder auf none gesetzt, der IE erkennt das none hier alleine sonst nicht */
}

.dcMailLink:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f0e0";
    font-style: normal;
    font-weight: 400;
    text-decoration: underline;
    color: #555;
    font-size: 0.9em;
    margin-right: 0.45em;
    display: inline-block;  /* Wichtig, da sonst bei Hover das Symbol vor dem Link ebenso unterstrichen wird */
}
.dcMailLink:before, .dcMailLink:hover:before {
    text-decoration: none;  /* Aufgrund eines Bugs im IE (inkl. IE11) wird text-decoration oben erst auf underline gesetzt und hier wieder auf none gesetzt, der IE erkennt das none hier alleine sonst nicht */
}

.dcDRACOONButton {
    font-family: 'Public Sans', 'Fira Sans', Helvetica, Arial;
    letter-spacing: -.01em;
    font-size: 15px;
    padding-top: 1.5px;
    padding-bottom: 1px;
    padding-right: 24px;
    color: white!important;
    border-radius: 4px;
    background: #2b2b2b /* linear-gradient(-120deg, #d43f23, #e8570d)*/ ;
    border: none;
    text-shadow: 1px 1px rgba(0, 0, 0, .08);
    /* box-shadow: 3px 3px 3px -3px rgba(0, 0, 0, .2);*/ 
}

.dcDRACOONButton:hover {
    background: #000;
}

.dcDRACOONButtonTransparent {
    font-size: 14px;
    padding: 15px;
    padding-right: 24px;
    color: #333!important;
    border-radius: 3px;
    background: #fff!important;
    border: 1px solid #aaa;
    transition: none;
}

.dcDRACOONButtonTransparent:hover {
  background: #fff;
}

.dcDRACOONButtonTransparent:active, .dcDRACOONButtonTransparent:focus {
  border: 1px solid #c22d10;
  color: #c22d10!important;
  outline: none;
}

.dcDRACOONButtonInHeader {
  background:#d43f23;
  padding-left: 17px;
  padding-right: 17px;
  margin-left: 24px;
}

.dcMoreButton {
  /* Usage: <span class="dcMoreButton"><em class="fal fa-ellipsis-h">&zwj;</em></span> */
  display: inline-block;
  padding: 3px 8px 2px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 24px;
  color: #636363;
  vertical-align: top;
  margin-top: -9px;
  margin-right: 2px;
  margin-left: 2px;
  line-height: .9em;
}

@media (max-width: 1024px) {
  .dcMoreButton {
    border-color: #aaa;
    margin-top: -7px;
    margin-right: -3px;
    margin-left: -3px;
    transform: scale(.65);
  }
}

@media (max-width: 635px) {
  .dracoonnewsstar {
    display:none!important;
  }
  
  .dracoonnewstag {
    margin-left: 0!important;
  }
  
  .newsfilterlist {
    margin-left:3px!important;
    margin-top:-38px!important;
    margin-bottom:48px!important;
  }
  
  #dcNews .articlesubtitle {
    margin-bottom: 25px;
  }
  
  #dcNews .article-subscribe, #dcNews .article-unsubscribe {
    right: 28px;
  }
}

.downloads_clientimage {
  vertical-align: top;
}

.downloads_clientdescription {
  margin-left: 170px;
}

@media (max-width: 509px) {
  .dracoonnewstag {
    margin-left: 21px!important;
  }
}

@media (max-width: 905px) {

  .downloads_clientimage {
    display: block;
    margin-left: 7px!important;
    margin-right: 0!important;
    margin-bottom: 15px;
  }
  
  .downloads_clientdescription {
    margin-top: 11px!important;
    margin-left:2px!important;
  }
  
  .downloads_clientbullets {
    margin-top: 12px!important;
  }

  .dcDRACOONButtonInHeader {
     display: inline-block;
     width: auto;
     margin-left: 0;
     margin-top: 10px;
     margin-bottom: .5px;
  }
  
  .dcDRACOONBreakInHeader {
    display:block!important;
  }
  
  .ltsreleaseheader {
    background-image: none!important;
  }
 
}

.dcImportantBox {
  padding: 16px 26px;
  background: #fcf3f0;
  border-radius: 10px;
}

.dcSummaryBox {
    font-style: italic;
    letter-spacing: -.1px;
    text-indent: 0;
    /* border: 1px solid #ededed; */ /* 1px solid #e9e7e7; */
    border-left: 2px solid #e2e2e2;
    padding-left: 12px;
    margin-bottom: 28px;
    max-width: 800px;
    /* box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.6); */
}

.dcInfoBox {
		background: #f7f7f7; /* Original: #f0f2f5 */
    padding: 17px 15px;
    padding-left: 17px;
    border: 1px solid transparent; /* Original: #ededed */
    border-top: none;
    border-radius: 4px;
    border-left: 31px solid #ebeaea;
    position: relative;
    text-indent: 0;
    max-width: 850px;
    /* box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.6); */
}

.dcInfoBox:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f05a";
    font-size: 23px;
    font-weight: 300;
    color: #767676;
    position: absolute;
    left: -27px;
		top: 10px;
}

.dcTipBox {
		background: #f0f7fe; /*#e8f3fd;*/
    padding: 17px 15px;
    padding-left: 17px;
    border: 1px solid transparent; /* Original: #e9ecf2 */
    border-top: none;
    border-radius: 4px;
    border-left: 31px solid #dfedfb;
    position: relative;
    text-indent: 0;
    max-width: 850px;
    /* box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.6); */
}

.dcTipBox:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f0eb";
    font-size: 23px;
    font-weight: 300;
    color: #3877a5;
    position: absolute;
    left: -23px;
		top: 11px;
}

.dcCautionBox {
		background: #fff8de;
    padding: 15px;
    padding-left: 17px;
    border: 1px solid #f4efda;
    border-top: none;
    border-radius: 4px;
    border-left: 31px solid #ffefb1; 
    position: relative;
    text-indent: 0;
    max-width: 850px;
    /* box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.6); */
}

.dcCautionBox:not(.dcNoIcon):before {
    font-family: "Font Awesome 5 Pro";
    content: "\f06a";
    font-size: 22px;
    font-weight: 400;
    color: #8d8059;
    position: absolute;
    left: -26px;
		top: 11px;
}

.dcWarningBox {
		background: #ffeeeb;
    padding: 18px 16px;
    padding-left: 57px;
    border: 3px solid #d43f23;
    border-radius: 5px;
    position: relative;
    text-indent: 0;
    max-width: 850px;
    /* box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.6); */
}

.dcWarningBox:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f071";
    font-size: 31px;
    font-weight: 300;
    color: #b9331a;
    position: absolute;
    left: 11px;
		top: 6px;
}

.dcRestrictionsBox {
    background: #fff1e7;
    padding: 17px 15px;
    padding-left: 17px;
    border: 1px solid transparent; /* Original: #f4e6e0 */
    border-top: none;
    border-radius: 4px;
    border-left: 31px solid #f3e3d7;
    position: relative;
    text-indent: 0;
    max-width: 850px;
}

.dcRestrictionsBox:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f2f7";
    font-size: 22px;
    font-weight: 700;
    color: #ae9c96;
    position: absolute;
    left: -26px;
		top: 11px;
}

.dcRestrictionsBoxHeader {
  font-family: 'Public Sans', Lato, Helvetica, Arial;
  line-height: 1.3em;
  font-size: 17.3px;
  letter-spacing: -.017em;
  color: #482b23;
  font-weight: 700!important;
  margin-bottom: 6px;
}

.article-content .dcRestrictionsBox strong {
  color: #4f4644;
}

div.dcRestrictionsBox > p  {
  margin-top: 0;
}

div.dcInfoBox p:first-child, div.dcTipBox p:first-child, div.dcCautionBox p:first-child, div.dcWarningBox p:first-child {
  margin-top: 1px;
}

div.dcRestrictionsBox *:last-child {
  margin-bottom: 0;
}

.dcInfoBox img:last-child, .dcTipBox img:last-child, .dcCautionBox img:last-child, .dcWarningBox img:last-child {
  margin-bottom: 0;
}

div.dcInfoBox p:last-child, div.dcTipBox p:last-child, div.dcCautionBox p:last-child, div.dcWarningBox p:last-child {
  margin-bottom: 0;
}

ul.dcInfoBox, ul.dcTipBox, ul.dcCautionBox, ul.dcWarningBox {
  margin: 19px 0;
  padding-top: 19px;
  padding-left: 17px;
  padding-bottom: 8px;
}

ul.dcImportantBox {
  padding: 19px 44px;
  margin-left: 0;
}

ul.dcInfoBox li, ul.dcTipBox li, ul.dcCautionBox li, ul.dcRestrictionsBox li  {
	margin-left: 19px!important;
  margin-bottom: 11px;
}  

ul.dcWarningBox li {
	margin-left: 54px!important;
}  

.dcRestrictionsBox li {
	margin-left: -18px!important;
}

.dcInfoBox ul, .dcTipBox ul, .dcCautionBox ul, .dcWarningBox ul, {
  margin-bottom: 0;
}

.dcRestrictionsBox ul {
  margin-top: 0;
  margin-bottom: 0;
}

/* OLD VERSION 
.dcProblemBox {
		background: #fff4f2;
    padding: 17px 15px;
    padding-left: 57px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-left: 3px solid #d47060;
    position: relative;
    margin-bottom: 38px;
}

.dcProblemBox:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f057";
    font-size: 33px;
    font-weight: 300;
    color: #cb5943;
    position: absolute;
    left: 12px;
		top: 9px;
}

.dcProblemBox h2 {
    color: #c22d10;
    font-weight: 400;
}

.dcCauseBox {
		background: #f7f7f7;
    padding: 17px 15px;
    padding-left: 57px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-left: 3px solid #a0a0a0;
    position: relative;
}

.dcCauseBox:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f05a";
    font-size: 33px;
    font-weight: 300;
    color: #909090;
    position: absolute;
    left: 12px;
		top: 9px;
}

.dcCauseBox h2 {
    color: #808080;
    font-weight: 400;
}

.dcSolutionBox {
    background: #f3f9f2;
    padding: 17px 15px;
    padding-left: 57px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-left: 3px solid #4bb157;
    position: relative;
    margin-bottom: 38px;
}

.dcSolutionBox:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f058";
    font-size: 33px;
    font-weight: 300;
    color: #60a067;
    position: absolute;
    left: 12px;
		top: 9px;
}

.dcSolutionBox h2 {
    color: #30923b;
    font-weight: 400;
}

.dcSolutionBox a {
    color: #30923b;
}

.dcSolutionBox .drExpander label {
  color: #30923b;
  font-weight: 500;
}

*/

.dcProblemBox {
		background: #fff4f2;
    padding: 17px 15px;
    padding-left: 45px;
    padding-top: 20px;
    padding-bottom: 15px;
    border-top-left-radius: 3px;
    border-top-right-radius: 4px;
    border-top: 38px solid #c8381d;
    border-top: 38px solid #da4125;
    position: relative;
    margin-bottom: 38px;
    /* box-shadow: 1px 1px 1px 0px #f1f1f1; */
    box-shadow: inset 0 20px 17px -25px rgba(0,0,0,.25);
}

.dcProblemBox:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f057";
    font-size: 21px;
    font-weight: 300;
    color: #fff4f2;
    position: absolute;
    left: 12px;
		top: -34px;
}

.dcCauseBox {
		background: #f7f7f7;
    padding: 17px 15px;
    padding-left: 45px;
    padding-top: 20px;
    padding-bottom: 15px;
    border-top-left-radius: 3px;
    border-top-right-radius: 4px;
    border-top: 38px solid #818181;
    position: relative;
    /* box-shadow: 1px 1px 1px 0px #f1f1f1; */
    box-shadow: inset 0 20px 17px -25px rgba(0,0,0,.25);

}

.dcCauseBox:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f05a";
    font-size: 21px;
    font-weight: 300;
    color: #f7f6f6;
    position: absolute;
    left: 12px;
		top: -34px;
}

.dcSolutionBox {
    background: #f3f9f2;
    padding: 17px 15px;
    padding-left: 45px;
    padding-top: 20px;
    padding-bottom: 15px;
    border-top-left-radius: 3px;
    border-top-right-radius: 4px;
    border-top: 38px solid #30923b;
    position: relative;
    margin-bottom: 38px;
    /* box-shadow: 1px 1px 1px 0px #f1f1f1; */
    box-shadow: inset 0 20px 17px -25px rgba(0,0,0,.25);
}

.dcSolutionBox:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f058";
    font-size: 21px;
    font-weight: 300;
    color: #f7fff8;
    position: absolute;
    left: 12px;
		top: -34px;
}

.dcProblemBox h2, .dcSolutionBox h2, .dcCauseBox h2 {
    font-family: 'Public Sans', Lato, Helvetica, Arial;
    color: #fff;
    letter-spacing: -.015em;
    font-weight: 600;
    font-size: 17.5px;
    position: absolute;
    top: -30px;
    left: 44px;
}

.dcSolutionBox a {
    color: #30923b;
}

.dcSolutionBox .drExpander label {
  color: #30923b;
  font-weight: 500;
}


.dcNotesBox {
  margin-top:48px;
  border:1px solid #dadada;
  border-radius:5px;
  padding:21px;
  padding-top:23px;
  padding-bottom:6px;
}

.dcNotesBox li {
  margin-bottom: 13px;
}

.dcActionBox {
  padding: 23px;
  margin: 60px 0;
  background: #eee;
  border-left: 3px solid firebrick;
  border-radius: 4px;
}

.article-content .dcActionBox ol > li:before {
    color: firebrick;
		border-color: firebrick; 
}

.article-content .dcSolutionBox ol > li:before {
    color: #30923b;
		border-color: #30923b; 
}

.dcArticleTopics {
    background: #f9f9f9;
    border: 1px solid #ebebeb;
    border-top: 1px solid #e5e5e5;
    border-left-color: transparent;
    margin-bottom: 65px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 5px;
    max-width: 850px;
    box-shadow: 1px 1px 2px #f9f9f9;
}

.dcFeaturesPresentation .dcArticleTopics {
  border-color: #f9f9f9;
}

.dcArticleTopicsHead {
    background: #efeeee;
    border: none;
    border-top-right-radius: 5px; 
    padding: 4px;
    padding-bottom: 3px;
    padding-left: 11px; 
    margin-top: 35px;
    margin-bottom: 0;
    max-width: 850px;
    box-shadow: 1px 1px 2px #eee;
}

.dcArticleTopicsHead h3 {
    font-family: 'Fira Sans', Lato, Helvetica, Arial;
    font-size: 15.5px;
    color: #444;
    padding-top: 2px;
    margin-bottom: 0;
}

.dcFeaturesPresentation .dcArticleTopicsHead h3:before {
    content: "";
    margin-left:-5px;
}

.dcArticleTopics ul {
    font-size: 15.5px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.article-content .dcArticleTopics ul > li {
    text-indent: -12px;
    padding-left: 5px;
    padding-right: 20px;
    padding-bottom: 8px;
}

.article-content .dcArticleTopics ul > li.dcSubTopic {
    font-size: 14.8px;
    margin-left: 22px;
}

@media (min-width: 1160px) {
  .dcArticleTopics ul {
    margin-top: 15px;
    margin-bottom: 14px;
  }
  .article-content .dcArticleTopics ul > li {
    padding-bottom: 3px;
  }
  .dcVersionHistory {
    padding-left: 65px !important;
  }
 .dcVersionHistory .dcInfoBox {
  	max-width: 650px;
  }
}

.article-content .dcArticleTopics ul > li:before {
    font-family: "Font Awesome 5 Pro";
    font-size: 0.6em;
    font-weight: 600;
    content: "\f078";
    color: #b9b9b9;
    top: 0;
    margin-right: 9px;
}

.article-content .dcArticleTopics.dcNoArrows ul > li:before {
    content: "";
}

@media (min-width: 1160px) {
  .widearticleheader {
	  margin:-35px -26px 35px -26px!important;
  }
}

.dcFeaturesPresentation h1 {
  color: #d12e0e;
  font-size: 36px;
  margin-bottom: 40px;
}

.dcFeaturesPresentation h2 {
  color: #d12e0e;
  font-size: 30px;
  padding-bottom: 11px!important;
}

.dcFeaturesPresentation h2::before {
    font-family: "Font Awesome 5 Pro";
    content: "\f0a9";
    color: #d12e0e;
    font-weight: 300;
    font-size: 27px;
    padding-right: 10px;
}

.dcFeaturesPresentation h3 {
  color: #d12e0e;
  font-size: 18px;
  margin-top: 23px!important;
  margin-bottom: 14px;
}

.dcFeaturesPresentation img {
  margin-left: 23px;
  margin-top: 11px;
  margin-bottom: 11px;
}

@media (max-width: 570px) {
  .alignleftonmobile {
    margin-left: 0!important;
  }
  
  .article-author {
    margin-bottom: 2px;
  }
  
  .article-header {
    flex-direction: row;
    margin-top: 11px;
    margin-bottom: 45px;
  }
  
  .article-header h1 {
    font-size: 38px;
    color: #383838;
    font-weight: 900;
  }
  
  .question-article .article-header h1 {
    font-size: 25px;
  }

  .question-article .article-header {
    margin-bottom: -5px;
  }
  
  .section-articles.collapsible-sidebar {
    display: none;
  }
  
  .article-sidebar {
    border-bottom: none;
  }
  
  .sub-nav {
    padding-bottom: 0;
  }
  
	.dcFeaturesPresentation img.alignleftonmobile {
     max-width: 98%;
  }
}

.article-content .dcGettingStartedItem {
  position: relative;
  padding: 25px;
  padding-top: 70px;
  margin: 0 auto;
  margin-bottom:33px;
  border-radius:6px;
  max-width:625px;
  box-shadow: rgba(0, 0, 0, 0.7) 0 0 1px, rgba(0, 0, 0, 0.1) 0 1px 2px;
}

.article-content .dcGettingStartedItem h2 span.numbered {
  display: inline-block;
  width: 25px;
  height: 25px;
  font-family: Lato, Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 19px;
  line-height: 23px;
  text-align: center;
  vertical-align: text-bottom;
  border: 1px solid #b4351d;
  background: #b4351d;
  color: #fff;
  border-radius: 50%;
  margin-left: 7px;
  margin-right: 7px;
}

.article-content .dcGettingStartedItem h2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #b4351d;
  font-size: 20px;
  line-height: 33px;
  padding: 7px;
  margin-bottom: 21px;
  background: #fff;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.7) 0 0 1px, rgba(0, 0, 0, 0.1) 0 1px 2px;
}

.dcGettingStartedItem:nth-child(odd) {
  background: #f3f3f3!important;
}
.dcGettingStartedItem:nth-child(even) {
  background: #f3f3f3!important;
}

/* Collapsible-Styles (Aufklappbare Seitenbereiche) */

.drExpander {
  text-indent: 0;
}

.drExpander input {
  display: none!important;
} 

.drExpander label {
  display: block;
  font-weight: 600;
  cursor: pointer;
}

.drExpander label::before {
  content: ' ';
  color: #d43f23;
  display: inline-block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  vertical-align: middle;
  margin-right: .5rem;
  transform: translateY(-2px);
  transition: transform .15s ease-out;
}

.drExpander div:first-of-type {
  max-height: 0px;
  overflow: hidden;
  transition: max-height .15s ease-in;
}

.drExpander input:checked + label + div {
  max-height: 2000px;
  transition: max-height .25s ease-in;
}

.drExpander input:checked + label::before {
  transform: rotate(90deg) translateX(-3px);
}

/* Werden .drExpander-Elemente in eine Section der Klasse .accordion gepackt, die Elemente als Accordion formatieren (mit Trennlinien, Aufklapper-Icons rechts statt links) */

.accordion .drExpander {
  position: relative;
}

.accordion .drExpander:not(.noaccordion) {
  border-top: 1px solid #ccc;
  margin-top: 10px;
  margin-bottom: 10px;
}

.accordion.lightseparatorlines .drExpander:not(.noaccordion) {
  border-top: 1px solid #e3e3e3;
}

.accordion .drExpander label:not(.noaccordion) {
  font-size: 1.12em;
  font-weight: 400;
  padding-top: 10px;
  margin-right: 35px;
  margin-left: 37px;
}

.accordion .drExpander:not(.noaccordion):last-of-type {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.accordion.lightseparatorlines .drExpander:not(.noaccordion):last-of-type {
  border-bottom: 1px solid #e3e3e3;
}

.accordion .drExpander label:not(.noaccordion)::before {
  content: ' ';
  position: absolute;
  left: 6px;
  top: 18px;
  height: 7px;
  width: 7px;
  border: 2px solid #E79384;
  transform: rotate(45deg);
  border-top: none;
  border-left: none;
  transition: transform .15s ease-out;
}

.accordion .drExpander input:checked + label:not(.noaccordion)::before {
  transform: rotate(-135deg);
  top: 21px;
}

.dcTwoColumnBlocks {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 28px;
}

.dcTwoColumnBlocks > div {
   padding: 17px 25px 7px;
   background-color: #f4f3f3;
   border-radius: 6px;
   flex-basis: 48%;
}

@media (max-width: 796px) {
	.dcTwoColumnBlocks > div {
    flex-basis: 100%;
	}  
}  

#leistungsbeschreibung * {
  font-family: Helvetica, Arial;
}

#leistungsbeschreibung .fas, #leistungsbeschreibung .far {
  font-family: "Font Awesome 5 Pro";
}

#leistungsbeschreibung b, #leistungsbeschreibung strong {
  font-weight: 600;
}

#leistungsbeschreibung a {
  color: #cc2b0c;
}

#leistungsbeschreibung h1 {
  color: #222;
  font-size: 34px;
  margin-bottom: 35px;
}

#leistungsbeschreibung h2 {
  color: #222;
  font-size: 24px;
  margin-top: 26px;
  margin-bottom: 14px;
}

#leistungsbeschreibung h3 {
  color: #333;
  margin-bottom: -6px;
}

#leistungsbeschreibung h3 span.h3numbered {
  background: #fff;
  border: 1px solid #222;
  color: #222;
}

#leistungsbeschreibung td {
  padding-top: 0;
  padding-bottom: 0;
}

#leistungsbeschreibung .leistungsbeschreibungfussnoten {
  margin-top:25px
}

#leistungsbeschreibung .leistungsbeschreibungfussnoten p {
  font-size:.9em!important;
  line-height: 1.4;
  margin-top:7px;
  margin-bottom:1px;
}

#leistungsbeschreibung .dcArticleTopics ul > li:before {
  content: "";
}

#leistungsbeschreibung hr {
  border-top: 2px dotted #e3e3e3;
  margin-top: 40px;
  margin-bottom: 10px;
}

#eula * {
  font-family: Helvetica, Arial;
}

#eula strong {
  font-weight: 600;
}

#eula a {
  color: #cc2b0c;
}

#eula {
   max-width: 750px;  
}

#eula > ol {
  padding-left: 45px;
}

#eula h2 {
  font-size: 24px;
  padding-bottom: 7px;
  border-bottom: 1px solid #999;
}

#eula h2 span {
  display: inline-block;
  float: left;
  width: 60px;
  margin-bottom: 10px;
}

#eula ol + h2 {
  margin-top: 37px;
  margin-bottom: -1px;
}

#eula ol > li {
  text-indent: -35px;
}

#eula ol li > ol {
  margin-top: 7px;
  margin-bottom: 8px;
  padding-left: 23px;
}

#eula ol > li > ol > li {
  text-indent: -32px;
}

#eula ol > li:before {
  border: none;
  background: #f2f2f2;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  color: #424242;
}

#eula ol > li > ol > li:before {
  font-size: 15px;
  font-weight: 600;
  background: none;
  margin-right: 10px;
  content: counter(dcCounter, lower-alpha) ")";
}


@media (min-width: 1160px) {
  .header {
    max-width: 1450px;
    margin-top: -13px;
  }
  
  .article {
    box-shadow: 0px 600px 24px 2px #f4f4f4; /*0px 0px 600px 70px 1px #f6f6f6;  600px 160px 1px #f0f0f0;*/
    padding: 0 40px;
    margin-left: 22px;
    border-radius: 5px;
    /* margin-top: -40px; */
    margin-top: -6px; 
  }
  
  .article-relatives {
    box-shadow: 0 0 180px 180px #fff;
  }
  
  .article.question-article {
    box-shadow: none;
    margin-top: -4px;
  }
  
  .article-title {
    font-size: 43.8px;
    letter-spacing: -.018em;
    margin-top: 7px;
  }
  
  .article-title.question-title {
    font-size: 26px;
    margin-top: 7px;
  }
}

.category-main-container {
  background: #f7f7f7;
  padding-bottom: 22px;
  margin-bottom: -60px;
}

.container-background-for-header {
  position: relative;
}

.container-background-for-header .category-container {
  padding-top: 37px;
  margin-top: -2px;
}

.container-background-for-header .page-header-description {
  color: #373737;
}

.category-container-background-for-header {
  padding-top: 0;
  margin-top: -11px;
}

.sub-nav-with-background {
  padding-top: 15px;
  padding-left: 11px;
  margin-top: 9px;
}

@media (min-width: 768px) {
  .category-container-background-for-header {
    margin-top: -40px;
  }

  .container-background-for-header {
    background: linear-gradient(210deg, #efefef, #f7f7f7 68%);
  }

  .container-background-for-header .category-container {
    padding-top: 57px;
    padding-bottom: 50px;
    margin-top: -6px;
  }

}

#dcCloudStateWidget {
  position:absolute;
  display:block; 
  right:0;
  top:0;
  padding-right:0;
}

#dcCloudStateWidget:hover {
  text-decoration:none;
}

#dcCloudStateWidgetChild {
  position:relative;
  top:0;
  font-size:12px;
  color:#333;
  padding: 3px 11px;
  padding-right: 10px;
  border-radius: 5px;
  border-top-right-radius:0;
  border-top-left-radius:0;
  border-bottom-right-radius:0;
  background: #f7f7f7;
  border-top: none;
}

#dcCloudStatusIcon {
  font-size:10.5px;
  color:#1b7d1b;
  margin-left: 7px;
  margin-right: 13px;
}


.dcCategoryImage {
  position: absolute;
  visibility: hidden;
  filter: drop-shadow(2px 3px 4px rgba(0,0,0,.1));
}

@media (min-width: 1160px) {
  #dcCloudStateWidget {
    margin-top: 13px;
  }
  
  #dcCloudStateWidgetChild {
	  border-bottom-right-radius: 5px;
    padding-right: 11px;
  }
}

@media (min-width: 1420px) {
  
  .dcCategoryImage {
    visibility: visible;
  }

  #dcCloudStateWidget {
    position:relative;
    display:inline-block; 
    left:0;
    top:0;
    margin-right:27px;
    margin-top: 0;
    transition: background-color 40ms ease-out;
	}
	
  #dcCloudStateWidgetChild {
    left:0;
    font-size:14px;
    background:transparent;
    border-radius: 5px;
  }
  
  #dcCloudStatusIcon {
    font-size: 11.5px;
    margin-right: 11px;
  }

  #dcCloudStateWidget:hover {
  	border-radius:4px;
  	background-color: #f2f2f2;
    transition: background-color 40ms ease-out;
	}
  
  .header {
    margin-top: -13px;
  }
  
}

@media (max-width: 570px) {
  .header{
    margin-top: -18px;
    margin-bottom: 23px;
  }
  
  .logo img {
    margin-top:14px;
  }
  
  .dracoon_helpsupport_caption {
    top: 60.5px;
    left: 4.8%;
    font-size: 19px;
    display: block;
  }
  
   #dcCloudStateWidget {
    left:0;
    right:0;
  }
  
  #dcCloudStateWidgetChild {
    top: 64px;
    background: none;
    padding: 7px 5%;
  }
}

/* added by Octavio Simone for Roadmap timeline - 11/11/2020 */ 
  .dcCVSSRatingLow {
  	border-radius:4px;
  	background-color: #dcf2bc;
    text-align:center;
    font-size: .9em;
    font-weight: bold;
    margin-right: 9px;
	}

  .dcCVSSRatingMedium {
  	border-radius:4px;
  	background-color: #f8cf94;
    text-align:center;
    font-size: .9em;
    font-weight: bold;
    margin-right: 9px;
	}

  .dcCVSSRatingHigh {
  	border-radius:4px;
  	background-color: #e8671c;
    text-align:center;
    font-size: .9em;
    font-weight: bold;
    margin-right: 9px;
	}

  .dcCVSSRatingCritical {
  	border-radius:4px;
  	background-color: #ed4c3e;
    text-align:center;
    font-size: .9em;
    font-weight: bold;
    margin-right: 9px;
	}

/* New article page layout (darker background, white page, drop shadow around page) */

@media (min-width: 1160px) {
  body > main {
    padding-bottom: 60px;
  }
  
  .sub-nav-with-background {
    background: none;
  }
  
  .breadcrumbs:not(.search-result-breadcrumbs) li a, .breadcrumbs:not(.search-result-breadcrumbs) li a:visited {
    color: #373737;
    font-weight: 600;
  }
  
  .collapsible-sidebar {
    border-right: none;
  }
  
  .sidenav-item {
    color: #424242;
  }
  
  .sidenav-item.current-article {
    color: #222;
    font-weight: 500;
    background: #eeeded;
    padding-left: 8px;
    /* border-left: 2px solid #d43f23; */
    border-left: 4.5px solid #c5c4c4;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: inset 0 10px 20px -21px rgba(0,0,0,.07);
  }
  
  .article {
    padding: 0 37px;
    margin-left: 30px !important;
  }
  
  .article-title {
    margin-top: 38px; /* 31px; */
  }
  
  .article-meta {
    margin-top: -19px;
    margin-left: 3px;
  }
  
  .footer {
    margin-top: 0;
  }
}

.my-activities-header {
  margin-top: 34px;
}

.my-activities-header h1 {
 font-family: 'Public Sans', Lato, Helvetica, Arial;
 font-weight: 700;
 letter-spacing: -.018em;
}

/* added by Octavio Simone for Roadmap timeline - 20/10/2020 */
/* Timeline: hc/articles/360017138679 */

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #a6a5a5;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  box-sizing: border-box;
}

/* Container around content */
.container-tl {
  padding: 10px 14px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

/* The circles on the timeline */
.container-tl::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: #f2f2f2;
  border: 4px solid #d43f23;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  box-sizing: border-box;
}

/* Place the container to the left */
.left-tl-c {
  left: 0;
  box-sizing: border-box;
  border-radius: 9px;
}

/* Place the container to the right */
.right-tl-c {
  left: 50%;
  box-sizing: border-box;
  border-radius: 9px;
}

/* Add arrows to the left container (pointing right) */
.left-tl-c::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: #f2f2f2;
  border-width: 10px 0 10px 10px;
  border-color: #f2f2f2;
  box-sizing: border-box;
}

/* Add arrows to the right container (pointing left) */
.right-tl-c::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: #f2f2f2;
  border-width: 10px 10px 10px 0;
  border-color: #f2f2f2;
}

/* Fix the circle for containers on the right side */
.right-tl-c::after {
  left: -13px;
}

/* The actual content */
.content-tl {
  padding: 22px 30px;
  background-color: #f8f7f7;
  position: relative;
  border-radius: 9px;
  box-shadow: 2px 2px 4px -3px rgb(0 0 0 / 44%);
  box-sizing: border-box;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline-tl::after {
    left: 31px;
    box-sizing: border-box;
  }
  
  .timeline::after {
    left: 27px;
  }

/* Full-width containers */
  .container-tl {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    box-sizing: border-box;
    border-radius: 9px;
  }

/* Make sure that all arrows are pointing leftwards */
  .container-tl::before {
    left: 60px;
    border: #f2f2f2;
    border-width: 10px 10px 10px 0;
    border-color: #f2f2f2;
    box-sizing: border-box;
    border-radius: 9px;
  }

/* Make sure all circles are at the same spot */
  .left-tl-c::after, .right-tl-c::after {
    left: 15px;
    box-sizing: border-box;
  }

/* Make all right containers behave like the left ones */
  .right-tl-c {
    left: 0%;
    box-sizing: border-box;
  }
}