@charset "UTF-8";
@import url(//fonts.googleapis.com/css?family=Open+Sans:400,400italic,300,600,700,800);
/***** Base *****/
* {
  box-sizing: border-box; }

body {
  background-color: #fff;
  color: #333;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; }
  @media (min-width: 1024px) {
    body > main {
      min-height: 65vh; } }

/***:focus {
  outline: none; }***/

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

h1 {
  font-size: 36px;
  font-weight: 300;
  color: #843734; }

h2 {
  font-size: 30px;
  font-weight: 300;
  color: #843734; }

h3 {
  font-size: 18px;
  font-weight: 600;
  color: #482d5a; }

h4 {
  font-size: 15px;
 font-weight: 700;
  margin: 0;
}

a {
  color:#843734;
  text-decoration: none;
  transition: color 0.15s ease-out;
  /*&:hover,
  &:active,
  &:focus {
      text-decoration: underline;
  }*/ }

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #e7e7e7; }

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

input {
  font-weight: 300;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border .12s ease-in-out; }
  input:focus {
    border: 1px solid #843734; }

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(/hc/theming_assets/01HZPGR9RX0J1A0QPE49B67ZXV) 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 #843734; }
  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 #843734; }

.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 #ddd;
  margin-bottom: 20px; }

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

.error-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%; }
  @media (min-width: 1160px) {
    .error-page {
      padding: 0;
      width: 90%; } }

.dropdown-toggle {
  background: none;
  border: 0;
  padding: 0;
  text-align: initial; }

/*** .dropdown-toggle:focus {
  outline: 0;
  text-decoration: underline; } ***/

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

/***** Buttons *****/
.button, [role="button"] {
  text-decoration: none !important;
  border: 1px solid #843734;
  border-radius: 4px;
  color:#843734;
  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: 768px) {
    .button, [role="button"] {
      width: auto; } }
  .button::after, [role="button"]::after {
    color: #843734; }
  .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: #843734;
    color: #fff;
    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: #a12c26;
    border-color: #a12c26; }
  .button[data-disabled], [role="button"][data-disabled] {
    cursor: default; }

.button-large, input[type="submit"] {
  background-color: #843734;
  border: 0;
  border-radius: 4px;
  color: #fff;
  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:active, .button-large:focus, input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus {
    background-color: #a12c26; }
  .button-large[disabled], input[type="submit"][disabled] {
    background-color: #ddd; }

.button-secondary {
  color: #333333;
  border: 1px solid #ddd;
  background-color: transparent; }
  .button-secondary:hover, .button-secondary:focus, .button-secondary:active {
    color: #333;
    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: #333333;
    font-weight: bold;
    text-align: left; }
    [dir="rtl"] .table th,
    [dir="rtl"] .table th a {
      text-align: right; }
  .table tfoot tr {
    border-top: 2px solid #ddd; }
  .table tr {
    vertical-align: top;
    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; } }
  .table td, .table th {
    vertical-align: top; }
    @media (min-width: 1024px) {
      .table td, .table th {
        padding: 20px 30px; } }
    @media (min-width: 768px) {
      .table td, .table th {
        padding: 10px 20px; } }

.table--color-header thead {
  background-color: #843734; }
  .table--color-header thead th, .table--color-header thead th a {
    color: #fff; }
.table--color-header tfoot tr {
  border-top: 2px solid #843734; }
.table--color-header tfoot th, .table--color-header tfoot th a, .table--color-header tfoot td {
  color: #843734; }

.table--bordered {
  border: 1px solid #ddd; }

.table--striped tr, .table--striped td, .table--striped th {
  border: 1px solid #ddd; }
.table--striped tbody tr:nth-child(odd) {
  background-color: #f0f0f0; }

.table--first-column-nowrap tr > td:first-child {
  white-space: nowrap; }

/***** 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 #843734; }

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

.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 #843734;
    text-decoration: none; }

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid #843734;
  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 .optional {
  color: #333333;
  margin-left: 4px; }

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

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

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

.form footer a {
  color: #333333;
  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: #a12c26; }

/***** Header *****/
.header-wrapper {
  background-color: #F4F2F0; }

.header {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  align-items: center;
  display: flex;
  height: 71px;
  justify-content: space-between; }
  @media (min-width: 1160px) {
    .header {
      padding: 0;
      width: 90%; } }
  .header .petsxl-logo {
    position: absolute;
    top: 15px;
    width: 125px;
    right: 10px; }

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

.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; }
  .user-nav a.hidden {
    display: none; }

.nav-wrapper .user-nav, .nav-wrapper .user-info {
  vertical-align: middle; }
.nav-wrapper a {
  border: 0;
  color: #482d5a;
  display: none;
  font-size: 16px;
  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;
    color: #843734; }
  .nav-wrapper a.login {
    display: inline-block; }
.nav-wrapper .menu-button {
  background: none;
  border: 0;
  color: #843734;
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: auto; }
  @media (min-width: 768px) {
    .nav-wrapper .menu-button {
      display: none; } }
  .nav-wrapper .menu-button .icon-menu {
    vertical-align: middle;
    width: 24px;
    height: 24px; }
  [dir="rtl"] .nav-wrapper .menu-button {
    margin-left: 10px;
    margin-right: 0; }
  .nav-wrapper .menu-button:hover, .nav-wrapper .menu-button:focus, .nav-wrapper .menu-button:active {
    background-color: transparent;
    color: #843734; }

/***** 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"] {
    border: 0;
    color: #482d5a;
    min-width: 0;
    padding: 0;
    white-space: nowrap; }
    .user-info > [role="button"]:hover, .user-info > [role="button"]:focus {
      color: #843734;
      background-color: transparent; }
      .user-info > [role="button"]:hover::after, .user-info > [role="button"]:focus::after {
        color: #843734; }
    .user-info > [role="button"]::after {
      color: #482d5a;
      padding-right: 15px; }
      [dir="rtl"] .user-info > [role="button"]::after {
        padding-left: 15px;
        padding-right: 0; }

#user #user-name {
  display: none;
  font-size: 14px;
  /*&:hover {
      text-decoration: underline;
  }*/ }
  @media (min-width: 768px) {
    #user #user-name {
      display: inline-block; } }

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

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

/***** Footer *****/
.footer {
  margin-top: 60px;
  padding: 30px 0;
  background-color: #333333; }
  .footer a {
    color: #ACD5D1;
    text-decoration: none; }
    .footer a:hover, .footer a:active, .footer a:focus {
      color: #fff; }

  .footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 5%;
		text-align: center;  }
    
@media (min-width: 1160px) {
      .footer-inner {
        padding: 0;
        width: 90%; } }

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


.footer a {
        margin-right: 20px;
}
.footer a:last-child {
        margin-right: 0px;
}

/***** Breadcrumbs *****/
.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0; }
  @media (min-width: 768px) {
    .breadcrumbs {
      margin: 0; } }
  .breadcrumbs li {
    color: #333333;
    display: inline;
    font-weight: 300;
    font-size: 13px;
    max-width: 450px;
    overflow: hidden;
    text-overflow: ellipsis; }
    .breadcrumbs li a {
      color: #482d5a; }
      .breadcrumbs li a:hover {
        color: #843734; }
    .breadcrumbs li + li::before {
      content: ">";
      margin: 0 4px; }

/***** Search field *****/
.search {
  position: relative; }
  .search input[type="search"] {
    border: 1px solid #ddd;
    border-radius: 30px;
    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 #843734;
      color: #555; }
  .search::before {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    color: #777;
    content: "\1F50D";
    font-size: 18px;
    position: absolute;
    left: 15px; }
    [dir="rtl"] .search::before {
      right: 15px;
      left: auto; }
  .search-full input[type="search"] {
    border: 1px solid #fff; }

/***** Hero component *****/
.hero {
  /*background-position: center;
  background-size: cover;*/
  background-color: #B4B3AA;
  padding: 0 20px;
  text-align: center;
  width: 100%; }
  .hero-inner {
    position: relative;
    top: 50%;
    max-width: 610px;
    margin: 0 auto;
    padding: 30px 0 48px; }
    .hero-inner img {
      width: 98%; }
  .hero h2 {
    color: #fff;
    margin-bottom: 10px; }
  .hero input[type="search"] {
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    height: 60px; }

.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; }
  .page-header-description {
   /* font-style: italic;*/
    font-weight: 300;
    margin: 0 0 30px 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;
  margin-bottom: 30px;
  min-height: 50px;
  padding-bottom: 15px; }
  @media (min-width: 768px) {
    .sub-nav {
      align-items: baseline;
      flex-direction: row; } }
  @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: flex-start;
  list-style: none;
  padding: 0; }
  @media (min-width: 768px) {
    .blocks-list {
      margin: 0 -15px; } }
.blocks-item {
  position: relative;
  border: 1px solid #843734;
  border-radius: 4px;
  box-sizing: border-box;
  color: #843734;
  display: flex;
  flex: 1 0 340px;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
  transition: background-color 0.15s ease-out; }
  @media (min-width: 768px) {
    .blocks-item {
      margin: 0 15px 30px; } }
  .blocks-item:hover, .blocks-item:focus, .blocks-item:active {
    background-color: #843734; }
    .blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
      color: #fff;
      text-decoration: none; }
  .blocks-item-internal {
    background-color: transparent;
    border: 1px solid #ddd; }
    .blocks-item-internal .icon-lock::before {
      content: "\1F512";
      font-size: 15px;
      bottom: 5px;
      position: relative; }
    .blocks-item-internal a {
      color: #333; }
  .blocks-item.home {
    border: 1px solid #ddd;
    margin-top: 40px;
    margin-bottom: 60px; }
    .blocks-item.home h4 {
      color: #333333; }
    .blocks-item.home .button {
      display: inline-block;
      margin-top: 10px; }
      .blocks-item.home .button:hover, .blocks-item.home .button:focus, .blocks-item.home .button:active {
        color: #fff; }
    .blocks-item.home:hover, .blocks-item.home:focus, .blocks-item.home:active {
      background-color: #fff; 

      /*LM*/
  transform: scale(1.075);
box-shadow: 0 5px 20px 0 rgb(0 0 0 / 15%);
      /*LM Ende*/
      
}
      .blocks-item.home:hover *, .blocks-item.home:focus *, .blocks-item.home:active * {
        color: #843734;
        text-decoration: none; }
      .blocks-item.home:hover .button, .blocks-item.home:focus .button, .blocks-item.home:active .button {
        background-color: #843734;
        color: #fff; }

  .blocks-item .icon-wrap {
    position: absolute;
    left: 50%;
    top: -70px;
    margin-left: -63px;
    width: 126px;
    text-align: center; }
.blocks-item-link {
  color: #843734;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  border-radius: inherit; }
  .blocks-item-link:hover, .blocks-item-link:active {
    text-decoration: none; }
  .blocks-item-link:focus {
    outline: 0;
    box-shadow: 0 0 0 3px #843734;
    text-decoration: none; }
.blocks-item-title {
  margin-bottom: 0; }
.blocks-item-description {
  font-weight: 300;
  margin: 0; }
.blocks-item-description:not(:empty) {
  margin-top: 10px; }

/***** Homepage *****/
.section {
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    .section {
      margin-bottom: 60px; } }

.home-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 {
      display: block;
      border-bottom: 1px solid #ddd;
      padding: 15px 0;
      color: #333; }
    .promoted-articles-item .icon-lock::before {
      vertical-align: baseline; }
    .promoted-articles-item:last-child a {
      border: 0; }
      @media (min-width: 1024px) {
        .promoted-articles-item:last-child a {
          border-bottom: 1px solid #ddd; } }

/***** Community section in homepage *****/
.community {
  text-align: center; }
  .community-image {
    min-height: 300px;
    background-image: url(/hc/theming_assets/01HZPGREMS2HSNV04MHAE6RNJ8);
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%; }

.community,
.activity {
  border-top: 1px solid #ddd;
  padding: 30px 0; }

/***** Recent activity *****/
.recent-activity-header {
  margin-bottom: 10px;
  text-align: center; }
.recent-activity-list {
  padding: 0; }
.recent-activity-item {
  border-bottom: 1px solid #ddd;
  overflow: auto;
  padding: 20px 0; }
.recent-activity-item-parent {
  font-size: 16px; }
.recent-activity-item-parent, .recent-activity-item-link {
  margin: 6px 0;
  color: #333;
  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: 300; }
.recent-activity-item-meta {
  margin: 15px 0 0 0;
  float: none; }
  @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: #333333;
  display: inline-block;
  font-size: 13px;
  font-weight: 300; }
.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: #843734;
    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: flex-end; }
.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 {
        flex: 0 0 45%;
        /* Two columns for tablet and desktop. Leaving 5% separation between columns */ } }
  .section-tree-title {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600; }
    .section-tree-title a {
      color: #482d5a; }
  .section-tree .see-all-articles {
    display: block;
    padding: 15px 0; }

.article-list-item {
  font-size: 16px;
  padding: 15px 0; }
  .article-list-item a {
    color: #482d5a; }
  .article-list-item .icon-lock::before {
    vertical-align: baseline; }

.icon-star::before {
  color: #843734;
  font-size: 18px; }

/***** Section pages *****/
.section-container {
  display: flex;
  justify-content: flex-end; }
.section-content {
  flex: 1; }
  @media (min-width: 1024px) {
    .section-content {
      flex: 0 0 80%; } }
.section-subscribe .dropdown-toggle::after {
  display: none; }

.section-list {
  margin: 40px 0; }

.section-list--collapsed .section-list-item:nth-child(1n + 6) {
  display: none; }

.section-list-item {
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  padding: 15px 0; }
  .section-list-item:first-child {
    border-top: 1px solid #ddd; }
  .section-list-item a {
    align-items: center;
    color: #333;
    display: flex;
    justify-content: space-between; }

.see-all-sections-trigger {
  cursor: pointer;
  display: block;
  padding: 15px;
  text-align: center; }
  .see-all-sections-trigger[aria-hidden="true"] {
    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; }
  .article .text-brand,
  .article .text-info,
  .article .text-warning,
  .article .text-danger,
  .article .text-brand-easyimage {
    padding: 3px 6px; }
  .article .text-brand {
    background-color: #843734;
    color: #fff; }
  .article .text-brand-easyvet {
    color: #b52873; }
  .article .text-brand-vetsxl {
    color: #5991cd; }

.article .text-brand-petsxl {
  color: #843734;
}
  .article .text-brand-easyimage {
    background-color: #f7c857;
    color: #272727; }
  .article .text-info {
    background-color: #843734;
    color: #fff; }
  .article .text-warning {
    background-color: #d40a00;
    color: #111; }
  .article .text-danger {
    background-color: #d40a00;
    color: #fff; }
  @media (min-width: 1024px) {
    .article {
      flex: 1 0 66%;
      max-width: 66%;
      min-width: 640px;
      padding: 0 30px; } }
  .article-container {
    display: flex;
    flex-direction: column; }
    @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: 40px;
    margin-top: 20px; }
    @media (min-width: 768px) {
      .article-header {
        flex-direction: row;
        margin-top: 0; } }
  .article-avatar {
    margin-right: 10px; }
  .article-author {
    margin-bottom: 10px; }
  @media (min-width: 768px) {
    .article-title {
      flex-basis: 100%;
      /* Take entire row */ } }
  .article-title .icon-lock::before {
    content: "\1F512";
    font-size: 20px;
    position: relative;
    left: -5px;
    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: 768px) {
      .article [role="button"] {
        width: auto; } }
  .article-info {
    max-width: 100%; }
    .article-info a {
      text-decoration: underline; }
  .article-meta {
    display: inline-block;
    vertical-align: middle; }
  .article-body img {
    height: auto;
    max-width: 100%; }
  .article-body ul, .article-body ol {
    margin: 20px 0;
    padding-left: 20px;
    line-height: 1.6rem;
    /*ul {
        li {
            &:before {
                background-color: #FFFFFF;
                border: 1px solid #0072EF;
            }
        }
    }*/ }
    .article-body ul li, .article-body ol li {
      position: relative;
      list-style-type: none; }
      .article-body ul li:before, .article-body ol li:before {
        position: absolute;
        content: "";
        background-color: #843734;
        color: #fff;
        border-radius: 50%;
        top: 11px;
        left: -20px;
        width: 6px;
        height: 6px; }
    [dir="rtl"] .article-body ul, [dir="rtl"] .article-body ol {
      padding-right: 20px;
      padding-left: 0;
      margin-left: 0;
      margin-right: 20px; }
  .article-body ol {
    counter-reset: list; }
    .article-body ol > li {
      counter-increment: list; }
      .article-body ol > li:before {
        content: counter(list) ".";
        color: #843734;
        background-color: transparent;
        width: auto;
        height: auto;
        top: 0; }
    .article-body ol.list-colored {
      line-height: 1.8rem; }
      .article-body ol.list-colored > li {
        padding-left: 20px;
        margin-bottom: 10px; }
        .article-body ol.list-colored > li:before {
          content: counter(list);
          color: #fff;
          background-color: #843734;
          text-align: center;
          top: 2px;
          width: 25px;
          height: 25px;
          line-height: 25px; }
        .article-body ol.list-colored > li ol {
          margin-top: 10px; }
          .article-body ol.list-colored > li ol > li:before {
            content: counter(list);
            color: #843734;
            background-color: transparent;
            border: 1px solid #843734;
            text-align: center;
            top: 2px;
            width: 23px;
            height: 23px;
            line-height: 23px; }
  .article-body ul > ul, .article-body ol > ol, .article-body ol > ul, .article-body ul > ol, .article-body li > ul, .article-body li > ol {
    margin: 0; }
  .article-body pre {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    overflow: auto;
    white-space: pre; }
  .article-body blockquote, .article-body .blockquote {
    border-left: 3px solid #ddd;
    color: #333333;
    font-style: italic;
    font-family: Georgia, "Times New Roman", Times, serif;
    margin-left: 20px;
    background-color: #f7f7f7;
    padding: 10px 20px; }
    .article-body blockquote--colored, .article-body .blockquote--colored {
      border-left: 3px solid #843734; }
  .article-body > p:last-child {
    margin-bottom: 0; }
  .article-content {
    line-height: 1.6;
    margin: 40px 0;
    word-wrap: break-word; }
  .article-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px; }
  .article-comment-count {
    color: #333333;
    font-weight: 300; }
    .article-comment-count:hover {
      text-decoration: none; }
    .article-comment-count .icon-comments {
      color: #843734;
      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-bottom: 20px;
    padding: 0; }
    @media (min-width: 1024px) {
      .article-sidebar {
        border: 0;
        flex: 0 0 17%;
        height: auto; } }
    .article-sidebar .collapsible-sidebar {
      position: sticky; }
      @media (min-width: 1024px) {
        .article-sidebar .collapsible-sidebar {
          top: 80px; } }
  .article-relatives {
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    padding: 20px 0; }
    @media (min-width: 768px) {
      .article-relatives {
        flex-direction: row; } }
    .article-relatives > * {
      flex: 1 0 50%;
      min-width: 50%;
      overflow-wrap: break-word;
      margin-right: 0; }
      .article-relatives > *:last-child {
        padding: 0; }
      @media (min-width: 768px) {
        .article-relatives > * {
          padding-right: 20px; } }
  .article-votes {
    border-top: 1px solid #ddd;
    padding: 30px 0;
    text-align: center; }
  .article-vote {
    background: transparent;
    border: 1px solid #843734;
    color: #843734;
    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: #843734; }
    .article-vote:hover {
      background-color: #843734; }
    .article-vote:hover::before, .article-vote:hover::after, .article-vote[aria-selected="true"]::before, .article-vote[aria-selected="true"]::after {
      color: #fff; }
  .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: #333;
      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: #843734;
    color: #fff;
    text-decoration: none; }
    .article-unsubscribe:hover {
      background-color: #a12c26;
      border-color: #a12c26; }

.sidenav-title {
  font-size: 15px;
  position: relative; }
.sidenav-item {
  border-radius: 4px;
  color: #333;
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 10px;
  transition: background-color 0.15s ease-out; }
  .sidenav-item.current-article, .sidenav-item:hover {
    background-color: #843734;
    color: #fff;
    text-decoration: none; }

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

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */
.attachments .attachment-item {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px; }
  .attachments .attachment-item:last-child {
    margin-bottom: 0; }
  .attachments .attachment-item::before {
    color: #333;
    content: "\1F4CE";
    font-size: 15px;
    left: 0;
    position: absolute;
    top: 5px; }
  [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: #333333; }

/***** 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: #333333;
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%; }

.share a:hover {
  text-decoration: none; }
  .share a:hover::before {
    color: #843734; }

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

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

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

/***** 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;
    font-size: 18px;
    font-weight: 600; }
  .comment-overview {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: 20px 0; }
    .comment-overview p {
      margin-top: 0; }
  .comment-callout {
    color: #333333;
    display: inline-block;
    font-weight: 300;
    font-size: 13px;
    margin-bottom: 0; }
    .comment-callout a {
      color: #843734; }
  .comment-sorter {
    display: inline-block;
    float: right; }
    .comment-sorter .dropdown-toggle {
      color: #333333;
      font-weight: 300;
      font-size: 13px; }
    [dir="rtl"] .comment-sorter {
      float: left; }
  .comment-wrapper {
    display: flex;
    position: relative; }
    .comment-wrapper.comment-official {
      border: 1px solid #843734;
      padding: 40px 20px 20px; }
      @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: #843734; }
  .comment-body {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    word-wrap: break-word;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: auto; }
    .comment-body img {
      height: auto;
      max-width: 100%; }
    .comment-body ul, .comment-body ol {
      margin: 20px 0;
      padding-left: 20px;
      line-height: 2rem;
      /*ul {
          li {
              &:before {
                  background-color: #FFFFFF;
                  border: 1px solid #0072EF;
              }
          }
      }*/ }
      .comment-body ul li, .comment-body ol li {
        position: relative;
        list-style-type: none; }
        .comment-body ul li:before, .comment-body ol li:before {
          position: absolute;
          content: "";
          background-color: #843734;
          color: #fff;
          border-radius: 50%;
          top: 13px;
          left: -20px;
          width: 6px;
          height: 6px; }
      [dir="rtl"] .comment-body ul, [dir="rtl"] .comment-body ol {
        padding-right: 20px;
        padding-left: 0;
        margin-left: 0;
        margin-right: 20px; }
    .comment-body ol {
      counter-reset: list; }
      .comment-body ol > li {
        counter-increment: list; }
        .comment-body ol > li:before {
          content: counter(list) ".";
          color: #843734;
          background-color: transparent;
          width: auto;
          height: auto;
          top: 0; }
      .comment-body ol.list-colored {
        line-height: 1.8rem; }
        .comment-body ol.list-colored > li {
          padding-left: 20px;
          margin-bottom: 10px; }
          .comment-body ol.list-colored > li:before {
            content: counter(list);
            color: #fff;
            background-color: #843734;
            text-align: center;
            top: 2px;
            width: 25px;
            height: 25px;
            line-height: 25px; }
          .comment-body ol.list-colored > li ol {
            margin-top: 10px; }
            .comment-body ol.list-colored > li ol > li:before {
              content: counter(list);
              color: #843734;
              background-color: transparent;
              border: 1px solid #843734;
              text-align: center;
              top: 2px;
              width: 23px;
              height: 23px;
              line-height: 23px; }
    .comment-body ul > ul, .comment-body ol > ol, .comment-body ol > ul, .comment-body ul > ol, .comment-body li > ul, .comment-body li > ol {
      margin: 0; }
    .comment-body pre {
      background: #f7f7f7;
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 10px 15px;
      overflow: auto;
      white-space: pre; }
    .comment-body blockquote, .comment-body .blockquote {
      border-left: 3px solid #ddd;
      color: #333333;
      font-style: italic;
      font-family: Georgia, "Times New Roman", Times, serif;
      margin-left: 20px;
      background-color: #f7f7f7;
      padding: 10px 20px; }
      .comment-body blockquote--colored, .comment-body .blockquote--colored {
        border-left: 3px solid #843734; }
  .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: #333333;
  display: block;
  margin: 3px 0; }
  [dir="rtl"] .vote-sum {
    direction: ltr;
    unicode-bidi: bidi-override; }

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

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

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

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

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

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

/***** 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: #333333;
      content: "\2699";
      display: block;
      font-size: 13px;
      margin: auto;
      padding: 5px; }

/***** Community *****/
.community-hero {
  background-image: url(/hc/theming_assets/01HZPGREGCYH75WZ0CV8ZZVAKN);
  margin-bottom: 10px; }
.community-footer {
  padding-top: 50px;
  text-align: center; }
  .community-footer-title {
    font-size: 16px;
    margin-bottom: 20px; }
.community-featured-posts, .community-activity {
  padding-top: 40px;
  width: 100%; }
.community-header {
  margin-bottom: 30px; }
  .community-header h1 {
    margin-bottom: 0;
    font-size: 16px; }

.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%; }
  .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: #843734; }
    .community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
      border-color: #fff;
      color: #fff; }
    .community-follow [role="button"][aria-selected="true"] {
      background-color: #843734;
      color: #fff; }
      .community-follow [role="button"][aria-selected="true"]::after {
        border-left: 1px solid #fff;
        color: #fff; }
      .community-follow [role="button"][aria-selected="true"]:hover {
        background-color: #a12c26;
        border-color: #a12c26; }
    .community-follow [role="button"]::after {
      border-left: 1px solid #843734;
      content: attr(data-follower-count);
      color: #843734;
      display: inline-block;
      font-family: "Open Sans", Helvetica, Arial, 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 #843734;
        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: #843734;
    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: #a12c26; }
  .striped-list .meta-group {
    margin: 5px 0; }
  .striped-list-count {
    color: #333333;
    font-weight: 300;
    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: #333;
        display: block;
        font-weight: 400; } }

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: #038153;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  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: #843734; }
  .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-not-planned, .status-label-closed {
    background-color: #e9ebed;
    color: #333333; }
  .status-label-pending {
    background-color: #1f73b7;
    text-align: center; }
  .status-label-open {
    background-color: #c72a1c; }
  .status-label-solved {
    background-color: #68737d; }
  .status-label-new {
    background-color: #ffb648;
    color: #703b15; }
  .status-label-hold {
    background-color: #000; }
  .status-label-open, .status-label-closed, .status-label-solved, .status-label-new, .status-label-hold, .status-label-answered {
    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 {
      vertical-align: super; }
  .post-title {
    margin-bottom: 20px;
    width: 100%; }
    @media (min-width: 768px) {
      .post-title {
        margin-bottom: 0;
        padding-right: 10px; } }
    .post-title h1 {
      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; }
  .post-avatar {
    margin-bottom: 30px; }
  .post-content {
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    word-break: break-word; }
  .post-info-container {
    display: flex;
    margin-bottom: 40px; }
  .post-info {
    min-width: 0;
    padding-right: 20px;
    width: 100%; }
    [dir="rtl"] .post-info {
      padding-right: 0;
      padding-left: 20px; }
  .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 {
    margin: 20px 0;
    padding-left: 20px;
    line-height: 2rem;
    /*ul {
        li {
            &:before {
                background-color: #FFFFFF;
                border: 1px solid #0072EF;
            }
        }
    }*/ }
    .post-body ul li, .post-body ol li {
      position: relative;
      list-style-type: none; }
      .post-body ul li:before, .post-body ol li:before {
        position: absolute;
        content: "";
        background-color: #843734;
        color: #fff;
        border-radius: 50%;
        top: 13px;
        left: -20px;
        width: 6px;
        height: 6px; }
    [dir="rtl"] .post-body ul, [dir="rtl"] .post-body ol {
      padding-right: 20px;
      padding-left: 0;
      margin-left: 0;
      margin-right: 20px; }
  .post-body ol {
    counter-reset: list; }
    .post-body ol > li {
      counter-increment: list; }
      .post-body ol > li:before {
        content: counter(list) ".";
        color: #843734;
        background-color: transparent;
        width: auto;
        height: auto;
        top: 0; }
    .post-body ol.list-colored {
      line-height: 1.8rem; }
      .post-body ol.list-colored > li {
        padding-left: 20px;
        margin-bottom: 10px; }
        .post-body ol.list-colored > li:before {
          content: counter(list);
          color: #fff;
          background-color: #843734;
          text-align: center;
          top: 2px;
          width: 25px;
          height: 25px;
          line-height: 25px; }
        .post-body ol.list-colored > li ol {
          margin-top: 10px; }
          .post-body ol.list-colored > li ol > li:before {
            content: counter(list);
            color: #843734;
            background-color: transparent;
            border: 1px solid #843734;
            text-align: center;
            top: 2px;
            width: 23px;
            height: 23px;
            line-height: 23px; }
  .post-body ul > ul, .post-body ol > ol, .post-body ol > ul, .post-body ul > ol, .post-body li > ul, .post-body li > ol {
    margin: 0; }
  .post-body pre {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    overflow: auto;
    white-space: pre; }
  .post-body blockquote, .post-body .blockquote {
    border-left: 3px solid #ddd;
    color: #333333;
    font-style: italic;
    font-family: Georgia, "Times New Roman", Times, serif;
    margin-left: 20px;
    background-color: #f7f7f7;
    padding: 10px 20px; }
    .post-body blockquote--colored, .post-body .blockquote--colored {
      border-left: 3px solid #843734; }
  .post-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px; }
  .post-comment-count {
    color: #333333;
    font-weight: 300; }
    .post-comment-count:hover {
      text-decoration: none; }
    .post-comment-count .icon-comments {
      color: #843734;
      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-title {
      font-size: 18px;
      font-weight: 600; }
  .post-comments {
    margin-bottom: 20px; }
    @media (min-width: 1024px) {
      .post-comments {
        margin-bottom: 0; } }

/* Navigation element that collapses on mobile */
.collapsible-nav {
  flex-direction: column;
  font-size: 14px;
  position: relative; }
  @media (min-width: 768px) {
    .collapsible-nav {
      flex-direction: row; } }

.collapsible-nav-border {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd; }
  @media (min-width: 768px) {
    .collapsible-nav-border {
      border-top: 0; } }

.collapsible-nav-toggle {
  top: calc(45px / 2);
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%; }
  @media (min-width: 768px) {
    .collapsible-nav-toggle {
      display: none; } }
  [dir="rtl"] .collapsible-nav-toggle {
    left: 0;
    right: auto; }
  .collapsible-nav-toggle::after {
    content: "\25BE"; }
  .collapsible-nav-toggle:focus {
    outline: none;
    border: 1px solid #843734; }

.collapsible-nav-list {
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .collapsible-nav-list {
      flex-direction: row; } }
  .collapsible-nav-list li {
    color: #333;
    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: #333;
      display: block; }
  @media (min-width: 768px) {
    .collapsible-nav-list li:hover {
      border-bottom: 4px solid #ddd; }
      .collapsible-nav-list li:hover a:not([aria-current="page"]) {
        padding: 15px 0 11px 0;
        text-decoration: none; } }
  .collapsible-nav-list li:not([aria-selected="true"]),
  .collapsible-nav-list li:not(.current) {
    display: none; }
    @media (min-width: 768px) {
      .collapsible-nav-list li:not([aria-selected="true"]),
      .collapsible-nav-list li:not(.current) {
        display: block; } }
  @media (min-width: 768px) {
    .collapsible-nav-list li[aria-selected="true"] {
      padding: 15px 0 11px 0; } }
  .collapsible-nav-list li[aria-selected="true"],
  .collapsible-nav-list li.current {
    order: 0;
    position: relative; }
    @media (min-width: 768px) {
      .collapsible-nav-list li[aria-selected="true"],
      .collapsible-nav-list li.current {
        border-bottom: 4px solid #843734;
        order: 1; } }
    .collapsible-nav-list li[aria-selected="true"] a,
    .collapsible-nav-list li.current a {
      color: #333; }

.collapsible-nav[aria-expanded="true"] .collapsible-nav-toggle::after {
  content: "\2715"; }
.collapsible-nav[aria-expanded="true"] li:not([aria-selected="true"]),
.collapsible-nav[aria-expanded="true"] li:not(.current) {
  display: block; }

/* 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; } }
  .collapsible-sidebar-title {
    margin-top: 0; }
  .collapsible-sidebar-toggle {
    position: absolute;
    top: calc(45px / 2);
    transform: translateY(-50%);
    right: 0;
    padding: 0;
    border: 0;
    background: none;
    width: 25px;
    height: 25px;
    border-radius: 50%; }
    @media (min-width: 1024px) {
      .collapsible-sidebar-toggle {
        display: none; } }
    [dir="rtl"] .collapsible-sidebar-toggle {
      left: 0;
      right: auto; }
    .collapsible-sidebar-toggle::after {
      position: relative;
      top: 50%;
      transform: translateY(-50%);
      display: block;
      content: "\25BE"; }
    .collapsible-sidebar-toggle:focus {
      outline: none;
      border: 1px solid #843734; }
  .collapsible-sidebar-body {
    display: none; }
    @media (min-width: 1024px) {
      .collapsible-sidebar-body {
        display: block; } }
  .collapsible-sidebar[aria-expanded="true"] {
    max-height: none; }
    .collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-toggle::after {
      content: "\2715"; }
    .collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-body {
      display: block; }

/***** My activities *****/
.my-activities-nav {
  background-color: #f2f2f2;
  margin-bottom: 20px; }
.my-activities-sub-nav {
  margin-bottom: 30px; }
.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: #843734;
    color: #fff; }
  .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: #843734;
  border-radius: 4px;
  color: #fff;
  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: #a12c26;
    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: #333333;
  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: #333333; }

/***** 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;
    color: #333333;
    text-align: inherit;
    padding: 8px 25px;
    width: 100%; }
    .request-main .comment-show-container.hidden {
      display: none; }
  .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 #843734; }
  .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 #843734; }
  .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 h2 {
    font-size: 15px;
    font-weight: 600;
    position: relative; }
    @media (min-width: 1024px) {
      .request-sidebar h2 {
        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: #333333;
    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; }

/***** 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: #333;
      text-decoration: none; }

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

.pagination-current {
  background-color: #843734; }
  .pagination-current a, .pagination-current span {
    color: #fff; }

.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: #333333;
  font-size: 13px;
  font-weight: 300; }

  .meta-data:not(:last-child)::after {
/*Punkt in Infozeile ausgeblendet
    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-toggle::after,
.collapsible-sidebar-toggle::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-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-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;
  word-wrap: 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: #843734;
  border: 0;
  color: #fff;
  line-height: normal;
  padding: 8px 20px;
  outline-color: #843734; }

.profile-header .description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: 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: #333333;
  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 #843734;
  border-radius: 4px;
  color: #843734;
  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;
  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: #333333;
  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;
  word-wrap: 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;
  word-wrap: 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: #fff;
  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; }
  @media (min-width: 1024px) {
    .search-results {
      flex-direction: row; } }
  .search-results-column {
    flex: 1; }
    @media (min-width: 1024px) {
      .search-results-column {
        flex: 0 0 75%; } }
  .search-results-sidebar {
    border-top: 1px solid #ddd;
    flex: 1 0 auto;
    margin-bottom: 20px;
    padding: 0; }
    @media (min-width: 1024px) {
      .search-results-sidebar {
        border: 0;
        flex: 0 0 20%;
        height: auto; } }
    .search-results-sidebar .sidenav-item:hover, .search-results-sidebar .sidenav-item[aria-selected="true"] {
      background-color: #e9ebed;
      color: inherit;
      text-decoration: none; }
    .search-results-sidebar .sidenav-subitem {
      unicode-bidi: embed; }
    .search-results-sidebar .collapsible-sidebar {
      margin-bottom: 30px; }
      .search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
        display: none; }
        @media (min-width: 1024px) {
          .search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
            display: block; } }
    .search-results-sidebar .multibrand-filter-list--collapsed li:nth-child(1n + 6) {
      display: none; }
    .search-results-sidebar .multibrand-filter-list .doc-count {
      color: #999; }
    .search-results-sidebar .see-all-filters {
      background: none;
      border: none;
      cursor: pointer;
      display: block;
      padding: 10px;
      color: #843734; }
      .search-results-sidebar .see-all-filters[aria-hidden="true"] {
        display: none; }
      .search-results-sidebar .see-all-filters:hover {
        text-decoration: underline; }
      .search-results-sidebar .see-all-filters::after {
        content: ' \2304';
        font-weight: bold; }
  .search-results-subheading {
    font-size: 18px;
    font-weight: 600; }
  .search-results-list {
    margin-bottom: 25px; }
    .search-results-list > li {
      padding: 20px 0; }
      .search-results-list > li:first-child {
        border-top: 1px solid #ddd; }
      .search-results-list > li h2 {
        margin-bottom: 0; }
  .search-results .meta-group {
    display: block;
    align-items: center;
    clear: both;
    color: #666; }
    @media (min-width: 1024px) {
      .search-results .meta-group {
        display: flex; } }
    .search-results .meta-group > li {
      display: block; }
      @media (min-width: 1024px) {
        .search-results .meta-group > li {
          display: inline; } }
    @media (min-width: 1024px) {
      .search-results .meta-group li:first-child {
        flex: 1; } }
    .search-results .meta-group .meta-data {
      color: inherit; }
      [dir="ltr"] .search-results .meta-group .meta-data:not(:last-child) {
        margin-right: 20px; }
      [dir="rtl"] .search-results .meta-group .meta-data:not(:last-child) {
        margin-left: 20px; }
      .search-results .meta-group .meta-data::after {
        content: none; }
  .search-results-description {
    margin-top: 10px;
    word-break: break-word; }

.search-result-title {
  font-size: 16px;
  display: inline-block; }
[dir="ltr"] .search-result-icons {
  float: right; }
[dir="rtl"] .search-result-icons {
  float: left; }
.search-result-votes, .search-result-meta-count {
  color: #333333;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  padding: 4px 5px;
  position: relative; }
  .search-result-votes::before, .search-result-meta-count::before {
    color: #843734; }
  [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; }
.search-result-breadcrumbs {
  margin: 0; }
  @media (min-width: 1024px) {
    .search-result-breadcrumbs {
      display: table-row; } }
  @media (min-width: 1024px) {
    .search-result-breadcrumbs li {
      display: table-cell; } }
  .search-result-breadcrumbs li, .search-result-breadcrumbs li a, .search-result-breadcrumbs li a:visited {
    color: inherit; }

/* By default use bold instead of italic to highlight */
.search-results-description em {
  font-style: normal;
  font-weight: bold; }

/* Add a yellow background for Chinese */
html[lang|="zh"] .search-results-description em {
  font-style: normal;
  background: yellow; }

.powered-by-zendesk a {
  color: #5a426b !important; }
.powered-by-zendesk svg {
  fill: #5a426b !important; }

zd-autocomplete-multibrand zd-autocomplete-title-multibrand {
  color: #843734; }

.accordion {
  border: 1px solid #ddd;
  border-radius: 4px; 
   margin-bottom: 20px;
}
  .accordion__item-title {
    position: relative;
    padding: 15px 20px 15px 52px;
    cursor: pointer;
    border-bottom: 1px solid #ddd; }
    .accordion__item-title::before {
      position: absolute;
      content: "";
      top: 50%;
      left: 22px;
      width: 8px;
      height: 8px;
      margin-top: -8px;
      border-bottom: 2px solid #843734;
      border-left: 2px solid #843734;
      transition: transform 0.3s;
      transform: rotate(-45deg);
      transform-origin: 50% 50%; }
    .accordion__item-title.ui-state-active {
      background-color: #f0f0f0; }
      .accordion__item-title.ui-state-active::before {
        transform: rotate(135deg);
        margin-top: -4px; }
  .accordion__item-content {
    padding: 10px 20px;
    border-bottom: 1px solid #ddd; }
  .accordion__item:last-child .accordion__item-content {
    border-bottom: 0; }

.accordion--colored .accordion__item-title {
  border-bottom: 1px solid #ddd;
  color: #843734; }
  .accordion--colored .accordion__item-title::before {
    border-bottom: 2px solid #843734;
    border-left: 2px solid #843734; }
  .accordion--colored .accordion__item-title.ui-state-active {
    background-color: #843734;
    color: #fff; }
    .accordion--colored .accordion__item-title.ui-state-active::before {
      border-color: #fff; }
.accordion--colored .accordion__item-content {
  border-bottom: 1px solid #ddd; }
.accordion--colored.accordion--counter .accordion__item-title:after {
  color: #fff;
  background-color: #843734; }
.accordion--colored.accordion--counter .accordion__item-title.ui-state-active:after {
  color: #843734;
  background-color: #fff; }

.accordion--counter {
  counter-reset: accordion-counter; }
  .accordion--counter .accordion__item {
    counter-increment: accordion-counter; }
    .accordion--counter .accordion__item-title {
      padding-left: 82px; }
      .accordion--counter .accordion__item-title:after {
        position: absolute;
        left: 50px;
        top: 15px;
        border-radius: 50%;
        content: counter(accordion-counter);
        color: #fff;
        background-color: #843734;
        text-align: center;
        width: 23px;
        height: 23px;
        line-height: 23px; }

.tabs .ui-tabs-nav {
  padding: 0;
  margin: 0;
  line-height: initial; 
  font-weight: bold;
}

  .tabs .ui-tabs-nav > li:before {
    display: none; }
.tabs .ui-tabs-tab {
  display: inline-block;
  margin-bottom: -1px; }
  .tabs .ui-tabs-tab a {
    display: block;
    padding: 10px 20px;
    color: #482d5a;
    text-decoration: none; }
  .tabs .ui-tabs-tab.ui-state-active {
    border: 1px solid #ddd;
    border-bottom: 1px solid #fff; }
    .tabs .ui-tabs-tab.ui-state-active a {
      color: #843734; }
.tabs .ui-tabs-panel {
  padding: 10px 20px;
  border: 1px solid #ddd; }

.tabs--colored.tabs .ui-tabs-tab.ui-state-active {
  background-color: #843734;
  border: 1px solid #843734; }
  .tabs--colored.tabs .ui-tabs-tab.ui-state-active a {
    color: #fff; }
.tabs--colored.tabs .ui-tabs-panel {
  border: 1px solid #843734; }

.callout {
  display: flex;
  border: 1px solid #e0e0e0;
  border-left: 3px solid #ddd;
  background-color: #f0f0f0;
  padding: 10px;
  margin-bottom: 1rem; }
  .callout__title {
    margin: 5px 0; }
  .callout .fas {
    margin-right: 10px; }
  .callout p {
    margin: 0; }

.callout--brand {
  border-color: #f3cecc;
  border-left-color: #843734;
  background-color: #fbefee; }
  .callout--brand .callout__title {
    color: #843734; }
  .callout--brand .fas {
    color: #843734; }

.callout--info {
  border-color: #efbebb;
  border-left-color: #843734;
  background-color: #fbefee; }
  .callout--info .callout__title {
    color: #843734; }
  .callout--info .fas {
    color: #843734; }

.callout--warning {
  border-color: #ee9d99;
  border-left-color: #d40a00;
  background-color: #fbe7e6; }
  .callout--warning .callout__title {
    color: #d40a00; }
  .callout--warning .fas {
    color: #d40a00; }

.callout--danger {
  border-color: #ee9d99;
  border-left-color: #d40a00;
  background-color: #fbe7e6; }
  .callout--danger .callout__title {
    color: #d40a00; }
  .callout--danger .fas {
    color: #d40a00; }

.note {
  display: flex;
  border-left: 3px solid #ddd;
  background-color: #f0f0f0;
  padding-left: 10px;
  margin-bottom: 1rem; }
  .note__title {
    font-weight: bold;
    margin: 0; }
  .note .fas {
    margin-right: 10px;
    line-height: 1; }
  .note p {
    margin: 0; }

.note--brand {
  border-color: #843734;
  background-color: #fbefee; }
  .note--brand .note__title {
    color: #843734; }
  .note--brand .fas {
    color: #843734; }

.note--info {
  border-color: #f3a916;
  background-color: transparent; }
  .note--info .note__title {
    display: none;
    color: #843734; }
  .note--info .fas {
    display: none;
    color: #843734; }

.note--warning {
  border-color: #bd3c47;
  background-color: transparent; }
  .note--warning .note__title {
    display: none;
    color: #d40a00; }
  .note--warning .fas {
    display: none;
    color: #d40a00; }

.note--danger {
  border-color: #d40a00;
  background-color: #fbe7e6; }
  .note--danger .note__title {
    color: #d40a00; }
  .note--danger .fas {
    color: #d40a00; }

.fas {
  font-family: "FontAwesome";
  font-style: normal;
  font-size: 1.4rem; }

code.html {
  position: relative; }
  code.html::before {
    display: block;
    content: "HTML";
    position: absolute;
    left: 0;
    top: -5px;
    color: #aaa; }

/* BASICS */
.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr; }

/* PADDING */
.CodeMirror-lines {
  padding: 4px 0;
  /* Vertical padding around content */ }

.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px;
  /* Horizontal padding of content */ }

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white;
  /* The little square between H and V scrollbars */ }

/* GUTTER */
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap; }

.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap; }

.CodeMirror-guttermarker {
  color: black; }

.CodeMirror-guttermarker-subtle {
  color: #999; }

/* CURSOR */
.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0; }

/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver; }

.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7; }

.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1; }

.cm-fat-cursor-mark {
  background-color: rgba(20, 255, 20, 0.5);
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite; }

.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7; }

@-moz-keyframes blink {
  50% {
    background-color: transparent; } }
@-webkit-keyframes blink {
  50% {
    background-color: transparent; } }
@keyframes blink {
  50% {
    background-color: transparent; } }
/* Can style cursor different in overwrite (non-insert) mode */
.cm-tab {
  display: inline-block;
  text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: 0;
  overflow: hidden; }

.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute; }

/* DEFAULT THEME */
.cm-s-default .cm-header {
  color: blue; }

.cm-s-default .cm-quote {
  color: #090; }

.cm-negative {
  color: #d44; }

.cm-positive {
  color: #292; }

.cm-header, .cm-strong {
  font-weight: bold; }

.cm-em {
  font-style: italic; }

.cm-link {
  text-decoration: underline; }

.cm-strikethrough {
  text-decoration: line-through; }

.cm-s-default .cm-keyword {
  color: #708; }

.cm-s-default .cm-atom {
  color: #219; }

.cm-s-default .cm-number {
  color: #164; }

.cm-s-default .cm-def {
  color: #00f; }

.cm-s-default .cm-variable-2 {
  color: #05a; }

.cm-s-default .cm-variable-3, .cm-s-default .cm-type {
  color: #085; }

.cm-s-default .cm-comment {
  color: #a50; }

.cm-s-default .cm-string {
  color: #a11; }

.cm-s-default .cm-string-2 {
  color: #f50; }

.cm-s-default .cm-meta {
  color: #555; }

.cm-s-default .cm-qualifier {
  color: #555; }

.cm-s-default .cm-builtin {
  color: #30a; }

.cm-s-default .cm-bracket {
  color: #997; }

.cm-s-default .cm-tag {
  color: #170; }

.cm-s-default .cm-attribute {
  color: #00c; }

.cm-s-default .cm-hr {
  color: #999; }

.cm-s-default .cm-link {
  color: #00c; }

.cm-s-default .cm-error {
  color: #f00; }

.cm-invalidchar {
  color: #f00; }

.CodeMirror-composing {
  border-bottom: 2px solid; }

/* Default styles for common addons */
div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0b0; }

div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #a22; }

.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3); }

.CodeMirror-activeline-background {
  background: #e8f2ff; }

/* STOP */
/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */
.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white; }

.CodeMirror-scroll {
  overflow: scroll !important;
  /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none;
  /* Prevent dragging from highlighting the element */
  position: relative; }

.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent; }

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none; }

.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll; }

.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll; }

.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0; }

.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0; }

.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3; }

.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px; }

.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important; }

.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4; }

.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4; }

.CodeMirror-gutter-wrapper ::selection {
  background-color: transparent; }

.CodeMirror-gutter-wrapper ::-moz-selection {
  background-color: transparent; }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
  /* prevents collapsing before first draw */ }

.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual; }

.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal; }

.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0; }

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px;
  /* Force widget margins to stay inside of the container */ }

.CodeMirror-rtl pre {
  direction: rtl; }

.CodeMirror-code {
  outline: none; }

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden; }

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none; }

.CodeMirror-measure pre {
  position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3; }

div.CodeMirror-dragcursors {
  visibility: visible; }

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible; }

.CodeMirror-selected {
  background: #d9d9d9; }

.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0; }

.CodeMirror-crosshair {
  cursor: crosshair; }

.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
  background: #d7d4f0; }

.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0; }

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, 0.4); }

/* Used to force a border model for a node */
.cm-force-border {
  padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden; } }
/* See issue #2901 */
.cm-tab-wrap-hack:after {
  content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext {
  background: none; }

/*# sourceMappingURL=style.css.map */

/*Modifikationen Schriftfarben und Schriftgrößen (LM)*/
/*Schriftfarbe Pink -> easyVET (LM)*/
span[class=wysiwyg-color-pink] {
  color: #b52873;
}

/*Schriftfarbe Cyan -> vetsXL (LM)*/
span[class=wysiwyg-color-cyan] {
  color: #5991cd;
}

/*Schriftfarbe Rot -> petsXL (LM)*/
span[class=wysiwyg-color-red] {
  color: #843734;
}

/*Schriftfarbe Gelb -> easyIMAGE (LM)*/
span[class=wysiwyg-color-yellow] {
  color: #f3b00f;
}

/*Schriftfarbe Grün -> Keypress (LM)*/
span[class=wysiwyg-color-green] {
  border: 1px solid #cccccc;
  border-bottom: 2px solid #cccccc;
  border-radius: 4px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 0px;
  padding-bottom: 0px;
    color: #333;
}

/*Schriftgröße small -> Info (LM)*/
span[class=wysiwyg-font-size-small] {
   display: inherit;
  border-left: 3px solid #ddd;
  padding-left: 10px;
  margin-bottom: 1rem; 
  border-color: #f3a916;
  background-color: transparent;
  color: #333;
  font-size: 15px;
  font-weight: 400;
}
/*Schriftgröße Extragroß -> Warnung (LM)*/
span[class=wysiwyg-font-size-x-large] {
    display: inherit;
  border-left: 3px solid #ddd;
  padding-left: 10px;
  margin-bottom: 1rem;border-color: #ee9d99;
  border-left-color: #d40a00;
  background-color: transparent;
    color: #333;
    font-size: 15px;
  font-weight: 400;
}
/*Modifikationen Schriftfarben und Schriftgrößen (LM) ENDE*/

/* Zoom von Bildern (MG) */

.zoom {
  
  transition: transform .2s;
}

.zoom:hover {
  
  transform: scale(1.5);
}

/* Hochspring-Button (MG) */

.cd-top {
  display: inline-block;
  border-radius: 10px;
  height: 30px;
  width: 30px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #dc5d58 url('$assets-01hzpgpv4by0k879mfd0gf2veq-svg') no-repeat calc(50% + 3px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  transform: rotate(90deg);
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
  visibility: visible;
  opacity: 1;
}

.cd-top.cd-fade-out {
  opacity: .5;
}

.no-touch .cd-top:hover {
  background-color: #F79420;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .cd-top {
    right: 55px;
    bottom: 60px;
  }
}

@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 40px;
    width: 40px;
    right: 55px;
    bottom: 60px;
  }
}

/* Klasse für Silbentrennung (MG) */

.hyphenation {
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Klasse für Abstand vor Element (für Tabs, Tipps, Hinweise und Tabellen innerhalb einer <ol> oder <ul>) (MG) */

.abstand {
  margin-top: 6px;
}